SYMBOL INDEX (115893 symbols across 679 files)
FILE: docs/docs.go
type swaggerInfo (line 592) | type swaggerInfo struct
type s (line 611) | type s struct
method ReadDoc (line 613) | func (s *s) ReadDoc() string {
function init (line 635) | func init() {
FILE: docs/sql/blog.sql
type `blog_article` (line 19) | CREATE TABLE `blog_article` (
type `blog_auth` (line 39) | CREATE TABLE `blog_auth` (
type `blog_tag` (line 52) | CREATE TABLE `blog_tag` (
FILE: main.go
function init (line 18) | func init() {
function main (line 32) | func main() {
FILE: middleware/jwt/jwt.go
function JWT (line 14) | func JWT() gin.HandlerFunc {
FILE: models/article.go
type Article (line 7) | type Article struct
function ExistArticleByID (line 23) | func ExistArticleByID(id int) (bool, error) {
function GetArticleTotal (line 38) | func GetArticleTotal(maps interface{}) (int, error) {
function GetArticles (line 48) | func GetArticles(pageNum int, pageSize int, maps interface{}) ([]*Articl...
function GetArticle (line 59) | func GetArticle(id int) (*Article, error) {
function EditArticle (line 75) | func EditArticle(id int, data interface{}) error {
function AddArticle (line 84) | func AddArticle(data map[string]interface{}) error {
function DeleteArticle (line 102) | func DeleteArticle(id int) error {
function CleanAllArticle (line 111) | func CleanAllArticle() error {
FILE: models/auth.go
type Auth (line 5) | type Auth struct
function CheckAuth (line 12) | func CheckAuth(username, password string) (bool, error) {
FILE: models/models.go
type Model (line 16) | type Model struct
function Setup (line 24) | func Setup() {
function CloseDB (line 49) | func CloseDB() {
function updateTimeStampForCreateCallback (line 54) | func updateTimeStampForCreateCallback(scope *gorm.Scope) {
function updateTimeStampForUpdateCallback (line 72) | func updateTimeStampForUpdateCallback(scope *gorm.Scope) {
function deleteCallback (line 79) | func deleteCallback(scope *gorm.Scope) {
function addExtraSpaceIfExist (line 109) | func addExtraSpaceIfExist(str string) string {
FILE: models/tag.go
type Tag (line 7) | type Tag struct
function ExistTagByName (line 17) | func ExistTagByName(name string) (bool, error) {
function AddTag (line 32) | func AddTag(name string, state int, createdBy string) error {
function GetTags (line 46) | func GetTags(pageNum int, pageSize int, maps interface{}) ([]Tag, error) {
function GetTagTotal (line 66) | func GetTagTotal(maps interface{}) (int, error) {
function ExistTagByID (line 76) | func ExistTagByID(id int) (bool, error) {
function DeleteTag (line 90) | func DeleteTag(id int) error {
function EditTag (line 99) | func EditTag(id int, data interface{}) error {
function CleanAllTag (line 108) | func CleanAllTag() (bool, error) {
FILE: pkg/app/form.go
function BindAndValid (line 12) | func BindAndValid(c *gin.Context, form interface{}) (int, int) {
FILE: pkg/app/request.go
function MarkErrors (line 10) | func MarkErrors(errors []*validation.Error) {
FILE: pkg/app/response.go
type Gin (line 9) | type Gin struct
method Response (line 20) | func (g *Gin) Response(httpCode, errCode int, data interface{}) {
type Response (line 13) | type Response struct
FILE: pkg/e/cache.go
constant CACHE_ARTICLE (line 4) | CACHE_ARTICLE = "ARTICLE"
constant CACHE_TAG (line 5) | CACHE_TAG = "TAG"
FILE: pkg/e/code.go
constant SUCCESS (line 4) | SUCCESS = 200
constant ERROR (line 5) | ERROR = 500
constant INVALID_PARAMS (line 6) | INVALID_PARAMS = 400
constant ERROR_EXIST_TAG (line 8) | ERROR_EXIST_TAG = 10001
constant ERROR_EXIST_TAG_FAIL (line 9) | ERROR_EXIST_TAG_FAIL = 10002
constant ERROR_NOT_EXIST_TAG (line 10) | ERROR_NOT_EXIST_TAG = 10003
constant ERROR_GET_TAGS_FAIL (line 11) | ERROR_GET_TAGS_FAIL = 10004
constant ERROR_COUNT_TAG_FAIL (line 12) | ERROR_COUNT_TAG_FAIL = 10005
constant ERROR_ADD_TAG_FAIL (line 13) | ERROR_ADD_TAG_FAIL = 10006
constant ERROR_EDIT_TAG_FAIL (line 14) | ERROR_EDIT_TAG_FAIL = 10007
constant ERROR_DELETE_TAG_FAIL (line 15) | ERROR_DELETE_TAG_FAIL = 10008
constant ERROR_EXPORT_TAG_FAIL (line 16) | ERROR_EXPORT_TAG_FAIL = 10009
constant ERROR_IMPORT_TAG_FAIL (line 17) | ERROR_IMPORT_TAG_FAIL = 10010
constant ERROR_NOT_EXIST_ARTICLE (line 19) | ERROR_NOT_EXIST_ARTICLE = 10011
constant ERROR_CHECK_EXIST_ARTICLE_FAIL (line 20) | ERROR_CHECK_EXIST_ARTICLE_FAIL = 10012
constant ERROR_ADD_ARTICLE_FAIL (line 21) | ERROR_ADD_ARTICLE_FAIL = 10013
constant ERROR_DELETE_ARTICLE_FAIL (line 22) | ERROR_DELETE_ARTICLE_FAIL = 10014
constant ERROR_EDIT_ARTICLE_FAIL (line 23) | ERROR_EDIT_ARTICLE_FAIL = 10015
constant ERROR_COUNT_ARTICLE_FAIL (line 24) | ERROR_COUNT_ARTICLE_FAIL = 10016
constant ERROR_GET_ARTICLES_FAIL (line 25) | ERROR_GET_ARTICLES_FAIL = 10017
constant ERROR_GET_ARTICLE_FAIL (line 26) | ERROR_GET_ARTICLE_FAIL = 10018
constant ERROR_GEN_ARTICLE_POSTER_FAIL (line 27) | ERROR_GEN_ARTICLE_POSTER_FAIL = 10019
constant ERROR_AUTH_CHECK_TOKEN_FAIL (line 29) | ERROR_AUTH_CHECK_TOKEN_FAIL = 20001
constant ERROR_AUTH_CHECK_TOKEN_TIMEOUT (line 30) | ERROR_AUTH_CHECK_TOKEN_TIMEOUT = 20002
constant ERROR_AUTH_TOKEN (line 31) | ERROR_AUTH_TOKEN = 20003
constant ERROR_AUTH (line 32) | ERROR_AUTH = 20004
constant ERROR_UPLOAD_SAVE_IMAGE_FAIL (line 34) | ERROR_UPLOAD_SAVE_IMAGE_FAIL = 30001
constant ERROR_UPLOAD_CHECK_IMAGE_FAIL (line 35) | ERROR_UPLOAD_CHECK_IMAGE_FAIL = 30002
constant ERROR_UPLOAD_CHECK_IMAGE_FORMAT (line 36) | ERROR_UPLOAD_CHECK_IMAGE_FORMAT = 30003
FILE: pkg/e/msg.go
function GetMsg (line 36) | func GetMsg(code int) string {
FILE: pkg/export/excel.go
constant EXT (line 5) | EXT = ".xlsx"
function GetExcelFullUrl (line 8) | func GetExcelFullUrl(name string) string {
function GetExcelPath (line 13) | func GetExcelPath() string {
function GetExcelFullPath (line 18) | func GetExcelFullPath() string {
FILE: pkg/file/file.go
function GetSize (line 12) | func GetSize(f multipart.File) (int, error) {
function GetExt (line 19) | func GetExt(fileName string) string {
function CheckNotExist (line 24) | func CheckNotExist(src string) bool {
function CheckPermission (line 31) | func CheckPermission(src string) bool {
function IsNotExistMkDir (line 38) | func IsNotExistMkDir(src string) error {
function MkDir (line 49) | func MkDir(src string) error {
function Open (line 59) | func Open(name string, flag int, perm os.FileMode) (*os.File, error) {
function MustOpen (line 69) | func MustOpen(fileName, filePath string) (*os.File, error) {
FILE: pkg/gredis/redis.go
function Setup (line 15) | func Setup() error {
function Set (line 43) | func Set(key string, data interface{}, time int) error {
function Exists (line 66) | func Exists(key string) bool {
function Get (line 79) | func Get(key string) ([]byte, error) {
function Delete (line 92) | func Delete(key string) (bool, error) {
function LikeDeletes (line 100) | func LikeDeletes(key string) error {
FILE: pkg/logging/file.go
function getLogFilePath (line 11) | func getLogFilePath() string {
function getLogFileName (line 16) | func getLogFileName() string {
FILE: pkg/logging/log.go
type Level (line 12) | type Level
constant DEBUG (line 26) | DEBUG Level = iota
constant INFO (line 27) | INFO
constant WARNING (line 28) | WARNING
constant ERROR (line 29) | ERROR
constant FATAL (line 30) | FATAL
function Setup (line 34) | func Setup() {
function Debug (line 47) | func Debug(v ...interface{}) {
function Info (line 53) | func Info(v ...interface{}) {
function Warn (line 59) | func Warn(v ...interface{}) {
function Error (line 65) | func Error(v ...interface{}) {
function Fatal (line 71) | func Fatal(v ...interface{}) {
function setPrefix (line 77) | func setPrefix(level Level) {
FILE: pkg/qrcode/qrcode.go
type QrCode (line 14) | type QrCode struct
method GetQrCodeExt (line 60) | func (q *QrCode) GetQrCodeExt() string {
method Encode (line 65) | func (q *QrCode) Encode(path string) (string, string, error) {
constant EXT_JPG (line 24) | EXT_JPG = ".jpg"
function NewQrCode (line 28) | func NewQrCode(url string, width, height int, level qr.ErrorCorrectionLe...
function GetQrCodePath (line 40) | func GetQrCodePath() string {
function GetQrCodeFullPath (line 45) | func GetQrCodeFullPath() string {
function GetQrCodeFullUrl (line 50) | func GetQrCodeFullUrl(name string) string {
function GetQrCodeFileName (line 55) | func GetQrCodeFileName(value string) string {
FILE: pkg/setting/setting.go
type App (line 10) | type App struct
type Server (line 33) | type Server struct
type Database (line 42) | type Database struct
type Redis (line 53) | type Redis struct
function Setup (line 66) | func Setup() {
function mapTo (line 85) | func mapTo(section string, v interface{}) {
FILE: pkg/upload/image.go
function GetImageFullUrl (line 18) | func GetImageFullUrl(name string) string {
function GetImageName (line 23) | func GetImageName(name string) string {
function GetImagePath (line 32) | func GetImagePath() string {
function GetImageFullPath (line 37) | func GetImageFullPath() string {
function CheckImageExt (line 42) | func CheckImageExt(fileName string) bool {
function CheckImageSize (line 54) | func CheckImageSize(f multipart.File) bool {
function CheckImage (line 66) | func CheckImage(src string) error {
FILE: pkg/util/jwt.go
type Claims (line 11) | type Claims struct
function GenerateToken (line 18) | func GenerateToken(username, password string) (string, error) {
function ParseToken (line 38) | func ParseToken(token string) (*Claims, error) {
FILE: pkg/util/md5.go
function EncodeMD5 (line 9) | func EncodeMD5(value string) string {
FILE: pkg/util/pagination.go
function GetPage (line 11) | func GetPage(c *gin.Context) int {
FILE: pkg/util/util.go
function Setup (line 6) | func Setup() {
FILE: routers/api/auth.go
type auth (line 15) | type auth struct
function GetAuth (line 27) | func GetAuth(c *gin.Context) {
FILE: routers/api/upload.go
function UploadImage (line 20) | func UploadImage(c *gin.Context) {
FILE: routers/api/v1/article.go
function GetArticle (line 26) | func GetArticle(c *gin.Context) {
function GetArticles (line 66) | func GetArticles(c *gin.Context) {
type AddArticleForm (line 114) | type AddArticleForm struct
function AddArticle (line 135) | func AddArticle(c *gin.Context) {
type EditArticleForm (line 176) | type EditArticleForm struct
function EditArticle (line 199) | func EditArticle(c *gin.Context) {
function DeleteArticle (line 258) | func DeleteArticle(c *gin.Context) {
constant QRCODE_URL (line 291) | QRCODE_URL = "https://github.com/EDDYCJY/blog#gin%E7%B3%BB%E5%88%97%E7%9...
function GenerateArticlePoster (line 294) | func GenerateArticlePoster(c *gin.Context) {
FILE: routers/api/v1/tag.go
function GetTags (line 26) | func GetTags(c *gin.Context) {
type AddTagForm (line 58) | type AddTagForm struct
function AddTag (line 72) | func AddTag(c *gin.Context) {
type EditTagForm (line 108) | type EditTagForm struct
function EditTag (line 124) | func EditTag(c *gin.Context) {
function DeleteTag (line 169) | func DeleteTag(c *gin.Context) {
function ExportTag (line 207) | func ExportTag(c *gin.Context) {
function ImportTag (line 238) | func ImportTag(c *gin.Context) {
FILE: routers/router.go
function InitRouter (line 21) | func InitRouter() *gin.Engine {
FILE: service/article_service/article.go
type Article (line 12) | type Article struct
method Add (line 27) | func (a *Article) Add() error {
method Edit (line 45) | func (a *Article) Edit() error {
method Get (line 57) | func (a *Article) Get() (*models.Article, error) {
method GetAll (line 81) | func (a *Article) GetAll() ([]*models.Article, error) {
method Delete (line 113) | func (a *Article) Delete() error {
method ExistByID (line 117) | func (a *Article) ExistByID() (bool, error) {
method Count (line 121) | func (a *Article) Count() (int, error) {
method getMaps (line 125) | func (a *Article) getMaps() map[string]interface{} {
FILE: service/article_service/article_poster.go
type ArticlePoster (line 17) | type ArticlePoster struct
method CheckMergedImage (line 35) | func (a *ArticlePoster) CheckMergedImage(path string) bool {
method OpenMergedImage (line 43) | func (a *ArticlePoster) OpenMergedImage(path string) (*os.File, error) {
function NewArticlePoster (line 23) | func NewArticlePoster(posterName string, article *Article, qr *qrcode.Qr...
function GetPosterFlag (line 31) | func GetPosterFlag() string {
type ArticlePosterBg (line 52) | type ArticlePosterBg struct
method DrawPoster (line 96) | func (a *ArticlePosterBg) DrawPoster(d *DrawText, fontName string) err...
method Generate (line 136) | func (a *ArticlePosterBg) Generate() (string, string, error) {
type Rect (line 59) | type Rect struct
type Pt (line 67) | type Pt struct
function NewArticlePosterBg (line 72) | func NewArticlePosterBg(name string, ap *ArticlePoster, rect *Rect, pt *...
type DrawText (line 81) | type DrawText struct
FILE: service/auth_service/auth.go
type Auth (line 5) | type Auth struct
method Check (line 10) | func (a *Auth) Check() (bool, error) {
FILE: service/cache_service/article.go
type Article (line 10) | type Article struct
method GetArticleKey (line 19) | func (a *Article) GetArticleKey() string {
method GetArticlesKey (line 23) | func (a *Article) GetArticlesKey() string {
FILE: service/cache_service/tag.go
type Tag (line 10) | type Tag struct
method GetTagsKey (line 19) | func (t *Tag) GetTagsKey() string {
FILE: service/tag_service/tag.go
type Tag (line 20) | type Tag struct
method ExistByName (line 31) | func (t *Tag) ExistByName() (bool, error) {
method ExistByID (line 35) | func (t *Tag) ExistByID() (bool, error) {
method Add (line 39) | func (t *Tag) Add() error {
method Edit (line 43) | func (t *Tag) Edit() error {
method Delete (line 54) | func (t *Tag) Delete() error {
method Count (line 58) | func (t *Tag) Count() (int, error) {
method GetAll (line 62) | func (t *Tag) GetAll() ([]models.Tag, error) {
method Export (line 93) | func (t *Tag) Export() (string, error) {
method Import (line 148) | func (t *Tag) Import(r io.Reader) error {
method getMaps (line 169) | func (t *Tag) getMaps() map[string]interface{} {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/cell.go
constant STCellFormulaTypeArray (line 14) | STCellFormulaTypeArray = "array"
constant STCellFormulaTypeDataTable (line 16) | STCellFormulaTypeDataTable = "dataTable"
constant STCellFormulaTypeNormal (line 18) | STCellFormulaTypeNormal = "normal"
constant STCellFormulaTypeShared (line 20) | STCellFormulaTypeShared = "shared"
method mergeCellsParser (line 25) | func (f *File) mergeCellsParser(xlsx *xlsxWorksheet, axis string) string {
method SetCellValue (line 61) | func (f *File) SetCellValue(sheet, axis string, value interface{}) {
method setCellIntValue (line 87) | func (f *File) setCellIntValue(sheet, axis string, value interface{}) {
method SetCellBool (line 116) | func (f *File) SetCellBool(sheet, axis string, value bool) {
method GetCellValue (line 146) | func (f *File) GetCellValue(sheet, axis string) string {
method formattedValue (line 180) | func (f *File) formattedValue(s int, v string) string {
method GetCellStyle (line 194) | func (f *File) GetCellStyle(sheet, axis string) int {
method GetCellFormula (line 216) | func (f *File) GetCellFormula(sheet, axis string) string {
function getSharedForumula (line 259) | func getSharedForumula(xlsx *xlsxWorksheet, si string) string {
method SetCellFormula (line 281) | func (f *File) SetCellFormula(sheet, axis, formula string) {
method SetCellHyperLink (line 322) | func (f *File) SetCellHyperLink(sheet, axis, link, linkType string) {
method GetCellHyperLink (line 352) | func (f *File) GetCellHyperLink(sheet, axis string) (bool, string) {
method MergeCell (line 379) | func (f *File) MergeCell(sheet, hcell, vcell string) {
method SetCellInt (line 434) | func (f *File) SetCellInt(sheet, axis string, value int) {
method prepareCellStyle (line 458) | func (f *File) prepareCellStyle(xlsx *xlsxWorksheet, col, style int) int {
method SetCellStr (line 471) | func (f *File) SetCellStr(sheet, axis, value string) {
method SetCellDefault (line 507) | func (f *File) SetCellDefault(sheet, axis, value string) {
method SetSheetRow (line 535) | func (f *File) SetSheetRow(sheet, axis string, slice interface{}) {
function checkCellInArea (line 572) | func checkCellInArea(cell, area string) bool {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/chart.go
constant Bar (line 12) | Bar = "bar"
constant BarStacked (line 13) | BarStacked = "barStacked"
constant BarPercentStacked (line 14) | BarPercentStacked = "barPercentStacked"
constant Bar3DClustered (line 15) | Bar3DClustered = "bar3DClustered"
constant Bar3DStacked (line 16) | Bar3DStacked = "bar3DStacked"
constant Bar3DPercentStacked (line 17) | Bar3DPercentStacked = "bar3DPercentStacked"
constant Col (line 18) | Col = "col"
constant ColStacked (line 19) | ColStacked = "colStacked"
constant ColPercentStacked (line 20) | ColPercentStacked = "colPercentStacked"
constant Col3DClustered (line 21) | Col3DClustered = "col3DClustered"
constant Col3D (line 22) | Col3D = "col3D"
constant Col3DStacked (line 23) | Col3DStacked = "col3DStacked"
constant Col3DPercentStacked (line 24) | Col3DPercentStacked = "col3DPercentStacked"
constant Doughnut (line 25) | Doughnut = "doughnut"
constant Line (line 26) | Line = "line"
constant Pie (line 27) | Pie = "pie"
constant Pie3D (line 28) | Pie3D = "pie3D"
constant Radar (line 29) | Radar = "radar"
constant Scatter (line 30) | Scatter = "scatter"
function parseFormatChartSet (line 195) | func parseFormatChartSet(formatSet string) (*formatChart, error) {
method AddChart (line 360) | func (f *File) AddChart(sheet, cell, format string) error {
method countCharts (line 382) | func (f *File) countCharts() int {
method prepareDrawing (line 394) | func (f *File) prepareDrawing(xlsx *xlsxWorksheet, drawingID int, sheet,...
method addChart (line 411) | func (f *File) addChart(formatSet *formatChart) {
method drawBaseChart (line 567) | func (f *File) drawBaseChart(formatSet *formatChart) *cPlotArea {
method drawDoughnutChart (line 664) | func (f *File) drawDoughnutChart(formatSet *formatChart) *cPlotArea {
method drawLineChart (line 678) | func (f *File) drawLineChart(formatSet *formatChart) *cPlotArea {
method drawPieChart (line 704) | func (f *File) drawPieChart(formatSet *formatChart) *cPlotArea {
method drawPie3DChart (line 717) | func (f *File) drawPie3DChart(formatSet *formatChart) *cPlotArea {
method drawRadarChart (line 730) | func (f *File) drawRadarChart(formatSet *formatChart) *cPlotArea {
method drawScatterChart (line 753) | func (f *File) drawScatterChart(formatSet *formatChart) *cPlotArea {
method drawChartSeries (line 776) | func (f *File) drawChartSeries(formatSet *formatChart) *[]cSer {
method drawChartSeriesSpPr (line 802) | func (f *File) drawChartSeriesSpPr(i int, formatSet *formatChart) *cSpPr {
method drawChartSeriesDPt (line 824) | func (f *File) drawChartSeriesDPt(i int, formatSet *formatChart) []*cDPt {
method drawChartSeriesCat (line 853) | func (f *File) drawChartSeriesCat(v formatChartSeries, formatSet *format...
method drawChartSeriesVal (line 865) | func (f *File) drawChartSeriesVal(v formatChartSeries, formatSet *format...
method drawChartSeriesMarker (line 877) | func (f *File) drawChartSeriesMarker(i int, formatSet *formatChart) *cMa...
method drawChartSeriesXVal (line 903) | func (f *File) drawChartSeriesXVal(v formatChartSeries, formatSet *forma...
method drawChartSeriesYVal (line 915) | func (f *File) drawChartSeriesYVal(v formatChartSeries, formatSet *forma...
method drawChartDLbls (line 927) | func (f *File) drawChartDLbls(formatSet *formatChart) *cDLbls {
method drawChartSeriesDLbls (line 941) | func (f *File) drawChartSeriesDLbls(formatSet *formatChart) *cDLbls {
method drawPlotAreaCatAx (line 948) | func (f *File) drawPlotAreaCatAx(formatSet *formatChart) []*cAxs {
method drawPlotAreaValAx (line 987) | func (f *File) drawPlotAreaValAx(formatSet *formatChart) []*cAxs {
method drawPlotAreaSpPr (line 1023) | func (f *File) drawPlotAreaSpPr() *cSpPr {
method drawPlotAreaTxPr (line 1042) | func (f *File) drawPlotAreaTxPr() *cTxPr {
method drawingParser (line 1084) | func (f *File) drawingParser(drawingXML string, content *xlsxWsDr) int {
method addDrawingChart (line 1110) | func (f *File) addDrawingChart(sheet, drawingXML, cell string, width, he...
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/col.go
constant defaultColWidthPixels (line 12) | defaultColWidthPixels float64 = 64
constant defaultRowHeightPixels (line 13) | defaultRowHeightPixels float64 = 20
constant EMU (line 14) | EMU int = 9525
method GetColVisible (line 23) | func (f *File) GetColVisible(sheet, column string) bool {
method SetColVisible (line 43) | func (f *File) SetColVisible(sheet, column string, visible bool) {
method GetColOutlineLevel (line 76) | func (f *File) GetColOutlineLevel(sheet, column string) uint8 {
method SetColOutlineLevel (line 97) | func (f *File) SetColOutlineLevel(sheet, column string, level uint8) {
method SetColWidth (line 134) | func (f *File) SetColWidth(sheet, startcol, endcol string, width float64) {
method positionObjectPixels (line 208) | func (f *File) positionObjectPixels(sheet string, colStart, rowStart, x1...
method getColWidth (line 264) | func (f *File) getColWidth(sheet string, col int) int {
method GetColWidth (line 283) | func (f *File) GetColWidth(sheet, column string) float64 {
method InsertCol (line 306) | func (f *File) InsertCol(sheet, column string) {
method RemoveCol (line 316) | func (f *File) RemoveCol(sheet, column string) {
function completeCol (line 332) | func completeCol(xlsx *xlsxWorksheet, row, cell int) {
function convertColWidthToPixels (line 353) | func convertColWidthToPixels(width float64) float64 {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/comment.go
function parseFormatCommentsSet (line 12) | func parseFormatCommentsSet(formatSet string) (*formatComment, error) {
method AddComment (line 28) | func (f *File) AddComment(sheet, cell, format string) error {
method addDrawingVML (line 59) | func (f *File) addDrawingVML(commentID int, drawingVML, cell string) {
method addComment (line 154) | func (f *File) addComment(commentsXML, cell string, formatSet *formatCom...
method countComments (line 214) | func (f *File) countComments() int {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/date.go
function timeToUTCTime (line 12) | func timeToUTCTime(t time.Time) time.Time {
function timeToExcelTime (line 17) | func timeToExcelTime(t time.Time) float64 {
function shiftJulianToNoon (line 22) | func shiftJulianToNoon(julianDays, julianFraction float64) (float64, flo...
function fractionOfADay (line 39) | func fractionOfADay(fraction float64) (hours, minutes, seconds, nanoseco...
function julianDateToGregorianTime (line 59) | func julianDateToGregorianTime(part1, part2 float64) time.Time {
function doTheFliegelAndVanFlandernAlgorithm (line 76) | func doTheFliegelAndVanFlandernAlgorithm(jd int) (day, month, year int) {
function timeFromExcelTime (line 92) | func timeFromExcelTime(excelTime float64, date1904 bool) time.Time {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/excelize.go
type File (line 15) | type File struct
method setDefaultTimeStyle (line 75) | func (f *File) setDefaultTimeStyle(sheet, axis string, format int) {
method workSheetReader (line 84) | func (f *File) workSheetReader(sheet string) *xlsxWorksheet {
method UpdateLinkedValue (line 169) | func (f *File) UpdateLinkedValue() {
method adjustHelper (line 194) | func (f *File) adjustHelper(sheet string, column, row, offset int) {
method adjustColDimensions (line 207) | func (f *File) adjustColDimensions(xlsx *xlsxWorksheet, column, offset...
method adjustRowDimensions (line 223) | func (f *File) adjustRowDimensions(xlsx *xlsxWorksheet, rowIndex, offs...
method adjustHyperlinks (line 243) | func (f *File) adjustHyperlinks(sheet string, column, rowIndex, offset...
method adjustMergeCellsHelper (line 283) | func (f *File) adjustMergeCellsHelper(xlsx *xlsxWorksheet, column, row...
method adjustMergeCells (line 324) | func (f *File) adjustMergeCells(xlsx *xlsxWorksheet, column, rowIndex,...
method adjustAutoFilter (line 345) | func (f *File) adjustAutoFilter(xlsx *xlsxWorksheet, column, rowIndex,...
method adjustAutoFilterHelper (line 379) | func (f *File) adjustAutoFilterHelper(xlsx *xlsxWorksheet, column, row...
function OpenFile (line 31) | func OpenFile(filename string) (*File, error) {
function OpenReader (line 46) | func OpenReader(r io.Reader) (*File, error) {
function checkSheet (line 108) | func checkSheet(xlsx *xlsxWorksheet) {
function replaceWorkSheetsRelationshipsNameSpaceBytes (line 137) | func replaceWorkSheetsRelationshipsNameSpaceBytes(workbookMarshal []byte...
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/file.go
function NewFile (line 16) | func NewFile() *File {
method Save (line 43) | func (f *File) Save() error {
method SaveAs (line 52) | func (f *File) SaveAs(name string) error {
method Write (line 62) | func (f *File) Write(w io.Writer) error {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/lib.go
function ReadZipReader (line 15) | func ReadZipReader(r *zip.Reader) (map[string][]byte, int, error) {
method readXML (line 30) | func (f *File) readXML(name string) []byte {
method saveFileList (line 39) | func (f *File) saveFileList(name string, content []byte) {
function readFile (line 47) | func readFile(file *zip.File) []byte {
function ToAlphaString (line 63) | func ToAlphaString(value int) string {
function TitleToNumber (line 83) | func TitleToNumber(s string) int {
function letterOnlyMapF (line 99) | func letterOnlyMapF(rune rune) rune {
function intOnlyMapF (line 111) | func intOnlyMapF(rune rune) rune {
function deepCopy (line 121) | func deepCopy(dst, src interface{}) error {
function boolPtr (line 130) | func boolPtr(b bool) *bool { return &b }
function defaultTrue (line 133) | func defaultTrue(b *bool) bool {
function axisLowerOrEqualThan (line 152) | func axisLowerOrEqualThan(axis1, axis2 string) bool {
function getCellColRow (line 169) | func getCellColRow(cell string) (col, row string) {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/picture.go
function parseFormatPictureSet (line 19) | func parseFormatPictureSet(formatSet string) (*formatPicture, error) {
method AddPicture (line 79) | func (f *File) AddPicture(sheet, cell, picture, format string) error {
method addSheetRelationships (line 122) | func (f *File) addSheetRelationships(sheet, relType, target, targetMode ...
method deleteSheetRelationships (line 155) | func (f *File) deleteSheetRelationships(sheet, rID string) {
method addSheetLegacyDrawing (line 174) | func (f *File) addSheetLegacyDrawing(sheet string, rID int) {
method addSheetDrawing (line 183) | func (f *File) addSheetDrawing(sheet string, rID int) {
method addSheetPicture (line 192) | func (f *File) addSheetPicture(sheet string, rID int) {
method countDrawings (line 201) | func (f *File) countDrawings() int {
method addDrawingPicture (line 214) | func (f *File) addDrawingPicture(sheet, drawingXML, cell, file string, w...
method addDrawingRelationships (line 269) | func (f *File) addDrawingRelationships(index int, relType, target, targe...
method countMedia (line 297) | func (f *File) countMedia() int {
method addMedia (line 309) | func (f *File) addMedia(file, ext string) {
method setContentTypePartImageExtensions (line 318) | func (f *File) setContentTypePartImageExtensions() {
method setContentTypePartVMLExtensions (line 339) | func (f *File) setContentTypePartVMLExtensions() {
method addContentTypePart (line 357) | func (f *File) addContentTypePart(index int, contentType string) {
method getSheetRelationshipsTargetByID (line 393) | func (f *File) getSheetRelationshipsTargetByID(sheet, rID string) string {
method GetPicture (line 427) | func (f *File) GetPicture(sheet, cell string) (string, []byte) {
method getDrawingRelationships (line 468) | func (f *File) getDrawingRelationships(rels, rID string) *xlsxWorkbookRe...
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/rows.go
method GetRows (line 23) | func (f *File) GetRows(sheet string) [][]string {
type Rows (line 73) | type Rows struct
method Next (line 81) | func (rows *Rows) Next() bool {
method Error (line 102) | func (rows *Rows) Error() error {
method Columns (line 107) | func (rows *Rows) Columns() []string {
type ErrSheetNotExist (line 125) | type ErrSheetNotExist struct
method Error (line 129) | func (err ErrSheetNotExist) Error() string {
method Rows (line 143) | func (f *File) Rows(sheet string) (*Rows, error) {
method getTotalRowsCols (line 161) | func (f *File) getTotalRowsCols(name string) (int, int) {
method SetRowHeight (line 196) | func (f *File) SetRowHeight(sheet string, row int, height float64) {
method getRowHeight (line 207) | func (f *File) getRowHeight(sheet string, row int) int {
method GetRowHeight (line 223) | func (f *File) GetRowHeight(sheet string, row int) float64 {
method sharedStringsReader (line 236) | func (f *File) sharedStringsReader() *xlsxSST {
method getValueFrom (line 251) | func (xlsx *xlsxC) getValueFrom(f *File, d *xlsxSST) (string, error) {
method SetRowVisible (line 278) | func (f *File) SetRowVisible(sheet string, rowIndex int, visible bool) {
method GetRowVisible (line 296) | func (f *File) GetRowVisible(sheet string, rowIndex int) bool {
method SetRowOutlineLevel (line 310) | func (f *File) SetRowOutlineLevel(sheet string, rowIndex int, level uint...
method GetRowOutlineLevel (line 324) | func (f *File) GetRowOutlineLevel(sheet string, rowIndex int) uint8 {
method RemoveRow (line 337) | func (f *File) RemoveRow(sheet string, row int) {
method InsertRow (line 357) | func (f *File) InsertRow(sheet string, row int) {
function checkRow (line 389) | func checkRow(xlsx *xlsxWorksheet) {
function completeRow (line 422) | func completeRow(xlsx *xlsxWorksheet, row, cell int) {
function convertRowHeightToPixels (line 454) | func convertRowHeightToPixels(height float64) float64 {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/shape.go
function parseFormatShapeSet (line 12) | func parseFormatShapeSet(formatSet string) (*formatShape, error) {
method AddShape (line 248) | func (f *File) AddShape(sheet, cell, format string) error {
method addDrawingShape (line 277) | func (f *File) addDrawingShape(sheet, drawingXML, cell string, formatSet...
function setShapeRef (line 402) | func setShapeRef(color string, i int) *aRef {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/sheet.go
method NewSheet (line 18) | func (f *File) NewSheet(name string) int {
method contentTypesReader (line 39) | func (f *File) contentTypesReader() *xlsxTypes {
method contentTypesWriter (line 50) | func (f *File) contentTypesWriter() {
method workbookReader (line 59) | func (f *File) workbookReader() *xlsxWorkbook {
method workbookWriter (line 70) | func (f *File) workbookWriter() {
method worksheetWriter (line 79) | func (f *File) worksheetWriter() {
function trimCell (line 96) | func trimCell(column []xlsxC) []xlsxC {
method setContentTypes (line 109) | func (f *File) setContentTypes(index int) {
method setSheet (line 118) | func (f *File) setSheet(index int, name string) {
method setWorkbook (line 131) | func (f *File) setWorkbook(name string, rid int) {
method workbookRelsReader (line 142) | func (f *File) workbookRelsReader() *xlsxWorkbookRels {
method workbookRelsWriter (line 153) | func (f *File) workbookRelsWriter() {
method addXlsxWorkbookRels (line 161) | func (f *File) addXlsxWorkbookRels(sheet int) int {
method setAppXML (line 187) | func (f *File) setAppXML() {
function replaceRelationshipsNameSpaceBytes (line 198) | func replaceRelationshipsNameSpaceBytes(workbookMarshal []byte) []byte {
method SetActiveSheet (line 208) | func (f *File) SetActiveSheet(index int) {
method GetActiveSheetIndex (line 242) | func (f *File) GetActiveSheetIndex() int {
method SetSheetName (line 267) | func (f *File) SetSheetName(oldName, newName string) {
method GetSheetName (line 283) | func (f *File) GetSheetName(index int) string {
method GetSheetIndex (line 302) | func (f *File) GetSheetIndex(name string) int {
method GetSheetMap (line 329) | func (f *File) GetSheetMap() map[int]string {
method getSheetMap (line 346) | func (f *File) getSheetMap() map[string]string {
method SetSheetBackground (line 356) | func (f *File) SetSheetBackground(sheet, picture string) error {
method DeleteSheet (line 379) | func (f *File) DeleteSheet(name string) {
method deleteSheetFromWorkbookRels (line 401) | func (f *File) deleteSheetFromWorkbookRels(rID string) string {
method deleteSheetFromContentTypes (line 414) | func (f *File) deleteSheetFromContentTypes(target string) {
method CopySheet (line 432) | func (f *File) CopySheet(from, to int) error {
method copySheet (line 441) | func (f *File) copySheet(from, to int) error {
method SetSheetVisible (line 478) | func (f *File) SetSheetVisible(name string, visible bool) {
function parseFormatPanesSet (line 508) | func parseFormatPanesSet(formatSet string) (*formatPanes, error) {
method SetPanes (line 599) | func (f *File) SetPanes(sheet, panes string) {
method GetSheetVisible (line 633) | func (f *File) GetSheetVisible(name string) bool {
function trimSheetName (line 648) | func trimSheetName(name string) string {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/sheetpr.go
type SheetPrOption (line 4) | type SheetPrOption interface
type SheetPrOptionPtr (line 9) | type SheetPrOptionPtr interface
type CodeName (line 16) | type CodeName
method setSheetPrOption (line 27) | func (o CodeName) setSheetPrOption(pr *xlsxSheetPr) {
method getSheetPrOption (line 31) | func (o *CodeName) getSheetPrOption(pr *xlsxSheetPr) {
type EnableFormatConditionsCalculation (line 18) | type EnableFormatConditionsCalculation
method setSheetPrOption (line 39) | func (o EnableFormatConditionsCalculation) setSheetPrOption(pr *xlsxSh...
method getSheetPrOption (line 43) | func (o *EnableFormatConditionsCalculation) getSheetPrOption(pr *xlsxS...
type Published (line 20) | type Published
method setSheetPrOption (line 51) | func (o Published) setSheetPrOption(pr *xlsxSheetPr) {
method getSheetPrOption (line 55) | func (o *Published) getSheetPrOption(pr *xlsxSheetPr) {
type FitToPage (line 22) | type FitToPage
method setSheetPrOption (line 63) | func (o FitToPage) setSheetPrOption(pr *xlsxSheetPr) {
method getSheetPrOption (line 73) | func (o *FitToPage) getSheetPrOption(pr *xlsxSheetPr) {
type AutoPageBreaks (line 24) | type AutoPageBreaks
method setSheetPrOption (line 82) | func (o AutoPageBreaks) setSheetPrOption(pr *xlsxSheetPr) {
method getSheetPrOption (line 92) | func (o *AutoPageBreaks) getSheetPrOption(pr *xlsxSheetPr) {
method SetSheetPrOptions (line 109) | func (f *File) SetSheetPrOptions(name string, opts ...SheetPrOption) err...
method GetSheetPrOptions (line 131) | func (f *File) GetSheetPrOptions(name string, opts ...SheetPrOptionPtr) ...
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/sheetview.go
type SheetViewOption (line 6) | type SheetViewOption interface
type SheetViewOptionPtr (line 11) | type SheetViewOptionPtr interface
type DefaultGridColor (line 18) | type DefaultGridColor
method setSheetViewOption (line 41) | func (o DefaultGridColor) setSheetViewOption(view *xlsxSheetView) {
method getSheetViewOption (line 45) | func (o *DefaultGridColor) getSheetViewOption(view *xlsxSheetView) {
type RightToLeft (line 20) | type RightToLeft
method setSheetViewOption (line 49) | func (o RightToLeft) setSheetViewOption(view *xlsxSheetView) {
method getSheetViewOption (line 53) | func (o *RightToLeft) getSheetViewOption(view *xlsxSheetView) {
type ShowFormulas (line 22) | type ShowFormulas
method setSheetViewOption (line 57) | func (o ShowFormulas) setSheetViewOption(view *xlsxSheetView) {
method getSheetViewOption (line 61) | func (o *ShowFormulas) getSheetViewOption(view *xlsxSheetView) {
type ShowGridLines (line 24) | type ShowGridLines
method setSheetViewOption (line 65) | func (o ShowGridLines) setSheetViewOption(view *xlsxSheetView) {
method getSheetViewOption (line 69) | func (o *ShowGridLines) getSheetViewOption(view *xlsxSheetView) {
type ShowRowColHeaders (line 26) | type ShowRowColHeaders
method setSheetViewOption (line 73) | func (o ShowRowColHeaders) setSheetViewOption(view *xlsxSheetView) {
method getSheetViewOption (line 77) | func (o *ShowRowColHeaders) getSheetViewOption(view *xlsxSheetView) {
type ZoomScale (line 28) | type ZoomScale
method setSheetViewOption (line 81) | func (o ZoomScale) setSheetViewOption(view *xlsxSheetView) {
method getSheetViewOption (line 88) | func (o *ZoomScale) getSheetViewOption(view *xlsxSheetView) {
method getSheetView (line 93) | func (f *File) getSheetView(sheetName string, viewIndex int) (*xlsxSheet...
method SetSheetViewOptions (line 118) | func (f *File) SetSheetViewOptions(name string, viewIndex int, opts ...S...
method GetSheetViewOptions (line 142) | func (f *File) GetSheetViewOptions(name string, viewIndex int, opts ...S...
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/styles.go
function formatToString (line 834) | func formatToString(i int, v string) string {
function formatToInt (line 840) | func formatToInt(i int, v string) string {
function formatToFloat (line 850) | func formatToFloat(i int, v string) string {
function formatToA (line 860) | func formatToA(i int, v string) string {
function formatToB (line 875) | func formatToB(i int, v string) string {
function formatToC (line 888) | func formatToC(i int, v string) string {
function formatToD (line 899) | func formatToD(i int, v string) string {
function formatToE (line 910) | func formatToE(i int, v string) string {
function parseTime (line 929) | func parseTime(i int, v string) string {
function is12HourTime (line 982) | func is12HourTime(format string) bool {
method stylesReader (line 988) | func (f *File) stylesReader() *xlsxStyleSheet {
method styleSheetWriter (line 999) | func (f *File) styleSheetWriter() {
function parseFormatStyleSet (line 1008) | func parseFormatStyleSet(style string) (*formatStyle, error) {
method NewStyle (line 1877) | func (f *File) NewStyle(style string) (int, error) {
method NewConditionalStyle (line 1913) | func (f *File) NewConditionalStyle(style string) (int, error) {
function setFont (line 1939) | func setFont(formatStyle *formatStyle) *font {
function setNumFmt (line 1968) | func setNumFmt(style *xlsxStyleSheet, formatStyle *formatStyle) int {
function setCustomNumFmt (line 2015) | func setCustomNumFmt(style *xlsxStyleSheet, formatStyle *formatStyle) int {
function setLangNumFmt (line 2033) | func setLangNumFmt(style *xlsxStyleSheet, formatStyle *formatStyle) int {
function setFills (line 2061) | func setFills(formatStyle *formatStyle, fg bool) *xlsxFill {
function setAlignment (line 2143) | func setAlignment(formatStyle *formatStyle) *xlsxAlignment {
function setProtection (line 2161) | func setProtection(formatStyle *formatStyle) *xlsxProtection {
function setBorders (line 2172) | func setBorders(formatStyle *formatStyle) *xlsxBorder {
function setCellXfs (line 2224) | func setCellXfs(style *xlsxStyleSheet, fontID, numFmtID, fillID, borderI...
method SetCellStyle (line 2313) | func (f *File) SetCellStyle(sheet, hcell, vcell string, styleID int) {
method SetConditionalFormat (line 2565) | func (f *File) SetConditionalFormat(sheet, area, formatSet string) error {
function drawCondFmtCellIs (line 2612) | func drawCondFmtCellIs(p int, ct string, format *formatConditional) *xls...
function drawCondFmtTop10 (line 2635) | func drawCondFmtTop10(p int, ct string, format *formatConditional) *xlsx...
function drawCondFmtAboveAverage (line 2653) | func drawCondFmtAboveAverage(p int, ct string, format *formatConditional...
function drawCondFmtDuplicateUniqueValues (line 2665) | func drawCondFmtDuplicateUniqueValues(p int, ct string, format *formatCo...
function drawCondFmtColorScale (line 2676) | func drawCondFmtColorScale(p int, ct string, format *formatConditional) ...
function drawCondFmtDataBar (line 2700) | func drawCondFmtDataBar(p int, ct string, format *formatConditional) *xl...
function drawConfFmtExp (line 2713) | func drawConfFmtExp(p int, ct string, format *formatConditional) *xlsxCf...
function getPaletteColor (line 2723) | func getPaletteColor(color string) string {
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/table.go
function parseFormatTableSet (line 14) | func parseFormatTableSet(formatSet string) (*formatTable, error) {
method AddTable (line 44) | func (f *File) AddTable(sheet, hcell, vcell, format string) error {
method countTables (line 80) | func (f *File) countTables() int {
method addSheetTable (line 92) | func (f *File) addSheetTable(sheet string, rID int) {
method addTable (line 106) | func (f *File) addTable(sheet, tableXML string, hxAxis, hyAxis, vxAxis, ...
function parseAutoFilterSet (line 162) | func parseAutoFilterSet(formatSet string) (*formatAutoFilter, error) {
method AutoFilter (line 238) | func (f *File) AutoFilter(sheet, hcell, vcell, format string) error {
method autoFilter (line 269) | func (f *File) autoFilter(sheet, ref string, refRange, hxAxis int, forma...
method writeAutoFilter (line 306) | func (f *File) writeAutoFilter(filter *xlsxAutoFilter, exp []int, tokens...
method writeCustomFilter (line 333) | func (f *File) writeCustomFilter(filter *xlsxAutoFilter, operator int, v...
method parseFilterExpression (line 364) | func (f *File) parseFilterExpression(expression string, tokens []string)...
method parseFilterTokens (line 399) | func (f *File) parseFilterTokens(expression string, tokens []string) ([]...
FILE: vendor/github.com/360EntSecGroup-Skylar/excelize/templates.go
constant XMLHeader (line 7) | XMLHeader = "> 32 & 1)
function init (line 52) | func init() {
type CustomFunc (line 64) | type CustomFunc
function AddCustomFunc (line 76) | func AddCustomFunc(name string, f CustomFunc) error {
type ValidFunc (line 86) | type ValidFunc struct
type Funcs (line 92) | type Funcs
method Call (line 95) | func (f Funcs) Call(name string, params ...interface{}) (result []refl...
function isStruct (line 117) | func isStruct(t reflect.Type) bool {
function isStructPtr (line 121) | func isStructPtr(t reflect.Type) bool {
function getValidFuncs (line 125) | func getValidFuncs(f reflect.StructField) (vfs []ValidFunc, err error) {
function getRegFuncs (line 150) | func getRegFuncs(tag, key string) (vfs []ValidFunc, str string, err erro...
function parseFunc (line 171) | func parseFunc(vfunc, key string) (v ValidFunc, err error) {
function numIn (line 221) | func numIn(name string) (num int, err error) {
function trim (line 232) | func trim(name, key string, s []string) (ts []interface{}, err error) {
function parseParam (line 252) | func parseParam(t reflect.Type, s string) (i interface{}, err error) {
function mergeParam (line 293) | func mergeParam(v *Validation, obj interface{}, params []interface{}) []...
FILE: vendor/github.com/astaxie/beego/validation/validation.go
type ValidFormer (line 57) | type ValidFormer interface
type Error (line 62) | type Error struct
method String (line 69) | func (e *Error) String() string {
method Error (line 78) | func (e *Error) Error() string { return e.String() }
type Result (line 82) | type Result struct
method Key (line 88) | func (r *Result) Key(key string) *Result {
method Message (line 96) | func (r *Result) Message(message string, args ...interface{}) *Result {
type Validation (line 108) | type Validation struct
method Clear (line 119) | func (v *Validation) Clear() {
method HasErrors (line 125) | func (v *Validation) HasErrors() bool {
method ErrorMap (line 132) | func (v *Validation) ErrorMap() map[string][]*Error {
method Error (line 137) | func (v *Validation) Error(message string, args ...interface{}) *Result {
method Required (line 147) | func (v *Validation) Required(obj interface{}, key string) *Result {
method Min (line 152) | func (v *Validation) Min(obj interface{}, min int, key string) *Result {
method Max (line 157) | func (v *Validation) Max(obj interface{}, max int, key string) *Result {
method Range (line 162) | func (v *Validation) Range(obj interface{}, min, max int, key string) ...
method MinSize (line 167) | func (v *Validation) MinSize(obj interface{}, min int, key string) *Re...
method MaxSize (line 172) | func (v *Validation) MaxSize(obj interface{}, max int, key string) *Re...
method Length (line 177) | func (v *Validation) Length(obj interface{}, n int, key string) *Result {
method Alpha (line 182) | func (v *Validation) Alpha(obj interface{}, key string) *Result {
method Numeric (line 187) | func (v *Validation) Numeric(obj interface{}, key string) *Result {
method AlphaNumeric (line 192) | func (v *Validation) AlphaNumeric(obj interface{}, key string) *Result {
method Match (line 197) | func (v *Validation) Match(obj interface{}, regex *regexp.Regexp, key ...
method NoMatch (line 202) | func (v *Validation) NoMatch(obj interface{}, regex *regexp.Regexp, ke...
method AlphaDash (line 207) | func (v *Validation) AlphaDash(obj interface{}, key string) *Result {
method Email (line 212) | func (v *Validation) Email(obj interface{}, key string) *Result {
method IP (line 217) | func (v *Validation) IP(obj interface{}, key string) *Result {
method Base64 (line 222) | func (v *Validation) Base64(obj interface{}, key string) *Result {
method Mobile (line 227) | func (v *Validation) Mobile(obj interface{}, key string) *Result {
method Tel (line 232) | func (v *Validation) Tel(obj interface{}, key string) *Result {
method Phone (line 237) | func (v *Validation) Phone(obj interface{}, key string) *Result {
method ZipCode (line 243) | func (v *Validation) ZipCode(obj interface{}, key string) *Result {
method apply (line 247) | func (v *Validation) apply(chk Validator, obj interface{}) *Result {
method AddError (line 282) | func (v *Validation) AddError(key, message string) {
method setError (line 301) | func (v *Validation) setError(err *Error) {
method SetError (line 313) | func (v *Validation) SetError(fieldName string, errMsg string) *Error {
method Check (line 322) | func (v *Validation) Check(obj interface{}, checks ...Validator) *Resu...
method Valid (line 335) | func (v *Validation) Valid(obj interface{}) (b bool, err error) {
method RecursiveValid (line 386) | func (v *Validation) RecursiveValid(objc interface{}) (bool, error) {
FILE: vendor/github.com/astaxie/beego/validation/validators.go
function SetDefaultMessage (line 82) | func SetDefaultMessage(msg map[string]string) {
type Validator (line 93) | type Validator interface
type Required (line 101) | type Required struct
method IsSatisfied (line 106) | func (r Required) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 158) | func (r Required) DefaultMessage() string {
method GetKey (line 163) | func (r Required) GetKey() string {
method GetLimitValue (line 168) | func (r Required) GetLimitValue() interface{} {
type Min (line 173) | type Min struct
method IsSatisfied (line 180) | func (m Min) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 204) | func (m Min) DefaultMessage() string {
method GetKey (line 209) | func (m Min) GetKey() string {
method GetLimitValue (line 214) | func (m Min) GetLimitValue() interface{} {
type Max (line 219) | type Max struct
method IsSatisfied (line 226) | func (m Max) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 250) | func (m Max) DefaultMessage() string {
method GetKey (line 255) | func (m Max) GetKey() string {
method GetLimitValue (line 260) | func (m Max) GetLimitValue() interface{} {
type Range (line 265) | type Range struct
method IsSatisfied (line 273) | func (r Range) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 278) | func (r Range) DefaultMessage() string {
method GetKey (line 283) | func (r Range) GetKey() string {
method GetLimitValue (line 288) | func (r Range) GetLimitValue() interface{} {
type MinSize (line 293) | type MinSize struct
method IsSatisfied (line 299) | func (m MinSize) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 311) | func (m MinSize) DefaultMessage() string {
method GetKey (line 316) | func (m MinSize) GetKey() string {
method GetLimitValue (line 321) | func (m MinSize) GetLimitValue() interface{} {
type MaxSize (line 326) | type MaxSize struct
method IsSatisfied (line 332) | func (m MaxSize) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 344) | func (m MaxSize) DefaultMessage() string {
method GetKey (line 349) | func (m MaxSize) GetKey() string {
method GetLimitValue (line 354) | func (m MaxSize) GetLimitValue() interface{} {
type Length (line 359) | type Length struct
method IsSatisfied (line 365) | func (l Length) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 377) | func (l Length) DefaultMessage() string {
method GetKey (line 382) | func (l Length) GetKey() string {
method GetLimitValue (line 387) | func (l Length) GetLimitValue() interface{} {
type Alpha (line 392) | type Alpha struct
method IsSatisfied (line 397) | func (a Alpha) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 410) | func (a Alpha) DefaultMessage() string {
method GetKey (line 415) | func (a Alpha) GetKey() string {
method GetLimitValue (line 420) | func (a Alpha) GetLimitValue() interface{} {
type Numeric (line 425) | type Numeric struct
method IsSatisfied (line 430) | func (n Numeric) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 443) | func (n Numeric) DefaultMessage() string {
method GetKey (line 448) | func (n Numeric) GetKey() string {
method GetLimitValue (line 453) | func (n Numeric) GetLimitValue() interface{} {
type AlphaNumeric (line 458) | type AlphaNumeric struct
method IsSatisfied (line 463) | func (a AlphaNumeric) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 476) | func (a AlphaNumeric) DefaultMessage() string {
method GetKey (line 481) | func (a AlphaNumeric) GetKey() string {
method GetLimitValue (line 486) | func (a AlphaNumeric) GetLimitValue() interface{} {
type Match (line 491) | type Match struct
method IsSatisfied (line 497) | func (m Match) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 502) | func (m Match) DefaultMessage() string {
method GetKey (line 507) | func (m Match) GetKey() string {
method GetLimitValue (line 512) | func (m Match) GetLimitValue() interface{} {
type NoMatch (line 517) | type NoMatch struct
method IsSatisfied (line 523) | func (n NoMatch) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 528) | func (n NoMatch) DefaultMessage() string {
method GetKey (line 533) | func (n NoMatch) GetKey() string {
method GetLimitValue (line 538) | func (n NoMatch) GetLimitValue() interface{} {
type AlphaDash (line 545) | type AlphaDash struct
method DefaultMessage (line 551) | func (a AlphaDash) DefaultMessage() string {
method GetKey (line 556) | func (a AlphaDash) GetKey() string {
method GetLimitValue (line 561) | func (a AlphaDash) GetLimitValue() interface{} {
type Email (line 568) | type Email struct
method DefaultMessage (line 574) | func (e Email) DefaultMessage() string {
method GetKey (line 579) | func (e Email) GetKey() string {
method GetLimitValue (line 584) | func (e Email) GetLimitValue() interface{} {
type IP (line 591) | type IP struct
method DefaultMessage (line 597) | func (i IP) DefaultMessage() string {
method GetKey (line 602) | func (i IP) GetKey() string {
method GetLimitValue (line 607) | func (i IP) GetLimitValue() interface{} {
type Base64 (line 614) | type Base64 struct
method DefaultMessage (line 620) | func (b Base64) DefaultMessage() string {
method GetKey (line 625) | func (b Base64) GetKey() string {
method GetLimitValue (line 630) | func (b Base64) GetLimitValue() interface{} {
type Mobile (line 638) | type Mobile struct
method DefaultMessage (line 644) | func (m Mobile) DefaultMessage() string {
method GetKey (line 649) | func (m Mobile) GetKey() string {
method GetLimitValue (line 654) | func (m Mobile) GetLimitValue() interface{} {
type Tel (line 662) | type Tel struct
method DefaultMessage (line 668) | func (t Tel) DefaultMessage() string {
method GetKey (line 673) | func (t Tel) GetKey() string {
method GetLimitValue (line 678) | func (t Tel) GetLimitValue() interface{} {
type Phone (line 683) | type Phone struct
method IsSatisfied (line 690) | func (p Phone) IsSatisfied(obj interface{}) bool {
method DefaultMessage (line 695) | func (p Phone) DefaultMessage() string {
method GetKey (line 700) | func (p Phone) GetKey() string {
method GetLimitValue (line 705) | func (p Phone) GetLimitValue() interface{} {
type ZipCode (line 713) | type ZipCode struct
method DefaultMessage (line 719) | func (z ZipCode) DefaultMessage() string {
method GetKey (line 724) | func (z ZipCode) GetKey() string {
method GetLimitValue (line 729) | func (z ZipCode) GetLimitValue() interface{} {
FILE: vendor/github.com/boombuler/barcode/barcode.go
constant TypeAztec (line 6) | TypeAztec = "Aztec"
constant TypeCodabar (line 7) | TypeCodabar = "Codabar"
constant TypeCode128 (line 8) | TypeCode128 = "Code 128"
constant TypeCode39 (line 9) | TypeCode39 = "Code 39"
constant TypeCode93 (line 10) | TypeCode93 = "Code 93"
constant TypeDataMatrix (line 11) | TypeDataMatrix = "DataMatrix"
constant TypeEAN8 (line 12) | TypeEAN8 = "EAN 8"
constant TypeEAN13 (line 13) | TypeEAN13 = "EAN 13"
constant TypePDF (line 14) | TypePDF = "PDF417"
constant TypeQR (line 15) | TypeQR = "QR Code"
constant Type2of5 (line 16) | Type2of5 = "2 of 5"
constant Type2of5Interleaved (line 17) | Type2of5Interleaved = "2 of 5 (interleaved)"
type Metadata (line 21) | type Metadata struct
type Barcode (line 29) | type Barcode interface
type BarcodeIntCS (line 39) | type BarcodeIntCS interface
FILE: vendor/github.com/boombuler/barcode/qr/alphanumeric.go
constant charSet (line 11) | charSet string = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:"
function stringToAlphaIdx (line 13) | func stringToAlphaIdx(content string) <-chan int {
function encodeAlphaNumeric (line 29) | func encodeAlphaNumeric(content string, ecl ErrorCorrectionLevel) (*util...
FILE: vendor/github.com/boombuler/barcode/qr/automatic.go
function encodeAuto (line 9) | func encodeAuto(content string, ecl ErrorCorrectionLevel) (*utils.BitLis...
FILE: vendor/github.com/boombuler/barcode/qr/blocks.go
type block (line 3) | type block struct
type blockList (line 7) | type blockList
method interleave (line 35) | func (bl blockList) interleave(vi *versionInfo) []byte {
function splitToBlocks (line 9) | func splitToBlocks(data <-chan byte, vi *versionInfo) blockList {
FILE: vendor/github.com/boombuler/barcode/qr/encoder.go
type encodeFn (line 11) | type encodeFn
type Encoding (line 14) | type Encoding
method getEncoder (line 29) | func (e Encoding) getEncoder() encodeFn {
method String (line 43) | func (e Encoding) String() string {
constant Auto (line 18) | Auto Encoding = iota
constant Numeric (line 20) | Numeric
constant AlphaNumeric (line 22) | AlphaNumeric
constant Unicode (line 24) | Unicode
constant unknownEncoding (line 26) | unknownEncoding
function Encode (line 58) | func Encode(content string, level ErrorCorrectionLevel, mode Encoding) (...
function render (line 71) | func render(data []byte, vi *versionInfo) *qrcode {
function setMasked (line 138) | func setMasked(x, y int, val bool, mask int, set func(int, int, bool)) {
function iterateModules (line 167) | func iterateModules(occupied *qrcode) <-chan image.Point {
function drawFinderPatterns (line 222) | func drawFinderPatterns(vi *versionInfo, set func(int, int, bool)) {
function drawAlignmentPatterns (line 240) | func drawAlignmentPatterns(occupied *qrcode, vi *versionInfo, set func(i...
function drawFormatInfo (line 304) | func drawFormatInfo(vi *versionInfo, usedMask int, set func(int, int, bo...
function drawVersionInfo (line 386) | func drawVersionInfo(vi *versionInfo, set func(int, int, bool)) {
function addPaddingAndTerminator (line 400) | func addPaddingAndTerminator(bl *utils.BitList, vi *versionInfo) {
FILE: vendor/github.com/boombuler/barcode/qr/errorcorrection.go
type errorCorrection (line 7) | type errorCorrection struct
method calcECC (line 18) | func (ec *errorCorrection) calcECC(data []byte, eccCount byte) []byte {
function newErrorCorrection (line 13) | func newErrorCorrection() *errorCorrection {
FILE: vendor/github.com/boombuler/barcode/qr/numeric.go
function encodeNumeric (line 11) | func encodeNumeric(content string, ecl ErrorCorrectionLevel) (*utils.Bit...
FILE: vendor/github.com/boombuler/barcode/qr/qrcode.go
type qrcode (line 12) | type qrcode struct
method Content (line 18) | func (qr *qrcode) Content() string {
method Metadata (line 22) | func (qr *qrcode) Metadata() barcode.Metadata {
method ColorModel (line 26) | func (qr *qrcode) ColorModel() color.Model {
method Bounds (line 30) | func (qr *qrcode) Bounds() image.Rectangle {
method At (line 34) | func (qr *qrcode) At(x, y int) color.Color {
method Get (line 41) | func (qr *qrcode) Get(x, y int) bool {
method Set (line 45) | func (qr *qrcode) Set(x, y int, val bool) {
method calcPenalty (line 49) | func (qr *qrcode) calcPenalty() uint {
method calcPenaltyRule1 (line 53) | func (qr *qrcode) calcPenaltyRule1() uint {
method calcPenaltyRule2 (line 94) | func (qr *qrcode) calcPenaltyRule2() uint {
method calcPenaltyRule3 (line 107) | func (qr *qrcode) calcPenaltyRule3() uint {
method calcPenaltyRule4 (line 147) | func (qr *qrcode) calcPenaltyRule4() uint {
function newBarcode (line 161) | func newBarcode(dim int) *qrcode {
FILE: vendor/github.com/boombuler/barcode/qr/unicode.go
function encodeUnicode (line 9) | func encodeUnicode(content string, ecl ErrorCorrectionLevel) (*utils.Bit...
FILE: vendor/github.com/boombuler/barcode/qr/versioninfo.go
type ErrorCorrectionLevel (line 6) | type ErrorCorrectionLevel
method String (line 19) | func (ecl ErrorCorrectionLevel) String() string {
constant L (line 10) | L ErrorCorrectionLevel = iota
constant M (line 12) | M
constant Q (line 14) | Q
constant H (line 16) | H
type encodingMode (line 33) | type encodingMode
constant numericMode (line 36) | numericMode encodingMode = 1
constant alphaNumericMode (line 37) | alphaNumericMode encodingMode = 2
constant byteMode (line 38) | byteMode encodingMode = 4
constant kanjiMode (line 39) | kanjiMode encodingMode = 8
type versionInfo (line 42) | type versionInfo struct
method totalDataBytes (line 215) | func (vi *versionInfo) totalDataBytes() int {
method charCountBits (line 221) | func (vi *versionInfo) charCountBits(m encodingMode) byte {
method modulWidth (line 257) | func (vi *versionInfo) modulWidth() int {
method alignmentPatternPlacements (line 261) | func (vi *versionInfo) alignmentPatternPlacements() []int {
function findSmallestVersionInfo (line 300) | func findSmallestVersionInfo(ecl ErrorCorrectionLevel, mode encodingMode...
FILE: vendor/github.com/boombuler/barcode/scaledbarcode.go
type wrapFunc (line 11) | type wrapFunc
type scaledBarcode (line 13) | type scaledBarcode struct
method Content (line 23) | func (bc *scaledBarcode) Content() string {
method Metadata (line 27) | func (bc *scaledBarcode) Metadata() Metadata {
method ColorModel (line 31) | func (bc *scaledBarcode) ColorModel() color.Model {
method Bounds (line 35) | func (bc *scaledBarcode) Bounds() image.Rectangle {
method At (line 39) | func (bc *scaledBarcode) At(x, y int) color.Color {
type intCSscaledBC (line 19) | type intCSscaledBC struct
method CheckSum (line 43) | func (bc *intCSscaledBC) CheckSum() int {
function Scale (line 51) | func Scale(bc Barcode, width, height int) (Barcode, error) {
function newScaledBC (line 62) | func newScaledBC(wrapped Barcode, wrapperFunc wrapFunc, rect image.Recta...
function scale2DCode (line 75) | func scale2DCode(bc Barcode, width, height int) (Barcode, error) {
function scale1DCode (line 107) | func scale1DCode(bc Barcode, width, height int) (Barcode, error) {
FILE: vendor/github.com/boombuler/barcode/utils/base1dcode.go
type base1DCode (line 11) | type base1DCode struct
method Content (line 22) | func (c *base1DCode) Content() string {
method Metadata (line 26) | func (c *base1DCode) Metadata() barcode.Metadata {
method ColorModel (line 30) | func (c *base1DCode) ColorModel() color.Model {
method Bounds (line 34) | func (c *base1DCode) Bounds() image.Rectangle {
method At (line 38) | func (c *base1DCode) At(x, y int) color.Color {
type base1DCodeIntCS (line 17) | type base1DCodeIntCS struct
method CheckSum (line 45) | func (c *base1DCodeIntCS) CheckSum() int {
function New1DCodeIntCheckSum (line 50) | func New1DCodeIntCheckSum(codeKind, content string, bars *BitList, check...
function New1DCode (line 55) | func New1DCode(codeKind, content string, bars *BitList) barcode.Barcode {
FILE: vendor/github.com/boombuler/barcode/utils/bitlist.go
type BitList (line 4) | type BitList struct
method Len (line 23) | func (bl *BitList) Len() int {
method grow (line 27) | func (bl *BitList) grow() {
method AddBit (line 41) | func (bl *BitList) AddBit(bits ...bool) {
method SetBit (line 53) | func (bl *BitList) SetBit(index int, value bool) {
method GetBit (line 64) | func (bl *BitList) GetBit(index int) bool {
method AddByte (line 71) | func (bl *BitList) AddByte(b byte) {
method AddBits (line 78) | func (bl *BitList) AddBits(b int, count byte) {
method GetBytes (line 85) | func (bl *BitList) GetBytes() []byte {
method IterateBytes (line 99) | func (bl *BitList) IterateBytes() <-chan byte {
function NewBitList (line 11) | func NewBitList(capacity int) *BitList {
FILE: vendor/github.com/boombuler/barcode/utils/galoisfield.go
type GaloisField (line 4) | type GaloisField struct
method Zero (line 36) | func (gf *GaloisField) Zero() *GFPoly {
method AddOrSub (line 41) | func (gf *GaloisField) AddOrSub(a, b int) int {
method Multiply (line 46) | func (gf *GaloisField) Multiply(a, b int) int {
method Divide (line 54) | func (gf *GaloisField) Divide(a, b int) int {
method Invers (line 63) | func (gf *GaloisField) Invers(num int) int {
function NewGaloisField (line 12) | func NewGaloisField(pp, fieldSize, b int) *GaloisField {
FILE: vendor/github.com/boombuler/barcode/utils/gfpoly.go
type GFPoly (line 3) | type GFPoly struct
method Degree (line 8) | func (gp *GFPoly) Degree() int {
method Zero (line 12) | func (gp *GFPoly) Zero() bool {
method GetCoefficient (line 17) | func (gp *GFPoly) GetCoefficient(degree int) int {
method AddOrSubstract (line 21) | func (gp *GFPoly) AddOrSubstract(other *GFPoly) *GFPoly {
method MultByMonominal (line 41) | func (gp *GFPoly) MultByMonominal(degree int, coeff int) *GFPoly {
method Multiply (line 53) | func (gp *GFPoly) Multiply(other *GFPoly) *GFPoly {
method Divide (line 72) | func (gp *GFPoly) Divide(other *GFPoly) (quotient *GFPoly, remainder *...
function NewMonominalPoly (line 89) | func NewMonominalPoly(field *GaloisField, degree int, coeff int) *GFPoly {
function NewGFPoly (line 98) | func NewGFPoly(field *GaloisField, coefficients []int) *GFPoly {
FILE: vendor/github.com/boombuler/barcode/utils/reedsolomon.go
type ReedSolomonEncoder (line 7) | type ReedSolomonEncoder struct
method getPolynomial (line 19) | func (rs *ReedSolomonEncoder) getPolynomial(degree int) *GFPoly {
method Encode (line 34) | func (rs *ReedSolomonEncoder) Encode(data []int, eccCount int) []int {
function NewReedSolomonEncoder (line 13) | func NewReedSolomonEncoder(gf *GaloisField) *ReedSolomonEncoder {
FILE: vendor/github.com/boombuler/barcode/utils/runeint.go
function RuneToInt (line 5) | func RuneToInt(r rune) int {
function IntToRune (line 14) | func IntToRune(i int) rune {
FILE: vendor/github.com/dgrijalva/jwt-go/claims.go
type Claims (line 11) | type Claims interface
type StandardClaims (line 18) | type StandardClaims struct
method Valid (line 32) | func (c StandardClaims) Valid() error {
method VerifyAudience (line 63) | func (c *StandardClaims) VerifyAudience(cmp string, req bool) bool {
method VerifyExpiresAt (line 69) | func (c *StandardClaims) VerifyExpiresAt(cmp int64, req bool) bool {
method VerifyIssuedAt (line 75) | func (c *StandardClaims) VerifyIssuedAt(cmp int64, req bool) bool {
method VerifyIssuer (line 81) | func (c *StandardClaims) VerifyIssuer(cmp string, req bool) bool {
method VerifyNotBefore (line 87) | func (c *StandardClaims) VerifyNotBefore(cmp int64, req bool) bool {
function verifyAud (line 93) | func verifyAud(aud string, cmp string, required bool) bool {
function verifyExp (line 104) | func verifyExp(exp int64, now int64, required bool) bool {
function verifyIat (line 111) | func verifyIat(iat int64, now int64, required bool) bool {
function verifyIss (line 118) | func verifyIss(iss string, cmp string, required bool) bool {
function verifyNbf (line 129) | func verifyNbf(nbf int64, now int64, required bool) bool {
FILE: vendor/github.com/dgrijalva/jwt-go/ecdsa.go
type SigningMethodECDSA (line 17) | type SigningMethodECDSA struct
method Alg (line 51) | func (m *SigningMethodECDSA) Alg() string {
method Verify (line 57) | func (m *SigningMethodECDSA) Verify(signingString, signature string, k...
method Sign (line 99) | func (m *SigningMethodECDSA) Sign(signingString string, key interface{...
function init (line 31) | func init() {
FILE: vendor/github.com/dgrijalva/jwt-go/ecdsa_utils.go
function ParseECPrivateKeyFromPEM (line 16) | func ParseECPrivateKeyFromPEM(key []byte) (*ecdsa.PrivateKey, error) {
function ParseECPublicKeyFromPEM (line 41) | func ParseECPublicKeyFromPEM(key []byte) (*ecdsa.PublicKey, error) {
FILE: vendor/github.com/dgrijalva/jwt-go/errors.go
constant ValidationErrorMalformed (line 16) | ValidationErrorMalformed uint32 = 1 << iota
constant ValidationErrorUnverifiable (line 17) | ValidationErrorUnverifiable
constant ValidationErrorSignatureInvalid (line 18) | ValidationErrorSignatureInvalid
constant ValidationErrorAudience (line 21) | ValidationErrorAudience
constant ValidationErrorExpired (line 22) | ValidationErrorExpired
constant ValidationErrorIssuedAt (line 23) | ValidationErrorIssuedAt
constant ValidationErrorIssuer (line 24) | ValidationErrorIssuer
constant ValidationErrorNotValidYet (line 25) | ValidationErrorNotValidYet
constant ValidationErrorId (line 26) | ValidationErrorId
constant ValidationErrorClaimsInvalid (line 27) | ValidationErrorClaimsInvalid
function NewValidationError (line 31) | func NewValidationError(errorText string, errorFlags uint32) *Validation...
type ValidationError (line 39) | type ValidationError struct
method Error (line 46) | func (e ValidationError) Error() string {
method valid (line 57) | func (e *ValidationError) valid() bool {
FILE: vendor/github.com/dgrijalva/jwt-go/hmac.go
type SigningMethodHMAC (line 10) | type SigningMethodHMAC struct
method Alg (line 43) | func (m *SigningMethodHMAC) Alg() string {
method Verify (line 48) | func (m *SigningMethodHMAC) Verify(signingString, signature string, ke...
method Sign (line 81) | func (m *SigningMethodHMAC) Sign(signingString string, key interface{}...
function init (line 23) | func init() {
FILE: vendor/github.com/dgrijalva/jwt-go/map_claims.go
type MapClaims (line 11) | type MapClaims
method VerifyAudience (line 15) | func (m MapClaims) VerifyAudience(cmp string, req bool) bool {
method VerifyExpiresAt (line 22) | func (m MapClaims) VerifyExpiresAt(cmp int64, req bool) bool {
method VerifyIssuedAt (line 35) | func (m MapClaims) VerifyIssuedAt(cmp int64, req bool) bool {
method VerifyIssuer (line 48) | func (m MapClaims) VerifyIssuer(cmp string, req bool) bool {
method VerifyNotBefore (line 55) | func (m MapClaims) VerifyNotBefore(cmp int64, req bool) bool {
method Valid (line 70) | func (m MapClaims) Valid() error {
FILE: vendor/github.com/dgrijalva/jwt-go/none.go
constant UnsafeAllowNoneSignatureType (line 7) | UnsafeAllowNoneSignatureType unsafeNoneMagicConstant = "none signing met...
type signingMethodNone (line 11) | type signingMethodNone struct
method Alg (line 23) | func (m *signingMethodNone) Alg() string {
method Verify (line 28) | func (m *signingMethodNone) Verify(signingString, signature string, ke...
method Sign (line 47) | func (m *signingMethodNone) Sign(signingString string, key interface{}...
type unsafeNoneMagicConstant (line 12) | type unsafeNoneMagicConstant
function init (line 14) | func init() {
FILE: vendor/github.com/dgrijalva/jwt-go/parser.go
type Parser (line 10) | type Parser struct
method Parse (line 19) | func (p *Parser) Parse(tokenString string, keyFunc Keyfunc) (*Token, e...
method ParseWithClaims (line 23) | func (p *Parser) ParseWithClaims(tokenString string, claims Claims, ke...
FILE: vendor/github.com/dgrijalva/jwt-go/rsa.go
type SigningMethodRSA (line 10) | type SigningMethodRSA struct
method Alg (line 42) | func (m *SigningMethodRSA) Alg() string {
method Verify (line 48) | func (m *SigningMethodRSA) Verify(signingString, signature string, key...
method Sign (line 77) | func (m *SigningMethodRSA) Sign(signingString string, key interface{})...
function init (line 22) | func init() {
FILE: vendor/github.com/dgrijalva/jwt-go/rsa_pss.go
type SigningMethodRSAPSS (line 12) | type SigningMethodRSAPSS struct
method Verify (line 73) | func (m *SigningMethodRSAPSS) Verify(signingString, signature string, ...
method Sign (line 102) | func (m *SigningMethodRSAPSS) Sign(signingString string, key interface...
function init (line 24) | func init() {
FILE: vendor/github.com/dgrijalva/jwt-go/rsa_utils.go
function ParseRSAPrivateKeyFromPEM (line 17) | func ParseRSAPrivateKeyFromPEM(key []byte) (*rsa.PrivateKey, error) {
function ParseRSAPublicKeyFromPEM (line 43) | func ParseRSAPublicKeyFromPEM(key []byte) (*rsa.PublicKey, error) {
FILE: vendor/github.com/dgrijalva/jwt-go/signing_method.go
type SigningMethod (line 11) | type SigningMethod interface
function RegisterSigningMethod (line 19) | func RegisterSigningMethod(alg string, f func() SigningMethod) {
function GetSigningMethod (line 27) | func GetSigningMethod(alg string) (method SigningMethod) {
FILE: vendor/github.com/dgrijalva/jwt-go/token.go
type Keyfunc (line 19) | type Keyfunc
type Token (line 23) | type Token struct
method SignedString (line 49) | func (t *Token) SignedString(key interface{}) (string, error) {
method SigningString (line 65) | func (t *Token) SigningString() (string, error) {
function New (line 33) | func New(method SigningMethod) *Token {
function NewWithClaims (line 37) | func NewWithClaims(method SigningMethod, claims Claims) *Token {
function Parse (line 88) | func Parse(tokenString string, keyFunc Keyfunc) (*Token, error) {
function ParseWithClaims (line 92) | func ParseWithClaims(tokenString string, claims Claims, keyFunc Keyfunc)...
function EncodeSegment (line 97) | func EncodeSegment(seg []byte) string {
function DecodeSegment (line 102) | func DecodeSegment(seg string) ([]byte, error) {
FILE: vendor/github.com/gin-contrib/sse/sse-decoder.go
type decoder (line 13) | type decoder struct
method dispatchEvent (line 22) | func (d *decoder) dispatchEvent(event Event, data string) {
method decode (line 39) | func (d *decoder) decode(r io.Reader) ([]Event, error) {
function Decode (line 17) | func Decode(r io.Reader) ([]Event, error) {
FILE: vendor/github.com/gin-contrib/sse/sse-encoder.go
constant ContentType (line 21) | ContentType = "text/event-stream"
type Event (line 34) | type Event struct
method Render (line 89) | func (r Event) Render(w http.ResponseWriter) error {
method WriteContentType (line 94) | func (r Event) WriteContentType(w http.ResponseWriter) {
function Encode (line 41) | func Encode(writer io.Writer, event Event) error {
function writeId (line 49) | func writeId(w stringWriter, id string) {
function writeEvent (line 57) | func writeEvent(w stringWriter, event string) {
function writeRetry (line 65) | func writeRetry(w stringWriter, retry uint) {
function writeData (line 73) | func writeData(w stringWriter, data interface{}) error {
function kindOfData (line 103) | func kindOfData(data interface{}) reflect.Kind {
FILE: vendor/github.com/gin-contrib/sse/writer.go
type stringWriter (line 5) | type stringWriter interface
type stringWrapper (line 10) | type stringWrapper struct
method WriteString (line 14) | func (w stringWrapper) WriteString(str string) (int, error) {
function checkWriter (line 18) | func checkWriter(writer io.Writer) stringWriter {
FILE: vendor/github.com/gin-gonic/gin/auth.go
constant AuthUserKey (line 15) | AuthUserKey = "user"
type Accounts (line 18) | type Accounts
type authPair (line 20) | type authPair struct
type authPairs (line 25) | type authPairs
method searchCredential (line 27) | func (a authPairs) searchCredential(authValue string) (string, bool) {
function BasicAuthForRealm (line 43) | func BasicAuthForRealm(accounts Accounts, realm string) HandlerFunc {
function BasicAuth (line 67) | func BasicAuth(accounts Accounts) HandlerFunc {
function processAccounts (line 71) | func processAccounts(accounts Accounts) authPairs {
function authorizationHeader (line 85) | func authorizationHeader(user, password string) string {
function secureCompare (line 90) | func secureCompare(given, actual string) bool {
FILE: vendor/github.com/gin-gonic/gin/binding/binding.go
constant MIMEJSON (line 11) | MIMEJSON = "application/json"
constant MIMEHTML (line 12) | MIMEHTML = "text/html"
constant MIMEXML (line 13) | MIMEXML = "application/xml"
constant MIMEXML2 (line 14) | MIMEXML2 = "text/xml"
constant MIMEPlain (line 15) | MIMEPlain = "text/plain"
constant MIMEPOSTForm (line 16) | MIMEPOSTForm = "application/x-www-form-urlencoded"
constant MIMEMultipartPOSTForm (line 17) | MIMEMultipartPOSTForm = "multipart/form-data"
constant MIMEPROTOBUF (line 18) | MIMEPROTOBUF = "application/x-protobuf"
constant MIMEMSGPACK (line 19) | MIMEMSGPACK = "application/x-msgpack"
constant MIMEMSGPACK2 (line 20) | MIMEMSGPACK2 = "application/msgpack"
constant MIMEYAML (line 21) | MIMEYAML = "application/x-yaml"
type Binding (line 27) | type Binding interface
type BindingBody (line 34) | type BindingBody interface
type BindingUri (line 41) | type BindingUri interface
type StructValidator (line 50) | type StructValidator interface
function Default (line 85) | func Default(method, contentType string) Binding {
function validate (line 108) | func validate(obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/binding/default_validator.go
type defaultValidator (line 14) | type defaultValidator struct
method ValidateStruct (line 22) | func (v *defaultValidator) ValidateStruct(obj interface{}) error {
method Engine (line 41) | func (v *defaultValidator) Engine() interface{} {
method lazyinit (line 46) | func (v *defaultValidator) lazyinit() {
FILE: vendor/github.com/gin-gonic/gin/binding/form.go
constant defaultMemory (line 13) | defaultMemory = 32 * 1024 * 1024
type formBinding (line 15) | type formBinding struct
method Name (line 19) | func (formBinding) Name() string {
method Bind (line 23) | func (formBinding) Bind(req *http.Request, obj interface{}) error {
type formPostBinding (line 16) | type formPostBinding struct
method Name (line 38) | func (formPostBinding) Name() string {
method Bind (line 42) | func (formPostBinding) Bind(req *http.Request, obj interface{}) error {
type formMultipartBinding (line 17) | type formMultipartBinding struct
method Name (line 52) | func (formMultipartBinding) Name() string {
method Bind (line 56) | func (formMultipartBinding) Bind(req *http.Request, obj interface{}) e...
type multipartRequest (line 67) | type multipartRequest
method TrySet (line 76) | func (r *multipartRequest) TrySet(value reflect.Value, field reflect.S...
FILE: vendor/github.com/gin-gonic/gin/binding/form_mapping.go
function mapUri (line 20) | func mapUri(ptr interface{}, m map[string][]string) error {
function mapForm (line 24) | func mapForm(ptr interface{}, form map[string][]string) error {
function mapFormByTag (line 30) | func mapFormByTag(ptr interface{}, form map[string][]string, tag string)...
type setter (line 35) | type setter interface
type formSource (line 39) | type formSource
method TrySet (line 44) | func (form formSource) TrySet(value reflect.Value, field reflect.Struc...
function mappingByPtr (line 48) | func mappingByPtr(ptr interface{}, setter setter, tag string) error {
function mapping (line 53) | func mapping(value reflect.Value, field reflect.StructField, setter sett...
type setOptions (line 100) | type setOptions struct
function tryToSetValue (line 105) | func tryToSetValue(value reflect.Value, field reflect.StructField, sette...
function setByForm (line 137) | func setByForm(value reflect.Value, field reflect.StructField, form map[...
function setWithProperType (line 170) | func setWithProperType(val string, value reflect.Value, field reflect.St...
function setIntField (line 218) | func setIntField(val string, bitSize int, field reflect.Value) error {
function setUintField (line 229) | func setUintField(val string, bitSize int, field reflect.Value) error {
function setBoolField (line 240) | func setBoolField(val string, field reflect.Value) error {
function setFloatField (line 251) | func setFloatField(val string, bitSize int, field reflect.Value) error {
function setTimeField (line 262) | func setTimeField(val string, structField reflect.StructField, value ref...
function setArray (line 295) | func setArray(vals []string, value reflect.Value, field reflect.StructFi...
function setSlice (line 305) | func setSlice(vals []string, value reflect.Value, field reflect.StructFi...
function setTimeDuration (line 315) | func setTimeDuration(val string, value reflect.Value, field reflect.Stru...
function head (line 324) | func head(str, sep string) (head string, tail string) {
FILE: vendor/github.com/gin-gonic/gin/binding/json.go
type jsonBinding (line 21) | type jsonBinding struct
method Name (line 23) | func (jsonBinding) Name() string {
method Bind (line 27) | func (jsonBinding) Bind(req *http.Request, obj interface{}) error {
method BindBody (line 34) | func (jsonBinding) BindBody(body []byte, obj interface{}) error {
function decodeJSON (line 38) | func decodeJSON(r io.Reader, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/binding/msgpack.go
type msgpackBinding (line 15) | type msgpackBinding struct
method Name (line 17) | func (msgpackBinding) Name() string {
method Bind (line 21) | func (msgpackBinding) Bind(req *http.Request, obj interface{}) error {
method BindBody (line 25) | func (msgpackBinding) BindBody(body []byte, obj interface{}) error {
function decodeMsgPack (line 29) | func decodeMsgPack(r io.Reader, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/binding/protobuf.go
type protobufBinding (line 14) | type protobufBinding struct
method Name (line 16) | func (protobufBinding) Name() string {
method Bind (line 20) | func (b protobufBinding) Bind(req *http.Request, obj interface{}) error {
method BindBody (line 28) | func (protobufBinding) BindBody(body []byte, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/binding/query.go
type queryBinding (line 9) | type queryBinding struct
method Name (line 11) | func (queryBinding) Name() string {
method Bind (line 15) | func (queryBinding) Bind(req *http.Request, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/binding/uri.go
type uriBinding (line 7) | type uriBinding struct
method Name (line 9) | func (uriBinding) Name() string {
method BindUri (line 13) | func (uriBinding) BindUri(m map[string][]string, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/binding/xml.go
type xmlBinding (line 14) | type xmlBinding struct
method Name (line 16) | func (xmlBinding) Name() string {
method Bind (line 20) | func (xmlBinding) Bind(req *http.Request, obj interface{}) error {
method BindBody (line 24) | func (xmlBinding) BindBody(body []byte, obj interface{}) error {
function decodeXML (line 27) | func decodeXML(r io.Reader, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/binding/yaml.go
type yamlBinding (line 15) | type yamlBinding struct
method Name (line 17) | func (yamlBinding) Name() string {
method Bind (line 21) | func (yamlBinding) Bind(req *http.Request, obj interface{}) error {
method BindBody (line 25) | func (yamlBinding) BindBody(body []byte, obj interface{}) error {
function decodeYAML (line 29) | func decodeYAML(r io.Reader, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/context.go
constant MIMEJSON (line 28) | MIMEJSON = binding.MIMEJSON
constant MIMEHTML (line 29) | MIMEHTML = binding.MIMEHTML
constant MIMEXML (line 30) | MIMEXML = binding.MIMEXML
constant MIMEXML2 (line 31) | MIMEXML2 = binding.MIMEXML2
constant MIMEPlain (line 32) | MIMEPlain = binding.MIMEPlain
constant MIMEPOSTForm (line 33) | MIMEPOSTForm = binding.MIMEPOSTForm
constant MIMEMultipartPOSTForm (line 34) | MIMEMultipartPOSTForm = binding.MIMEMultipartPOSTForm
constant MIMEYAML (line 35) | MIMEYAML = binding.MIMEYAML
constant BodyBytesKey (line 36) | BodyBytesKey = "_gin-gonic/gin/bodybyteskey"
constant abortIndex (line 39) | abortIndex int8 = math.MaxInt8 / 2
type Context (line 43) | type Context struct
method reset (line 68) | func (c *Context) reset() {
method Copy (line 80) | func (c *Context) Copy() *Context {
method HandlerName (line 95) | func (c *Context) HandlerName() string {
method HandlerNames (line 101) | func (c *Context) HandlerNames() []string {
method Handler (line 110) | func (c *Context) Handler() HandlerFunc {
method Next (line 121) | func (c *Context) Next() {
method IsAborted (line 130) | func (c *Context) IsAborted() bool {
method Abort (line 138) | func (c *Context) Abort() {
method AbortWithStatus (line 144) | func (c *Context) AbortWithStatus(code int) {
method AbortWithStatusJSON (line 153) | func (c *Context) AbortWithStatusJSON(code int, jsonObj interface{}) {
method AbortWithError (line 161) | func (c *Context) AbortWithError(code int, err error) *Error {
method Error (line 175) | func (c *Context) Error(err error) *Error {
method Set (line 198) | func (c *Context) Set(key string, value interface{}) {
method Get (line 207) | func (c *Context) Get(key string) (value interface{}, exists bool) {
method MustGet (line 213) | func (c *Context) MustGet(key string) interface{} {
method GetString (line 221) | func (c *Context) GetString(key string) (s string) {
method GetBool (line 229) | func (c *Context) GetBool(key string) (b bool) {
method GetInt (line 237) | func (c *Context) GetInt(key string) (i int) {
method GetInt64 (line 245) | func (c *Context) GetInt64(key string) (i64 int64) {
method GetFloat64 (line 253) | func (c *Context) GetFloat64(key string) (f64 float64) {
method GetTime (line 261) | func (c *Context) GetTime(key string) (t time.Time) {
method GetDuration (line 269) | func (c *Context) GetDuration(key string) (d time.Duration) {
method GetStringSlice (line 277) | func (c *Context) GetStringSlice(key string) (ss []string) {
method GetStringMap (line 285) | func (c *Context) GetStringMap(key string) (sm map[string]interface{}) {
method GetStringMapString (line 293) | func (c *Context) GetStringMapString(key string) (sms map[string]strin...
method GetStringMapStringSlice (line 301) | func (c *Context) GetStringMapStringSlice(key string) (smss map[string...
method Param (line 318) | func (c *Context) Param(key string) string {
method Query (line 330) | func (c *Context) Query(key string) string {
method DefaultQuery (line 342) | func (c *Context) DefaultQuery(key, defaultValue string) string {
method GetQuery (line 357) | func (c *Context) GetQuery(key string) (string, bool) {
method QueryArray (line 366) | func (c *Context) QueryArray(key string) []string {
method GetQueryArray (line 373) | func (c *Context) GetQueryArray(key string) ([]string, bool) {
method QueryMap (line 381) | func (c *Context) QueryMap(key string) map[string]string {
method GetQueryMap (line 388) | func (c *Context) GetQueryMap(key string) (map[string]string, bool) {
method PostForm (line 394) | func (c *Context) PostForm(key string) string {
method DefaultPostForm (line 402) | func (c *Context) DefaultPostForm(key, defaultValue string) string {
method GetPostForm (line 416) | func (c *Context) GetPostForm(key string) (string, bool) {
method PostFormArray (line 425) | func (c *Context) PostFormArray(key string) []string {
method GetPostFormArray (line 432) | func (c *Context) GetPostFormArray(key string) ([]string, bool) {
method PostFormMap (line 446) | func (c *Context) PostFormMap(key string) map[string]string {
method GetPostFormMap (line 453) | func (c *Context) GetPostFormMap(key string) (map[string]string, bool) {
method get (line 464) | func (c *Context) get(m map[string][]string, key string) (map[string]s...
method FormFile (line 479) | func (c *Context) FormFile(name string) (*multipart.FileHeader, error) {
method MultipartForm (line 490) | func (c *Context) MultipartForm() (*multipart.Form, error) {
method SaveUploadedFile (line 496) | func (c *Context) SaveUploadedFile(file *multipart.FileHeader, dst str...
method Bind (line 521) | func (c *Context) Bind(obj interface{}) error {
method BindJSON (line 527) | func (c *Context) BindJSON(obj interface{}) error {
method BindXML (line 532) | func (c *Context) BindXML(obj interface{}) error {
method BindQuery (line 537) | func (c *Context) BindQuery(obj interface{}) error {
method BindYAML (line 542) | func (c *Context) BindYAML(obj interface{}) error {
method BindUri (line 548) | func (c *Context) BindUri(obj interface{}) error {
method MustBindWith (line 559) | func (c *Context) MustBindWith(obj interface{}, b binding.Binding) err...
method ShouldBind (line 575) | func (c *Context) ShouldBind(obj interface{}) error {
method ShouldBindJSON (line 581) | func (c *Context) ShouldBindJSON(obj interface{}) error {
method ShouldBindXML (line 586) | func (c *Context) ShouldBindXML(obj interface{}) error {
method ShouldBindQuery (line 591) | func (c *Context) ShouldBindQuery(obj interface{}) error {
method ShouldBindYAML (line 596) | func (c *Context) ShouldBindYAML(obj interface{}) error {
method ShouldBindUri (line 601) | func (c *Context) ShouldBindUri(obj interface{}) error {
method ShouldBindWith (line 611) | func (c *Context) ShouldBindWith(obj interface{}, b binding.Binding) e...
method ShouldBindBodyWith (line 620) | func (c *Context) ShouldBindBodyWith(obj interface{}, bb binding.Bindi...
method ClientIP (line 640) | func (c *Context) ClientIP() string {
method ContentType (line 666) | func (c *Context) ContentType() string {
method IsWebsocket (line 672) | func (c *Context) IsWebsocket() bool {
method requestHeader (line 680) | func (c *Context) requestHeader(key string) string {
method Status (line 702) | func (c *Context) Status(code int) {
method Header (line 709) | func (c *Context) Header(key, value string) {
method GetHeader (line 718) | func (c *Context) GetHeader(key string) string {
method GetRawData (line 723) | func (c *Context) GetRawData() ([]byte, error) {
method SetCookie (line 730) | func (c *Context) SetCookie(name, value string, maxAge int, path, doma...
method Cookie (line 749) | func (c *Context) Cookie(name string) (string, error) {
method Render (line 759) | func (c *Context) Render(code int, r render.Render) {
method HTML (line 776) | func (c *Context) HTML(code int, name string, obj interface{}) {
method IndentedJSON (line 785) | func (c *Context) IndentedJSON(code int, obj interface{}) {
method SecureJSON (line 792) | func (c *Context) SecureJSON(code int, obj interface{}) {
method JSONP (line 799) | func (c *Context) JSONP(code int, obj interface{}) {
method JSON (line 810) | func (c *Context) JSON(code int, obj interface{}) {
method AsciiJSON (line 816) | func (c *Context) AsciiJSON(code int, obj interface{}) {
method PureJSON (line 822) | func (c *Context) PureJSON(code int, obj interface{}) {
method XML (line 828) | func (c *Context) XML(code int, obj interface{}) {
method YAML (line 833) | func (c *Context) YAML(code int, obj interface{}) {
method ProtoBuf (line 838) | func (c *Context) ProtoBuf(code int, obj interface{}) {
method String (line 843) | func (c *Context) String(code int, format string, values ...interface{...
method Redirect (line 848) | func (c *Context) Redirect(code int, location string) {
method Data (line 857) | func (c *Context) Data(code int, contentType string, data []byte) {
method DataFromReader (line 865) | func (c *Context) DataFromReader(code int, contentLength int64, conten...
method File (line 875) | func (c *Context) File(filepath string) {
method FileAttachment (line 881) | func (c *Context) FileAttachment(filepath, filename string) {
method SSEvent (line 887) | func (c *Context) SSEvent(name string, message interface{}) {
method Stream (line 896) | func (c *Context) Stream(step func(w io.Writer) bool) bool {
method Negotiate (line 928) | func (c *Context) Negotiate(code int, config Negotiate) {
method NegotiateFormat (line 948) | func (c *Context) NegotiateFormat(offered ...string) string {
method SetAccepted (line 979) | func (c *Context) SetAccepted(formats ...string) {
method Deadline (line 990) | func (c *Context) Deadline() (deadline time.Time, ok bool) {
method Done (line 997) | func (c *Context) Done() <-chan struct{} {
method Err (line 1007) | func (c *Context) Err() error {
method Value (line 1014) | func (c *Context) Value(key interface{}) interface{} {
function bodyAllowedForStatus (line 689) | func bodyAllowedForStatus(status int) bool {
type Negotiate (line 918) | type Negotiate struct
FILE: vendor/github.com/gin-gonic/gin/context_appengine.go
function init (line 9) | func init() {
FILE: vendor/github.com/gin-gonic/gin/debug.go
constant ginSupportMinGoVer (line 17) | ginSupportMinGoVer = 8
function IsDebugging (line 21) | func IsDebugging() bool {
function debugPrintRoute (line 28) | func debugPrintRoute(httpMethod, absolutePath string, handlers HandlersC...
function debugPrintLoadTemplate (line 40) | func debugPrintLoadTemplate(tmpl *template.Template) {
function debugPrint (line 52) | func debugPrint(format string, values ...interface{}) {
function getMinVer (line 61) | func getMinVer(v string) (uint64, error) {
function debugPrintWARNINGDefault (line 70) | func debugPrintWARNINGDefault() {
function debugPrintWARNINGNew (line 81) | func debugPrintWARNINGNew() {
function debugPrintWARNINGSetHTMLTemplate (line 89) | func debugPrintWARNINGSetHTMLTemplate() {
function debugPrintError (line 99) | func debugPrintError(err error) {
FILE: vendor/github.com/gin-gonic/gin/deprecated.go
method BindWith (line 15) | func (c *Context) BindWith(obj interface{}, b binding.Binding) error {
FILE: vendor/github.com/gin-gonic/gin/errors.go
type ErrorType (line 16) | type ErrorType
constant ErrorTypeBind (line 20) | ErrorTypeBind ErrorType = 1 << 63
constant ErrorTypeRender (line 22) | ErrorTypeRender ErrorType = 1 << 62
constant ErrorTypePrivate (line 24) | ErrorTypePrivate ErrorType = 1 << 0
constant ErrorTypePublic (line 26) | ErrorTypePublic ErrorType = 1 << 1
constant ErrorTypeAny (line 28) | ErrorTypeAny ErrorType = 1<<64 - 1
constant ErrorTypeNu (line 30) | ErrorTypeNu = 2
type Error (line 34) | type Error struct
method SetType (line 45) | func (msg *Error) SetType(flags ErrorType) *Error {
method SetMeta (line 51) | func (msg *Error) SetMeta(data interface{}) *Error {
method JSON (line 57) | func (msg *Error) JSON() interface{} {
method MarshalJSON (line 79) | func (msg *Error) MarshalJSON() ([]byte, error) {
method Error (line 84) | func (msg Error) Error() string {
method IsType (line 89) | func (msg *Error) IsType(flags ErrorType) bool {
type errorMsgs (line 40) | type errorMsgs
method ByType (line 95) | func (a errorMsgs) ByType(typ ErrorType) errorMsgs {
method Last (line 113) | func (a errorMsgs) Last() *Error {
method Errors (line 126) | func (a errorMsgs) Errors() []string {
method JSON (line 137) | func (a errorMsgs) JSON() interface{} {
method MarshalJSON (line 153) | func (a errorMsgs) MarshalJSON() ([]byte, error) {
method String (line 157) | func (a errorMsgs) String() string {
FILE: vendor/github.com/gin-gonic/gin/fs.go
type onlyfilesFS (line 12) | type onlyfilesFS struct
method Open (line 33) | func (fs onlyfilesFS) Open(name string) (http.File, error) {
type neuteredReaddirFile (line 16) | type neuteredReaddirFile struct
method Readdir (line 42) | func (f neuteredReaddirFile) Readdir(count int) ([]os.FileInfo, error) {
function Dir (line 24) | func Dir(root string, listDirectory bool) http.FileSystem {
FILE: vendor/github.com/gin-gonic/gin/gin.go
constant defaultMultipartMemory (line 19) | defaultMultipartMemory = 32 << 20
type HandlerFunc (line 28) | type HandlerFunc
type HandlersChain (line 31) | type HandlersChain
method Last (line 34) | func (c HandlersChain) Last() HandlerFunc {
type RouteInfo (line 42) | type RouteInfo struct
type RoutesInfo (line 50) | type RoutesInfo
type Engine (line 54) | type Engine struct
method allocateContext (line 158) | func (engine *Engine) allocateContext() *Context {
method Delims (line 163) | func (engine *Engine) Delims(left, right string) *Engine {
method SecureJsonPrefix (line 169) | func (engine *Engine) SecureJsonPrefix(prefix string) *Engine {
method LoadHTMLGlob (line 176) | func (engine *Engine) LoadHTMLGlob(pattern string) {
method LoadHTMLFiles (line 192) | func (engine *Engine) LoadHTMLFiles(files ...string) {
method SetHTMLTemplate (line 203) | func (engine *Engine) SetHTMLTemplate(templ *template.Template) {
method SetFuncMap (line 212) | func (engine *Engine) SetFuncMap(funcMap template.FuncMap) {
method NoRoute (line 217) | func (engine *Engine) NoRoute(handlers ...HandlerFunc) {
method NoMethod (line 223) | func (engine *Engine) NoMethod(handlers ...HandlerFunc) {
method Use (line 231) | func (engine *Engine) Use(middleware ...HandlerFunc) IRoutes {
method rebuild404Handlers (line 238) | func (engine *Engine) rebuild404Handlers() {
method rebuild405Handlers (line 242) | func (engine *Engine) rebuild405Handlers() {
method addRoute (line 246) | func (engine *Engine) addRoute(method, path string, handlers HandlersC...
method Routes (line 262) | func (engine *Engine) Routes() (routes RoutesInfo) {
method Run (line 289) | func (engine *Engine) Run(addr ...string) (err error) {
method RunTLS (line 301) | func (engine *Engine) RunTLS(addr, certFile, keyFile string) (err erro...
method RunUnix (line 312) | func (engine *Engine) RunUnix(file string) (err error) {
method RunFd (line 330) | func (engine *Engine) RunFd(fd int) (err error) {
method ServeHTTP (line 345) | func (engine *Engine) ServeHTTP(w http.ResponseWriter, req *http.Reque...
method HandleContext (line 359) | func (engine *Engine) HandleContext(c *Context) {
method handleHTTPRequest (line 367) | func (engine *Engine) handleHTTPRequest(c *Context) {
function New (line 122) | func New() *Engine {
function Default (line 151) | func Default() *Engine {
function iterate (line 269) | func iterate(path, method string, routes RoutesInfo, root *node) RoutesI...
function serveError (line 423) | func serveError(c *Context, code int, defaultMessage []byte) {
function redirectTrailingSlash (line 441) | func redirectTrailingSlash(c *Context) {
function redirectFixedPath (line 461) | func redirectFixedPath(c *Context, root *node, trailingSlash bool) bool {
FILE: vendor/github.com/gin-gonic/gin/logger.go
type consoleColorModeValue (line 17) | type consoleColorModeValue
constant autoColor (line 20) | autoColor consoleColorModeValue = iota
constant disableColor (line 21) | disableColor
constant forceColor (line 22) | forceColor
type LoggerConfig (line 38) | type LoggerConfig struct
type LogFormatter (line 52) | type LogFormatter
type LogFormatterParams (line 55) | type LogFormatterParams struct
method StatusCodeColor (line 81) | func (p *LogFormatterParams) StatusCodeColor() string {
method MethodColor (line 97) | func (p *LogFormatterParams) MethodColor() string {
method ResetColor (line 121) | func (p *LogFormatterParams) ResetColor() string {
method IsOutputColor (line 126) | func (p *LogFormatterParams) IsOutputColor() bool {
function DisableConsoleColor (line 155) | func DisableConsoleColor() {
function ForceConsoleColor (line 160) | func ForceConsoleColor() {
function ErrorLogger (line 165) | func ErrorLogger() HandlerFunc {
function ErrorLoggerT (line 170) | func ErrorLoggerT(typ ErrorType) HandlerFunc {
function Logger (line 182) | func Logger() HandlerFunc {
function LoggerWithFormatter (line 187) | func LoggerWithFormatter(f LogFormatter) HandlerFunc {
function LoggerWithWriter (line 195) | func LoggerWithWriter(out io.Writer, notlogged ...string) HandlerFunc {
function LoggerWithConfig (line 203) | func LoggerWithConfig(conf LoggerConfig) HandlerFunc {
FILE: vendor/github.com/gin-gonic/gin/mode.go
constant EnvGinMode (line 15) | EnvGinMode = "GIN_MODE"
constant DebugMode (line 19) | DebugMode = "debug"
constant ReleaseMode (line 21) | ReleaseMode = "release"
constant TestMode (line 23) | TestMode = "test"
constant debugCode (line 26) | debugCode = iota
constant releaseCode (line 27) | releaseCode
constant testCode (line 28) | testCode
function init (line 46) | func init() {
function SetMode (line 52) | func SetMode(value string) {
function DisableBindValidation (line 70) | func DisableBindValidation() {
function EnableJsonDecoderUseNumber (line 76) | func EnableJsonDecoderUseNumber() {
function Mode (line 81) | func Mode() string {
FILE: vendor/github.com/gin-gonic/gin/path.go
function cleanPath (line 21) | func cleanPath(p string) string {
function bufApp (line 113) | func bufApp(buf *[]byte, s string, w int, c byte) {
FILE: vendor/github.com/gin-gonic/gin/recovery.go
function Recovery (line 30) | func Recovery() HandlerFunc {
function RecoveryWithWriter (line 35) | func RecoveryWithWriter(out io.Writer) HandlerFunc {
function stack (line 88) | func stack(skip int) []byte {
function source (line 115) | func source(lines [][]byte, n int) []byte {
function function (line 124) | func function(pc uintptr) []byte {
function timeFormat (line 148) | func timeFormat(t time.Time) string {
FILE: vendor/github.com/gin-gonic/gin/render/data.go
type Data (line 10) | type Data struct
method Render (line 16) | func (r Data) Render(w http.ResponseWriter) (err error) {
method WriteContentType (line 23) | func (r Data) WriteContentType(w http.ResponseWriter) {
FILE: vendor/github.com/gin-gonic/gin/render/html.go
type Delims (line 13) | type Delims struct
type HTMLRender (line 21) | type HTMLRender interface
type HTMLProduction (line 27) | type HTMLProduction struct
method Instance (line 50) | func (r HTMLProduction) Instance(name string, data interface{}) Render {
type HTMLDebug (line 33) | type HTMLDebug struct
method Instance (line 59) | func (r HTMLDebug) Instance(name string, data interface{}) Render {
method loadTemplate (line 66) | func (r HTMLDebug) loadTemplate() *template.Template {
type HTML (line 41) | type HTML struct
method Render (line 80) | func (r HTML) Render(w http.ResponseWriter) error {
method WriteContentType (line 90) | func (r HTML) WriteContentType(w http.ResponseWriter) {
FILE: vendor/github.com/gin-gonic/gin/render/json.go
type JSON (line 17) | type JSON struct
method Render (line 56) | func (r JSON) Render(w http.ResponseWriter) (err error) {
method WriteContentType (line 64) | func (r JSON) WriteContentType(w http.ResponseWriter) {
type IndentedJSON (line 22) | type IndentedJSON struct
method Render (line 80) | func (r IndentedJSON) Render(w http.ResponseWriter) error {
method WriteContentType (line 91) | func (r IndentedJSON) WriteContentType(w http.ResponseWriter) {
type SecureJSON (line 27) | type SecureJSON struct
method Render (line 96) | func (r SecureJSON) Render(w http.ResponseWriter) error {
method WriteContentType (line 114) | func (r SecureJSON) WriteContentType(w http.ResponseWriter) {
type JsonpJSON (line 33) | type JsonpJSON struct
method Render (line 119) | func (r JsonpJSON) Render(w http.ResponseWriter) (err error) {
method WriteContentType (line 153) | func (r JsonpJSON) WriteContentType(w http.ResponseWriter) {
type AsciiJSON (line 39) | type AsciiJSON struct
method Render (line 158) | func (r AsciiJSON) Render(w http.ResponseWriter) (err error) {
method WriteContentType (line 179) | func (r AsciiJSON) WriteContentType(w http.ResponseWriter) {
type SecureJSONPrefix (line 44) | type SecureJSONPrefix
type PureJSON (line 47) | type PureJSON struct
method Render (line 184) | func (r PureJSON) Render(w http.ResponseWriter) error {
method WriteContentType (line 192) | func (r PureJSON) WriteContentType(w http.ResponseWriter) {
function WriteJSON (line 69) | func WriteJSON(w http.ResponseWriter, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/render/msgpack.go
type MsgPack (line 14) | type MsgPack struct
method WriteContentType (line 21) | func (r MsgPack) WriteContentType(w http.ResponseWriter) {
method Render (line 26) | func (r MsgPack) Render(w http.ResponseWriter) error {
function WriteMsgPack (line 31) | func WriteMsgPack(w http.ResponseWriter, obj interface{}) error {
FILE: vendor/github.com/gin-gonic/gin/render/protobuf.go
type ProtoBuf (line 14) | type ProtoBuf struct
method Render (line 21) | func (r ProtoBuf) Render(w http.ResponseWriter) error {
method WriteContentType (line 34) | func (r ProtoBuf) WriteContentType(w http.ResponseWriter) {
FILE: vendor/github.com/gin-gonic/gin/render/reader.go
type Reader (line 14) | type Reader struct
method Render (line 22) | func (r Reader) Render(w http.ResponseWriter) (err error) {
method WriteContentType (line 31) | func (r Reader) WriteContentType(w http.ResponseWriter) {
method writeHeaders (line 36) | func (r Reader) writeHeaders(w http.ResponseWriter, headers map[string...
FILE: vendor/github.com/gin-gonic/gin/render/redirect.go
type Redirect (line 13) | type Redirect struct
method Render (line 20) | func (r Redirect) Render(w http.ResponseWriter) error {
method WriteContentType (line 29) | func (r Redirect) WriteContentType(http.ResponseWriter) {}
FILE: vendor/github.com/gin-gonic/gin/render/render.go
type Render (line 10) | type Render interface
function writeContentType (line 36) | func writeContentType(w http.ResponseWriter, value []string) {
FILE: vendor/github.com/gin-gonic/gin/render/text.go
type String (line 14) | type String struct
method Render (line 22) | func (r String) Render(w http.ResponseWriter) error {
method WriteContentType (line 27) | func (r String) WriteContentType(w http.ResponseWriter) {
function WriteString (line 32) | func WriteString(w http.ResponseWriter, format string, data []interface{...
FILE: vendor/github.com/gin-gonic/gin/render/xml.go
type XML (line 13) | type XML struct
method Render (line 20) | func (r XML) Render(w http.ResponseWriter) error {
method WriteContentType (line 26) | func (r XML) WriteContentType(w http.ResponseWriter) {
FILE: vendor/github.com/gin-gonic/gin/render/yaml.go
type YAML (line 14) | type YAML struct
method Render (line 21) | func (r YAML) Render(w http.ResponseWriter) error {
method WriteContentType (line 34) | func (r YAML) WriteContentType(w http.ResponseWriter) {
FILE: vendor/github.com/gin-gonic/gin/response_writer.go
constant noWritten (line 15) | noWritten = -1
constant defaultStatus (line 16) | defaultStatus = http.StatusOK
type ResponseWriter (line 20) | type ResponseWriter interface
type responseWriter (line 46) | type responseWriter struct
method reset (line 54) | func (w *responseWriter) reset(writer http.ResponseWriter) {
method WriteHeader (line 60) | func (w *responseWriter) WriteHeader(code int) {
method WriteHeaderNow (line 69) | func (w *responseWriter) WriteHeaderNow() {
method Write (line 76) | func (w *responseWriter) Write(data []byte) (n int, err error) {
method WriteString (line 83) | func (w *responseWriter) WriteString(s string) (n int, err error) {
method Status (line 90) | func (w *responseWriter) Status() int {
method Size (line 94) | func (w *responseWriter) Size() int {
method Written (line 98) | func (w *responseWriter) Written() bool {
method Hijack (line 103) | func (w *responseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) {
method CloseNotify (line 111) | func (w *responseWriter) CloseNotify() <-chan bool {
method Flush (line 116) | func (w *responseWriter) Flush() {
method Pusher (line 121) | func (w *responseWriter) Pusher() (pusher http.Pusher) {
FILE: vendor/github.com/gin-gonic/gin/routergroup.go
type IRouter (line 15) | type IRouter interface
type IRoutes (line 21) | type IRoutes interface
type RouterGroup (line 41) | type RouterGroup struct
method Use (line 51) | func (group *RouterGroup) Use(middleware ...HandlerFunc) IRoutes {
method Group (line 58) | func (group *RouterGroup) Group(relativePath string, handlers ...Handl...
method BasePath (line 68) | func (group *RouterGroup) BasePath() string {
method handle (line 72) | func (group *RouterGroup) handle(httpMethod, relativePath string, hand...
method Handle (line 89) | func (group *RouterGroup) Handle(httpMethod, relativePath string, hand...
method POST (line 97) | func (group *RouterGroup) POST(relativePath string, handlers ...Handle...
method GET (line 102) | func (group *RouterGroup) GET(relativePath string, handlers ...Handler...
method DELETE (line 107) | func (group *RouterGroup) DELETE(relativePath string, handlers ...Hand...
method PATCH (line 112) | func (group *RouterGroup) PATCH(relativePath string, handlers ...Handl...
method PUT (line 117) | func (group *RouterGroup) PUT(relativePath string, handlers ...Handler...
method OPTIONS (line 122) | func (group *RouterGroup) OPTIONS(relativePath string, handlers ...Han...
method HEAD (line 127) | func (group *RouterGroup) HEAD(relativePath string, handlers ...Handle...
method Any (line 133) | func (group *RouterGroup) Any(relativePath string, handlers ...Handler...
method StaticFile (line 148) | func (group *RouterGroup) StaticFile(relativePath, filepath string) IR...
method Static (line 166) | func (group *RouterGroup) Static(relativePath, root string) IRoutes {
method StaticFS (line 172) | func (group *RouterGroup) StaticFS(relativePath string, fs http.FileSy...
method createStaticHandler (line 185) | func (group *RouterGroup) createStaticHandler(relativePath string, fs ...
method combineHandlers (line 208) | func (group *RouterGroup) combineHandlers(handlers HandlersChain) Hand...
method calculateAbsolutePath (line 219) | func (group *RouterGroup) calculateAbsolutePath(relativePath string) s...
method returnObj (line 223) | func (group *RouterGroup) returnObj() IRoutes {
FILE: vendor/github.com/gin-gonic/gin/test_helpers.go
function CreateTestContext (line 10) | func CreateTestContext(w http.ResponseWriter) (c *Context, r *Engine) {
FILE: vendor/github.com/gin-gonic/gin/tree.go
type Param (line 14) | type Param struct
type Params (line 22) | type Params
method Get (line 26) | func (ps Params) Get(name string) (string, bool) {
method ByName (line 37) | func (ps Params) ByName(name string) (va string) {
type methodTree (line 42) | type methodTree struct
type methodTrees (line 47) | type methodTrees
method get (line 49) | func (trees methodTrees) get(method string) *node {
function min (line 58) | func min(a, b int) int {
function countParams (line 65) | func countParams(path string) uint8 {
type nodeType (line 79) | type nodeType
constant static (line 82) | static nodeType = iota
constant root (line 83) | root
constant param (line 84) | param
constant catchAll (line 85) | catchAll
type node (line 88) | type node struct
method incrementChildPrio (line 100) | func (n *node) incrementChildPrio(pos int) int {
method addRoute (line 125) | func (n *node) addRoute(path string, handlers HandlersChain) {
method insertChild (line 254) | func (n *node) insertChild(numParams uint8, path string, fullPath stri...
method getValue (line 372) | func (n *node) getValue(path string, po Params, unescape bool) (handle...
method findCaseInsensitivePath (line 513) | func (n *node) findCaseInsensitivePath(path string, fixTrailingSlash b...
FILE: vendor/github.com/gin-gonic/gin/utils.go
constant BindKey (line 18) | BindKey = "_gin-gonic/gin/bindkey"
function Bind (line 21) | func Bind(val interface{}) HandlerFunc {
function WrapF (line 39) | func WrapF(f http.HandlerFunc) HandlerFunc {
function WrapH (line 46) | func WrapH(h http.Handler) HandlerFunc {
type H (line 53) | type H
method MarshalXML (line 56) | func (h H) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
function assert1 (line 77) | func assert1(guard bool, text string) {
function filterFlags (line 83) | func filterFlags(content string) string {
function chooseData (line 92) | func chooseData(custom, wildcard interface{}) interface{} {
function parseAccept (line 102) | func parseAccept(acceptHeader string) []string {
function lastChar (line 113) | func lastChar(str string) uint8 {
function nameOfFunction (line 120) | func nameOfFunction(f interface{}) string {
function joinPaths (line 124) | func joinPaths(absolutePath, relativePath string) string {
function resolveAddress (line 137) | func resolveAddress(addr []string) string {
FILE: vendor/github.com/gin-gonic/gin/version.go
constant Version (line 8) | Version = "v1.4.0"
FILE: vendor/github.com/go-ini/ini/error.go
type ErrDelimiterNotFound (line 21) | type ErrDelimiterNotFound struct
method Error (line 30) | func (err ErrDelimiterNotFound) Error() string {
function IsErrDelimiterNotFound (line 25) | func IsErrDelimiterNotFound(err error) bool {
FILE: vendor/github.com/go-ini/ini/file.go
type File (line 29) | type File struct
method NewSection (line 65) | func (f *File) NewSection(name string) (*Section, error) {
method NewRawSection (line 87) | func (f *File) NewRawSection(name, body string) (*Section, error) {
method NewSections (line 99) | func (f *File) NewSections(names ...string) (err error) {
method GetSection (line 109) | func (f *File) GetSection(name string) (*Section, error) {
method Section (line 130) | func (f *File) Section(name string) *Section {
method Sections (line 142) | func (f *File) Sections() []*Section {
method ChildSections (line 151) | func (f *File) ChildSections(name string) []*Section {
method SectionStrings (line 156) | func (f *File) SectionStrings() []string {
method DeleteSection (line 163) | func (f *File) DeleteSection(name string) {
method reload (line 182) | func (f *File) reload(s dataSource) error {
method Reload (line 193) | func (f *File) Reload() (err error) {
method Append (line 208) | func (f *File) Append(source interface{}, others ...interface{}) error {
method writeToBuffer (line 224) | func (f *File) writeToBuffer(indent string) (*bytes.Buffer, error) {
method WriteToIndent (line 370) | func (f *File) WriteToIndent(w io.Writer, indent string) (int64, error) {
method WriteTo (line 379) | func (f *File) WriteTo(w io.Writer) (int64, error) {
method SaveToIndent (line 384) | func (f *File) SaveToIndent(filename, indent string) error {
method SaveTo (line 396) | func (f *File) SaveTo(filename string) error {
function newFile (line 47) | func newFile(dataSources []dataSource, opts LoadOptions) *File {
function Empty (line 58) | func Empty() *File {
FILE: vendor/github.com/go-ini/ini/ini.go
constant DEFAULT_SECTION (line 31) | DEFAULT_SECTION = "DEFAULT"
constant _DEPTH_VALUES (line 34) | _DEPTH_VALUES = 99
constant _VERSION (line 35) | _VERSION = "1.32.1"
function Version (line 39) | func Version() string {
function init (line 63) | func init() {
function inSlice (line 69) | func inSlice(str string, s []string) bool {
type dataSource (line 79) | type dataSource interface
type sourceFile (line 84) | type sourceFile struct
method ReadCloser (line 88) | func (s sourceFile) ReadCloser() (_ io.ReadCloser, err error) {
type sourceData (line 93) | type sourceData struct
method ReadCloser (line 97) | func (s *sourceData) ReadCloser() (io.ReadCloser, error) {
type sourceReadCloser (line 102) | type sourceReadCloser struct
method ReadCloser (line 106) | func (s *sourceReadCloser) ReadCloser() (io.ReadCloser, error) {
function parseDataSource (line 110) | func parseDataSource(source interface{}) (dataSource, error) {
type LoadOptions (line 123) | type LoadOptions struct
function LoadSources (line 152) | func LoadSources(opts LoadOptions, source interface{}, others ...interfa...
function Load (line 174) | func Load(source interface{}, others ...interface{}) (*File, error) {
function LooseLoad (line 180) | func LooseLoad(source interface{}, others ...interface{}) (*File, error) {
function InsensitiveLoad (line 186) | func InsensitiveLoad(source interface{}, others ...interface{}) (*File, ...
function ShadowLoad (line 192) | func ShadowLoad(source interface{}, others ...interface{}) (*File, error) {
FILE: vendor/github.com/go-ini/ini/key.go
type Key (line 27) | type Key struct
method addShadow (line 50) | func (k *Key) addShadow(val string) error {
method AddShadow (line 64) | func (k *Key) AddShadow(val string) error {
method addNestedValue (line 71) | func (k *Key) addNestedValue(val string) error {
method AddNestedValue (line 80) | func (k *Key) AddNestedValue(val string) error {
method Name (line 91) | func (k *Key) Name() string {
method Value (line 96) | func (k *Key) Value() string {
method ValueWithShadows (line 101) | func (k *Key) ValueWithShadows() []string {
method NestedValues (line 115) | func (k *Key) NestedValues() []string {
method transformValue (line 120) | func (k *Key) transformValue(val string) string {
method String (line 153) | func (k *Key) String() string {
method Validate (line 159) | func (k *Key) Validate(fn func(string) string) string {
method Bool (line 179) | func (k *Key) Bool() (bool, error) {
method Float64 (line 184) | func (k *Key) Float64() (float64, error) {
method Int (line 189) | func (k *Key) Int() (int, error) {
method Int64 (line 194) | func (k *Key) Int64() (int64, error) {
method Uint (line 199) | func (k *Key) Uint() (uint, error) {
method Uint64 (line 205) | func (k *Key) Uint64() (uint64, error) {
method Duration (line 210) | func (k *Key) Duration() (time.Duration, error) {
method TimeFormat (line 215) | func (k *Key) TimeFormat(format string) (time.Time, error) {
method Time (line 220) | func (k *Key) Time() (time.Time, error) {
method MustString (line 225) | func (k *Key) MustString(defaultVal string) string {
method MustBool (line 236) | func (k *Key) MustBool(defaultVal ...bool) bool {
method MustFloat64 (line 247) | func (k *Key) MustFloat64(defaultVal ...float64) float64 {
method MustInt (line 258) | func (k *Key) MustInt(defaultVal ...int) int {
method MustInt64 (line 269) | func (k *Key) MustInt64(defaultVal ...int64) int64 {
method MustUint (line 280) | func (k *Key) MustUint(defaultVal ...uint) uint {
method MustUint64 (line 291) | func (k *Key) MustUint64(defaultVal ...uint64) uint64 {
method MustDuration (line 302) | func (k *Key) MustDuration(defaultVal ...time.Duration) time.Duration {
method MustTimeFormat (line 313) | func (k *Key) MustTimeFormat(format string, defaultVal ...time.Time) t...
method MustTime (line 324) | func (k *Key) MustTime(defaultVal ...time.Time) time.Time {
method In (line 330) | func (k *Key) In(defaultVal string, candidates []string) string {
method InFloat64 (line 342) | func (k *Key) InFloat64(defaultVal float64, candidates []float64) floa...
method InInt (line 354) | func (k *Key) InInt(defaultVal int, candidates []int) int {
method InInt64 (line 366) | func (k *Key) InInt64(defaultVal int64, candidates []int64) int64 {
method InUint (line 378) | func (k *Key) InUint(defaultVal uint, candidates []uint) uint {
method InUint64 (line 390) | func (k *Key) InUint64(defaultVal uint64, candidates []uint64) uint64 {
method InTimeFormat (line 402) | func (k *Key) InTimeFormat(format string, defaultVal time.Time, candid...
method InTime (line 414) | func (k *Key) InTime(defaultVal time.Time, candidates []time.Time) tim...
method RangeFloat64 (line 420) | func (k *Key) RangeFloat64(defaultVal, min, max float64) float64 {
method RangeInt (line 430) | func (k *Key) RangeInt(defaultVal, min, max int) int {
method RangeInt64 (line 440) | func (k *Key) RangeInt64(defaultVal, min, max int64) int64 {
method RangeTimeFormat (line 450) | func (k *Key) RangeTimeFormat(format string, defaultVal, min, max time...
method RangeTime (line 460) | func (k *Key) RangeTime(defaultVal, min, max time.Time) time.Time {
method Strings (line 465) | func (k *Key) Strings(delim string) []string {
method StringsWithShadows (line 509) | func (k *Key) StringsWithShadows(delim string) []string {
method Float64s (line 527) | func (k *Key) Float64s(delim string) []float64 {
method Ints (line 533) | func (k *Key) Ints(delim string) []int {
method Int64s (line 539) | func (k *Key) Int64s(delim string) []int64 {
method Uints (line 545) | func (k *Key) Uints(delim string) []uint {
method Uint64s (line 551) | func (k *Key) Uint64s(delim string) []uint64 {
method TimesFormat (line 558) | func (k *Key) TimesFormat(format, delim string) []time.Time {
method Times (line 565) | func (k *Key) Times(delim string) []time.Time {
method ValidFloat64s (line 571) | func (k *Key) ValidFloat64s(delim string) []float64 {
method ValidInts (line 578) | func (k *Key) ValidInts(delim string) []int {
method ValidInt64s (line 585) | func (k *Key) ValidInt64s(delim string) []int64 {
method ValidUints (line 592) | func (k *Key) ValidUints(delim string) []uint {
method ValidUint64s (line 599) | func (k *Key) ValidUint64s(delim string) []uint64 {
method ValidTimesFormat (line 605) | func (k *Key) ValidTimesFormat(format, delim string) []time.Time {
method ValidTimes (line 611) | func (k *Key) ValidTimes(delim string) []time.Time {
method StrictFloat64s (line 616) | func (k *Key) StrictFloat64s(delim string) ([]float64, error) {
method StrictInts (line 621) | func (k *Key) StrictInts(delim string) ([]int, error) {
method StrictInt64s (line 626) | func (k *Key) StrictInt64s(delim string) ([]int64, error) {
method StrictUints (line 631) | func (k *Key) StrictUints(delim string) ([]uint, error) {
method StrictUint64s (line 636) | func (k *Key) StrictUint64s(delim string) ([]uint64, error) {
method StrictTimesFormat (line 642) | func (k *Key) StrictTimesFormat(format, delim string) ([]time.Time, er...
method StrictTimes (line 648) | func (k *Key) StrictTimes(delim string) ([]time.Time, error) {
method parseFloat64s (line 653) | func (k *Key) parseFloat64s(strs []string, addInvalid, returnOnInvalid...
method parseInts (line 668) | func (k *Key) parseInts(strs []string, addInvalid, returnOnInvalid boo...
method parseInt64s (line 683) | func (k *Key) parseInt64s(strs []string, addInvalid, returnOnInvalid b...
method parseUints (line 698) | func (k *Key) parseUints(strs []string, addInvalid, returnOnInvalid bo...
method parseUint64s (line 713) | func (k *Key) parseUint64s(strs []string, addInvalid, returnOnInvalid ...
method parseTimesFormat (line 728) | func (k *Key) parseTimesFormat(format string, strs []string, addInvali...
method SetValue (line 743) | func (k *Key) SetValue(v string) {
function newKey (line 42) | func newKey(s *Section, name, val string) *Key {
type ValueMapper (line 88) | type ValueMapper
function parseBool (line 168) | func parseBool(str string) (value bool, err error) {
FILE: vendor/github.com/go-ini/ini/parser.go
type tokenType (line 27) | type tokenType
constant _TOKEN_INVALID (line 30) | _TOKEN_INVALID tokenType = iota
constant _TOKEN_COMMENT (line 31) | _TOKEN_COMMENT
constant _TOKEN_SECTION (line 32) | _TOKEN_SECTION
constant _TOKEN_KEY (line 33) | _TOKEN_KEY
type parser (line 36) | type parser struct
method BOM (line 53) | func (p *parser) BOM() error {
method readUntil (line 80) | func (p *parser) readUntil(delim byte) ([]byte, error) {
method readMultilines (line 142) | func (p *parser) readMultilines(line, val, valQuote string) (string, e...
method readContinuationLines (line 168) | func (p *parser) readContinuationLines(val string) (string, error) {
method readValue (line 196) | func (p *parser) readValue(in []byte,
function newParser (line 43) | func newParser(r io.Reader) *parser {
function cleanComment (line 92) | func cleanComment(in []byte) ([]byte, bool) {
function readKeyName (line 100) | func readKeyName(in []byte) (string, int, error) {
function hasSurroundedQuote (line 191) | func hasSurroundedQuote(in string, quote byte) bool {
method parse (line 260) | func (f *File) parse(reader io.Reader) (err error) {
FILE: vendor/github.com/go-ini/ini/section.go
type Section (line 24) | type Section struct
method Name (line 47) | func (s *Section) Name() string {
method Body (line 53) | func (s *Section) Body() string {
method SetBody (line 58) | func (s *Section) SetBody(body string) {
method NewKey (line 66) | func (s *Section) NewKey(name, val string) (*Key, error) {
method NewBooleanKey (line 96) | func (s *Section) NewBooleanKey(name string) (*Key, error) {
method GetKey (line 107) | func (s *Section) GetKey(name string) (*Key, error) {
method HasKey (line 141) | func (s *Section) HasKey(name string) bool {
method Haskey (line 148) | func (s *Section) Haskey(name string) bool {
method HasValue (line 153) | func (s *Section) HasValue(value string) bool {
method Key (line 168) | func (s *Section) Key(name string) *Key {
method Keys (line 180) | func (s *Section) Keys() []*Key {
method ParentKeys (line 189) | func (s *Section) ParentKeys() []*Key {
method KeyStrings (line 209) | func (s *Section) KeyStrings() []string {
method KeysHash (line 216) | func (s *Section) KeysHash() map[string]string {
method DeleteKey (line 230) | func (s *Section) DeleteKey(name string) {
method ChildSections (line 248) | func (s *Section) ChildSections() []*Section {
function newSection (line 36) | func newSection(f *File, name string) *Section {
FILE: vendor/github.com/go-ini/ini/struct.go
type NameMapper (line 28) | type NameMapper
method parseFieldName (line 61) | func (s *Section) parseFieldName(raw, actual string) string {
function parseDelim (line 71) | func parseDelim(actual string) string {
function setSliceWithProperType (line 81) | func setSliceWithProperType(key *Key, field reflect.Value, delim string,...
function wrapStrictError (line 143) | func wrapStrictError(err error, isStrict bool) error {
function setWithProperType (line 153) | func setWithProperType(t reflect.Type, key *Key, field reflect.Value, de...
function parseTagOptions (line 214) | func parseTagOptions(tag string) (rawName string, omitEmpty bool, allowS...
method mapTo (line 226) | func (s *Section) mapTo(val reflect.Value, isStrict bool) error {
method MapTo (line 273) | func (s *Section) MapTo(v interface{}) error {
method StrictMapTo (line 288) | func (s *Section) StrictMapTo(v interface{}) error {
method MapTo (line 302) | func (f *File) MapTo(v interface{}) error {
method StrictMapTo (line 308) | func (f *File) StrictMapTo(v interface{}) error {
function MapToWithMapper (line 313) | func MapToWithMapper(v interface{}, mapper NameMapper, source interface{...
function StrictMapToWithMapper (line 324) | func StrictMapToWithMapper(v interface{}, mapper NameMapper, source inte...
function MapTo (line 334) | func MapTo(v, source interface{}, others ...interface{}) error {
function StrictMapTo (line 340) | func StrictMapTo(v, source interface{}, others ...interface{}) error {
function reflectSliceWithProperType (line 345) | func reflectSliceWithProperType(key *Key, field reflect.Value, delim str...
function reflectWithProperType (line 375) | func reflectWithProperType(t reflect.Type, key *Key, field reflect.Value...
function isEmptyValue (line 399) | func isEmptyValue(v reflect.Value) bool {
method reflectFrom (line 420) | func (s *Section) reflectFrom(val reflect.Value) error {
method ReflectFrom (line 485) | func (s *Section) ReflectFrom(v interface{}) error {
method ReflectFrom (line 499) | func (f *File) ReflectFrom(v interface{}) error {
function ReflectFromWithMapper (line 504) | func ReflectFromWithMapper(cfg *File, v interface{}, mapper NameMapper) ...
function ReflectFrom (line 510) | func ReflectFrom(cfg *File, v interface{}) error {
FILE: vendor/github.com/go-openapi/jsonpointer/pointer.go
constant emptyPointer (line 39) | emptyPointer = ``
constant pointerSeparator (line 40) | pointerSeparator = `/`
constant invalidStart (line 42) | invalidStart = `JSON pointer must be empty or start with a "` + pointerS...
type JSONPointable (line 50) | type JSONPointable interface
type JSONSetable (line 56) | type JSONSetable interface
function New (line 61) | func New(jsonPointerString string) (Pointer, error) {
type Pointer (line 70) | type Pointer struct
method parse (line 75) | func (p *Pointer) parse(jsonPointerString string) error {
method Get (line 94) | func (p *Pointer) Get(document interface{}) (interface{}, reflect.Kind...
method Set (line 99) | func (p *Pointer) Set(document interface{}, value interface{}) (interf...
method get (line 213) | func (p *Pointer) get(node interface{}, nameProvider *swag.NameProvide...
method set (line 244) | func (p *Pointer) set(node, data interface{}, nameProvider *swag.NameP...
method DecodedTokens (line 340) | func (p *Pointer) DecodedTokens() []string {
method IsEmpty (line 350) | func (p *Pointer) IsEmpty() bool {
method String (line 355) | func (p *Pointer) String() string {
function GetForToken (line 104) | func GetForToken(document interface{}, decodedToken string) (interface{}...
function SetForToken (line 109) | func SetForToken(document interface{}, decodedToken string, value interf...
function getSingleImpl (line 113) | func getSingleImpl(node interface{}, decodedToken string, nameProvider *...
function setSingleImpl (line 162) | func setSingleImpl(node, data interface{}, decodedToken string, nameProv...
constant encRefTok0 (line 372) | encRefTok0 = `~0`
constant encRefTok1 (line 373) | encRefTok1 = `~1`
constant decRefTok0 (line 374) | decRefTok0 = `~`
constant decRefTok1 (line 375) | decRefTok1 = `/`
function Unescape (line 379) | func Unescape(token string) string {
function Escape (line 386) | func Escape(token string) string {
FILE: vendor/github.com/go-openapi/jsonreference/reference.go
constant fragmentRune (line 38) | fragmentRune = `#`
function New (line 42) | func New(jsonReferenceString string) (Ref, error) {
function MustCreateRef (line 52) | func MustCreateRef(ref string) Ref {
type Ref (line 61) | type Ref struct
method GetURL (line 73) | func (r *Ref) GetURL() *url.URL {
method GetPointer (line 78) | func (r *Ref) GetPointer() *jsonpointer.Pointer {
method String (line 83) | func (r *Ref) String() string {
method IsRoot (line 97) | func (r *Ref) IsRoot() bool {
method IsCanonical (line 105) | func (r *Ref) IsCanonical() bool {
method parse (line 110) | func (r *Ref) parse(jsonReferenceString string) error {
method Inherits (line 141) | func (r *Ref) Inherits(child Ref) (*Ref, error) {
FILE: vendor/github.com/go-openapi/spec/bindata.go
function bindataRead (line 21) | func bindataRead(data []byte, name string) ([]byte, error) {
type asset (line 41) | type asset struct
type bindataFileInfo (line 47) | type bindataFileInfo struct
method Name (line 54) | func (fi bindataFileInfo) Name() string {
method Size (line 57) | func (fi bindataFileInfo) Size() int64 {
method Mode (line 60) | func (fi bindataFileInfo) Mode() os.FileMode {
method ModTime (line 63) | func (fi bindataFileInfo) ModTime() time.Time {
method IsDir (line 66) | func (fi bindataFileInfo) IsDir() bool {
method Sys (line 69) | func (fi bindataFileInfo) Sys() interface{} {
function jsonschemaDraft04JSONBytes (line 75) | func jsonschemaDraft04JSONBytes() ([]byte, error) {
function jsonschemaDraft04JSON (line 82) | func jsonschemaDraft04JSON() (*asset, error) {
function v2SchemaJSONBytes (line 95) | func v2SchemaJSONBytes() ([]byte, error) {
function v2SchemaJSON (line 102) | func v2SchemaJSON() (*asset, error) {
function Asset (line 116) | func Asset(name string) ([]byte, error) {
function AssetString (line 129) | func AssetString(name string) (string, error) {
function MustAsset (line 136) | func MustAsset(name string) []byte {
function MustAssetString (line 147) | func MustAssetString(name string) string {
function AssetInfo (line 154) | func AssetInfo(name string) (os.FileInfo, error) {
function AssetDigest (line 168) | func AssetDigest(name string) ([sha256.Size]byte, error) {
function Digests (line 181) | func Digests() (map[string][sha256.Size]byte, error) {
function AssetNames (line 194) | func AssetNames() []string {
function AssetDir (line 222) | func AssetDir(name string) ([]string, error) {
type bintree (line 244) | type bintree struct
function RestoreAsset (line 257) | func RestoreAsset(dir, name string) error {
function RestoreAssets (line 278) | func RestoreAssets(dir, name string) error {
function _filePath (line 294) | func _filePath(dir, name string) string {
FILE: vendor/github.com/go-openapi/spec/cache.go
type ResolutionCache (line 20) | type ResolutionCache interface
type simpleCache (line 25) | type simpleCache struct
method Get (line 31) | func (s *simpleCache) Get(uri string) (interface{}, bool) {
method Set (line 42) | func (s *simpleCache) Set(uri string, data interface{}) {
function init (line 50) | func init() {
function initResolutionCache (line 55) | func initResolutionCache() ResolutionCache {
FILE: vendor/github.com/go-openapi/spec/contact_info.go
type ContactInfo (line 20) | type ContactInfo struct
FILE: vendor/github.com/go-openapi/spec/debug.go
function init (line 33) | func init() {
function debugOptions (line 37) | func debugOptions() {
function debugLog (line 41) | func debugLog(msg string, args ...interface{}) {
FILE: vendor/github.com/go-openapi/spec/expander.go
type ExpandOptions (line 24) | type ExpandOptions struct
function ResolveRefWithBase (line 32) | func ResolveRefWithBase(root interface{}, ref *Ref, opts *ExpandOptions)...
function ResolveRef (line 52) | func ResolveRef(root interface{}, ref *Ref) (*Schema, error) {
function ResolveParameter (line 73) | func ResolveParameter(root interface{}, ref Ref) (*Parameter, error) {
function ResolveParameterWithBase (line 78) | func ResolveParameterWithBase(root interface{}, ref Ref, opts *ExpandOpt...
function ResolveResponse (line 92) | func ResolveResponse(root interface{}, ref Ref) (*Response, error) {
function ResolveResponseWithBase (line 97) | func ResolveResponseWithBase(root interface{}, ref Ref, opts *ExpandOpti...
function ResolveItems (line 114) | func ResolveItems(root interface{}, ref Ref, opts *ExpandOptions) (*Item...
function ResolvePathItem (line 131) | func ResolvePathItem(root interface{}, ref Ref, opts *ExpandOptions) (*P...
function ExpandSpec (line 148) | func ExpandSpec(spec *Swagger, options *ExpandOptions) error {
function baseForRoot (line 205) | func baseForRoot(root interface{}, cache ResolutionCache) string {
function ExpandSchema (line 224) | func ExpandSchema(schema *Schema, root interface{}, cache ResolutionCach...
function ExpandSchemaWithBasePath (line 237) | func ExpandSchemaWithBasePath(schema *Schema, cache ResolutionCache, opt...
function expandItems (line 261) | func expandItems(target Schema, parentRefs []string, resolver *schemaLoa...
function expandSchema (line 281) | func expandSchema(target Schema, parentRefs []string, resolver *schemaLo...
function expandPathItem (line 445) | func expandPathItem(pathItem *PathItem, resolver *schemaLoader, basePath...
function expandOperation (line 485) | func expandOperation(op *Operation, resolver *schemaLoader, basePath str...
function ExpandResponseWithRoot (line 515) | func ExpandResponseWithRoot(response *Response, root interface{}, cache ...
function ExpandResponse (line 534) | func ExpandResponse(response *Response, basePath string) error {
function ExpandParameterWithRoot (line 551) | func ExpandParameterWithRoot(parameter *Parameter, root interface{}, cac...
function ExpandParameter (line 570) | func ExpandParameter(parameter *Parameter, basePath string) error {
function getRefAndSchema (line 586) | func getRefAndSchema(input interface{}) (*Ref, *Schema, error) {
function expandParameterOrResponse (line 608) | func expandParameterOrResponse(input interface{}, resolver *schemaLoader...
FILE: vendor/github.com/go-openapi/spec/external_docs.go
type ExternalDocumentation (line 21) | type ExternalDocumentation struct
FILE: vendor/github.com/go-openapi/spec/header.go
constant jsonArray (line 26) | jsonArray = "array"
type HeaderProps (line 30) | type HeaderProps struct
type Header (line 37) | type Header struct
method WithDescription (line 50) | func (h *Header) WithDescription(description string) *Header {
method Typed (line 56) | func (h *Header) Typed(tpe, format string) *Header {
method CollectionOf (line 63) | func (h *Header) CollectionOf(items *Items, format string) *Header {
method WithDefault (line 71) | func (h *Header) WithDefault(defaultValue interface{}) *Header {
method WithMaxLength (line 77) | func (h *Header) WithMaxLength(max int64) *Header {
method WithMinLength (line 83) | func (h *Header) WithMinLength(min int64) *Header {
method WithPattern (line 89) | func (h *Header) WithPattern(pattern string) *Header {
method WithMultipleOf (line 95) | func (h *Header) WithMultipleOf(number float64) *Header {
method WithMaximum (line 101) | func (h *Header) WithMaximum(max float64, exclusive bool) *Header {
method WithMinimum (line 108) | func (h *Header) WithMinimum(min float64, exclusive bool) *Header {
method WithEnum (line 115) | func (h *Header) WithEnum(values ...interface{}) *Header {
method WithMaxItems (line 121) | func (h *Header) WithMaxItems(size int64) *Header {
method WithMinItems (line 127) | func (h *Header) WithMinItems(size int64) *Header {
method UniqueValues (line 133) | func (h *Header) UniqueValues() *Header {
method AllowDuplicates (line 139) | func (h *Header) AllowDuplicates() *Header {
method MarshalJSON (line 145) | func (h Header) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 162) | func (h *Header) UnmarshalJSON(data []byte) error {
method JSONLookup (line 176) | func (h Header) JSONLookup(token string) (interface{}, error) {
function ResponseHeader (line 45) | func ResponseHeader() *Header {
FILE: vendor/github.com/go-openapi/spec/info.go
type Extensions (line 26) | type Extensions
method Add (line 29) | func (e Extensions) Add(key string, value interface{}) {
method GetString (line 35) | func (e Extensions) GetString(key string) (string, bool) {
method GetBool (line 44) | func (e Extensions) GetBool(key string) (bool, bool) {
method GetStringSlice (line 53) | func (e Extensions) GetStringSlice(key string) ([]string, bool) {
type VendorExtensible (line 73) | type VendorExtensible struct
method AddExtension (line 78) | func (v *VendorExtensible) AddExtension(key string, value interface{}) {
method MarshalJSON (line 89) | func (v VendorExtensible) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 101) | func (v *VendorExtensible) UnmarshalJSON(data []byte) error {
type InfoProps (line 119) | type InfoProps struct
type Info (line 132) | type Info struct
method JSONLookup (line 138) | func (i Info) JSONLookup(token string) (interface{}, error) {
method MarshalJSON (line 147) | func (i Info) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 160) | func (i *Info) UnmarshalJSON(data []byte) error {
FILE: vendor/github.com/go-openapi/spec/items.go
constant jsonRef (line 26) | jsonRef = "$ref"
type SimpleSchema (line 30) | type SimpleSchema struct
method TypeName (line 40) | func (s *SimpleSchema) TypeName() string {
method ItemsTypeName (line 48) | func (s *SimpleSchema) ItemsTypeName() string {
type CommonValidations (line 56) | type CommonValidations struct
type Items (line 75) | type Items struct
method Typed (line 88) | func (i *Items) Typed(tpe, format string) *Items {
method CollectionOf (line 95) | func (i *Items) CollectionOf(items *Items, format string) *Items {
method WithDefault (line 103) | func (i *Items) WithDefault(defaultValue interface{}) *Items {
method WithMaxLength (line 109) | func (i *Items) WithMaxLength(max int64) *Items {
method WithMinLength (line 115) | func (i *Items) WithMinLength(min int64) *Items {
method WithPattern (line 121) | func (i *Items) WithPattern(pattern string) *Items {
method WithMultipleOf (line 127) | func (i *Items) WithMultipleOf(number float64) *Items {
method WithMaximum (line 133) | func (i *Items) WithMaximum(max float64, exclusive bool) *Items {
method WithMinimum (line 140) | func (i *Items) WithMinimum(min float64, exclusive bool) *Items {
method WithEnum (line 147) | func (i *Items) WithEnum(values ...interface{}) *Items {
method WithMaxItems (line 153) | func (i *Items) WithMaxItems(size int64) *Items {
method WithMinItems (line 159) | func (i *Items) WithMinItems(size int64) *Items {
method UniqueValues (line 165) | func (i *Items) UniqueValues() *Items {
method AllowDuplicates (line 171) | func (i *Items) AllowDuplicates() *Items {
method UnmarshalJSON (line 177) | func (i *Items) UnmarshalJSON(data []byte) error {
method MarshalJSON (line 202) | func (i Items) MarshalJSON() ([]byte, error) {
method JSONLookup (line 223) | func (i Items) JSONLookup(token string) (interface{}, error) {
function NewItems (line 83) | func NewItems() *Items {
FILE: vendor/github.com/go-openapi/spec/license.go
type License (line 20) | type License struct
FILE: vendor/github.com/go-openapi/spec/normalizer.go
function normalizeAbsPath (line 28) | func normalizeAbsPath(path string) string {
function normalizePaths (line 42) | func normalizePaths(refPath, base string) string {
function denormalizeFileRef (line 78) | func denormalizeFileRef(ref *Ref, relativeBase, originalRelativeBase str...
function normalizeFileRef (line 128) | func normalizeFileRef(ref *Ref, relativeBase string) *Ref {
function absPath (line 143) | func absPath(fname string) (string, error) {
FILE: vendor/github.com/go-openapi/spec/operation.go
function init (line 27) | func init() {
type OperationProps (line 38) | type OperationProps struct
method MarshalJSON (line 58) | func (op OperationProps) MarshalJSON() ([]byte, error) {
method GobEncode (line 320) | func (op OperationProps) GobEncode() ([]byte, error) {
method GobDecode (line 365) | func (op *OperationProps) GobDecode(b []byte) error {
type Operation (line 81) | type Operation struct
method SuccessResponse (line 87) | func (o *Operation) SuccessResponse() (*Response, int, bool) {
method JSONLookup (line 108) | func (o Operation) JSONLookup(token string) (interface{}, error) {
method UnmarshalJSON (line 117) | func (o *Operation) UnmarshalJSON(data []byte) error {
method MarshalJSON (line 125) | func (o Operation) MarshalJSON() ([]byte, error) {
method WithID (line 147) | func (o *Operation) WithID(id string) *Operation {
method WithDescription (line 153) | func (o *Operation) WithDescription(description string) *Operation {
method WithSummary (line 159) | func (o *Operation) WithSummary(summary string) *Operation {
method WithExternalDocs (line 168) | func (o *Operation) WithExternalDocs(description, url string) *Operati...
method Deprecate (line 183) | func (o *Operation) Deprecate() *Operation {
method Undeprecate (line 189) | func (o *Operation) Undeprecate() *Operation {
method WithConsumes (line 195) | func (o *Operation) WithConsumes(mediaTypes ...string) *Operation {
method WithProduces (line 201) | func (o *Operation) WithProduces(mediaTypes ...string) *Operation {
method WithTags (line 207) | func (o *Operation) WithTags(tags ...string) *Operation {
method AddParam (line 214) | func (o *Operation) AddParam(param *Parameter) *Operation {
method RemoveParam (line 233) | func (o *Operation) RemoveParam(name, in string) *Operation {
method SecuredWith (line 244) | func (o *Operation) SecuredWith(name string, scopes ...string) *Operat...
method WithDefaultResponse (line 251) | func (o *Operation) WithDefaultResponse(response *Response) *Operation {
method RespondsWith (line 258) | func (o *Operation) RespondsWith(code int, response *Response) *Operat...
method GobEncode (line 289) | func (o Operation) GobEncode() ([]byte, error) {
method GobDecode (line 303) | func (o *Operation) GobDecode(b []byte) error {
function NewOperation (line 140) | func NewOperation(id string) *Operation {
type opsAlias (line 277) | type opsAlias
type gobAlias (line 279) | type gobAlias struct
FILE: vendor/github.com/go-openapi/spec/parameter.go
function QueryParam (line 26) | func QueryParam(name string) *Parameter {
function HeaderParam (line 31) | func HeaderParam(name string) *Parameter {
function PathParam (line 36) | func PathParam(name string) *Parameter {
function BodyParam (line 41) | func BodyParam(name string, schema *Schema) *Parameter {
function FormDataParam (line 47) | func FormDataParam(name string) *Parameter {
function FileParam (line 52) | func FileParam(name string) *Parameter {
function SimpleArrayParam (line 58) | func SimpleArrayParam(name, tpe, fmt string) *Parameter {
function ParamRef (line 65) | func ParamRef(uri string) *Parameter {
type ParamProps (line 76) | type ParamProps struct
type Parameter (line 111) | type Parameter struct
method JSONLookup (line 120) | func (p Parameter) JSONLookup(token string) (interface{}, error) {
method WithDescription (line 147) | func (p *Parameter) WithDescription(description string) *Parameter {
method Named (line 153) | func (p *Parameter) Named(name string) *Parameter {
method WithLocation (line 159) | func (p *Parameter) WithLocation(in string) *Parameter {
method Typed (line 165) | func (p *Parameter) Typed(tpe, format string) *Parameter {
method CollectionOf (line 172) | func (p *Parameter) CollectionOf(items *Items, format string) *Paramet...
method WithDefault (line 180) | func (p *Parameter) WithDefault(defaultValue interface{}) *Parameter {
method AllowsEmptyValues (line 187) | func (p *Parameter) AllowsEmptyValues() *Parameter {
method NoEmptyValues (line 193) | func (p *Parameter) NoEmptyValues() *Parameter {
method AsOptional (line 199) | func (p *Parameter) AsOptional() *Parameter {
method AsRequired (line 205) | func (p *Parameter) AsRequired() *Parameter {
method WithMaxLength (line 214) | func (p *Parameter) WithMaxLength(max int64) *Parameter {
method WithMinLength (line 220) | func (p *Parameter) WithMinLength(min int64) *Parameter {
method WithPattern (line 226) | func (p *Parameter) WithPattern(pattern string) *Parameter {
method WithMultipleOf (line 232) | func (p *Parameter) WithMultipleOf(number float64) *Parameter {
method WithMaximum (line 238) | func (p *Parameter) WithMaximum(max float64, exclusive bool) *Parameter {
method WithMinimum (line 245) | func (p *Parameter) WithMinimum(min float64, exclusive bool) *Parameter {
method WithEnum (line 252) | func (p *Parameter) WithEnum(values ...interface{}) *Parameter {
method WithMaxItems (line 258) | func (p *Parameter) WithMaxItems(size int64) *Parameter {
method WithMinItems (line 264) | func (p *Parameter) WithMinItems(size int64) *Parameter {
method UniqueValues (line 270) | func (p *Parameter) UniqueValues() *Parameter {
method AllowDuplicates (line 276) | func (p *Parameter) AllowDuplicates() *Parameter {
method UnmarshalJSON (line 282) | func (p *Parameter) UnmarshalJSON(data []byte) error {
method MarshalJSON (line 299) | func (p Parameter) MarshalJSON() ([]byte, error) {
FILE: vendor/github.com/go-openapi/spec/path_item.go
type PathItemProps (line 25) | type PathItemProps struct
type PathItem (line 42) | type PathItem struct
method JSONLookup (line 49) | func (p PathItem) JSONLookup(token string) (interface{}, error) {
method UnmarshalJSON (line 61) | func (p *PathItem) UnmarshalJSON(data []byte) error {
method MarshalJSON (line 72) | func (p PathItem) MarshalJSON() ([]byte, error) {
FILE: vendor/github.com/go-openapi/spec/paths.go
type Paths (line 31) | type Paths struct
method JSONLookup (line 37) | func (p Paths) JSONLookup(token string) (interface{}, error) {
method UnmarshalJSON (line 48) | func (p *Paths) UnmarshalJSON(data []byte) error {
method MarshalJSON (line 79) | func (p Paths) MarshalJSON() ([]byte, error) {
FILE: vendor/github.com/go-openapi/spec/ref.go
type Refable (line 29) | type Refable struct
method MarshalJSON (line 34) | func (r Refable) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 39) | func (r *Refable) UnmarshalJSON(d []byte) error {
type Ref (line 44) | type Ref struct
method RemoteURI (line 49) | func (r *Ref) RemoteURI() string {
method IsValidURI (line 60) | func (r *Ref) IsValidURI(basepaths ...string) bool {
method Inherits (line 107) | func (r *Ref) Inherits(child Ref) (*Ref, error) {
method MarshalJSON (line 132) | func (r Ref) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 145) | func (r *Ref) UnmarshalJSON(d []byte) error {
method GobEncode (line 154) | func (r Ref) GobEncode() ([]byte, error) {
method GobDecode (line 165) | func (r *Ref) GobDecode(b []byte) error {
method fromMap (line 175) | func (r *Ref) fromMap(v map[string]interface{}) error {
function NewRef (line 117) | func NewRef(refURI string) (Ref, error) {
function MustCreateRef (line 127) | func MustCreateRef(refURI string) Ref {
FILE: vendor/github.com/go-openapi/spec/response.go
type ResponseProps (line 25) | type ResponseProps struct
type Response (line 35) | type Response struct
method JSONLookup (line 42) | func (r Response) JSONLookup(token string) (interface{}, error) {
method UnmarshalJSON (line 54) | func (r *Response) UnmarshalJSON(data []byte) error {
method MarshalJSON (line 65) | func (r Response) MarshalJSON() ([]byte, error) {
method WithDescription (line 94) | func (r *Response) WithDescription(description string) *Response {
method WithSchema (line 101) | func (r *Response) WithSchema(schema *Schema) *Response {
method AddHeader (line 107) | func (r *Response) AddHeader(name string, header *Header) *Response {
method RemoveHeader (line 119) | func (r *Response) RemoveHeader(name string) *Response {
method AddExample (line 125) | func (r *Response) AddExample(mediaType string, example interface{}) *...
function NewResponse (line 82) | func NewResponse() *Response {
function ResponseRef (line 87) | func ResponseRef(url string) *Response {
FILE: vendor/github.com/go-openapi/spec/responses.go
type Responses (line 39) | type Responses struct
method JSONLookup (line 45) | func (r Responses) JSONLookup(token string) (interface{}, error) {
method UnmarshalJSON (line 61) | func (r *Responses) UnmarshalJSON(data []byte) error {
method MarshalJSON (line 75) | func (r Responses) MarshalJSON() ([]byte, error) {
type ResponsesProps (line 91) | type ResponsesProps struct
method MarshalJSON (line 97) | func (r ResponsesProps) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 109) | func (r *ResponsesProps) UnmarshalJSON(data []byte) error {
FILE: vendor/github.com/go-openapi/spec/schema.go
function BooleanProperty (line 28) | func BooleanProperty() *Schema {
function BoolProperty (line 33) | func BoolProperty() *Schema { return BooleanProperty() }
function StringProperty (line 36) | func StringProperty() *Schema {
function CharProperty (line 41) | func CharProperty() *Schema {
function Float64Property (line 46) | func Float64Property() *Schema {
function Float32Property (line 51) | func Float32Property() *Schema {
function Int8Property (line 56) | func Int8Property() *Schema {
function Int16Property (line 61) | func Int16Property() *Schema {
function Int32Property (line 66) | func Int32Property() *Schema {
function Int64Property (line 71) | func Int64Property() *Schema {
function StrFmtProperty (line 76) | func StrFmtProperty(format string) *Schema {
function DateProperty (line 81) | func DateProperty() *Schema {
function DateTimeProperty (line 86) | func DateTimeProperty() *Schema {
function MapProperty (line 91) | func MapProperty(property *Schema) *Schema {
function RefProperty (line 97) | func RefProperty(name string) *Schema {
function RefSchema (line 102) | func RefSchema(name string) *Schema {
function ArrayProperty (line 107) | func ArrayProperty(items *Schema) *Schema {
function ComposedSchema (line 115) | func ComposedSchema(schemas ...Schema) *Schema {
type SchemaURL (line 122) | type SchemaURL
method MarshalJSON (line 125) | func (r SchemaURL) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 134) | func (r *SchemaURL) UnmarshalJSON(data []byte) error {
method fromMap (line 142) | func (r *SchemaURL) fromMap(v map[string]interface{}) error {
type SchemaProps (line 160) | type SchemaProps struct
type SwaggerSchemaProps (line 198) | type SwaggerSchemaProps struct
type Schema (line 213) | type Schema struct
method JSONLookup (line 221) | func (s Schema) JSONLookup(token string) (interface{}, error) {
method WithID (line 239) | func (s *Schema) WithID(id string) *Schema {
method WithTitle (line 245) | func (s *Schema) WithTitle(title string) *Schema {
method WithDescription (line 251) | func (s *Schema) WithDescription(description string) *Schema {
method WithProperties (line 257) | func (s *Schema) WithProperties(schemas map[string]Schema) *Schema {
method SetProperty (line 263) | func (s *Schema) SetProperty(name string, schema Schema) *Schema {
method WithAllOf (line 272) | func (s *Schema) WithAllOf(schemas ...Schema) *Schema {
method WithMaxProperties (line 278) | func (s *Schema) WithMaxProperties(max int64) *Schema {
method WithMinProperties (line 284) | func (s *Schema) WithMinProperties(min int64) *Schema {
method Typed (line 290) | func (s *Schema) Typed(tpe, format string) *Schema {
method AddType (line 297) | func (s *Schema) AddType(tpe, format string) *Schema {
method CollectionOf (line 306) | func (s *Schema) CollectionOf(items Schema) *Schema {
method WithDefault (line 313) | func (s *Schema) WithDefault(defaultValue interface{}) *Schema {
method WithRequired (line 319) | func (s *Schema) WithRequired(items ...string) *Schema {
method AddRequired (line 325) | func (s *Schema) AddRequired(items ...string) *Schema {
method WithMaxLength (line 331) | func (s *Schema) WithMaxLength(max int64) *Schema {
method WithMinLength (line 337) | func (s *Schema) WithMinLength(min int64) *Schema {
method WithPattern (line 343) | func (s *Schema) WithPattern(pattern string) *Schema {
method WithMultipleOf (line 349) | func (s *Schema) WithMultipleOf(number float64) *Schema {
method WithMaximum (line 355) | func (s *Schema) WithMaximum(max float64, exclusive bool) *Schema {
method WithMinimum (line 362) | func (s *Schema) WithMinimum(min float64, exclusive bool) *Schema {
method WithEnum (line 369) | func (s *Schema) WithEnum(values ...interface{}) *Schema {
method WithMaxItems (line 375) | func (s *Schema) WithMaxItems(size int64) *Schema {
method WithMinItems (line 381) | func (s *Schema) WithMinItems(size int64) *Schema {
method UniqueValues (line 387) | func (s *Schema) UniqueValues() *Schema {
method AllowDuplicates (line 393) | func (s *Schema) AllowDuplicates() *Schema {
method AddToAllOf (line 399) | func (s *Schema) AddToAllOf(schemas ...Schema) *Schema {
method WithDiscriminator (line 405) | func (s *Schema) WithDiscriminator(discriminator string) *Schema {
method AsReadOnly (line 411) | func (s *Schema) AsReadOnly() *Schema {
method AsWritable (line 417) | func (s *Schema) AsWritable() *Schema {
method WithExample (line 423) | func (s *Schema) WithExample(example interface{}) *Schema {
method WithExternalDocs (line 432) | func (s *Schema) WithExternalDocs(description, url string) *Schema {
method WithXMLName (line 447) | func (s *Schema) WithXMLName(name string) *Schema {
method WithXMLNamespace (line 456) | func (s *Schema) WithXMLNamespace(namespace string) *Schema {
method WithXMLPrefix (line 465) | func (s *Schema) WithXMLPrefix(prefix string) *Schema {
method AsXMLAttribute (line 474) | func (s *Schema) AsXMLAttribute() *Schema {
method AsXMLElement (line 483) | func (s *Schema) AsXMLElement() *Schema {
method AsWrappedXML (line 492) | func (s *Schema) AsWrappedXML() *Schema {
method AsUnwrappedXML (line 501) | func (s *Schema) AsUnwrappedXML() *Schema {
method MarshalJSON (line 510) | func (s Schema) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 543) | func (s *Schema) UnmarshalJSON(data []byte) error {
FILE: vendor/github.com/go-openapi/spec/schema_loader.go
function init (line 31) | func init() {
type resolverContext (line 43) | type resolverContext struct
function newResolverContext (line 53) | func newResolverContext(originalBasePath string) *resolverContext {
type schemaLoader (line 60) | type schemaLoader struct
method transitiveResolver (line 68) | func (r *schemaLoader) transitiveResolver(basePath string, ref Ref) (*...
method updateBasePath (line 97) | func (r *schemaLoader) updateBasePath(transitive *schemaLoader, basePa...
method resolveRef (line 108) | func (r *schemaLoader) resolveRef(ref *Ref, target interface{}, basePa...
method load (line 152) | func (r *schemaLoader) load(refURL *url.URL) (interface{}, url.URL, bo...
method isCircular (line 177) | func (r *schemaLoader) isCircular(ref *Ref, basePath string, parentRef...
method Resolve (line 195) | func (r *schemaLoader) Resolve(ref *Ref, target interface{}, basePath ...
method deref (line 199) | func (r *schemaLoader) deref(input interface{}, parentRefs []string, b...
method shouldStopOnError (line 237) | func (r *schemaLoader) shouldStopOnError(err error) bool {
function defaultSchemaLoader (line 249) | func defaultSchemaLoader(
FILE: vendor/github.com/go-openapi/spec/security_scheme.go
constant basic (line 25) | basic = "basic"
constant apiKey (line 26) | apiKey = "apiKey"
constant oauth2 (line 27) | oauth2 = "oauth2"
constant implicit (line 28) | implicit = "implicit"
constant password (line 29) | password = "password"
constant application (line 30) | application = "application"
constant accessCode (line 31) | accessCode = "accessCode"
function BasicAuth (line 35) | func BasicAuth() *SecurityScheme {
function APIKeyAuth (line 40) | func APIKeyAuth(fieldName, valueSource string) *SecurityScheme {
function OAuth2Implicit (line 45) | func OAuth2Implicit(authorizationURL string) *SecurityScheme {
function OAuth2Password (line 54) | func OAuth2Password(tokenURL string) *SecurityScheme {
function OAuth2Application (line 63) | func OAuth2Application(tokenURL string) *SecurityScheme {
function OAuth2AccessToken (line 72) | func OAuth2AccessToken(authorizationURL, tokenURL string) *SecurityScheme {
type SecuritySchemeProps (line 82) | type SecuritySchemeProps struct
method AddScope (line 94) | func (s *SecuritySchemeProps) AddScope(scope, description string) {
type SecurityScheme (line 106) | type SecurityScheme struct
method JSONLookup (line 112) | func (s SecurityScheme) JSONLookup(token string) (interface{}, error) {
method MarshalJSON (line 122) | func (s SecurityScheme) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 135) | func (s *SecurityScheme) UnmarshalJSON(data []byte) error {
FILE: vendor/github.com/go-openapi/spec/spec.go
constant SwaggerSchemaURL (line 26) | SwaggerSchemaURL = "http://swagger.io/v2/schema.json#"
constant JSONSchemaURL (line 28) | JSONSchemaURL = "http://json-schema.org/draft-04/schema#"
function init (line 36) | func init() {
function MustLoadJSONSchemaDraft04 (line 42) | func MustLoadJSONSchemaDraft04() *Schema {
function JSONSchemaDraft04 (line 51) | func JSONSchemaDraft04() (*Schema, error) {
function MustLoadSwagger20Schema (line 65) | func MustLoadSwagger20Schema() *Schema {
function Swagger20Schema (line 74) | func Swagger20Schema() (*Schema, error) {
FILE: vendor/github.com/go-openapi/spec/swagger.go
type Swagger (line 31) | type Swagger struct
method JSONLookup (line 37) | func (s Swagger) JSONLookup(token string) (interface{}, error) {
method MarshalJSON (line 46) | func (s Swagger) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 59) | func (s *Swagger) UnmarshalJSON(data []byte) error {
type SwaggerProps (line 77) | type SwaggerProps struct
type Dependencies (line 97) | type Dependencies
type SchemaOrBool (line 100) | type SchemaOrBool struct
method JSONLookup (line 106) | func (s SchemaOrBool) JSONLookup(token string) (interface{}, error) {
method MarshalJSON (line 118) | func (s SchemaOrBool) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 130) | func (s *SchemaOrBool) UnmarshalJSON(data []byte) error {
type SchemaOrStringArray (line 147) | type SchemaOrStringArray struct
method JSONLookup (line 153) | func (s SchemaOrStringArray) JSONLookup(token string) (interface{}, er...
method MarshalJSON (line 159) | func (s SchemaOrStringArray) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 170) | func (s *SchemaOrStringArray) UnmarshalJSON(data []byte) error {
type Definitions (line 197) | type Definitions
type SecurityDefinitions (line 204) | type SecurityDefinitions
type StringOrArray (line 208) | type StringOrArray
method Contains (line 211) | func (s StringOrArray) Contains(value string) bool {
method UnmarshalJSON (line 231) | func (s *StringOrArray) UnmarshalJSON(data []byte) error {
method MarshalJSON (line 263) | func (s StringOrArray) MarshalJSON() ([]byte, error) {
type SchemaOrArray (line 272) | type SchemaOrArray struct
method JSONLookup (line 221) | func (s SchemaOrArray) JSONLookup(token string) (interface{}, error) {
method Len (line 278) | func (s SchemaOrArray) Len() int {
method ContainsType (line 286) | func (s *SchemaOrArray) ContainsType(name string) bool {
method MarshalJSON (line 294) | func (s SchemaOrArray) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 302) | func (s *SchemaOrArray) UnmarshalJSON(data []byte) error {
FILE: vendor/github.com/go-openapi/spec/tag.go
type TagProps (line 25) | type TagProps struct
function NewTag (line 32) | func NewTag(name, description string, externalDocs *ExternalDocumentatio...
type Tag (line 41) | type Tag struct
method JSONLookup (line 47) | func (t Tag) JSONLookup(token string) (interface{}, error) {
method MarshalJSON (line 57) | func (t Tag) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 70) | func (t *Tag) UnmarshalJSON(data []byte) error {
FILE: vendor/github.com/go-openapi/spec/xml_object.go
type XMLObject (line 20) | type XMLObject struct
method WithName (line 29) | func (x *XMLObject) WithName(name string) *XMLObject {
method WithNamespace (line 35) | func (x *XMLObject) WithNamespace(namespace string) *XMLObject {
method WithPrefix (line 41) | func (x *XMLObject) WithPrefix(prefix string) *XMLObject {
method AsAttribute (line 47) | func (x *XMLObject) AsAttribute() *XMLObject {
method AsElement (line 53) | func (x *XMLObject) AsElement() *XMLObject {
method AsWrapped (line 59) | func (x *XMLObject) AsWrapped() *XMLObject {
method AsUnwrapped (line 65) | func (x *XMLObject) AsUnwrapped() *XMLObject {
FILE: vendor/github.com/go-sql-driver/mysql/appengine.go
function init (line 20) | func init() {
FILE: vendor/github.com/go-sql-driver/mysql/auth.go
function RegisterServerPubKey (line 56) | func RegisterServerPubKey(name string, pubKey *rsa.PublicKey) {
function DeregisterServerPubKey (line 67) | func DeregisterServerPubKey(name string) {
function getServerPubKey (line 75) | func getServerPubKey(name string) (pubKey *rsa.PublicKey) {
type myRnd (line 86) | type myRnd struct
method NextByte (line 103) | func (r *myRnd) NextByte() byte {
constant myRndMaxVal (line 90) | myRndMaxVal = 0x3FFFFFFF
function newMyRnd (line 93) | func newMyRnd(seed1, seed2 uint32) *myRnd {
function pwHash (line 111) | func pwHash(password []byte) (result [2]uint32) {
function scrambleOldPassword (line 138) | func scrambleOldPassword(scramble []byte, password string) []byte {
function scramblePassword (line 164) | func scramblePassword(scramble []byte, password string) []byte {
function scrambleSHA256Password (line 194) | func scrambleSHA256Password(scramble []byte, password string) []byte {
function encryptPassword (line 221) | func encryptPassword(password string, seed []byte, pub *rsa.PublicKey) (...
method sendEncryptedPassword (line 232) | func (mc *mysqlConn) sendEncryptedPassword(seed []byte, pub *rsa.PublicK...
method auth (line 240) | func (mc *mysqlConn) auth(authData []byte, plugin string) ([]byte, error) {
method handleAuthResult (line 298) | func (mc *mysqlConn) handleAuthResult(oldAuthData []byte, plugin string)...
FILE: vendor/github.com/go-sql-driver/mysql/buffer.go
constant defaultBufSize (line 17) | defaultBufSize = 4096
constant maxCachedBufSize (line 18) | maxCachedBufSize = 256 * 1024
type buffer (line 26) | type buffer struct
method flip (line 49) | func (b *buffer) flip() {
method fill (line 54) | func (b *buffer) fill(need int) error {
method readNext (line 116) | func (b *buffer) readNext(need int) ([]byte, error) {
method takeBuffer (line 134) | func (b *buffer) takeBuffer(length int) ([]byte, error) {
method takeSmallBuffer (line 156) | func (b *buffer) takeSmallBuffer(length int) ([]byte, error) {
method takeCompleteBuffer (line 167) | func (b *buffer) takeCompleteBuffer() ([]byte, error) {
method store (line 175) | func (b *buffer) store(buf []byte) error {
function newBuffer (line 37) | func newBuffer(nc net.Conn) buffer {
FILE: vendor/github.com/go-sql-driver/mysql/collations.go
constant defaultCollation (line 11) | defaultCollation = "utf8mb4_general_ci"
constant binaryCollation (line 12) | binaryCollation = "binary"
FILE: vendor/github.com/go-sql-driver/mysql/conncheck.go
function connCheck (line 22) | func connCheck(c net.Conn) error {
FILE: vendor/github.com/go-sql-driver/mysql/conncheck_dummy.go
function connCheck (line 15) | func connCheck(c net.Conn) error {
FILE: vendor/github.com/go-sql-driver/mysql/connection.go
type mysqlConn (line 22) | type mysqlConn struct
method handleParams (line 48) | func (mc *mysqlConn) handleParams() (err error) {
method markBadConn (line 77) | func (mc *mysqlConn) markBadConn(err error) error {
method Begin (line 87) | func (mc *mysqlConn) Begin() (driver.Tx, error) {
method begin (line 91) | func (mc *mysqlConn) begin(readOnly bool) (driver.Tx, error) {
method Close (line 109) | func (mc *mysqlConn) Close() (err error) {
method cleanup (line 124) | func (mc *mysqlConn) cleanup() {
method error (line 139) | func (mc *mysqlConn) error() error {
method Prepare (line 149) | func (mc *mysqlConn) Prepare(query string) (driver.Stmt, error) {
method interpolateParams (line 181) | func (mc *mysqlConn) interpolateParams(query string, args []driver.Val...
method Exec (line 306) | func (mc *mysqlConn) Exec(query string, args []driver.Value) (driver.R...
method exec (line 336) | func (mc *mysqlConn) exec(query string) error {
method Query (line 363) | func (mc *mysqlConn) Query(query string, args []driver.Value) (driver....
method query (line 367) | func (mc *mysqlConn) query(query string, args []driver.Value) (*textRo...
method getSystemVar (line 414) | func (mc *mysqlConn) getSystemVar(name string) ([]byte, error) {
method cancel (line 443) | func (mc *mysqlConn) cancel(err error) {
method finish (line 449) | func (mc *mysqlConn) finish() {
method Ping (line 461) | func (mc *mysqlConn) Ping(ctx context.Context) (err error) {
method BeginTx (line 480) | func (mc *mysqlConn) BeginTx(ctx context.Context, opts driver.TxOption...
method QueryContext (line 500) | func (mc *mysqlConn) QueryContext(ctx context.Context, query string, a...
method ExecContext (line 519) | func (mc *mysqlConn) ExecContext(ctx context.Context, query string, ar...
method PrepareContext (line 533) | func (mc *mysqlConn) PrepareContext(ctx context.Context, query string)...
method watchCancel (line 586) | func (mc *mysqlConn) watchCancel(ctx context.Context) error {
method startWatcher (line 611) | func (mc *mysqlConn) startWatcher() {
method CheckNamedValue (line 636) | func (mc *mysqlConn) CheckNamedValue(nv *driver.NamedValue) (err error) {
method ResetSession (line 643) | func (mc *mysqlConn) ResetSession(ctx context.Context) error {
method QueryContext (line 553) | func (stmt *mysqlStmt) QueryContext(ctx context.Context, args []driver.N...
method ExecContext (line 572) | func (stmt *mysqlStmt) ExecContext(ctx context.Context, args []driver.Na...
FILE: vendor/github.com/go-sql-driver/mysql/connector.go
type connector (line 17) | type connector struct
method Connect (line 23) | func (c *connector) Connect(ctx context.Context) (driver.Conn, error) {
method Driver (line 141) | func (c *connector) Driver() driver.Driver {
FILE: vendor/github.com/go-sql-driver/mysql/const.go
constant defaultAuthPlugin (line 12) | defaultAuthPlugin = "mysql_native_password"
constant defaultMaxAllowedPacket (line 13) | defaultMaxAllowedPacket = 4 << 20
constant minProtocolVersion (line 14) | minProtocolVersion = 10
constant maxPacketSize (line 15) | maxPacketSize = 1<<24 - 1
constant timeFormat (line 16) | timeFormat = "2006-01-02 15:04:05.999999"
constant iOK (line 23) | iOK byte = 0x00
constant iAuthMoreData (line 24) | iAuthMoreData byte = 0x01
constant iLocalInFile (line 25) | iLocalInFile byte = 0xfb
constant iEOF (line 26) | iEOF byte = 0xfe
constant iERR (line 27) | iERR byte = 0xff
type clientFlag (line 31) | type clientFlag
constant clientLongPassword (line 34) | clientLongPassword clientFlag = 1 << iota
constant clientFoundRows (line 35) | clientFoundRows
constant clientLongFlag (line 36) | clientLongFlag
constant clientConnectWithDB (line 37) | clientConnectWithDB
constant clientNoSchema (line 38) | clientNoSchema
constant clientCompress (line 39) | clientCompress
constant clientODBC (line 40) | clientODBC
constant clientLocalFiles (line 41) | clientLocalFiles
constant clientIgnoreSpace (line 42) | clientIgnoreSpace
constant clientProtocol41 (line 43) | clientProtocol41
constant clientInteractive (line 44) | clientInteractive
constant clientSSL (line 45) | clientSSL
constant clientIgnoreSIGPIPE (line 46) | clientIgnoreSIGPIPE
constant clientTransactions (line 47) | clientTransactions
constant clientReserved (line 48) | clientReserved
constant clientSecureConn (line 49) | clientSecureConn
constant clientMultiStatements (line 50) | clientMultiStatements
constant clientMultiResults (line 51) | clientMultiResults
constant clientPSMultiResults (line 52) | clientPSMultiResults
constant clientPluginAuth (line 53) | clientPluginAuth
constant clientConnectAttrs (line 54) | clientConnectAttrs
constant clientPluginAuthLenEncClientData (line 55) | clientPluginAuthLenEncClientData
constant clientCanHandleExpiredPasswords (line 56) | clientCanHandleExpiredPasswords
constant clientSessionTrack (line 57) | clientSessionTrack
constant clientDeprecateEOF (line 58) | clientDeprecateEOF
constant comQuit (line 62) | comQuit byte = iota + 1
constant comInitDB (line 63) | comInitDB
constant comQuery (line 64) | comQuery
constant comFieldList (line 65) | comFieldList
constant comCreateDB (line 66) | comCreateDB
constant comDropDB (line 67) | comDropDB
constant comRefresh (line 68) | comRefresh
constant comShutdown (line 69) | comShutdown
constant comStatistics (line 70) | comStatistics
constant comProcessInfo (line 71) | comProcessInfo
constant comConnect (line 72) | comConnect
constant comProcessKill (line 73) | comProcessKill
constant comDebug (line 74) | comDebug
constant comPing (line 75) | comPing
constant comTime (line 76) | comTime
constant comDelayedInsert (line 77) | comDelayedInsert
constant comChangeUser (line 78) | comChangeUser
constant comBinlogDump (line 79) | comBinlogDump
constant comTableDump (line 80) | comTableDump
constant comConnectOut (line 81) | comConnectOut
constant comRegisterSlave (line 82) | comRegisterSlave
constant comStmtPrepare (line 83) | comStmtPrepare
constant comStmtExecute (line 84) | comStmtExecute
constant comStmtSendLongData (line 85) | comStmtSendLongData
constant comStmtClose (line 86) | comStmtClose
constant comStmtReset (line 87) | comStmtReset
constant comSetOption (line 88) | comSetOption
constant comStmtFetch (line 89) | comStmtFetch
type fieldType (line 93) | type fieldType
constant fieldTypeDecimal (line 96) | fieldTypeDecimal fieldType = iota
constant fieldTypeTiny (line 97) | fieldTypeTiny
constant fieldTypeShort (line 98) | fieldTypeShort
constant fieldTypeLong (line 99) | fieldTypeLong
constant fieldTypeFloat (line 100) | fieldTypeFloat
constant fieldTypeDouble (line 101) | fieldTypeDouble
constant fieldTypeNULL (line 102) | fieldTypeNULL
constant fieldTypeTimestamp (line 103) | fieldTypeTimestamp
constant fieldTypeLongLong (line 104) | fieldTypeLongLong
constant fieldTypeInt24 (line 105) | fieldTypeInt24
constant fieldTypeDate (line 106) | fieldTypeDate
constant fieldTypeTime (line 107) | fieldTypeTime
constant fieldTypeDateTime (line 108) | fieldTypeDateTime
constant fieldTypeYear (line 109) | fieldTypeYear
constant fieldTypeNewDate (line 110) | fieldTypeNewDate
constant fieldTypeVarChar (line 111) | fieldTypeVarChar
constant fieldTypeBit (line 112) | fieldTypeBit
constant fieldTypeJSON (line 115) | fieldTypeJSON fieldType = iota + 0xf5
constant fieldTypeNewDecimal (line 116) | fieldTypeNewDecimal
constant fieldTypeEnum (line 117) | fieldTypeEnum
constant fieldTypeSet (line 118) | fieldTypeSet
constant fieldTypeTinyBLOB (line 119) | fieldTypeTinyBLOB
constant fieldTypeMediumBLOB (line 120) | fieldTypeMediumBLOB
constant fieldTypeLongBLOB (line 121) | fieldTypeLongBLOB
constant fieldTypeBLOB (line 122) | fieldTypeBLOB
constant fieldTypeVarString (line 123) | fieldTypeVarString
constant fieldTypeString (line 124) | fieldTypeString
constant fieldTypeGeometry (line 125) | fieldTypeGeometry
type fieldFlag (line 128) | type fieldFlag
constant flagNotNULL (line 131) | flagNotNULL fieldFlag = 1 << iota
constant flagPriKey (line 132) | flagPriKey
constant flagUniqueKey (line 133) | flagUniqueKey
constant flagMultipleKey (line 134) | flagMultipleKey
constant flagBLOB (line 135) | flagBLOB
constant flagUnsigned (line 136) | flagUnsigned
constant flagZeroFill (line 137) | flagZeroFill
constant flagBinary (line 138) | flagBinary
constant flagEnum (line 139) | flagEnum
constant flagAutoIncrement (line 140) | flagAutoIncrement
constant flagTimestamp (line 141) | flagTimestamp
constant flagSet (line 142) | flagSet
constant flagUnknown1 (line 143) | flagUnknown1
constant flagUnknown2 (line 144) | flagUnknown2
constant flagUnknown3 (line 145) | flagUnknown3
constant flagUnknown4 (line 146) | flagUnknown4
type statusFlag (line 150) | type statusFlag
constant statusInTrans (line 153) | statusInTrans statusFlag = 1 << iota
constant statusInAutocommit (line 154) | statusInAutocommit
constant statusReserved (line 155) | statusReserved
constant statusMoreResultsExists (line 156) | statusMoreResultsExists
constant statusNoGoodIndexUsed (line 157) | statusNoGoodIndexUsed
constant statusNoIndexUsed (line 158) | statusNoIndexUsed
constant statusCursorExists (line 159) | statusCursorExists
constant statusLastRowSent (line 160) | statusLastRowSent
constant statusDbDropped (line 161) | statusDbDropped
constant statusNoBackslashEscapes (line 162) | statusNoBackslashEscapes
constant statusMetadataChanged (line 163) | statusMetadataChanged
constant statusQueryWasSlow (line 164) | statusQueryWasSlow
constant statusPsOutParams (line 165) | statusPsOutParams
constant statusInTransReadonly (line 166) | statusInTransReadonly
constant statusSessionStateChanged (line 167) | statusSessionStateChanged
constant cachingSha2PasswordRequestPublicKey (line 171) | cachingSha2PasswordRequestPublicKey = 2
constant cachingSha2PasswordFastAuthSuccess (line 172) | cachingSha2PasswordFastAuthSuccess = 3
constant cachingSha2PasswordPerformFullAuthentication (line 173) | cachingSha2PasswordPerformFullAuthentication = 4
FILE: vendor/github.com/go-sql-driver/mysql/driver.go
type MySQLDriver (line 29) | type MySQLDriver struct
method Open (line 72) | func (d MySQLDriver) Open(dsn string) (driver.Conn, error) {
type DialFunc (line 35) | type DialFunc
type DialContextFunc (line 39) | type DialContextFunc
function RegisterDialContext (line 49) | func RegisterDialContext(net string, dial DialContextFunc) {
function RegisterDial (line 63) | func RegisterDial(network string, dial DialFunc) {
function init (line 83) | func init() {
FILE: vendor/github.com/go-sql-driver/mysql/driver_go110.go
function NewConnector (line 18) | func NewConnector(cfg *Config) (driver.Connector, error) {
method OpenConnector (line 29) | func (d MySQLDriver) OpenConnector(dsn string) (driver.Connector, error) {
FILE: vendor/github.com/go-sql-driver/mysql/dsn.go
type Config (line 36) | type Config struct
method Clone (line 76) | func (cfg *Config) Clone() *Config {
method normalize (line 96) | func (cfg *Config) normalize() error {
method FormatDSN (line 153) | func (cfg *Config) FormatDSN() string {
function NewConfig (line 67) | func NewConfig() *Config {
function ParseDSN (line 375) | func ParseDSN(dsn string) (cfg *Config, err error) {
function parseDSNParams (line 453) | func parseDSNParams(cfg *Config, params string) (err error) {
function ensureHavePort (line 631) | func ensureHavePort(addr string) string {
FILE: vendor/github.com/go-sql-driver/mysql/errors.go
type Logger (line 43) | type Logger interface
function SetLogger (line 49) | func SetLogger(logger Logger) error {
type MySQLError (line 58) | type MySQLError struct
method Error (line 63) | func (me *MySQLError) Error() string {
FILE: vendor/github.com/go-sql-driver/mysql/fields.go
type mysqlField (line 118) | type mysqlField struct
method typeDatabaseName (line 16) | func (mf *mysqlField) typeDatabaseName() string {
method scanType (line 128) | func (mf *mysqlField) scanType() reflect.Type {
FILE: vendor/github.com/go-sql-driver/mysql/infile.go
function RegisterLocalFile (line 37) | func RegisterLocalFile(filePath string) {
function DeregisterLocalFile (line 49) | func DeregisterLocalFile(filePath string) {
function RegisterReaderHandler (line 70) | func RegisterReaderHandler(name string, handler func() io.Reader) {
function DeregisterReaderHandler (line 83) | func DeregisterReaderHandler(name string) {
function deferredClose (line 89) | func deferredClose(err *error, closer io.Closer) {
method handleInFileRequest (line 96) | func (mc *mysqlConn) handleInFileRequest(name string) (err error) {
FILE: vendor/github.com/go-sql-driver/mysql/packets.go
method readPacket (line 27) | func (mc *mysqlConn) readPacket() ([]byte, error) {
method writePacket (line 92) | func (mc *mysqlConn) writePacket(data []byte) error {
method readHandshakePacket (line 186) | func (mc *mysqlConn) readHandshakePacket() (data []byte, plugin string, ...
method writeHandshakeResponsePacket (line 279) | func (mc *mysqlConn) writeHandshakeResponsePacket(authResp []byte, plugi...
method writeAuthSwitchPacket (line 402) | func (mc *mysqlConn) writeAuthSwitchPacket(authData []byte) error {
method writeCommandPacket (line 420) | func (mc *mysqlConn) writeCommandPacket(command byte) error {
method writeCommandPacketStr (line 438) | func (mc *mysqlConn) writeCommandPacketStr(command byte, arg string) err...
method writeCommandPacketUint32 (line 460) | func (mc *mysqlConn) writeCommandPacketUint32(command byte, arg uint32) ...
method readAuthResult (line 488) | func (mc *mysqlConn) readAuthResult() ([]byte, string, error) {
method readResultOK (line 522) | func (mc *mysqlConn) readResultOK() error {
method readResultSetHeaderPacket (line 536) | func (mc *mysqlConn) readResultSetHeaderPacket() (int, error) {
method handleErrorPacket (line 564) | func (mc *mysqlConn) handleErrorPacket(data []byte) error {
function readStatus (line 605) | func readStatus(b []byte) statusFlag {
method handleOkPacket (line 611) | func (mc *mysqlConn) handleOkPacket(data []byte) error {
method readColumns (line 635) | func (mc *mysqlConn) readColumns(count int) ([]mysqlField, error) {
method readRow (line 735) | func (rows *textRows) readRow(dest []driver.Value) error {
method readUntilEOF (line 803) | func (mc *mysqlConn) readUntilEOF() error {
method readPrepareResultPacket (line 828) | func (stmt *mysqlStmt) readPrepareResultPacket() (uint16, error) {
method writeCommandLongData (line 855) | func (stmt *mysqlStmt) writeCommandLongData(paramID int, arg []byte) err...
method writeExecutePacket (line 908) | func (stmt *mysqlStmt) writeExecutePacket(args []driver.Value) error {
method discardResults (line 1145) | func (mc *mysqlConn) discardResults() error {
method readRow (line 1166) | func (rows *binaryRows) readRow(dest []driver.Value) error {
FILE: vendor/github.com/go-sql-driver/mysql/result.go
type mysqlResult (line 11) | type mysqlResult struct
method LastInsertId (line 16) | func (res *mysqlResult) LastInsertId() (int64, error) {
method RowsAffected (line 20) | func (res *mysqlResult) RowsAffected() (int64, error) {
FILE: vendor/github.com/go-sql-driver/mysql/rows.go
type resultSet (line 18) | type resultSet struct
type mysqlRows (line 24) | type mysqlRows struct
method Columns (line 38) | func (rows *mysqlRows) Columns() []string {
method ColumnTypeDatabaseTypeName (line 62) | func (rows *mysqlRows) ColumnTypeDatabaseTypeName(i int) string {
method ColumnTypeNullable (line 70) | func (rows *mysqlRows) ColumnTypeNullable(i int) (nullable, ok bool) {
method ColumnTypePrecisionScale (line 74) | func (rows *mysqlRows) ColumnTypePrecisionScale(i int) (int64, int64, ...
method ColumnTypeScanType (line 96) | func (rows *mysqlRows) ColumnTypeScanType(i int) reflect.Type {
method Close (line 100) | func (rows *mysqlRows) Close() (err error) {
method HasNextResultSet (line 135) | func (rows *mysqlRows) HasNextResultSet() (b bool) {
method nextResultSet (line 142) | func (rows *mysqlRows) nextResultSet() (int, error) {
method nextNotEmptyResultSet (line 166) | func (rows *mysqlRows) nextNotEmptyResultSet() (int, error) {
type binaryRows (line 30) | type binaryRows struct
method NextResultSet (line 181) | func (rows *binaryRows) NextResultSet() error {
method Next (line 191) | func (rows *binaryRows) Next(dest []driver.Value) error {
type textRows (line 34) | type textRows struct
method NextResultSet (line 203) | func (rows *textRows) NextResultSet() (err error) {
method Next (line 213) | func (rows *textRows) Next(dest []driver.Value) error {
FILE: vendor/github.com/go-sql-driver/mysql/statement.go
type mysqlStmt (line 18) | type mysqlStmt struct
method Close (line 24) | func (stmt *mysqlStmt) Close() error {
method NumInput (line 38) | func (stmt *mysqlStmt) NumInput() int {
method ColumnConverter (line 42) | func (stmt *mysqlStmt) ColumnConverter(idx int) driver.ValueConverter {
method Exec (line 46) | func (stmt *mysqlStmt) Exec(args []driver.Value) (driver.Result, error) {
method Query (line 90) | func (stmt *mysqlStmt) Query(args []driver.Value) (driver.Rows, error) {
method query (line 94) | func (stmt *mysqlStmt) query(args []driver.Value) (*binaryRows, error) {
type converter (line 132) | type converter struct
method ConvertValue (line 139) | func (c converter) ConvertValue(v interface{}) (driver.Value, error) {
function callValuerValue (line 197) | func callValuerValue(vr driver.Valuer) (v driver.Value, err error) {
FILE: vendor/github.com/go-sql-driver/mysql/transaction.go
type mysqlTx (line 11) | type mysqlTx struct
method Commit (line 15) | func (tx *mysqlTx) Commit() (err error) {
method Rollback (line 24) | func (tx *mysqlTx) Rollback() (err error) {
FILE: vendor/github.com/go-sql-driver/mysql/utils.go
function RegisterTLSConfig (line 58) | func RegisterTLSConfig(key string, config *tls.Config) error {
function DeregisterTLSConfig (line 74) | func DeregisterTLSConfig(key string) {
function getTLSConfigClone (line 82) | func getTLSConfigClone(key string) (config *tls.Config) {
function readBool (line 93) | func readBool(input string) (value bool, valid bool) {
type NullTime (line 123) | type NullTime struct
method Scan (line 131) | func (nt *NullTime) Scan(value interface{}) (err error) {
method Value (line 156) | func (nt NullTime) Value() (driver.Value, error) {
function parseDateTime (line 163) | func parseDateTime(str string, loc *time.Location) (t time.Time, err err...
function parseBinaryDateTime (line 186) | func parseBinaryDateTime(num uint64, data []byte, loc *time.Location) (d...
constant digits01 (line 230) | digits01 = "012345678901234567890123456789012345678901234567890123456789...
constant digits10 (line 231) | digits10 = "000000000011111111112222222222333333333344444444445555555555...
function appendMicrosecs (line 233) | func appendMicrosecs(dst, src []byte, decimals int) []byte {
function formatBinaryDateTime (line 282) | func formatBinaryDateTime(src []byte, length uint8) (driver.Value, error) {
function formatBinaryTime (line 341) | func formatBinaryTime(src []byte, length uint8) (driver.Value, error) {
function uint64ToBytes (line 387) | func uint64ToBytes(n uint64) []byte {
function uint64ToString (line 400) | func uint64ToString(n uint64) []byte {
function stringToInt (line 423) | func stringToInt(b []byte) int {
function readLengthEncodedString (line 435) | func readLengthEncodedString(b []byte) ([]byte, bool, int, error) {
function skipLengthEncodedString (line 453) | func skipLengthEncodedString(b []byte) (int, error) {
function readLengthEncodedInteger (line 470) | func readLengthEncodedInteger(b []byte) (uint64, bool, int) {
function appendLengthEncodedInteger (line 502) | func appendLengthEncodedInteger(b []byte, n uint64) []byte {
function reserveBuffer (line 519) | func reserveBuffer(buf []byte, appendSize int) []byte {
function escapeBytesBackslash (line 535) | func escapeBytesBackslash(buf, v []byte) []byte {
function escapeStringBackslash (line 579) | func escapeStringBackslash(buf []byte, v string) []byte {
function escapeBytesQuotes (line 628) | func escapeBytesQuotes(buf, v []byte) []byte {
function escapeStringQuotes (line 647) | func escapeStringQuotes(buf []byte, v string) []byte {
type noCopy (line 675) | type noCopy struct
method Lock (line 678) | func (*noCopy) Lock() {}
type atomicBool (line 682) | type atomicBool struct
method IsSet (line 688) | func (ab *atomicBool) IsSet() bool {
method Set (line 693) | func (ab *atomicBool) Set(value bool) {
method TrySet (line 702) | func (ab *atomicBool) TrySet(value bool) bool {
type atomicError (line 710) | type atomicError struct
method Set (line 717) | func (ae *atomicError) Set(value error) {
method Value (line 722) | func (ae *atomicError) Value() error {
function namedValueToValue (line 730) | func namedValueToValue(named []driver.NamedValue) ([]driver.Value, error) {
function mapIsolationLevel (line 742) | func mapIsolationLevel(level driver.IsolationLevel) (string, error) {
FILE: vendor/github.com/golang/freetype/freetype.go
constant nGlyphs (line 27) | nGlyphs = 256
constant nXFractions (line 28) | nXFractions = 4
constant nYFractions (line 29) | nYFractions = 1
type cacheEntry (line 35) | type cacheEntry struct
function ParseFont (line 46) | func ParseFont(b []byte) (*truetype.Font, error) {
function Pt (line 52) | func Pt(x, y int) fixed.Point26_6 {
type Context (line 60) | type Context struct
method PointToFixed (line 80) | func (c *Context) PointToFixed(x float64) fixed.Int26_6 {
method drawContour (line 85) | func (c *Context) drawContour(ps []truetype.Point, dx, dy fixed.Int26_...
method rasterize (line 161) | func (c *Context) rasterize(glyph truetype.Index, fx, fy fixed.Int26_6) (
method glyph (line 198) | func (c *Context) glyph(glyph truetype.Index, p fixed.Point26_6) (
method DrawString (line 230) | func (c *Context) DrawString(s string, p fixed.Point26_6) (fixed.Point...
method recalc (line 262) | func (c *Context) recalc() {
method SetDPI (line 281) | func (c *Context) SetDPI(dpi float64) {
method SetFont (line 290) | func (c *Context) SetFont(f *truetype.Font) {
method SetFontSize (line 299) | func (c *Context) SetFontSize(fontSize float64) {
method SetHinting (line 308) | func (c *Context) SetHinting(hinting font.Hinting) {
method SetDst (line 316) | func (c *Context) SetDst(dst draw.Image) {
method SetSrc (line 322) | func (c *Context) SetSrc(src image.Image) {
method SetClip (line 327) | func (c *Context) SetClip(clip image.Rectangle) {
function NewContext (line 334) | func NewContext() *Context {
FILE: vendor/github.com/golang/freetype/raster/geom.go
function maxAbs (line 16) | func maxAbs(a, b fixed.Int26_6) fixed.Int26_6 {
function pNeg (line 30) | func pNeg(p fixed.Point26_6) fixed.Point26_6 {
function pDot (line 35) | func pDot(p fixed.Point26_6, q fixed.Point26_6) fixed.Int52_12 {
function pLen (line 42) | func pLen(p fixed.Point26_6) fixed.Int26_6 {
function pNorm (line 51) | func pNorm(p fixed.Point26_6, length fixed.Int26_6) fixed.Point26_6 {
function pRot45CW (line 65) | func pRot45CW(p fixed.Point26_6) fixed.Point26_6 {
function pRot90CW (line 76) | func pRot90CW(p fixed.Point26_6) fixed.Point26_6 {
function pRot135CW (line 83) | func pRot135CW(p fixed.Point26_6) fixed.Point26_6 {
function pRot45CCW (line 94) | func pRot45CCW(p fixed.Point26_6) fixed.Point26_6 {
function pRot90CCW (line 105) | func pRot90CCW(p fixed.Point26_6) fixed.Point26_6 {
function pRot135CCW (line 112) | func pRot135CCW(p fixed.Point26_6) fixed.Point26_6 {
type Adder (line 121) | type Adder interface
type Path (line 134) | type Path
method String (line 137) | func (p Path) String() string {
method Clear (line 164) | func (p *Path) Clear() {
method Start (line 169) | func (p *Path) Start(a fixed.Point26_6) {
method Add1 (line 174) | func (p *Path) Add1(b fixed.Point26_6) {
method Add2 (line 179) | func (p *Path) Add2(b, c fixed.Point26_6) {
method Add3 (line 184) | func (p *Path) Add3(b, c, d fixed.Point26_6) {
method AddPath (line 189) | func (p *Path) AddPath(q Path) {
method AddStroke (line 194) | func (p *Path) AddStroke(q Path, width fixed.Int26_6, cr Capper, jr Jo...
method firstPoint (line 199) | func (p Path) firstPoint() fixed.Point26_6 {
method lastPoint (line 204) | func (p Path) lastPoint() fixed.Point26_6 {
function addPathReversed (line 214) | func addPathReversed(p Adder, q Path) {
FILE: vendor/github.com/golang/freetype/raster/paint.go
type Span (line 18) | type Span struct
type Painter (line 27) | type Painter interface
type PainterFunc (line 32) | type PainterFunc
method Paint (line 35) | func (f PainterFunc) Paint(ss []Span, done bool) { f(ss, done) }
type AlphaOverPainter (line 39) | type AlphaOverPainter struct
method Paint (line 44) | func (r AlphaOverPainter) Paint(ss []Span, done bool) {
function NewAlphaOverPainter (line 73) | func NewAlphaOverPainter(m *image.Alpha) AlphaOverPainter {
type AlphaSrcPainter (line 79) | type AlphaSrcPainter struct
method Paint (line 84) | func (r AlphaSrcPainter) Paint(ss []Span, done bool) {
function NewAlphaSrcPainter (line 112) | func NewAlphaSrcPainter(m *image.Alpha) AlphaSrcPainter {
type RGBAPainter (line 117) | type RGBAPainter struct
method Paint (line 127) | func (r *RGBAPainter) Paint(ss []Span, done bool) {
method SetColor (line 174) | func (r *RGBAPainter) SetColor(c color.Color) {
function NewRGBAPainter (line 179) | func NewRGBAPainter(m *image.RGBA) *RGBAPainter {
type MonochromePainter (line 185) | type MonochromePainter struct
method Paint (line 192) | func (m *MonochromePainter) Paint(ss []Span, done bool) {
function NewMonochromePainter (line 234) | func NewMonochromePainter(p Painter) *MonochromePainter {
type GammaCorrectionPainter (line 240) | type GammaCorrectionPainter struct
method Paint (line 252) | func (g *GammaCorrectionPainter) Paint(ss []Span, done bool) {
method SetGamma (line 269) | func (g *GammaCorrectionPainter) SetGamma(gamma float64) {
function NewGammaCorrectionPainter (line 283) | func NewGammaCorrectionPainter(p Painter, gamma float64) *GammaCorrectio...
FILE: vendor/github.com/golang/freetype/raster/raster.go
type cell (line 26) | type cell struct
type Rasterizer (line 32) | type Rasterizer struct
method findCell (line 63) | func (r *Rasterizer) findCell() int {
method saveCell (line 98) | func (r *Rasterizer) saveCell() {
method setCell (line 111) | func (r *Rasterizer) setCell(xi, yi int) {
method scan (line 121) | func (r *Rasterizer) scan(yi int, x0, y0f, x1, y1f fixed.Int26_6) {
method Start (line 194) | func (r *Rasterizer) Start(a fixed.Point26_6) {
method Add1 (line 200) | func (r *Rasterizer) Add1(b fixed.Point26_6) {
method Add2 (line 305) | func (r *Rasterizer) Add2(b, c fixed.Point26_6) {
method Add3 (line 365) | func (r *Rasterizer) Add3(b, c, d fixed.Point26_6) {
method AddPath (line 434) | func (r *Rasterizer) AddPath(p Path) {
method AddStroke (line 467) | func (r *Rasterizer) AddStroke(q Path, width fixed.Int26_6, cr Capper,...
method areaToAlpha (line 475) | func (r *Rasterizer) areaToAlpha(area int) uint32 {
method Rasterize (line 506) | func (r *Rasterizer) Rasterize(p Painter) {
method Clear (line 554) | func (r *Rasterizer) Clear() {
method SetBounds (line 568) | func (r *Rasterizer) SetBounds(width, height int) {
function NewRasterizer (line 597) | func NewRasterizer(width, height int) *Rasterizer {
FILE: vendor/github.com/golang/freetype/raster/stroke.go
constant epsilon (line 14) | epsilon = fixed.Int52_12(1024)
type Capper (line 17) | type Capper interface
type CapperFunc (line 24) | type CapperFunc
method Cap (line 26) | func (f CapperFunc) Cap(p Adder, halfWidth fixed.Int26_6, pivot, n1 fi...
type Joiner (line 31) | type Joiner interface
type JoinerFunc (line 39) | type JoinerFunc
method Join (line 41) | func (f JoinerFunc) Join(lhs, rhs Adder, halfWidth fixed.Int26_6, pivo...
function roundCapper (line 48) | func roundCapper(p Adder, halfWidth fixed.Int26_6, pivot, n1 fixed.Point...
function buttCapper (line 63) | func buttCapper(p Adder, halfWidth fixed.Int26_6, pivot, n1 fixed.Point2...
function squareCapper (line 70) | func squareCapper(p Adder, halfWidth fixed.Int26_6, pivot, n1 fixed.Poin...
function roundJoiner (line 81) | func roundJoiner(lhs, rhs Adder, haflWidth fixed.Int26_6, pivot, n0, n1 ...
function bevelJoiner (line 95) | func bevelJoiner(lhs, rhs Adder, haflWidth fixed.Int26_6, pivot, n0, n1 ...
function addArc (line 103) | func addArc(p Adder, pivot, n0, n1 fixed.Point26_6) {
function midpoint (line 190) | func midpoint(a, b fixed.Point26_6) fixed.Point26_6 {
function angleGreaterThan45 (line 196) | func angleGreaterThan45(v0, v1 fixed.Point26_6) bool {
function interpolate (line 202) | func interpolate(a, b fixed.Point26_6, t fixed.Int52_12) fixed.Point26_6 {
function curviest2 (line 223) | func curviest2(a, b, c fixed.Point26_6) fixed.Int52_12 {
type stroker (line 235) | type stroker struct
method addNonCurvy2 (line 254) | func (k *stroker) addNonCurvy2(b, c fixed.Point26_6) {
method Add1 (line 317) | func (k *stroker) Add1(b fixed.Point26_6) {
method Add2 (line 331) | func (k *stroker) Add2(b, c fixed.Point26_6) {
method Add3 (line 402) | func (k *stroker) Add3(b, c, d fixed.Point26_6) {
method stroke (line 407) | func (k *stroker) stroke(q Path) {
function Stroke (line 452) | func Stroke(p Adder, q Path, width fixed.Int26_6, cr Capper, jr Joiner) {
FILE: vendor/github.com/golang/freetype/truetype/face.go
function powerOf2 (line 17) | func powerOf2(i int) bool {
type Options (line 22) | type Options struct
method size (line 71) | func (o *Options) size() float64 {
method dpi (line 78) | func (o *Options) dpi() float64 {
method hinting (line 85) | func (o *Options) hinting() font.Hinting {
method glyphCacheEntries (line 96) | func (o *Options) glyphCacheEntries() int {
method subPixelsX (line 105) | func (o *Options) subPixelsX() (value uint32, halfQuantum, mask fixed....
method subPixelsY (line 118) | func (o *Options) subPixelsY() (value uint32, halfQuantum, mask fixed....
function subPixels (line 151) | func subPixels(q int) (value uint32, bias, mask fixed.Int26_6) {
type glyphCacheEntry (line 156) | type glyphCacheEntry struct
type glyphCacheKey (line 161) | type glyphCacheKey struct
type glyphCacheVal (line 166) | type glyphCacheVal struct
type indexCacheEntry (line 173) | type indexCacheEntry struct
function NewFace (line 179) | func NewFace(f *Font, opts *Options) font.Face {
type face (line 213) | type face struct
method index (line 238) | func (a *face) index(r rune) Index {
method Close (line 251) | func (a *face) Close() error { return nil }
method Metrics (line 254) | func (a *face) Metrics() font.Metrics {
method Kern (line 265) | func (a *face) Kern(r0, r1 rune) fixed.Int26_6 {
method Glyph (line 276) | func (a *face) Glyph(dot fixed.Point26_6, r rune) (
method GlyphBounds (line 321) | func (a *face) GlyphBounds(r rune) (bounds fixed.Rectangle26_6, advanc...
method GlyphAdvance (line 344) | func (a *face) GlyphAdvance(r rune) (advance fixed.Int26_6, ok bool) {
method rasterize (line 355) | func (a *face) rasterize(index Index, fx, fy fixed.Int26_6) (v glyphCa...
method drawContour (line 399) | func (a *face) drawContour(ps []Point, dx, dy fixed.Int26_6) {
constant indexCacheLen (line 236) | indexCacheLen = 256
function clear (line 392) | func clear(pix []byte) {
type facePainter (line 474) | type facePainter struct
method Paint (line 478) | func (p facePainter) Paint(ss []raster.Span, done bool) {
FILE: vendor/github.com/golang/freetype/truetype/glyph.go
type Point (line 17) | type Point struct
type GlyphBuf (line 26) | type GlyphBuf struct
method Load (line 85) | func (g *GlyphBuf) Load(f *Font, scale fixed.Int26_6, i Index, h font....
method load (line 173) | func (g *GlyphBuf) load(recursion uint32, i Index, useMyMetrics bool) ...
method loadSimple (line 273) | func (g *GlyphBuf) loadSimple(glyf []byte, ne int) (program []byte) {
method loadCompound (line 348) | func (g *GlyphBuf) loadCompound(recursion uint32, uhm HMetric, i Index,
method addPhantomsAndScale (line 486) | func (g *GlyphBuf) addPhantomsAndScale(np0, np1 int, simple, adjust bo...
constant flagOnCurve (line 63) | flagOnCurve = 1 << iota
constant flagXShortVector (line 64) | flagXShortVector
constant flagYShortVector (line 65) | flagYShortVector
constant flagRepeat (line 66) | flagRepeat
constant flagPositiveXShortVector (line 67) | flagPositiveXShortVector
constant flagPositiveYShortVector (line 68) | flagPositiveYShortVector
constant flagTouchedX (line 71) | flagTouchedX
constant flagTouchedY (line 72) | flagTouchedY
constant flagThisXIsSame (line 78) | flagThisXIsSame = flagPositiveXShortVector
constant flagThisYIsSame (line 79) | flagThisYIsSame = flagPositiveYShortVector
constant loadOffset (line 271) | loadOffset = 10
FILE: vendor/github.com/golang/freetype/truetype/hint.go
constant twilightZone (line 19) | twilightZone = 0
constant glyphZone (line 20) | glyphZone = 1
constant numZone (line 21) | numZone = 2
type pointType (line 24) | type pointType
constant current (line 27) | current pointType = 0
constant unhinted (line 28) | unhinted pointType = 1
constant inFontUnits (line 29) | inFontUnits pointType = 2
constant numPointType (line 30) | numPointType = 3
type callStackEntry (line 34) | type callStackEntry struct
type hinter (line 42) | type hinter struct
method init (line 118) | func (h *hinter) init(f *Font, scale fixed.Int26_6) error {
method run (line 175) | func (h *hinter) run(program []byte, pCurrent, pUnhinted, pInFontUnits...
method initializeScaledCVT (line 1399) | func (h *hinter) initializeScaledCVT() {
method getScaledCVT (line 1416) | func (h *hinter) getScaledCVT(i int32) fixed.Int26_6 {
method setScaledCVT (line 1427) | func (h *hinter) setScaledCVT(i int32, v fixed.Int26_6) {
method point (line 1437) | func (h *hinter) point(zonePointer uint32, pt pointType, i int32) *Poi...
method move (line 1445) | func (h *hinter) move(p *Point, distance fixed.Int26_6, touch bool) {
method iupInterp (line 1483) | func (h *hinter) iupInterp(interpY bool, p1, p2, ref1, ref2 int) {
method iupShift (line 1578) | func (h *hinter) iupShift(interpY bool, p1, p2, p int) {
method displacement (line 1600) | func (h *hinter) displacement(useZP1 bool) (zonePointer uint32, i int3...
method round (line 1734) | func (h *hinter) round(x fixed.Int26_6) fixed.Int26_6 {
type graphicsState (line 70) | type graphicsState struct
function resetTwilightPoints (line 106) | func resetTwilightPoints(f *Font, p []Point) []Point {
function skipInstructionPayload (line 1616) | func skipInstructionPayload(program []byte, pc int) (newPC int, ok bool) {
type f2dot14 (line 1641) | type f2dot14
function normalize (line 1643) | func normalize(x, y f2dot14) [2]f2dot14 {
function fabs (line 1662) | func fabs(x fixed.Int26_6) fixed.Int26_6 {
function fdiv (line 1670) | func fdiv(x, y fixed.Int26_6) fixed.Int26_6 {
function fmul (line 1675) | func fmul(x, y fixed.Int26_6) fixed.Int26_6 {
function dotProduct (line 1687) | func dotProduct(x, y fixed.Int26_6, q [2]f2dot14) fixed.Int26_6 {
function mulDiv (line 1719) | func mulDiv(x, y, z int64) int64 {
function bool2int32 (line 1765) | func bool2int32(b bool) int32 {
FILE: vendor/github.com/golang/freetype/truetype/opcodes.go
constant opSVTCA0 (line 12) | opSVTCA0 = 0x00
constant opSVTCA1 (line 13) | opSVTCA1 = 0x01
constant opSPVTCA0 (line 14) | opSPVTCA0 = 0x02
constant opSPVTCA1 (line 15) | opSPVTCA1 = 0x03
constant opSFVTCA0 (line 16) | opSFVTCA0 = 0x04
constant opSFVTCA1 (line 17) | opSFVTCA1 = 0x05
constant opSPVTL0 (line 18) | opSPVTL0 = 0x06
constant opSPVTL1 (line 19) | opSPVTL1 = 0x07
constant opSFVTL0 (line 20) | opSFVTL0 = 0x08
constant opSFVTL1 (line 21) | opSFVTL1 = 0x09
constant opSPVFS (line 22) | opSPVFS = 0x0a
constant opSFVFS (line 23) | opSFVFS = 0x0b
constant opGPV (line 24) | opGPV = 0x0c
constant opGFV (line 25) | opGFV = 0x0d
constant opSFVTPV (line 26) | opSFVTPV = 0x0e
constant opISECT (line 27) | opISECT = 0x0f
constant opSRP0 (line 28) | opSRP0 = 0x10
constant opSRP1 (line 29) | opSRP1 = 0x11
constant opSRP2 (line 30) | opSRP2 = 0x12
constant opSZP0 (line 31) | opSZP0 = 0x13
constant opSZP1 (line 32) | opSZP1 = 0x14
constant opSZP2 (line 33) | opSZP2 = 0x15
constant opSZPS (line 34) | opSZPS = 0x16
constant opSLOOP (line 35) | opSLOOP = 0x17
constant opRTG (line 36) | opRTG = 0x18
constant opRTHG (line 37) | opRTHG = 0x19
constant opSMD (line 38) | opSMD = 0x1a
constant opELSE (line 39) | opELSE = 0x1b
constant opJMPR (line 40) | opJMPR = 0x1c
constant opSCVTCI (line 41) | opSCVTCI = 0x1d
constant opSSWCI (line 42) | opSSWCI = 0x1e
constant opSSW (line 43) | opSSW = 0x1f
constant opDUP (line 44) | opDUP = 0x20
constant opPOP (line 45) | opPOP = 0x21
constant opCLEAR (line 46) | opCLEAR = 0x22
constant opSWAP (line 47) | opSWAP = 0x23
constant opDEPTH (line 48) | opDEPTH = 0x24
constant opCINDEX (line 49) | opCINDEX = 0x25
constant opMINDEX (line 50) | opMINDEX = 0x26
constant opALIGNPTS (line 51) | opALIGNPTS = 0x27
constant op_0x28 (line 52) | op_0x28 = 0x28
constant opUTP (line 53) | opUTP = 0x29
constant opLOOPCALL (line 54) | opLOOPCALL = 0x2a
constant opCALL (line 55) | opCALL = 0x2b
constant opFDEF (line 56) | opFDEF = 0x2c
constant opENDF (line 57) | opENDF = 0x2d
constant opMDAP0 (line 58) | opMDAP0 = 0x2e
constant opMDAP1 (line 59) | opMDAP1 = 0x2f
constant opIUP0 (line 60) | opIUP0 = 0x30
constant opIUP1 (line 61) | opIUP1 = 0x31
constant opSHP0 (line 62) | opSHP0 = 0x32
constant opSHP1 (line 63) | opSHP1 = 0x33
constant opSHC0 (line 64) | opSHC0 = 0x34
constant opSHC1 (line 65) | opSHC1 = 0x35
constant opSHZ0 (line 66) | opSHZ0 = 0x36
constant opSHZ1 (line 67) | opSHZ1 = 0x37
constant opSHPIX (line 68) | opSHPIX = 0x38
constant opIP (line 69) | opIP = 0x39
constant opMSIRP0 (line 70) | opMSIRP0 = 0x3a
constant opMSIRP1 (line 71) | opMSIRP1 = 0x3b
constant opALIGNRP (line 72) | opALIGNRP = 0x3c
constant opRTDG (line 73) | opRTDG = 0x3d
constant opMIAP0 (line 74) | opMIAP0 = 0x3e
constant opMIAP1 (line 75) | opMIAP1 = 0x3f
constant opNPUSHB (line 76) | opNPUSHB = 0x40
constant opNPUSHW (line 77) | opNPUSHW = 0x41
constant opWS (line 78) | opWS = 0x42
constant opRS (line 79) | opRS = 0x43
constant opWCVTP (line 80) | opWCVTP = 0x44
constant opRCVT (line 81) | opRCVT = 0x45
constant opGC0 (line 82) | opGC0 = 0x46
constant opGC1 (line 83) | opGC1 = 0x47
constant opSCFS (line 84) | opSCFS = 0x48
constant opMD0 (line 85) | opMD0 = 0x49
constant opMD1 (line 86) | opMD1 = 0x4a
constant opMPPEM (line 87) | opMPPEM = 0x4b
constant opMPS (line 88) | opMPS = 0x4c
constant opFLIPON (line 89) | opFLIPON = 0x4d
constant opFLIPOFF (line 90) | opFLIPOFF = 0x4e
constant opDEBUG (line 91) | opDEBUG = 0x4f
constant opLT (line 92) | opLT = 0x50
constant opLTEQ (line 93) | opLTEQ = 0x51
constant opGT (line 94) | opGT = 0x52
constant opGTEQ (line 95) | opGTEQ = 0x53
constant opEQ (line 96) | opEQ = 0x54
constant opNEQ (line 97) | opNEQ = 0x55
constant opODD (line 98) | opODD = 0x56
constant opEVEN (line 99) | opEVEN = 0x57
constant opIF (line 100) | opIF = 0x58
constant opEIF (line 101) | opEIF = 0x59
constant opAND (line 102) | opAND = 0x5a
constant opOR (line 103) | opOR = 0x5b
constant opNOT (line 104) | opNOT = 0x5c
constant opDELTAP1 (line 105) | opDELTAP1 = 0x5d
constant opSDB (line 106) | opSDB = 0x5e
constant opSDS (line 107) | opSDS = 0x5f
constant opADD (line 108) | opADD = 0x60
constant opSUB (line 109) | opSUB = 0x61
constant opDIV (line 110) | opDIV = 0x62
constant opMUL (line 111) | opMUL = 0x63
constant opABS (line 112) | opABS = 0x64
constant opNEG (line 113) | opNEG = 0x65
constant opFLOOR (line 114) | opFLOOR = 0x66
constant opCEILING (line 115) | opCEILING = 0x67
constant opROUND00 (line 116) | opROUND00 = 0x68
constant opROUND01 (line 117) | opROUND01 = 0x69
constant opROUND10 (line 118) | opROUND10 = 0x6a
constant opROUND11 (line 119) | opROUND11 = 0x6b
constant opNROUND00 (line 120) | opNROUND00 = 0x6c
constant opNROUND01 (line 121) | opNROUND01 = 0x6d
constant opNROUND10 (line 122) | opNROUND10 = 0x6e
constant opNROUND11 (line 123) | opNROUND11 = 0x6f
constant opWCVTF (line 124) | opWCVTF = 0x70
constant opDELTAP2 (line 125) | opDELTAP2 = 0x71
constant opDELTAP3 (line 126) | opDELTAP3 = 0x72
constant opDELTAC1 (line 127) | opDELTAC1 = 0x73
constant opDELTAC2 (line 128) | opDELTAC2 = 0x74
constant opDELTAC3 (line 129) | opDELTAC3 = 0x75
constant opSROUND (line 130) | opSROUND = 0x76
constant opS45ROUND (line 131) | opS45ROUND = 0x77
constant opJROT (line 132) | opJROT = 0x78
constant opJROF (line 133) | opJROF = 0x79
constant opROFF (line 134) | opROFF = 0x7a
constant op_0x7b (line 135) | op_0x7b = 0x7b
constant opRUTG (line 136) | opRUTG = 0x7c
constant opRDTG (line 137) | opRDTG = 0x7d
constant opSANGW (line 138) | opSANGW = 0x7e
constant opAA (line 139) | opAA = 0x7f
constant opFLIPPT (line 140) | opFLIPPT = 0x80
constant opFLIPRGON (line 141) | opFLIPRGON = 0x81
constant opFLIPRGOFF (line 142) | opFLIPRGOFF = 0x82
constant op_0x83 (line 143) | op_0x83 = 0x83
constant op_0x84 (line 144) | op_0x84 = 0x84
constant opSCANCTRL (line 145) | opSCANCTRL = 0x85
constant opSDPVTL0 (line 146) | opSDPVTL0 = 0x86
constant opSDPVTL1 (line 147) | opSDPVTL1 = 0x87
constant opGETINFO (line 148) | opGETINFO = 0x88
constant opIDEF (line 149) | opIDEF = 0x89
constant opROLL (line 150) | opROLL = 0x8a
constant opMAX (line 151) | opMAX = 0x8b
constant opMIN (line 152) | opMIN = 0x8c
constant opSCANTYPE (line 153) | opSCANTYPE = 0x8d
constant opINSTCTRL (line 154) | opINSTCTRL = 0x8e
constant op_0x8f (line 155) | op_0x8f = 0x8f
constant op_0x90 (line 156) | op_0x90 = 0x90
constant op_0x91 (line 157) | op_0x91 = 0x91
constant op_0x92 (line 158) | op_0x92 = 0x92
constant op_0x93 (line 159) | op_0x93 = 0x93
constant op_0x94 (line 160) | op_0x94 = 0x94
constant op_0x95 (line 161) | op_0x95 = 0x95
constant op_0x96 (line 162) | op_0x96 = 0x96
constant op_0x97 (line 163) | op_0x97 = 0x97
constant op_0x98 (line 164) | op_0x98 = 0x98
constant op_0x99 (line 165) | op_0x99 = 0x99
constant op_0x9a (line 166) | op_0x9a = 0x9a
constant op_0x9b (line 167) | op_0x9b = 0x9b
constant op_0x9c (line 168) | op_0x9c = 0x9c
constant op_0x9d (line 169) | op_0x9d = 0x9d
constant op_0x9e (line 170) | op_0x9e = 0x9e
constant op_0x9f (line 171) | op_0x9f = 0x9f
constant op_0xa0 (line 172) | op_0xa0 = 0xa0
constant op_0xa1 (line 173) | op_0xa1 = 0xa1
constant op_0xa2 (line 174) | op_0xa2 = 0xa2
constant op_0xa3 (line 175) | op_0xa3 = 0xa3
constant op_0xa4 (line 176) | op_0xa4 = 0xa4
constant op_0xa5 (line 177) | op_0xa5 = 0xa5
constant op_0xa6 (line 178) | op_0xa6 = 0xa6
constant op_0xa7 (line 179) | op_0xa7 = 0xa7
constant op_0xa8 (line 180) | op_0xa8 = 0xa8
constant op_0xa9 (line 181) | op_0xa9 = 0xa9
constant op_0xaa (line 182) | op_0xaa = 0xaa
constant op_0xab (line 183) | op_0xab = 0xab
constant op_0xac (line 184) | op_0xac = 0xac
constant op_0xad (line 185) | op_0xad = 0xad
constant op_0xae (line 186) | op_0xae = 0xae
constant op_0xaf (line 187) | op_0xaf = 0xaf
constant opPUSHB000 (line 188) | opPUSHB000 = 0xb0
constant opPUSHB001 (line 189) | opPUSHB001 = 0xb1
constant opPUSHB010 (line 190) | opPUSHB010 = 0xb2
constant opPUSHB011 (line 191) | opPUSHB011 = 0xb3
constant opPUSHB100 (line 192) | opPUSHB100 = 0xb4
constant opPUSHB101 (line 193) | opPUSHB101 = 0xb5
constant opPUSHB110 (line 194) | opPUSHB110 = 0xb6
constant opPUSHB111 (line 195) | opPUSHB111 = 0xb7
constant opPUSHW000 (line 196) | opPUSHW000 = 0xb8
constant opPUSHW001 (line 197) | opPUSHW001 = 0xb9
constant opPUSHW010 (line 198) | opPUSHW010 = 0xba
constant opPUSHW011 (line 199) | opPUSHW011 = 0xbb
constant opPUSHW100 (line 200) | opPUSHW100 = 0xbc
constant opPUSHW101 (line 201) | opPUSHW101 = 0xbd
constant opPUSHW110 (line 202) | opPUSHW110 = 0xbe
constant opPUSHW111 (line 203) | opPUSHW111 = 0xbf
constant opMDRP00000 (line 204) | opMDRP00000 = 0xc0
constant opMDRP00001 (line 205) | opMDRP00001 = 0xc1
constant opMDRP00010 (line 206) | opMDRP00010 = 0xc2
constant opMDRP00011 (line 207) | opMDRP00011 = 0xc3
constant opMDRP00100 (line 208) | opMDRP00100 = 0xc4
constant opMDRP00101 (line 209) | opMDRP00101 = 0xc5
constant opMDRP00110 (line 210) | opMDRP00110 = 0xc6
constant opMDRP00111 (line 211) | opMDRP00111 = 0xc7
constant opMDRP01000 (line 212) | opMDRP01000 = 0xc8
constant opMDRP01001 (line 213) | opMDRP01001 = 0xc9
constant opMDRP01010 (line 214) | opMDRP01010 = 0xca
constant opMDRP01011 (line 215) | opMDRP01011 = 0xcb
constant opMDRP01100 (line 216) | opMDRP01100 = 0xcc
constant opMDRP01101 (line 217) | opMDRP01101 = 0xcd
constant opMDRP01110 (line 218) | opMDRP01110 = 0xce
constant opMDRP01111 (line 219) | opMDRP01111 = 0xcf
constant opMDRP10000 (line 220) | opMDRP10000 = 0xd0
constant opMDRP10001 (line 221) | opMDRP10001 = 0xd1
constant opMDRP10010 (line 222) | opMDRP10010 = 0xd2
constant opMDRP10011 (line 223) | opMDRP10011 = 0xd3
constant opMDRP10100 (line 224) | opMDRP10100 = 0xd4
constant opMDRP10101 (line 225) | opMDRP10101 = 0xd5
constant opMDRP10110 (line 226) | opMDRP10110 = 0xd6
constant opMDRP10111 (line 227) | opMDRP10111 = 0xd7
constant opMDRP11000 (line 228) | opMDRP11000 = 0xd8
constant opMDRP11001 (line 229) | opMDRP11001 = 0xd9
constant opMDRP11010 (line 230) | opMDRP11010 = 0xda
constant opMDRP11011 (line 231) | opMDRP11011 = 0xdb
constant opMDRP11100 (line 232) | opMDRP11100 = 0xdc
constant opMDRP11101 (line 233) | opMDRP11101 = 0xdd
constant opMDRP11110 (line 234) | opMDRP11110 = 0xde
constant opMDRP11111 (line 235) | opMDRP11111 = 0xdf
constant opMIRP00000 (line 236) | opMIRP00000 = 0xe0
constant opMIRP00001 (line 237) | opMIRP00001 = 0xe1
constant opMIRP00010 (line 238) | opMIRP00010 = 0xe2
constant opMIRP00011 (line 239) | opMIRP00011 = 0xe3
constant opMIRP00100 (line 240) | opMIRP00100 = 0xe4
constant opMIRP00101 (line 241) | opMIRP00101 = 0xe5
constant opMIRP00110 (line 242) | opMIRP00110 = 0xe6
constant opMIRP00111 (line 243) | opMIRP00111 = 0xe7
constant opMIRP01000 (line 244) | opMIRP01000 = 0xe8
constant opMIRP01001 (line 245) | opMIRP01001 = 0xe9
constant opMIRP01010 (line 246) | opMIRP01010 = 0xea
constant opMIRP01011 (line 247) | opMIRP01011 = 0xeb
constant opMIRP01100 (line 248) | opMIRP01100 = 0xec
constant opMIRP01101 (line 249) | opMIRP01101 = 0xed
constant opMIRP01110 (line 250) | opMIRP01110 = 0xee
constant opMIRP01111 (line 251) | opMIRP01111 = 0xef
constant opMIRP10000 (line 252) | opMIRP10000 = 0xf0
constant opMIRP10001 (line 253) | opMIRP10001 = 0xf1
constant opMIRP10010 (line 254) | opMIRP10010 = 0xf2
constant opMIRP10011 (line 255) | opMIRP10011 = 0xf3
constant opMIRP10100 (line 256) | opMIRP10100 = 0xf4
constant opMIRP10101 (line 257) | opMIRP10101 = 0xf5
constant opMIRP10110 (line 258) | opMIRP10110 = 0xf6
constant opMIRP10111 (line 259) | opMIRP10111 = 0xf7
constant opMIRP11000 (line 260) | opMIRP11000 = 0xf8
constant opMIRP11001 (line 261) | opMIRP11001 = 0xf9
constant opMIRP11010 (line 262) | opMIRP11010 = 0xfa
constant opMIRP11011 (line 263) | opMIRP11011 = 0xfb
constant opMIRP11100 (line 264) | opMIRP11100 = 0xfc
constant opMIRP11101 (line 265) | opMIRP11101 = 0xfd
constant opMIRP11110 (line 266) | opMIRP11110 = 0xfe
constant opMIRP11111 (line 267) | opMIRP11111 = 0xff
FILE: vendor/github.com/golang/freetype/truetype/truetype.go
type Index (line 27) | type Index
type NameID (line 32) | type NameID
constant NameIDCopyright (line 35) | NameIDCopyright NameID = 0
constant NameIDFontFamily (line 36) | NameIDFontFamily = 1
constant NameIDFontSubfamily (line 37) | NameIDFontSubfamily = 2
constant NameIDUniqueSubfamilyID (line 38) | NameIDUniqueSubfamilyID = 3
constant NameIDFontFullName (line 39) | NameIDFontFullName = 4
constant NameIDNameTableVersion (line 40) | NameIDNameTableVersion = 5
constant NameIDPostscriptName (line 41) | NameIDPostscriptName = 6
constant NameIDTrademarkNotice (line 42) | NameIDTrademarkNotice = 7
constant NameIDManufacturerName (line 43) | NameIDManufacturerName = 8
constant NameIDDesignerName (line 44) | NameIDDesignerName = 9
constant NameIDFontDescription (line 45) | NameIDFontDescription = 10
constant NameIDFontVendorURL (line 46) | NameIDFontVendorURL = 11
constant NameIDFontDesignerURL (line 47) | NameIDFontDesignerURL = 12
constant NameIDFontLicense (line 48) | NameIDFontLicense = 13
constant NameIDFontLicenseURL (line 49) | NameIDFontLicenseURL = 14
constant NameIDPreferredFamily (line 50) | NameIDPreferredFamily = 16
constant NameIDPreferredSubfamily (line 51) | NameIDPreferredSubfamily = 17
constant NameIDCompatibleName (line 52) | NameIDCompatibleName = 18
constant NameIDSampleText (line 53) | NameIDSampleText = 19
constant unicodeEncodingBMPOnly (line 60) | unicodeEncodingBMPOnly = 0x00000003
constant unicodeEncodingFull (line 61) | unicodeEncodingFull = 0x00000004
constant microsoftSymbolEncoding (line 62) | microsoftSymbolEncoding = 0x00030000
constant microsoftUCS2Encoding (line 63) | microsoftUCS2Encoding = 0x00030001
constant microsoftUCS4Encoding (line 64) | microsoftUCS4Encoding = 0x0003000a
type HMetric (line 68) | type HMetric struct
type VMetric (line 73) | type VMetric struct
type FormatError (line 78) | type FormatError
method Error (line 80) | func (e FormatError) Error() string {
type UnsupportedError (line 86) | type UnsupportedError
method Error (line 88) | func (e UnsupportedError) Error() string {
function u32 (line 93) | func u32(b []byte, i int) uint32 {
function u16 (line 98) | func u16(b []byte, i int) uint16 {
function readTable (line 103) | func readTable(ttf []byte, offsetLength []byte) ([]byte, error) {
function parseSubtables (line 126) | func parseSubtables(table []byte, name string, offset, size int, pred fu...
constant locaOffsetFormatUnknown (line 165) | locaOffsetFormatUnknown int = iota
constant locaOffsetFormatShort (line 166) | locaOffsetFormatShort
constant locaOffsetFormatLong (line 167) | locaOffsetFormatLong
type cm (line 171) | type cm struct
type Font (line 176) | type Font struct
method parseCmap (line 195) | func (f *Font) parseCmap() error {
method parseHead (line 271) | func (f *Font) parseHead() error {
method parseHhea (line 291) | func (f *Font) parseHhea() error {
method parseKern (line 304) | func (f *Font) parseKern() error {
method parseMaxp (line 354) | func (f *Font) parseMaxp() error {
method scale (line 367) | func (f *Font) scale(x fixed.Int26_6) fixed.Int26_6 {
method Bounds (line 377) | func (f *Font) Bounds(scale fixed.Int26_6) fixed.Rectangle26_6 {
method FUnitsPerEm (line 387) | func (f *Font) FUnitsPerEm() int32 {
method Index (line 392) | func (f *Font) Index(x rune) Index {
method Name (line 413) | func (f *Font) Name(id NameID) string {
method unscaledHMetric (line 451) | func (f *Font) unscaledHMetric(i Index) (h HMetric) {
method HMetric (line 470) | func (f *Font) HMetric(scale fixed.Int26_6, i Index) HMetric {
method unscaledVMetric (line 479) | func (f *Font) unscaledVMetric(i Index, yMax fixed.Int26_6) (v VMetric) {
method VMetric (line 510) | func (f *Font) VMetric(scale fixed.Int26_6, i Index) VMetric {
method Kern (line 520) | func (f *Font) Kern(scale fixed.Int26_6, i0, i1 Index) fixed.Int26_6 {
function printable (line 442) | func printable(r uint16) byte {
function Parse (line 543) | func Parse(ttf []byte) (font *Font, err error) {
function parse (line 547) | func parse(ttf []byte, offset int) (font *Font, err error) {
FILE: vendor/github.com/golang/protobuf/proto/clone.go
function Clone (line 45) | func Clone(src Message) Message {
type Merger (line 57) | type Merger interface
type generatedMerger (line 69) | type generatedMerger interface
function Merge (line 77) | func Merge(dst, src Message) {
function mergeStruct (line 101) | func mergeStruct(out, in reflect.Value) {
function mergeAny (line 135) | func mergeAny(out, in reflect.Value, viaPtr bool, prop *Properties) {
function mergeExtension (line 238) | func mergeExtension(out, in map[int32]Extension) {
FILE: vendor/github.com/golang/protobuf/proto/decode.go
function DecodeVarint (line 57) | func DecodeVarint(buf []byte) (x uint64, n int) {
method decodeVarintSlow (line 74) | func (p *Buffer) decodeVarintSlow() (x uint64, err error) {
method DecodeVarint (line 101) | func (p *Buffer) DecodeVarint() (x uint64, err error) {
method DecodeFixed64 (line 200) | func (p *Buffer) DecodeFixed64() (x uint64, err error) {
method DecodeFixed32 (line 223) | func (p *Buffer) DecodeFixed32() (x uint64, err error) {
method DecodeZigzag64 (line 242) | func (p *Buffer) DecodeZigzag64() (x uint64, err error) {
method DecodeZigzag32 (line 254) | func (p *Buffer) DecodeZigzag32() (x uint64, err error) {
method DecodeRawBytes (line 266) | func (p *Buffer) DecodeRawBytes(alloc bool) (buf []byte, err error) {
method DecodeStringBytes (line 296) | func (p *Buffer) DecodeStringBytes() (s string, err error) {
type Unmarshaler (line 312) | type Unmarshaler interface
type newUnmarshaler (line 323) | type newUnmarshaler interface
function Unmarshal (line 334) | func Unmarshal(buf []byte, pb Message) error {
function UnmarshalMerge (line 351) | func UnmarshalMerge(buf []byte, pb Message) error {
method DecodeMessage (line 368) | func (p *Buffer) DecodeMessage(pb Message) error {
method DecodeGroup (line 379) | func (p *Buffer) DecodeGroup(pb Message) error {
method Unmarshal (line 396) | func (p *Buffer) Unmarshal(pb Message) error {
FILE: vendor/github.com/golang/protobuf/proto/deprecated.go
type Stats (line 37) | type Stats struct
function GetStats (line 40) | func GetStats() Stats { return Stats{} }
function MarshalMessageSet (line 43) | func MarshalMessageSet(interface{}) ([]byte, error) {
function UnmarshalMessageSet (line 48) | func UnmarshalMessageSet([]byte, interface{}) error {
function MarshalMessageSetJSON (line 53) | func MarshalMessageSetJSON(interface{}) ([]byte, error) {
function UnmarshalMessageSetJSON (line 58) | func UnmarshalMessageSetJSON([]byte, interface{}) error {
function RegisterMessageSetType (line 63) | func RegisterMessageSetType(Message, int32, string) {}
FILE: vendor/github.com/golang/protobuf/proto/discard.go
type generatedDiscarder (line 42) | type generatedDiscarder interface
function DiscardUnknown (line 57) | func DiscardUnknown(m Message) {
method DiscardUnknown (line 69) | func (a *InternalMessageInfo) DiscardUnknown(m Message) {
type discardInfo (line 78) | type discardInfo struct
method discard (line 109) | func (di *discardInfo) discard(src pointer) {
method computeDiscardInfo (line 140) | func (di *discardInfo) computeDiscardInfo() {
type discardFieldInfo (line 88) | type discardFieldInfo struct
function getDiscardInfo (line 98) | func getDiscardInfo(t reflect.Type) *discardInfo {
function discardLegacy (line 254) | func discardLegacy(m Message) {
FILE: vendor/github.com/golang/protobuf/proto/encode.go
constant maxVarintBytes (line 64) | maxVarintBytes = 10
function EncodeVarint (line 72) | func EncodeVarint(x uint64) []byte {
method EncodeVarint (line 88) | func (p *Buffer) EncodeVarint(x uint64) error {
function SizeVarint (line 98) | func SizeVarint(x uint64) int {
method EncodeFixed64 (line 125) | func (p *Buffer) EncodeFixed64(x uint64) error {
method EncodeFixed32 (line 141) | func (p *Buffer) EncodeFixed32(x uint64) error {
method EncodeZigzag64 (line 153) | func (p *Buffer) EncodeZigzag64(x uint64) error {
method EncodeZigzag32 (line 161) | func (p *Buffer) EncodeZigzag32(x uint64) error {
method EncodeRawBytes (line 169) | func (p *Buffer) EncodeRawBytes(b []byte) error {
method EncodeStringBytes (line 177) | func (p *Buffer) EncodeStringBytes(s string) error {
type Marshaler (line 184) | type Marshaler interface
method EncodeMessage (line 190) | func (p *Buffer) EncodeMessage(pb Message) error {
function isNil (line 197) | func isNil(v reflect.Value) 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 145) | func equalAny(v1, v2 reflect.Value, prop *Properties) bool {
function equalExtensions (line 232) | func equalExtensions(base reflect.Type, x1, x2 XXX_InternalExtensions) b...
function equalExtMap (line 238) | func equalExtMap(base reflect.Type, em1, em2 map[int32]Extension) bool {
FILE: vendor/github.com/golang/protobuf/proto/extensions.go
type ExtensionRange (line 52) | type ExtensionRange struct
type extendableProto (line 58) | type extendableProto interface
type extendableProtoV1 (line 67) | type extendableProtoV1 interface
type extensionAdapter (line 74) | type extensionAdapter struct
method extensionsWrite (line 78) | func (e extensionAdapter) extensionsWrite() map[int32]Extension {
method extensionsRead (line 82) | func (e extensionAdapter) extensionsRead() (map[int32]Extension, sync....
type notLocker (line 87) | type notLocker struct
method Lock (line 89) | func (n notLocker) Lock() {}
method Unlock (line 90) | func (n notLocker) Unlock() {}
function extendable (line 95) | func extendable(p interface{}) (extendableProto, error) {
function isNilPtr (line 115) | func isNilPtr(x interface{}) bool {
type XXX_InternalExtensions (line 127) | type XXX_InternalExtensions struct
method extensionsWrite (line 142) | func (e *XXX_InternalExtensions) extensionsWrite() map[int32]Extension {
method extensionsRead (line 155) | func (e *XXX_InternalExtensions) extensionsRead() (map[int32]Extension...
type ExtensionDesc (line 164) | type ExtensionDesc struct
method repeated (line 173) | func (ed *ExtensionDesc) repeated() bool {
type Extension (line 179) | type Extension struct
function SetRawExtension (line 210) | func SetRawExtension(base Message, id int32, b []byte) {
function isExtensionField (line 220) | func isExtensionField(pb extendableProto, field int32) bool {
function checkExtensionTypes (line 230) | func checkExtensionTypes(pb extendableProto, extension *ExtensionDesc) e...
type extPropKey (line 247) | type extPropKey struct
function extensionProperties (line 259) | func extensionProperties(ed *ExtensionDesc) *Properties {
function HasExtension (line 283) | func HasExtension(pb Message, extension *ExtensionDesc) bool {
function ClearExtension (line 300) | func ClearExtension(pb Message, extension *ExtensionDesc) {
function GetExtension (line 319) | func GetExtension(pb Message, extension *ExtensionDesc) (interface{}, er...
function defaultExtensionValue (line 377) | func defaultExtensionValue(extension *ExtensionDesc) (interface{}, error) {
function decodeExtension (line 416) | func decodeExtension(b []byte, extension *ExtensionDesc) (interface{}, e...
function GetExtensions (line 447) | func GetExtensions(pb Message, es []*ExtensionDesc) (extensions []interf...
function ExtensionDescs (line 468) | func ExtensionDescs(pb Message) ([]*ExtensionDesc, error) {
function SetExtension (line 497) | func SetExtension(pb Message, extension *ExtensionDesc, value interface{...
function ClearAllExtensions (line 524) | func ClearAllExtensions(pb Message) {
function RegisterExtension (line 541) | func RegisterExtension(desc *ExtensionDesc) {
function RegisteredExtensions (line 557) | func RegisteredExtensions(pb Message) map[int32]*ExtensionDesc {
function extensionAsLegacyType (line 563) | func extensionAsLegacyType(v interface{}) interface{} {
function extensionAsStorageType (line 586) | func extensionAsStorageType(v interface{}) interface{} {
FILE: vendor/github.com/golang/protobuf/proto/lib.go
type RequiredNotSetError (line 279) | type RequiredNotSetError struct
method Error (line 281) | func (e *RequiredNotSetError) Error() string {
method RequiredNotSet (line 287) | func (e *RequiredNotSetError) RequiredNotSet() bool {
type invalidUTF8Error (line 291) | type invalidUTF8Error struct
method Error (line 293) | func (e *invalidUTF8Error) Error() string {
method InvalidUTF8 (line 299) | func (e *invalidUTF8Error) InvalidUTF8() bool {
function isNonFatal (line 310) | func isNonFatal(err error) bool {
type nonFatal (line 320) | type nonFatal struct
method Merge (line 324) | func (nf *nonFatal) Merge(err error) (ok bool) {
type Message (line 338) | type Message interface
type Buffer (line 349) | type Buffer struct
method Reset (line 363) | func (p *Buffer) Reset() {
method SetBuf (line 370) | func (p *Buffer) SetBuf(s []byte) {
method Bytes (line 376) | func (p *Buffer) Bytes() []byte { return p.buf }
method SetDeterministic (line 398) | func (p *Buffer) SetDeterministic(deterministic bool) {
method DebugPrint (line 502) | func (p *Buffer) DebugPrint(s string, b []byte) {
function NewBuffer (line 358) | func NewBuffer(e []byte) *Buffer {
function Bool (line 408) | func Bool(v bool) *bool {
function Int32 (line 414) | func Int32(v int32) *int32 {
function Int (line 421) | func Int(v int) *int32 {
function Int64 (line 429) | func Int64(v int64) *int64 {
function Float32 (line 435) | func Float32(v float32) *float32 {
function Float64 (line 441) | func Float64(v float64) *float64 {
function Uint32 (line 447) | func Uint32(v uint32) *uint32 {
function Uint64 (line 453) | func Uint64(v uint64) *uint64 {
function String (line 459) | func String(v string) *string {
function EnumName (line 465) | func EnumName(m map[int32]string, v int32) string {
function UnmarshalJSONEnum (line 479) | func UnmarshalJSONEnum(m map[string]int32, data []byte, enumName string)...
function SetDefaults (line 607) | func SetDefaults(pb Message) {
function setDefaults (line 612) | func setDefaults(v reflect.Value, recur, zeros bool) {
type defaultMessage (line 754) | type defaultMessage struct
type scalarField (line 759) | type scalarField struct
function buildDefaultMessage (line 766) | func buildDefaultMessage(t reflect.Type) (dm defaultMessage) {
function fieldDefault (line 795) | func fieldDefault(ft reflect.Type, prop *Properties) (sf *scalarField, n...
function mapKeys (line 892) | func mapKeys(vs []reflect.Value) sort.Interface {
type mapKeySorter (line 915) | type mapKeySorter struct
method Len (line 920) | func (s mapKeySorter) Len() int { return len(s.vs) }
method Swap (line 921) | func (s mapKeySorter) Swap(i, j int) { s.vs[i], s.vs[j] = s.vs[j], s.v...
method Less (line 922) | func (s mapKeySorter) Less(i, j int) bool {
function isProto3Zero (line 927) | func isProto3Zero(v reflect.Value) bool {
constant ProtoPackageIsVersion3 (line 946) | ProtoPackageIsVersion3 = true
constant ProtoPackageIsVersion2 (line 950) | ProtoPackageIsVersion2 = true
constant ProtoPackageIsVersion1 (line 954) | ProtoPackageIsVersion1 = true
type InternalMessageInfo (line 960) | type InternalMessageInfo struct
FILE: vendor/github.com/golang/protobuf/proto/message_set.go
type _MessageSet_Item (line 57) | type _MessageSet_Item struct
type messageSet (line 62) | type messageSet struct
method find (line 77) | func (ms *messageSet) find(pb Message) *_MessageSet_Item {
method Has (line 91) | func (ms *messageSet) Has(pb Message) bool {
method Unmarshal (line 95) | func (ms *messageSet) Unmarshal(pb Message) error {
method Marshal (line 105) | func (ms *messageSet) Marshal(pb Message) error {
method Reset (line 129) | func (ms *messageSet) Reset() { *ms = messageSet{} }
method String (line 130) | func (ms *messageSet) String() string { return CompactTextString(ms) }
method ProtoMessage (line 131) | func (*messageSet) ProtoMessage() {}
type messageTypeIder (line 73) | type messageTypeIder interface
function skipVarint (line 135) | func skipVarint(buf []byte) []byte {
function unmarshalMessageSet (line 144) | func unmarshalMessageSet(buf []byte, exts interface{}) error {
FILE: vendor/github.com/golang/protobuf/proto/pointer_reflect.go
constant unsafeAllowed (line 45) | unsafeAllowed = false
type field (line 50) | type field
method IsValid (line 64) | func (f field) IsValid() bool { return f != nil }
function toField (line 53) | func toField(f *reflect.StructField) field {
type pointer (line 70) | type pointer struct
method offset (line 99) | func (p pointer) offset(f field) pointer {
method isNil (line 103) | func (p pointer) isNil() bool {
method toInt64 (line 120) | func (p pointer) toInt64() *int64 {
method toInt64Ptr (line 123) | func (p pointer) toInt64Ptr() **int64 {
method toInt64Slice (line 126) | func (p pointer) toInt64Slice() *[]int64 {
method toInt32 (line 132) | func (p pointer) toInt32() *int32 {
method getInt32Ptr (line 146) | func (p pointer) getInt32Ptr() *int32 {
method setInt32Ptr (line 154) | func (p pointer) setInt32Ptr(v int32) {
method getInt32Slice (line 164) | func (p pointer) getInt32Slice() []int32 {
method setInt32Slice (line 182) | func (p pointer) setInt32Slice(v []int32) {
method appendInt32Slice (line 197) | func (p pointer) appendInt32Slice(v int32) {
method toUint64 (line 201) | func (p pointer) toUint64() *uint64 {
method toUint64Ptr (line 204) | func (p pointer) toUint64Ptr() **uint64 {
method toUint64Slice (line 207) | func (p pointer) toUint64Slice() *[]uint64 {
method toUint32 (line 210) | func (p pointer) toUint32() *uint32 {
method toUint32Ptr (line 213) | func (p pointer) toUint32Ptr() **uint32 {
method toUint32Slice (line 216) | func (p pointer) toUint32Slice() *[]uint32 {
method toBool (line 219) | func (p pointer) toBool() *bool {
method toBoolPtr (line 222) | func (p pointer) toBoolPtr() **bool {
method toBoolSlice (line 225) | func (p pointer) toBoolSlice() *[]bool {
method toFloat64 (line 228) | func (p pointer) toFloat64() *float64 {
method toFloat64Ptr (line 231) | func (p pointer) toFloat64Ptr() **float64 {
method toFloat64Slice (line 234) | func (p pointer) toFloat64Slice() *[]float64 {
method toFloat32 (line 237) | func (p pointer) toFloat32() *float32 {
method toFloat32Ptr (line 240) | func (p pointer) toFloat32Ptr() **float32 {
method toFloat32Slice (line 243) | func (p pointer) toFloat32Slice() *[]float32 {
method toString (line 246) | func (p pointer) toString() *string {
method toStringPtr (line 249) | func (p pointer) toStringPtr() **string {
method toStringSlice (line 252) | func (p pointer) toStringSlice() *[]string {
method toBytes (line 255) | func (p pointer) toBytes() *[]byte {
method toBytesSlice (line 258) | func (p pointer) toBytesSlice() *[][]byte {
method toExtensions (line 261) | func (p pointer) toExtensions() *XXX_InternalExtensions {
method toOldExtensions (line 264) | func (p pointer) toOldExtensions() *map[int32]Extension {
method getPointer (line 267) | func (p pointer) getPointer() pointer {
method setPointer (line 270) | func (p pointer) setPointer(q pointer) {
method appendPointer (line 273) | func (p pointer) appendPointer(q pointer) {
method getPointerSlice (line 279) | func (p pointer) getPointerSlice() []pointer {
method setPointerSlice (line 293) | func (p pointer) setPointerSlice(v []pointer) {
method getInterfacePointer (line 307) | func (p pointer) getInterfacePointer() pointer {
method asPointerTo (line 314) | func (p pointer) asPointerTo(t reflect.Type) reflect.Value {
function toPointer (line 76) | func toPointer(i *Message) pointer {
function toAddrPointer (line 82) | func toAddrPointer(i *interface{}, isptr, deref bool) pointer {
function valToPointer (line 93) | func valToPointer(v reflect.Value) pointer {
function grow (line 110) | func grow(s reflect.Value) reflect.Value {
function atomicLoadUnmarshalInfo (line 319) | func atomicLoadUnmarshalInfo(p **unmarshalInfo) *unmarshalInfo {
function atomicStoreUnmarshalInfo (line 324) | func atomicStoreUnmarshalInfo(p **unmarshalInfo, v *unmarshalInfo) {
function atomicLoadMarshalInfo (line 329) | func atomicLoadMarshalInfo(p **marshalInfo) *marshalInfo {
function atomicStoreMarshalInfo (line 334) | func atomicStoreMarshalInfo(p **marshalInfo, v *marshalInfo) {
function atomicLoadMergeInfo (line 339) | func atomicLoadMergeInfo(p **mergeInfo) *mergeInfo {
function atomicStoreMergeInfo (line 344) | func atomicStoreMergeInfo(p **mergeInfo, v *mergeInfo) {
function atomicLoadDiscardInfo (line 349) | func atomicLoadDiscardInfo(p **discardInfo) *discardInfo {
function atomicStoreDiscardInfo (line 354) | func atomicStoreDiscardInfo(p **discardInfo, v *discardInfo) {
FILE: vendor/github.com/golang/protobuf/proto/pointer_unsafe.go
constant unsafeAllowed (line 44) | unsafeAllowed = true
type field (line 48) | type field
method IsValid (line 62) | func (f field) IsValid() bool {
function toField (line 51) | func toField(f *reflect.StructField) field {
constant invalidField (line 56) | invalidField = ^field(0)
constant zeroField (line 59) | zeroField = field(0)
type pointer (line 70) | type pointer struct
method offset (line 112) | func (p pointer) offset(f field) pointer {
method isNil (line 123) | func (p pointer) isNil() bool {
method toInt64 (line 127) | func (p pointer) toInt64() *int64 {
method toInt64Ptr (line 130) | func (p pointer) toInt64Ptr() **int64 {
method toInt64Slice (line 133) | func (p pointer) toInt64Slice() *[]int64 {
method toInt32 (line 136) | func (p pointer) toInt32() *int32 {
method getInt32Ptr (line 149) | func (p pointer) getInt32Ptr() *int32 {
method setInt32Ptr (line 152) | func (p pointer) setInt32Ptr(v int32) {
method getInt32Slice (line 159) | func (p pointer) getInt32Slice() []int32 {
method setInt32Slice (line 166) | func (p pointer) setInt32Slice(v []int32) {
method appendInt32Slice (line 171) | func (p pointer) appendInt32Slice(v int32) {
method toUint64 (line 176) | func (p pointer) toUint64() *uint64 {
method toUint64Ptr (line 179) | func (p pointer) toUint64Ptr() **uint64 {
method toUint64Slice (line 182) | func (p pointer) toUint64Slice() *[]uint64 {
method toUint32 (line 185) | func (p pointer) toUint32() *uint32 {
method toUint32Ptr (line 188) | func (p pointer) toUint32Ptr() **uint32 {
method toUint32Slice (line 191) | func (p pointer) toUint32Slice() *[]uint32 {
method toBool (line 194) | func (p pointer) toBool() *bool {
method toBoolPtr (line 197) | func (p pointer) toBoolPtr() **bool {
method toBoolSlice (line 200) | func (p pointer) toBoolSlice() *[]bool {
method toFloat64 (line 203) | func (p pointer) toFloat64() *float64 {
method toFloat64Ptr (line 206) | func (p pointer) toFloat64Ptr() **float64 {
method toFloat64Slice (line 209) | func (p pointer) toFloat64Slice() *[]float64 {
method toFloat32 (line 212) | func (p pointer) toFloat32() *float32 {
method toFloat32Ptr (line 215) | func (p pointer) toFloat32Ptr() **float32 {
method toFloat32Slice (line 218) | func (p pointer) toFloat32Slice() *[]float32 {
method toString (line 221) | func (p pointer) toString() *string {
method toStringPtr (line 224) | func (p pointer) toStringPtr() **string {
method toStringSlice (line 227) | func (p pointer) toStringSlice() *[]string {
method toBytes (line 230) | func (p pointer) toBytes() *[]byte {
method toBytesSlice (line 233) | func (p pointer) toBytesSlice() *[][]byte {
method toExtensions (line 236) | func (p pointer) toExtensions() *XXX_InternalExtensions {
method toOldExtensions (line 239) | func (p pointer) toOldExtensions() *map[int32]Extension {
method getPointerSlice (line 246) | func (p pointer) getPointerSlice() []pointer {
method setPointerSlice (line 255) | func (p pointer) setPointerSlice(v []pointer) {
method getPointer (line 262) | func (p pointer) getPointer() pointer {
method setPointer (line 267) | func (p pointer) setPointer(q pointer) {
method appendPointer (line 272) | func (p pointer) appendPointer(q pointer) {
method getInterfacePointer (line 279) | func (p pointer) getInterfacePointer() pointer {
method asPointerTo (line 286) | func (p pointer) asPointerTo(t reflect.Type) reflect.Value {
function toPointer (line 79) | func toPointer(i *Message) pointer {
function toAddrPointer (line 88) | func toAddrPointer(i *interface{}, isptr, deref bool) (p pointer) {
function valToPointer (line 106) | func valToPointer(v reflect.Value) pointer {
function atomicLoadUnmarshalInfo (line 290) | func atomicLoadUnmarshalInfo(p **unmarshalInfo) *unmarshalInfo {
function atomicStoreUnmarshalInfo (line 293) | func atomicStoreUnmarshalInfo(p **unmarshalInfo, v *unmarshalInfo) {
function atomicLoadMarshalInfo (line 296) | func atomicLoadMarshalInfo(p **marshalInfo) *marshalInfo {
function atomicStoreMarshalInfo (line 299) | func atomicStoreMarshalInfo(p **marshalInfo, v *marshalInfo) {
function atomicLoadMergeInfo (line 302) | func atomicLoadMergeInfo(p **mergeInfo) *mergeInfo {
function atomicStoreMergeInfo (line 305) | func atomicStoreMergeInfo(p **mergeInfo, v *mergeInfo) {
function atomicLoadDiscardInfo (line 308) | func atomicLoadDiscardInfo(p **discardInfo) *discardInfo {
function atomicStoreDiscardInfo (line 311) | func atomicStoreDiscardInfo(p **discardInfo, v *discardInfo) {
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
type tagMap (line 64) | type tagMap struct
method get (line 73) | func (p *tagMap) get(t int) (int, bool) {
method put (line 85) | func (p *tagMap) put(t int, fi int) {
constant tagMapFastLimit (line 71) | tagMapFastLimit = 1024
type StructProperties (line 101) | type StructProperties struct
method Len (line 123) | func (sp *StructProperties) Len() int { return len(sp.order) }
method Less (line 124) | func (sp *StructProperties) Less(i, j int) bool {
method Swap (line 127) | func (sp *StructProperties) Swap(i, j int) { sp.order[i], sp.order[j] ...
type OneofProperties (line 114) | type OneofProperties struct
type Properties (line 130) | type Properties struct
method String (line 157) | func (p *Properties) String() string {
method Parse (line 193) | func (p *Properties) Parse(s string) {
method setFieldProps (line 264) | func (p *Properties) setFieldProps(typ reflect.Type, f *reflect.Struct...
method Init (line 304) | func (p *Properties) Init(typ reflect.Type, name, tag string, f *refle...
method init (line 308) | func (p *Properties) init(typ reflect.Type, name, tag string, f *refle...
function GetProperties (line 326) | func GetProperties(t reflect.Type) *StructProperties {
type oneofFuncsIface (line 347) | type oneofFuncsIface interface
type oneofWrappersIface (line 350) | type oneofWrappersIface interface
function getPropertiesLocked (line 356) | func getPropertiesLocked(t reflect.Type) *StructProperties {
function RegisterEnum (line 457) | func RegisterEnum(typeName string, unusedNameMap map[int32]string, value...
function EnumValueMap (line 466) | func EnumValueMap(enumType string) map[string]int32 {
function RegisterType (line 480) | func RegisterType(x Message, name string) {
function RegisterMapType (line 499) | func RegisterMapType(x interface{}, name string) {
function MessageName (line 513) | func MessageName(x Message) string {
function MessageType (line 526) | func MessageType(name string) reflect.Type {
function RegisterFile (line 540) | func RegisterFile(filename string, fileDescriptor []byte) {
function FileDescriptor (line 545) | func FileDescriptor(filename string) []byte { return protoFiles[filename] }
FILE: vendor/github.com/golang/protobuf/proto/table_marshal.go
type sizer (line 49) | type sizer
type marshaler (line 53) | type marshaler
type marshalInfo (line 56) | type marshalInfo struct
method size (line 164) | func (u *marshalInfo) size(ptr pointer) int {
method cachedsize (line 210) | func (u *marshalInfo) cachedsize(ptr pointer) int {
method marshal (line 221) | func (u *marshalInfo) marshal(b []byte, ptr pointer, deterministic boo...
method computeMarshalInfo (line 301) | func (u *marshalInfo) computeMarshalInfo() {
method getExtElemInfo (line 398) | func (u *marshalInfo) getExtElemInfo(desc *ExtensionDesc) *marshalElem...
method sizeExtensions (line 2391) | func (u *marshalInfo) sizeExtensions(ext *XXX_InternalExtensions) int {
method appendExtensions (line 2419) | func (u *marshalInfo) appendExtensions(b []byte, ext *XXX_InternalExte...
method sizeMessageSet (line 2496) | func (u *marshalInfo) sizeMessageSet(ext *XXX_InternalExtensions) int {
method appendMessageSet (line 2531) | func (u *marshalInfo) appendMessageSet(b []byte, ext *XXX_InternalExte...
method sizeV1Extensions (line 2614) | func (u *marshalInfo) sizeV1Extensions(m map[int32]Extension) int {
method appendV1Extensions (line 2640) | func (u *marshalInfo) appendV1Extensions(b []byte, m map[int32]Extensi...
type marshalFieldInfo (line 71) | type marshalFieldInfo struct
method computeMarshalFieldInfo (line 443) | func (fi *marshalFieldInfo) computeMarshalFieldInfo(f *reflect.StructF...
method computeOneofFieldInfo (line 462) | func (fi *marshalFieldInfo) computeOneofFieldInfo(f *reflect.StructFie...
method setTag (line 510) | func (fi *marshalFieldInfo) setTag(f *reflect.StructField, tag int, wt...
method setMarshaler (line 517) | func (fi *marshalFieldInfo) setMarshaler(f *reflect.StructField, tags ...
type marshalElemInfo (line 84) | type marshalElemInfo struct
function getMarshalInfo (line 101) | func getMarshalInfo(t reflect.Type) *marshalInfo {
method Size (line 116) | func (a *InternalMessageInfo) Size(msg Message) int {
method Marshal (line 132) | func (a *InternalMessageInfo) Marshal(b []byte, msg Message, determinist...
function getMessageMarshalInfo (line 144) | func getMessageMarshalInfo(msg interface{}, a *InternalMessageInfo) *mar...
type byTag (line 390) | type byTag
method Len (line 392) | func (a byTag) Len() int { return len(a) }
method Swap (line 393) | func (a byTag) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 394) | func (a byTag) Less(i, j int) bool { return a[i].wiretag < a[j].wiretag }
function wiretype (line 493) | func wiretype(encoding string) uint64 {
function typeMarshaler (line 535) | func typeMarshaler(t reflect.Type, tags []string, nozero, oneof bool) (s...
function sizeFixed32Value (line 815) | func sizeFixed32Value(_ pointer, tagsize int) int {
function sizeFixed32ValueNoZero (line 818) | func sizeFixed32ValueNoZero(ptr pointer, tagsize int) int {
function sizeFixed32Ptr (line 825) | func sizeFixed32Ptr(ptr pointer, tagsize int) int {
function sizeFixed32Slice (line 832) | func sizeFixed32Slice(ptr pointer, tagsize int) int {
function sizeFixed32PackedSlice (line 836) | func sizeFixed32PackedSlice(ptr pointer, tagsize int) int {
function sizeFixedS32Value (line 843) | func sizeFixedS32Value(_ pointer, tagsize int) int {
function sizeFixedS32ValueNoZero (line 846) | func sizeFixedS32ValueNoZero(ptr pointer, tagsize int) int {
function sizeFixedS32Ptr (line 853) | func sizeFixedS32Ptr(ptr pointer, tagsize int) int {
function sizeFixedS32Slice (line 860) | func sizeFixedS32Slice(ptr pointer, tagsize int) int {
function sizeFixedS32PackedSlice (line 864) | func sizeFixedS32PackedSlice(ptr pointer, tagsize int) int {
function sizeFloat32Value (line 871) | func sizeFloat32Value(_ pointer, tagsize int) int {
function sizeFloat32ValueNoZero (line 874) | func sizeFloat32ValueNoZero(ptr pointer, tagsize int) int {
function sizeFloat32Ptr (line 881) | func sizeFloat32Ptr(ptr pointer, tagsize int) int {
function sizeFloat32Slice (line 888) | func sizeFloat32Slice(ptr pointer, tagsize int) int {
function sizeFloat32PackedSlice (line 892) | func sizeFloat32PackedSlice(ptr pointer, tagsize int) int {
function sizeFixed64Value (line 899) | func sizeFixed64Value(_ pointer, tagsize int) int {
function sizeFixed64ValueNoZero (line 902) | func sizeFixed64ValueNoZero(ptr pointer, tagsize int) int {
function sizeFixed64Ptr (line 909) | func sizeFixed64Ptr(ptr pointer, tagsize int) int {
function sizeFixed64Slice (line 916) | func sizeFixed64Slice(ptr pointer, tagsize int) int {
function sizeFixed64PackedSlice (line 920) | func sizeFixed64PackedSlice(ptr pointer, tagsize int) int {
function sizeFixedS64Value (line 927) | func sizeFixedS64Value(_ pointer, tagsize int) int {
function sizeFixedS64ValueNoZero (line 930) | func sizeFixedS64ValueNoZero(ptr pointer, tagsize int) int {
function sizeFixedS64Ptr (line 937) | func sizeFixedS64Ptr(ptr pointer, tagsize int) int {
function sizeFixedS64Slice (line 944) | func sizeFixedS64Slice(ptr pointer, tagsize int) int {
function sizeFixedS64PackedSlice (line 948) | func sizeFixedS64PackedSlice(ptr pointer, tagsize int) int {
function sizeFloat64Value (line 955) | func sizeFloat64Value(_ pointer, tagsize int) int {
function sizeFloat64ValueNoZero (line 958) | func sizeFloat64ValueNoZero(ptr pointer, tagsize int) int {
function sizeFloat64Ptr (line 965) | func sizeFloat64Ptr(ptr pointer, tagsize int) int {
function sizeFloat64Slice (line 972) | func sizeFloat64Slice(ptr pointer, tagsize int) int {
function sizeFloat64PackedSlice (line 976) | func sizeFloat64PackedSlice(ptr pointer, tagsize int) int {
function sizeVarint32Value (line 983) | func sizeVarint32Value(ptr pointer, tagsize int) int {
function sizeVarint32ValueNoZero (line 987) | func sizeVarint32ValueNoZero(ptr pointer, tagsize int) int {
function sizeVarint32Ptr (line 994) | func sizeVarint32Ptr(ptr pointer, tagsize int) int {
function sizeVarint32Slice (line 1001) | func sizeVarint32Slice(ptr pointer, tagsize int) int {
function sizeVarint32PackedSlice (line 1009) | func sizeVarint32PackedSlice(ptr pointer, tagsize int) int {
function sizeVarintS32Value (line 1020) | func sizeVarintS32Value(ptr pointer, tagsize int) int {
function sizeVarintS32ValueNoZero (line 1024) | func sizeVarintS32ValueNoZero(ptr pointer, tagsize int) int {
function sizeVarintS32Ptr (line 1031) | func sizeVarintS32Ptr(ptr pointer, tagsize int) int {
function sizeVarintS32Slice (line 1038) | func sizeVarintS32Slice(ptr pointer, tagsize int) int {
function sizeVarintS32PackedSlice (line 1046) | func sizeVarintS32PackedSlice(ptr pointer, tagsize int) int {
function sizeVarint64Value (line 1057) | func sizeVarint64Value(ptr pointer, tagsize int) int {
function sizeVarint64ValueNoZero (line 1061) | func sizeVarint64ValueNoZero(ptr pointer, tagsize int) int {
function sizeVarint64Ptr (line 1068) | func sizeVarint64Ptr(ptr pointer, tagsize int) int {
function sizeVarint64Slice (line 1075) | func sizeVarint64Slice(ptr pointer, tagsize int) int {
function sizeVarint64PackedSlice (line 1083) | func sizeVarint64PackedSlice(ptr pointer, tagsize int) int {
function sizeVarintS64Value (line 1094) | func sizeVarintS64Value(ptr pointer, tagsize int) int {
function sizeVarintS64ValueNoZero (line 1098) | func sizeVarintS64ValueNoZero(ptr pointer, tagsize int) int {
function sizeVarintS64Ptr (line 1105) | func sizeVarintS64Ptr(ptr pointer, tagsize int) int {
function sizeVarintS64Slice (line 1112) | func sizeVarintS64Slice(ptr pointer, tagsize int) int {
function sizeVarintS64PackedSlice (line 1120) | func sizeVarintS64PackedSlice(ptr pointer, tagsize int) int {
function sizeZigzag32Value (line 1131) | func sizeZigzag32Value(ptr pointer, tagsize int) int {
function sizeZigzag32ValueNoZero (line 1135) | func sizeZigzag32ValueNoZero(ptr pointer, tagsize int) int {
function sizeZigzag32Ptr (line 1142) | func sizeZigzag32Ptr(ptr pointer, tagsize int) int {
function sizeZigzag32Slice (line 1150) | func sizeZigzag32Slice(ptr pointer, tagsize int) int {
function sizeZigzag32PackedSlice (line 1158) | func sizeZigzag32PackedSlice(ptr pointer, tagsize int) int {
function sizeZigzag64Value (line 1169) | func sizeZigzag64Value(ptr pointer, tagsize int) int {
function sizeZigzag64ValueNoZero (line 1173) | func sizeZigzag64ValueNoZero(ptr pointer, tagsize int) int {
function sizeZigzag64Ptr (line 1180) | func sizeZigzag64Ptr(ptr pointer, tagsize int) int {
function sizeZigzag64Slice (line 1188) | func sizeZigzag64Slice(ptr pointer, tagsize int) int {
function sizeZigzag64PackedSlice (line 1196) | func sizeZigzag64PackedSlice(ptr pointer, tagsize int) int {
function sizeBoolValue (line 1207) | func sizeBoolValue(_ pointer, tagsize int) int {
function sizeBoolValueNoZero (line 1210) | func sizeBoolValueNoZero(ptr pointer, tagsize int) int {
function sizeBoolPtr (line 1217) | func sizeBoolPtr(ptr pointer, tagsize int) int {
function sizeBoolSlice (line 1224) | func sizeBoolSlice(ptr pointer, tagsize int) int {
function sizeBoolPackedSlice (line 1228) | func sizeBoolPackedSlice(ptr pointer, tagsize int) int {
function sizeStringValue (line 1235) | func sizeStringValue(ptr pointer, tagsize int) int {
function sizeStringValueNoZero (line 1239) | func sizeStringValueNoZero(ptr pointer, tagsize int) int {
function sizeStringPtr (line 1246) | func sizeStringPtr(ptr pointer, tagsize int) int {
function sizeStringSlice (line 1254) | func sizeStringSlice(ptr pointer, tagsize int) int {
function sizeBytes (line 1262) | func sizeBytes(ptr pointer, tagsize int) int {
function sizeBytes3 (line 1269) | func sizeBytes3(ptr pointer, tagsize int) int {
function sizeBytesOneof (line 1276) | func sizeBytesOneof(ptr pointer, tagsize int) int {
function sizeBytesSlice (line 1280) | func sizeBytesSlice(ptr pointer, tagsize int) int {
function appendFixed32 (line 1290) | func appendFixed32(b []byte, v uint32) []byte {
function appendFixed64 (line 1300) | func appendFixed64(b []byte, v uint64) []byte {
function appendVarint (line 1314) | func appendVarint(b []byte, v uint64) []byte {
function appendFixed32Value (line 1396) | func appendFixed32Value(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendFixed32ValueNoZero (line 1402) | func appendFixed32ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ b...
function appendFixed32Ptr (line 1411) | func appendFixed32Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([]...
function appendFixed32Slice (line 1420) | func appendFixed32Slice(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendFixed32PackedSlice (line 1428) | func appendFixed32PackedSlice(b []byte, ptr pointer, wiretag uint64, _ b...
function appendFixedS32Value (line 1440) | func appendFixedS32Value(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendFixedS32ValueNoZero (line 1446) | func appendFixedS32ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ ...
function appendFixedS32Ptr (line 1455) | func appendFixedS32Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([...
function appendFixedS32Slice (line 1464) | func appendFixedS32Slice(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendFixedS32PackedSlice (line 1472) | func appendFixedS32PackedSlice(b []byte, ptr pointer, wiretag uint64, _ ...
function appendFloat32Value (line 1484) | func appendFloat32Value(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendFloat32ValueNoZero (line 1490) | func appendFloat32ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ b...
function appendFloat32Ptr (line 1499) | func appendFloat32Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([]...
function appendFloat32Slice (line 1508) | func appendFloat32Slice(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendFloat32PackedSlice (line 1516) | func appendFloat32PackedSlice(b []byte, ptr pointer, wiretag uint64, _ b...
function appendFixed64Value (line 1528) | func appendFixed64Value(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendFixed64ValueNoZero (line 1534) | func appendFixed64ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ b...
function appendFixed64Ptr (line 1543) | func appendFixed64Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([]...
function appendFixed64Slice (line 1552) | func appendFixed64Slice(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendFixed64PackedSlice (line 1560) | func appendFixed64PackedSlice(b []byte, ptr pointer, wiretag uint64, _ b...
function appendFixedS64Value (line 1572) | func appendFixedS64Value(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendFixedS64ValueNoZero (line 1578) | func appendFixedS64ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ ...
function appendFixedS64Ptr (line 1587) | func appendFixedS64Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([...
function appendFixedS64Slice (line 1596) | func appendFixedS64Slice(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendFixedS64PackedSlice (line 1604) | func appendFixedS64PackedSlice(b []byte, ptr pointer, wiretag uint64, _ ...
function appendFloat64Value (line 1616) | func appendFloat64Value(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendFloat64ValueNoZero (line 1622) | func appendFloat64ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ b...
function appendFloat64Ptr (line 1631) | func appendFloat64Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([]...
function appendFloat64Slice (line 1640) | func appendFloat64Slice(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendFloat64PackedSlice (line 1648) | func appendFloat64PackedSlice(b []byte, ptr pointer, wiretag uint64, _ b...
function appendVarint32Value (line 1660) | func appendVarint32Value(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendVarint32ValueNoZero (line 1666) | func appendVarint32ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ ...
function appendVarint32Ptr (line 1675) | func appendVarint32Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([...
function appendVarint32Slice (line 1684) | func appendVarint32Slice(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendVarint32PackedSlice (line 1692) | func appendVarint32PackedSlice(b []byte, ptr pointer, wiretag uint64, _ ...
function appendVarintS32Value (line 1709) | func appendVarintS32Value(b []byte, ptr pointer, wiretag uint64, _ bool)...
function appendVarintS32ValueNoZero (line 1715) | func appendVarintS32ValueNoZero(b []byte, ptr pointer, wiretag uint64, _...
function appendVarintS32Ptr (line 1724) | func appendVarintS32Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendVarintS32Slice (line 1733) | func appendVarintS32Slice(b []byte, ptr pointer, wiretag uint64, _ bool)...
function appendVarintS32PackedSlice (line 1741) | func appendVarintS32PackedSlice(b []byte, ptr pointer, wiretag uint64, _...
function appendVarint64Value (line 1758) | func appendVarint64Value(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendVarint64ValueNoZero (line 1764) | func appendVarint64ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ ...
function appendVarint64Ptr (line 1773) | func appendVarint64Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([...
function appendVarint64Slice (line 1782) | func appendVarint64Slice(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendVarint64PackedSlice (line 1790) | func appendVarint64PackedSlice(b []byte, ptr pointer, wiretag uint64, _ ...
function appendVarintS64Value (line 1807) | func appendVarintS64Value(b []byte, ptr pointer, wiretag uint64, _ bool)...
function appendVarintS64ValueNoZero (line 1813) | func appendVarintS64ValueNoZero(b []byte, ptr pointer, wiretag uint64, _...
function appendVarintS64Ptr (line 1822) | func appendVarintS64Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) (...
function appendVarintS64Slice (line 1831) | func appendVarintS64Slice(b []byte, ptr pointer, wiretag uint64, _ bool)...
function appendVarintS64PackedSlice (line 1839) | func appendVarintS64PackedSlice(b []byte, ptr pointer, wiretag uint64, _...
function appendZigzag32Value (line 1856) | func appendZigzag32Value(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendZigzag32ValueNoZero (line 1862) | func appendZigzag32ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ ...
function appendZigzag32Ptr (line 1871) | func appendZigzag32Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([...
function appendZigzag32Slice (line 1881) | func appendZigzag32Slice(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendZigzag32PackedSlice (line 1889) | func appendZigzag32PackedSlice(b []byte, ptr pointer, wiretag uint64, _ ...
function appendZigzag64Value (line 1906) | func appendZigzag64Value(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendZigzag64ValueNoZero (line 1912) | func appendZigzag64ValueNoZero(b []byte, ptr pointer, wiretag uint64, _ ...
function appendZigzag64Ptr (line 1921) | func appendZigzag64Ptr(b []byte, ptr pointer, wiretag uint64, _ bool) ([...
function appendZigzag64Slice (line 1931) | func appendZigzag64Slice(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendZigzag64PackedSlice (line 1939) | func appendZigzag64PackedSlice(b []byte, ptr pointer, wiretag uint64, _ ...
function appendBoolValue (line 1956) | func appendBoolValue(b []byte, ptr pointer, wiretag uint64, _ bool) ([]b...
function appendBoolValueNoZero (line 1966) | func appendBoolValueNoZero(b []byte, ptr pointer, wiretag uint64, _ bool...
function appendBoolPtr (line 1976) | func appendBoolPtr(b []byte, ptr pointer, wiretag uint64, _ bool) ([]byt...
function appendBoolSlice (line 1989) | func appendBoolSlice(b []byte, ptr pointer, wiretag uint64, _ bool) ([]b...
function appendBoolPackedSlice (line 2001) | func appendBoolPackedSlice(b []byte, ptr pointer, wiretag uint64, _ bool...
function appendStringValue (line 2017) | func appendStringValue(b []byte, ptr pointer, wiretag uint64, _ bool) ([...
function appendStringValueNoZero (line 2024) | func appendStringValueNoZero(b []byte, ptr pointer, wiretag uint64, _ bo...
function appendStringPtr (line 2034) | func appendStringPtr(b []byte, ptr pointer, wiretag uint64, _ bool) ([]b...
function appendStringSlice (line 2045) | func appendStringSlice(b []byte, ptr pointer, wiretag uint64, _ bool) ([...
function appendUTF8StringValue (line 2054) | func appendUTF8StringValue(b []byte, ptr pointer, wiretag uint64, _ bool...
function appendUTF8StringValueNoZero (line 2068) | func appendUTF8StringValueNoZero(b []byte, ptr pointer, wiretag uint64, ...
function appendUTF8StringPtr (line 2085) | func appendUTF8StringPtr(b []byte, ptr pointer, wiretag uint64, _ bool) ...
function appendUTF8StringSlice (line 2103) | func appendUTF8StringSlice(b []byte, ptr pointer, wiretag uint64, _ bool...
function appendBytes (line 2119) | func appendBytes(b []byte, ptr pointer, wiretag uint64, _ bool) ([]byte,...
function appendBytes3 (line 2129) | func appendBytes3(b []byte, ptr pointer, wiretag uint64, _ bool) ([]byte...
function appendBytesOneof (line 2139) | func appendBytesOneof(b []byte, ptr pointer, wiretag uint64, _ bool) ([]...
function appendBytesSlice (line 2146) | func appendBytesSlice(b []byte, ptr pointer, wiretag uint64, _ bool) ([]...
function makeGroupMarshaler (line 2158) | func makeGroupMarshaler(u *marshalInfo) (sizer, marshaler) {
function makeGroupSliceMarshaler (line 2181) | func makeGroupSliceMarshaler(u *marshalInfo) (sizer, marshaler) {
function makeMessageMarshaler (line 2217) | func makeMessageMarshaler(u *marshalInfo) (sizer, marshaler) {
function makeMessageSliceMarshaler (line 2240) | func makeMessageSliceMarshaler(u *marshalInfo) (sizer, marshaler) {
function makeMapMarshaler (line 2279) | func makeMapMarshaler(f *reflect.StructField) (sizer, marshaler) {
function makeOneOfMarshaler (line 2362) | func makeOneOfMarshaler(fi *marshalFieldInfo, f *reflect.StructField) (s...
type newMarshaler (line 2683) | type newMarshaler interface
function Size (line 2690) | func Size(pb Message) int {
function Marshal (line 2711) | func Marshal(pb Message) ([]byte, error) {
method Marshal (line 2737) | func (p *Buffer) Marshal(pb Message) error {
method grow (line 2766) | func (p *Buffer) grow(n int) {
FILE: vendor/github.com/golang/protobuf/proto/table_merge.go
method Merge (line 44) | func (a *InternalMessageInfo) Merge(dst, src Message) {
type mergeInfo (line 53) | type mergeInfo struct
method merge (line 104) | func (mi *mergeInfo) merge(dst, src pointer) {
method computeMergeInfo (line 163) | func (mi *mergeInfo) computeMergeInfo() {
type mergeFieldInfo (line 63) | type mergeFieldInfo struct
function getMergeInfo (line 92) | func getMergeInfo(t reflect.Type) *mergeInfo {
FILE: vendor/github.com/golang/protobuf/proto/table_unmarshal.go
method Unmarshal (line 53) | func (a *InternalMessageInfo) Unmarshal(msg Message, b []byte) error {
type unmarshalInfo (line 67) | type unmarshalInfo struct
method unmarshal (line 134) | func (u *unmarshalInfo) unmarshal(m pointer, b []byte) error {
method computeUnmarshalInfo (line 267) | func (u *unmarshalInfo) computeUnmarshalInfo() {
method setTag (line 433) | func (u *unmarshalInfo) setTag(tag int, field field, unmarshal unmarsh...
type unmarshaler (line 89) | type unmarshaler
type unmarshalFieldInfo (line 91) | type unmarshalFieldInfo struct
function getUnmarshalInfo (line 112) | func getUnmarshalInfo(t reflect.Type) *unmarshalInfo {
function fieldUnmarshaler (line 450) | func fieldUnmarshaler(f *reflect.StructField) unmarshaler {
function typeUnmarshaler (line 458) | func typeUnmarshaler(t reflect.Type, tags string) unmarshaler {
function unmarshalInt64Value (line 659) | func unmarshalInt64Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalInt64Ptr (line 673) | func unmarshalInt64Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalInt64Slice (line 687) | func unmarshalInt64Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalSint64Value (line 725) | func unmarshalSint64Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalSint64Ptr (line 739) | func unmarshalSint64Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalSint64Slice (line 753) | func unmarshalSint64Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUint64Value (line 791) | func unmarshalUint64Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUint64Ptr (line 805) | func unmarshalUint64Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUint64Slice (line 819) | func unmarshalUint64Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalInt32Value (line 857) | func unmarshalInt32Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalInt32Ptr (line 871) | func unmarshalInt32Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalInt32Slice (line 885) | func unmarshalInt32Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalSint32Value (line 921) | func unmarshalSint32Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalSint32Ptr (line 935) | func unmarshalSint32Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalSint32Slice (line 949) | func unmarshalSint32Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUint32Value (line 985) | func unmarshalUint32Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUint32Ptr (line 999) | func unmarshalUint32Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUint32Slice (line 1013) | func unmarshalUint32Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixed64Value (line 1051) | func unmarshalFixed64Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixed64Ptr (line 1063) | func unmarshalFixed64Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixed64Slice (line 1075) | func unmarshalFixed64Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixedS64Value (line 1110) | func unmarshalFixedS64Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixedS64Ptr (line 1122) | func unmarshalFixedS64Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixedS64Slice (line 1134) | func unmarshalFixedS64Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixed32Value (line 1169) | func unmarshalFixed32Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixed32Ptr (line 1181) | func unmarshalFixed32Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixed32Slice (line 1193) | func unmarshalFixed32Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixedS32Value (line 1228) | func unmarshalFixedS32Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixedS32Ptr (line 1240) | func unmarshalFixedS32Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFixedS32Slice (line 1252) | func unmarshalFixedS32Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalBoolValue (line 1285) | func unmarshalBoolValue(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalBoolPtr (line 1302) | func unmarshalBoolPtr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalBoolSlice (line 1315) | func unmarshalBoolSlice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFloat64Value (line 1352) | func unmarshalFloat64Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFloat64Ptr (line 1364) | func unmarshalFloat64Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFloat64Slice (line 1376) | func unmarshalFloat64Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFloat32Value (line 1411) | func unmarshalFloat32Value(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFloat32Ptr (line 1423) | func unmarshalFloat32Ptr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalFloat32Slice (line 1435) | func unmarshalFloat32Slice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalStringValue (line 1470) | func unmarshalStringValue(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalStringPtr (line 1487) | func unmarshalStringPtr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalStringSlice (line 1504) | func unmarshalStringSlice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUTF8StringValue (line 1522) | func unmarshalUTF8StringValue(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUTF8StringPtr (line 1542) | func unmarshalUTF8StringPtr(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalUTF8StringSlice (line 1562) | func unmarshalUTF8StringSlice(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalBytesValue (line 1585) | func unmarshalBytesValue(b []byte, f pointer, w int) ([]byte, error) {
function unmarshalBytesSlice (line 1606) | func unmarshalBytesSlice(b []byte, f pointer, w int) ([]byte, error) {
function makeUnmarshalMessagePtr (line 1624) | func makeUnmarshalMessagePtr(sub *unmarshalInfo, name string) unmarshaler {
function makeUnmarshalMessageSlicePtr (line 1658) | func makeUnmarshalMessageSlicePtr(sub *unmarshalInfo, name string) unmar...
function makeUnmarshalGroupPtr (line 1685) | func makeUnmarshalGroupPtr(sub *unmarshalInfo, name string) unmarshaler {
function makeUnmarshalGroupSlicePtr (line 1711) | func makeUnmarshalGroupSlicePtr(sub *unmarshalInfo, name string) unmarsh...
function makeUnmarshalMap (line 1734) | func makeUnmarshalMap(f *reflect.StructField) unmarshaler {
function makeUnmarshalOneof (line 1821) | func makeUnmarshalOneof(typ, ityp reflect.Type, unmarshal unmarshaler) u...
function skipField (line 1848) | func skipField(b []byte, wire int) ([]byte, error) {
function findEndGroup (line 1889) | func findEndGroup(b []byte) (int, int) {
function encodeVarint (line 1940) | func encodeVarint(b []byte, x uint64) []byte {
function decodeVarint (line 1951) | func decodeVarint(b []byte) (uint64, int) {
FILE: vendor/github.com/golang/protobuf/proto/text.go
type writer (line 64) | type writer interface
type textWriter (line 70) | type textWriter struct
method WriteString (line 77) | func (w *textWriter) WriteString(s string) (n int, err error) {
method Write (line 91) | func (w *textWriter) Write(p []byte) (n int, err error) {
method WriteByte (line 140) | func (w *textWriter) WriteByte(c byte) error {
method indent (line 152) | func (w *textWriter) indent() { w.ind++ }
method unindent (line 154) | func (w *textWriter) unindent() {
method writeIndent (line 752) | func (w *textWriter) writeIndent() {
function writeName (line 162) | func writeName(w *textWriter, props *Properties) error {
function requiresQuotes (line 172) | func requiresQuotes(u string) bool {
function isAny (line 192) | func isAny(sv reflect.Value) bool {
function isprint (line 550) | func isprint(c byte) bool {
function writeString (line 559) | func writeString(w *textWriter, s string) error {
function writeUnknownStruct (line 595) | func writeUnknownStruct(w *textWriter, data []byte) (err error) {
function writeUnknownInt (line 662) | func writeUnknownInt(w *textWriter, x uint64, err error) error {
type int32Slice (line 671) | type int32Slice
method Len (line 673) | func (s int32Slice) Len() int { return len(s) }
method Less (line 674) | func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] }
method Swap (line 675) | func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
type TextMarshaler (line 769) | type TextMarshaler struct
method writeProto3Any (line 207) | func (tm *TextMarshaler) writeProto3Any(w *textWriter, sv reflect.Valu...
method writeStruct (line 253) | func (tm *TextMarshaler) writeStruct(w *textWriter, sv reflect.Value) ...
method writeAny (line 460) | func (tm *TextMarshaler) writeAny(w *textWriter, v reflect.Value, prop...
method writeExtensions (line 679) | func (tm *TextMarshaler) writeExtensions(w *textWriter, pv reflect.Val...
method writeExtension (line 734) | func (tm *TextMarshaler) writeExtension(w *textWriter, name string, pb...
method Marshal (line 776) | func (tm *TextMarshaler) Marshal(w io.Writer, pb Message) error {
method Text (line 819) | func (tm *TextMarshaler) Text(pb Message) string {
function MarshalText (line 834) | func MarshalText(w io.Writer, pb Message) error { return defaultTextMars...
function MarshalTextString (line 837) | func MarshalTextString(pb Message) string { return defaultTextMarshaler....
function CompactText (line 840) | func CompactText(w io.Writer, pb Message) error { return compactTextMars...
function CompactTextString (line 843) | 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 322) | func (p *textParser) back() { p.backed = true }
method next (line 325) | func (p *textParser) next() *token {
method consumeToken (line 355) | func (p *textParser) consumeToken(s string) error {
method missingRequiredFieldError (line 368) | func (p *textParser) missingRequiredFieldError(sv reflect.Value) *Requ...
method checkForColon (line 395) | func (p *textParser) checkForColon(props *Properties, typ reflect.Type...
method readStruct (line 435) | func (p *textParser) readStruct(sv reflect.Value, terminator string) e...
method consumeExtName (line 694) | func (p *textParser) consumeExtName() (string, error) {
method consumeOptionalSeparator (line 726) | func (p *textParser) consumeOptionalSeparator() error {
method readAny (line 737) | 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 211) | func unquoteC(s string, quote rune) (string, error) {
function unescape (line 254) | func unescape(s string) (ch string, tail string, err error) {
function structFieldByName (line 385) | func structFieldByName(sprops *StructProperties, name string) (int, *Pro...
function UnmarshalText (line 873) | func UnmarshalText(s string, pb Message) error {
FILE: vendor/github.com/gomodule/redigo/internal/commandinfo.go
constant WatchState (line 22) | WatchState = 1 << iota
constant MultiState (line 23) | MultiState
constant SubscribeState (line 24) | SubscribeState
constant MonitorState (line 25) | MonitorState
type CommandInfo (line 28) | type CommandInfo struct
function init (line 43) | func init() {
function LookupCommandInfo (line 49) | func LookupCommandInfo(commandName string) CommandInfo {
FILE: vendor/github.com/gomodule/redigo/redis/conn.go
type conn (line 37) | type conn struct
method Close (line 304) | func (c *conn) Close() error {
method fatal (line 315) | func (c *conn) fatal(err error) error {
method Err (line 327) | func (c *conn) Err() error {
method writeLen (line 334) | func (c *conn) writeLen(prefix byte, n int) error {
method writeString (line 351) | func (c *conn) writeString(s string) error {
method writeBytes (line 358) | func (c *conn) writeBytes(p []byte) error {
method writeInt64 (line 365) | func (c *conn) writeInt64(n int64) error {
method writeFloat64 (line 369) | func (c *conn) writeFloat64(n float64) error {
method writeCommand (line 373) | func (c *conn) writeCommand(cmd string, args []interface{}) error {
method writeArg (line 386) | func (c *conn) writeArg(arg interface{}, argumentTypeOK bool) (err err...
method readLine (line 430) | func (c *conn) readLine() ([]byte, error) {
method readReply (line 503) | func (c *conn) readReply() (interface{}, error) {
method Send (line 560) | func (c *conn) Send(cmd string, args ...interface{}) error {
method Flush (line 573) | func (c *conn) Flush() error {
method Receive (line 583) | func (c *conn) Receive() (interface{}, error) {
method ReceiveWithTimeout (line 587) | func (c *conn) ReceiveWithTimeout(timeout time.Duration) (reply interf...
method Do (line 615) | func (c *conn) Do(cmd string, args ...interface{}) (interface{}, error) {
method DoWithTimeout (line 619) | func (c *conn) DoWithTimeout(readTimeout time.Duration, cmd string, ar...
function DialTimeout (line 64) | func DialTimeout(network, address string, connectTimeout, readTimeout, w...
type DialOption (line 72) | type DialOption struct
type dialOptions (line 76) | type dialOptions struct
function DialReadTimeout (line 89) | func DialReadTimeout(d time.Duration) DialOption {
function DialWriteTimeout (line 96) | func DialWriteTimeout(d time.Duration) DialOption {
function DialConnectTimeout (line 104) | func DialConnectTimeout(d time.Duration) DialOption {
function DialKeepAlive (line 114) | func DialKeepAlive(d time.Duration) DialOption {
function DialNetDial (line 123) | func DialNetDial(dial func(network, addr string) (net.Conn, error)) Dial...
function DialDatabase (line 130) | func DialDatabase(db int) DialOption {
function DialPassword (line 138) | func DialPassword(password string) DialOption {
function DialTLSConfig (line 146) | func DialTLSConfig(c *tls.Config) DialOption {
function DialTLSSkipVerify (line 154) | func DialTLSSkipVerify(skip bool) DialOption {
function DialUseTLS (line 162) | func DialUseTLS(useTLS bool) DialOption {
function Dial (line 170) | func Dial(network, address string, options ...DialOption) (Conn, error) {
function DialURL (line 242) | func DialURL(rawurl string, options ...DialOption) (Conn, error) {
function NewConn (line 294) | func NewConn(netConn net.Conn, readTimeout, writeTimeout time.Duration) ...
type protocolError (line 424) | type protocolError
method Error (line 426) | func (pe protocolError) Error() string {
function parseLen (line 446) | func parseLen(p []byte) (int, error) {
function parseInt (line 469) | func parseInt(p []byte) (interface{}, error) {
FILE: vendor/github.com/gomodule/redigo/redis/go16.go
function cloneTLSConfig (line 7) | func cloneTLSConfig(cfg *tls.Config) *tls.Config {
FILE: vendor/github.com/gomodule/redigo/redis/go17.go
function cloneTLSConfig (line 7) | func cloneTLSConfig(cfg *tls.Config) *tls.Config {
FILE: vendor/github.com/gomodule/redigo/redis/go18.go
function cloneTLSConfig (line 7) | func cloneTLSConfig(cfg *tls.Config) *tls.Config {
FILE: vendor/github.com/gomodule/redigo/redis/log.go
function NewLoggingConn (line 29) | func NewLoggingConn(conn Conn, logger *log.Logger, prefix string) Conn {
type loggingConn (line 36) | type loggingConn struct
method Close (line 42) | func (c *loggingConn) Close() error {
method printValue (line 50) | func (c *loggingConn) printValue(buf *bytes.Buffer, v interface{}) {
method print (line 87) | func (c *loggingConn) print(method, commandName string, args []interfa...
method Do (line 106) | func (c *loggingConn) Do(commandName string, args ...interface{}) (int...
method DoWithTimeout (line 112) | func (c *loggingConn) DoWithTimeout(timeout time.Duration, commandName...
method Send (line 118) | func (c *loggingConn) Send(commandName string, args ...interface{}) er...
method Receive (line 124) | func (c *loggingConn) Receive() (interface{}, error) {
method ReceiveWithTimeout (line 130) | func (c *loggingConn) ReceiveWithTimeout(timeout time.Duration) (inter...
FILE: vendor/github.com/gomodule/redigo/redis/pool.go
type Pool (line 122) | type Pool struct
method Get (line 178) | func (p *Pool) Get() Conn {
method Stats (line 196) | func (p *Pool) Stats() PoolStats {
method ActiveCount (line 209) | func (p *Pool) ActiveCount() int {
method IdleCount (line 217) | func (p *Pool) IdleCount() int {
method Close (line 225) | func (p *Pool) Close() error {
method lazyInit (line 246) | func (p *Pool) lazyInit() {
method get (line 269) | func (p *Pool) get(ctx interface {
method put (line 344) | func (p *Pool) put(pc *poolConn, forceClose bool) error {
function NewPool (line 169) | func NewPool(newFn func() (Conn, error), maxIdle int) *Pool {
type PoolStats (line 187) | type PoolStats struct
type activeConn (line 371) | type activeConn struct
method Close (line 394) | func (ac *activeConn) Close() error {
method Err (line 432) | func (ac *activeConn) Err() error {
method Do (line 440) | func (ac *activeConn) Do(commandName string, args ...interface{}) (rep...
method DoWithTimeout (line 450) | func (ac *activeConn) DoWithTimeout(timeout time.Duration, commandName...
method Send (line 464) | func (ac *activeConn) Send(commandName string, args ...interface{}) er...
method Flush (line 474) | func (ac *activeConn) Flush() error {
method Receive (line 482) | func (ac *activeConn) Receive() (reply interface{}, err error) {
method ReceiveWithTimeout (line 490) | func (ac *activeConn) ReceiveWithTimeout(timeout time.Duration) (reply...
function initSentinel (line 382) | func initSentinel() {
type errorConn (line 502) | type errorConn struct
method Do (line 504) | func (ec errorConn) Do(string, ...interface{}) (interface{}, error) { ...
method DoWithTimeout (line 505) | func (ec errorConn) DoWithTimeout(time.Duration, string, ...interface{...
method Send (line 508) | func (ec errorConn) Send(string, ...interface{}) error ...
method Err (line 509) | func (ec errorConn) Err() error ...
method Close (line 510) | func (ec errorConn) Close() error ...
method Flush (line 511) | func (ec errorConn) Flush() error ...
method Receive (line 512) | func (ec errorConn) Receive() (interface{}, error) ...
method ReceiveWithTimeout (line 513) | func (ec errorConn) ReceiveWithTimeout(time.Duration) (interface{}, er...
type idleList (line 515) | type idleList struct
method pushFront (line 527) | func (l *idleList) pushFront(pc *poolConn) {
method popFront (line 540) | func (l *idleList) popFront() {
method popBack (line 552) | func (l *idleList) popBack() {
type poolConn (line 520) | type poolConn struct
FILE: vendor/github.com/gomodule/redigo/redis/pool17.go
method GetContext (line 29) | func (p *Pool) GetContext(ctx context.Context) (Conn, error) {
FILE: vendor/github.com/gomodule/redigo/redis/pubsub.go
type Subscription (line 23) | type Subscription struct
type Message (line 35) | type Message struct
type Pong (line 47) | type Pong struct
type PubSubConn (line 52) | type PubSubConn struct
method Close (line 57) | func (c PubSubConn) Close() error {
method Subscribe (line 62) | func (c PubSubConn) Subscribe(channel ...interface{}) error {
method PSubscribe (line 68) | func (c PubSubConn) PSubscribe(channel ...interface{}) error {
method Unsubscribe (line 75) | func (c PubSubConn) Unsubscribe(channel ...interface{}) error {
method PUnsubscribe (line 82) | func (c PubSubConn) PUnsubscribe(channel ...interface{}) error {
method Ping (line 91) | func (c PubSubConn) Ping(data string) error {
method Receive (line 99) | func (c PubSubConn) Receive() interface{} {
method ReceiveWithTimeout (line 105) | func (c PubSubConn) ReceiveWithTimeout(timeout time.Duration) interfac...
method receiveInternal (line 109) | func (c PubSubConn) receiveInternal(replyArg interface{}, errArg error...
FILE: vendor/github.com/gomodule/redigo/redis/redis.go
type Error (line 23) | type Error
method Error (line 25) | func (err Error) Error() string { return string(err) }
type Conn (line 28) | type Conn interface
type Argument (line 50) | type Argument interface
type Scanner (line 59) | type Scanner interface
type ConnWithTimeout (line 82) | type ConnWithTimeout interface
function DoWithTimeout (line 100) | func DoWithTimeout(c Conn, timeout time.Duration, cmd string, args ...in...
function ReceiveWithTimeout (line 111) | func ReceiveWithTimeout(c Conn, timeout time.Duration) (interface{}, err...
FILE: vendor/github.com/gomodule/redigo/redis/reply.go
function Int (line 35) | func Int(reply interface{}, err error) (int, error) {
function Int64 (line 66) | func Int64(reply interface{}, err error) (int64, error) {
function Uint64 (line 95) | func Uint64(reply interface{}, err error) (uint64, error) {
function Float64 (line 124) | func Float64(reply interface{}, err error) (float64, error) {
function String (line 149) | func String(reply interface{}, err error) (string, error) {
function Bytes (line 175) | func Bytes(reply interface{}, err error) ([]byte, error) {
function Bool (line 201) | func Bool(reply interface{}, err error) (bool, error) {
function MultiBulk (line 221) | func MultiBulk(reply interface{}, err error) ([]interface{}, error) { re...
function Values (line 231) | func Values(reply interface{}, err error) ([]interface{}, error) {
function sliceHelper (line 246) | func sliceHelper(reply interface{}, err error, name string, makeSlice fu...
function Float64s (line 274) | func Float64s(reply interface{}, err error) ([]float64, error) {
function Strings (line 292) | func Strings(reply interface{}, err error) ([]string, error) {
function ByteSlices (line 313) | func ByteSlices(reply interface{}, err error) ([][]byte, error) {
function Int64s (line 330) | func Int64s(reply interface{}, err error) ([]int64, error) {
function Ints (line 352) | func Ints(reply interface{}, err error) ([]int, error) {
function StringMap (line 377) | func StringMap(result interface{}, err error) (map[string]string, error) {
function IntMap (line 400) | func IntMap(result interface{}, err error) (map[string]int, error) {
function Int64Map (line 426) | func Int64Map(result interface{}, err error) (map[string]int64, error) {
function Positions (line 451) | func Positions(result interface{}, err error) ([]*[2]float64, error) {
FILE: vendor/github.com/gomodule/redigo/redis/scan.go
function ensureLen (line 26) | func ensureLen(d reflect.Value, n int) {
function cannotConvert (line 34) | func cannotConvert(d reflect.Value, s interface{}) error {
function convertAssignBulkString (line 53) | func convertAssignBulkString(d reflect.Value, s []byte) (err error) {
function convertAssignInt (line 85) | func convertAssignInt(d reflect.Value, s int64) (err error) {
function convertAssignValue (line 112) | func convertAssignValue(d reflect.Value, s interface{}) (err error) {
function convertAssignArray (line 143) | func convertAssignArray(d reflect.Value, s []interface{}) error {
function convertAssign (line 156) | func convertAssign(d interface{}, s interface{}) (err error) {
function Scan (line 257) | func Scan(src []interface{}, dest ...interface{}) ([]interface{}, error) {
type fieldSpec (line 272) | type fieldSpec struct
type structSpec (line 278) | type structSpec struct
method fieldSpec (line 283) | func (ss *structSpec) fieldSpec(name []byte) *fieldSpec {
function compileStructSpec (line 287) | func compileStructSpec(t reflect.Type, depth map[string]int, index []int...
function structSpecForType (line 353) | func structSpecForType(t reflect.Type) *structSpec {
function ScanStruct (line 393) | func ScanStruct(src []interface{}, dest interface{}) error {
function ScanSlice (line 438) | func ScanSlice(src []interface{}, dest interface{}, fieldNames ...string...
type Args (line 512) | type Args
method Add (line 515) | func (args Args) Add(value ...interface{}) Args {
method AddFlat (line 531) | func (args Args) AddFlat(v interface{}) Args {
function flattenStruct (line 558) | func flattenStruct(args Args, v reflect.Value) Args {
FILE: vendor/github.com/gomodule/redigo/redis/script.go
type Script (line 26) | type Script struct
method args (line 43) | func (s *Script) args(spec string, keysAndArgs []interface{}) []interf...
method Hash (line 59) | func (s *Script) Hash() string {
method Do (line 67) | func (s *Script) Do(c Conn, keysAndArgs ...interface{}) (interface{}, ...
method SendHash (line 78) | func (s *Script) SendHash(c Conn, keysAndArgs ...interface{}) error {
method Send (line 83) | func (s *Script) Send(c Conn, keysAndArgs ...interface{}) error {
method Load (line 88) | func (s *Script) Load(c Conn) error {
function NewScript (line 37) | func NewScript(keyCount int, src string) *Script {
FILE: vendor/github.com/jinzhu/gorm/association.go
type Association (line 10) | type Association struct
method Find (line 18) | func (association *Association) Find(value interface{}) *Association {
method Append (line 24) | func (association *Association) Append(values ...interface{}) *Associa...
method Replace (line 36) | func (association *Association) Replace(values ...interface{}) *Associ...
method Delete (line 130) | func (association *Association) Delete(values ...interface{}) *Associa...
method Clear (line 256) | func (association *Association) Clear() *Association {
method Count (line 261) | func (association *Association) Count() int {
method saveAssociations (line 300) | func (association *Association) saveAssociations(values ...interface{}...
method setErr (line 370) | func (association *Association) setErr(err error) *Association {
FILE: vendor/github.com/jinzhu/gorm/callback.go
type Callback (line 15) | type Callback struct
method clone (line 36) | func (c *Callback) clone() *Callback {
method Create (line 55) | func (c *Callback) Create() *CallbackProcessor {
method Update (line 60) | func (c *Callback) Update() *CallbackProcessor {
method Delete (line 65) | func (c *Callback) Delete() *CallbackProcessor {
method Query (line 71) | func (c *Callback) Query() *CallbackProcessor {
method RowQuery (line 76) | func (c *Callback) RowQuery() *CallbackProcessor {
method reorder (line 217) | func (c *Callback) reorder() {
type CallbackProcessor (line 25) | type CallbackProcessor struct
method After (line 81) | func (cp *CallbackProcessor) After(callbackName string) *CallbackProce...
method Before (line 87) | func (cp *CallbackProcessor) Before(callbackName string) *CallbackProc...
method Register (line 93) | func (cp *CallbackProcessor) Register(callbackName string, callback fu...
method Remove (line 109) | func (cp *CallbackProcessor) Remove(callbackName string) {
method Replace (line 122) | func (cp *CallbackProcessor) Replace(callbackName string, callback fun...
method Get (line 133) | func (cp *CallbackProcessor) Get(callbackName string) (callback func(s...
function getRIndex (line 143) | func getRIndex(strs []string, str string) int {
function sortProcessors (line 153) | func sortProcessors(cps []*CallbackProcessor) []*func(scope *Scope) {
FILE: vendor/github.com/jinzhu/gorm/callback_create.go
function init (line 9) | func init() {
function beforeCreateCallback (line 22) | func beforeCreateCallback(scope *Scope) {
function updateTimeStampForCreateCallback (line 32) | func updateTimeStampForCreateCallback(scope *Scope) {
function createCallback (line 51) | func createCallback(scope *Scope) {
function forceReloadAfterCreateCallback (line 144) | func forceReloadAfterCreateCallback(scope *Scope) {
function afterCreateCallback (line 157) | func afterCreateCallback(scope *Scope) {
FILE: vendor/github.com/jinzhu/gorm/callback_delete.go
function init (line 9) | func init() {
function beforeDeleteCallback (line 18) | func beforeDeleteCallback(scope *Scope) {
function deleteCallback (line 29) | func deleteCallback(scope *Scope) {
function afterDeleteCallback (line 59) | func afterDeleteCallback(scope *Scope) {
FILE: vendor/github.com/jinzhu/gorm/callback_query.go
function init (line 10) | func init() {
function queryCallback (line 17) | func queryCallback(scope *Scope) {
function afterQueryCallback (line 95) | func afterQueryCallback(scope *Scope) {
FILE: vendor/github.com/jinzhu/gorm/callback_query_preload.go
function preloadCallback (line 12) | func preloadCallback(scope *Scope) {
function autoPreload (line 91) | func autoPreload(scope *Scope) {
method generatePreloadDBWithConditions (line 110) | func (scope *Scope) generatePreloadDBWithConditions(conditions []interfa...
method handleHasOnePreload (line 128) | func (scope *Scope) handleHasOnePreload(field *Field, conditions []inter...
method handleHasManyPreload (line 177) | func (scope *Scope) handleHasManyPreload(field *Field, conditions []inte...
method handleBelongsToPreload (line 230) | func (scope *Scope) handleBelongsToPreload(field *Field, conditions []in...
method handleManyToManyPreload (line 269) | func (scope *Scope) handleManyToManyPreload(field *Field, conditions []i...
FILE: vendor/github.com/jinzhu/gorm/callback_row_query.go
function init (line 6) | func init() {
type RowQueryResult (line 10) | type RowQueryResult struct
type RowsQueryResult (line 14) | type RowsQueryResult struct
function rowQueryCallback (line 20) | func rowQueryCallback(scope *Scope) {
FILE: vendor/github.com/jinzhu/gorm/callback_save.go
function beginTransactionCallback (line 8) | func beginTransactionCallback(scope *Scope) {
function commitOrRollbackTransactionCallback (line 12) | func commitOrRollbackTransactionCallback(scope *Scope) {
function saveAssociationCheck (line 16) | func saveAssociationCheck(scope *Scope, field *Field) (autoUpdate bool, ...
function saveBeforeAssociationsCallback (line 67) | func saveBeforeAssociationsCallback(scope *Scope) {
function saveAfterAssociationsCallback (line 98) | func saveAfterAssociationsCallback(scope *Scope) {
FILE: vendor/github.com/jinzhu/gorm/callback_update.go
function init (line 11) | func init() {
function assignUpdatingAttributesCallback (line 24) | func assignUpdatingAttributesCallback(scope *Scope) {
function beforeUpdateCallback (line 35) | func beforeUpdateCallback(scope *Scope) {
function updateTimeStampForUpdateCallback (line 51) | func updateTimeStampForUpdateCallback(scope *Scope) {
function updateCallback (line 58) | func updateCallback(scope *Scope) {
function afterUpdateCallback (line 110) | func afterUpdateCallback(scope *Scope) {
FILE: vendor/github.com/jinzhu/gorm/dialect.go
type Dialect (line 12) | type Dialect interface
function newDialect (line 57) | func newDialect(name string, db SQLCommon) Dialect {
function RegisterDialect (line 71) | func RegisterDialect(name string, dialect Dialect) {
function currentDatabaseAndTable (line 122) | func currentDatabaseAndTable(dialect Dialect, tableName string) (string,...
FILE: vendor/github.com/jinzhu/gorm/dialect_common.go
type DefaultForeignKeyNamer (line 13) | type DefaultForeignKeyNamer struct
method BuildKeyName (line 167) | func (DefaultForeignKeyNamer) BuildKeyName(kind, tableName string, fie...
type commonDialect (line 16) | type commonDialect struct
method GetName (line 25) | func (commonDialect) GetName() string {
method SetDB (line 29) | func (s *commonDialect) SetDB(db SQLCommon) {
method BindVar (line 33) | func (commonDialect) BindVar(i int) string {
method Quote (line 37) | func (commonDialect) Quote(key string) string {
method fieldCanAutoIncrement (line 41) | func (s *commonDialect) fieldCanAutoIncrement(field *StructField) bool {
method DataTypeOf (line 48) | func (s *commonDialect) DataTypeOf(field *StructField) string {
method HasIndex (line 100) | func (s commonDialect) HasIndex(tableName string, indexName string) bo...
method RemoveIndex (line 107) | func (s commonDialect) RemoveIndex(tableName string, indexName string)...
method HasForeignKey (line 112) | func (s commonDialect) HasForeignKey(tableName string, foreignKeyName ...
method HasTable (line 116) | func (s commonDialect) HasTable(tableName string) bool {
method HasColumn (line 123) | func (s commonDialect) HasColumn(tableName string, columnName string) ...
method ModifyColumn (line 130) | func (s commonDialect) ModifyColumn(tableName string, columnName strin...
method CurrentDatabase (line 135) | func (s commonDialect) CurrentDatabase() (name string) {
method LimitAndOffsetSQL (line 140) | func (commonDialect) LimitAndOffsetSQL(limit, offset interface{}) (sql...
method SelectFromDummyTable (line 154) | func (commonDialect) SelectFromDummyTable() string {
method LastInsertIDReturningSuffix (line 158) | func (commonDialect) LastInsertIDReturningSuffix(tableName, columnName...
method DefaultValueStr (line 162) | func (commonDialect) DefaultValueStr() string {
function init (line 21) | func init() {
function IsByteArrayOrSlice (line 174) | func IsByteArrayOrSlice(value reflect.Value) bool {
FILE: vendor/github.com/jinzhu/gorm/dialect_mysql.go
type mysql (line 14) | type mysql struct
method GetName (line 22) | func (mysql) GetName() string {
method Quote (line 26) | func (mysql) Quote(key string) string {
method DataTypeOf (line 31) | func (s *mysql) DataTypeOf(field *StructField) string {
method RemoveIndex (line 130) | func (s mysql) RemoveIndex(tableName string, indexName string) error {
method ModifyColumn (line 135) | func (s mysql) ModifyColumn(tableName string, columnName string, typ s...
method LimitAndOffsetSQL (line 140) | func (s mysql) LimitAndOffsetSQL(limit, offset interface{}) (sql strin...
method HasForeignKey (line 155) | func (s mysql) HasForeignKey(tableName string, foreignKeyName string) ...
method CurrentDatabase (line 162) | func (s mysql) CurrentDatabase() (name string) {
method SelectFromDummyTable (line 167) | func (mysql) SelectFromDummyTable() string {
method BuildKeyName (line 171) | func (s mysql) BuildKeyName(kind, tableName string, fields ...string) ...
method DefaultValueStr (line 189) | func (mysql) DefaultValueStr() string {
function init (line 18) | func init() {
FILE: vendor/github.com/jinzhu/gorm/dialect_postgres.go
type postgres (line 11) | type postgres struct
method GetName (line 20) | func (postgres) GetName() string {
method BindVar (line 24) | func (postgres) BindVar(i int) string {
method DataTypeOf (line 28) | func (s *postgres) DataTypeOf(field *StructField) string {
method HasIndex (line 94) | func (s postgres) HasIndex(tableName string, indexName string) bool {
method HasForeignKey (line 100) | func (s postgres) HasForeignKey(tableName string, foreignKeyName strin...
method HasTable (line 106) | func (s postgres) HasTable(tableName string) bool {
method HasColumn (line 112) | func (s postgres) HasColumn(tableName string, columnName string) bool {
method CurrentDatabase (line 118) | func (s postgres) CurrentDatabase() (name string) {
method LastInsertIDReturningSuffix (line 123) | func (s postgres) LastInsertIDReturningSuffix(tableName, key string) s...
method SupportLastInsertID (line 127) | func (postgres) SupportLastInsertID() bool {
function init (line 15) | func init() {
function isUUID (line 131) | func isUUID(value reflect.Value) bool {
function isJSON (line 140) | func isJSON(value reflect.Value) bool {
FILE: vendor/github.com/jinzhu/gorm/dialect_sqlite3.go
type sqlite3 (line 10) | type sqlite3 struct
method GetName (line 18) | func (sqlite3) GetName() string {
method DataTypeOf (line 23) | func (s *sqlite3) DataTypeOf(field *StructField) string {
method HasIndex (line 73) | func (s sqlite3) HasIndex(tableName string, indexName string) bool {
method HasTable (line 79) | func (s sqlite3) HasTable(tableName string) bool {
method HasColumn (line 85) | func (s sqlite3) HasColumn(tableName string, columnName string) bool {
method CurrentDatabase (line 91) | func (s sqlite3) CurrentDatabase() (name string) {
function init (line 14) | func init() {
FILE: vendor/github.com/jinzhu/gorm/errors.go
type Errors (line 22) | type Errors
method GetErrors (line 37) | func (errs Errors) GetErrors() []error {
method Add (line 42) | func (errs Errors) Add(newErrors ...error) Errors {
method Error (line 66) | func (errs Errors) Error() string {
function IsRecordNotFoundError (line 25) | func IsRecordNotFoundError(err error) bool {
FILE: vendor/github.com/jinzhu/gorm/field.go
type Field (line 11) | type Field struct
method Set (line 18) | func (field *Field) Set(value interface{}) (err error) {
FILE: vendor/github.com/jinzhu/gorm/interface.go
type SQLCommon (line 6) | type SQLCommon interface
type sqlDb (line 13) | type sqlDb interface
type sqlTx (line 17) | type sqlTx interface
FILE: vendor/github.com/jinzhu/gorm/join_table_handler.go
type JoinTableHandlerInterface (line 11) | type JoinTableHandlerInterface interface
type JoinTableForeignKey (line 29) | type JoinTableForeignKey struct
type JoinTableSource (line 35) | type JoinTableSource struct
type JoinTableHandler (line 41) | type JoinTableHandler struct
method SourceForeignKeys (line 48) | func (s *JoinTableHandler) SourceForeignKeys() []JoinTableForeignKey {
method DestinationForeignKeys (line 53) | func (s *JoinTableHandler) DestinationForeignKeys() []JoinTableForeign...
method Setup (line 58) | func (s *JoinTableHandler) Setup(relationship *Relationship, tableName...
method Table (line 81) | func (s JoinTableHandler) Table(db *DB) string {
method updateConditionMap (line 85) | func (s JoinTableHandler) updateConditionMap(conditionMap map[string]i...
method Add (line 104) | func (s JoinTableHandler) Add(handler JoinTableHandlerInterface, db *D...
method Delete (line 144) | func (s JoinTableHandler) Delete(handler JoinTableHandlerInterface, db...
method JoinWith (line 163) | func (s JoinTableHandler) JoinWith(handler JoinTableHandlerInterface, ...
FILE: vendor/github.com/jinzhu/gorm/logger.go
function isPrintable (line 21) | func isPrintable(s string) bool {
type logger (line 102) | type logger interface
type LogWriter (line 107) | type LogWriter interface
type Logger (line 112) | type Logger struct
method Print (line 117) | func (logger Logger) Print(values ...interface{}) {
FILE: vendor/github.com/jinzhu/gorm/main.go
type DB (line 13) | type DB struct
method New (line 87) | func (s *DB) New() *DB {
method Close (line 99) | func (s *DB) Close() error {
method DB (line 108) | func (s *DB) DB() *sql.DB {
method CommonDB (line 114) | func (s *DB) CommonDB() SQLCommon {
method Dialect (line 119) | func (s *DB) Dialect() Dialect {
method Callback (line 126) | func (s *DB) Callback() *Callback {
method SetLogger (line 132) | func (s *DB) SetLogger(log logger) {
method LogMode (line 137) | func (s *DB) LogMode(enable bool) *DB {
method BlockGlobalUpdate (line 148) | func (s *DB) BlockGlobalUpdate(enable bool) *DB {
method HasBlockGlobalUpdate (line 154) | func (s *DB) HasBlockGlobalUpdate() bool {
method SingularTable (line 159) | func (s *DB) SingularTable(enable bool) {
method NewScope (line 165) | func (s *DB) NewScope(value interface{}) *Scope {
method QueryExpr (line 172) | func (s *DB) QueryExpr() *expr {
method Where (line 181) | func (s *DB) Where(query interface{}, args ...interface{}) *DB {
method Or (line 186) | func (s *DB) Or(query interface{}, args ...interface{}) *DB {
method Not (line 191) | func (s *DB) Not(query interface{}, args ...interface{}) *DB {
method Limit (line 196) | func (s *DB) Limit(limit interface{}) *DB {
method Offset (line 201) | func (s *DB) Offset(offset interface{}) *DB {
method Order (line 209) | func (s *DB) Order(value interface{}, reorder ...bool) *DB {
method Select (line 215) | func (s *DB) Select(query interface{}, args ...interface{}) *DB {
method Omit (line 220) | func (s *DB) Omit(columns ...string) *DB {
method Group (line 225) | func (s *DB) Group(query string) *DB {
method Having (line 230) | func (s *DB) Having(query interface{}, values ...interface{}) *DB {
method Joins (line 236) | func (s *DB) Joins(query string, args ...interface{}) *DB {
method Scopes (line 253) | func (s *DB) Scopes(funcs ...func(*DB) *DB) *DB {
method Unscoped (line 261) | func (s *DB) Unscoped() *DB {
method Attrs (line 266) | func (s *DB) Attrs(attrs ...interface{}) *DB {
method Assign (line 271) | func (s *DB) Assign(attrs ...interface{}) *DB {
method First (line 276) | func (s *DB) First(out interface{}, where ...interface{}) *DB {
method Take (line 284) | func (s *DB) Take(out interface{}, where ...interface{}) *DB {
method Last (line 291) | func (s *DB) Last(out interface{}, where ...interface{}) *DB {
method Find (line 299) | func (s *DB) Find(out interface{}, where ...interface{}) *DB {
method Scan (line 304) | func (s *DB) Scan(dest interface{}) *DB {
method Row (line 309) | func (s *DB) Row() *sql.Row {
method Rows (line 314) | func (s *DB) Rows() (*sql.Rows, error) {
method ScanRows (line 319) | func (s *DB) ScanRows(rows *sql.Rows, result interface{}) error {
method Pluck (line 336) | func (s *DB) Pluck(column string, value interface{}) *DB {
method Count (line 341) | func (s *DB) Count(value interface{}) *DB {
method Related (line 346) | func (s *DB) Related(value interface{}, foreignKeys ...string) *DB {
method FirstOrInit (line 352) | func (s *DB) FirstOrInit(out interface{}, where ...interface{}) *DB {
method FirstOrCreate (line 367) | func (s *DB) FirstOrCreate(out interface{}, where ...interface{}) *DB {
method Update (line 381) | func (s *DB) Update(attrs ...interface{}) *DB {
method Updates (line 386) | func (s *DB) Updates(values interface{}, ignoreProtectedAttrs ...bool)...
method UpdateColumn (line 394) | func (s *DB) UpdateColumn(attrs ...interface{}) *DB {
method UpdateColumns (line 399) | func (s *DB) UpdateColumns(values interface{}) *DB {
method Save (line 408) | func (s *DB) Save(value interface{}) *DB {
method Create (line 421) | func (s *DB) Create(value interface{}) *DB {
method Delete (line 427) | func (s *DB) Delete(value interface{}, where ...interface{}) *DB {
method Raw (line 433) | func (s *DB) Raw(sql string, values ...interface{}) *DB {
method Exec (line 438) | func (s *DB) Exec(sql string, values ...interface{}) *DB {
method Model (line 451) | func (s *DB) Model(value interface{}) *DB {
method Table (line 458) | func (s *DB) Table(name string) *DB {
method Debug (line 466) | func (s *DB) Debug() *DB {
method Begin (line 471) | func (s *DB) Begin() *DB {
method Commit (line 484) | func (s *DB) Commit() *DB {
method Rollback (line 494) | func (s *DB) Rollback() *DB {
method NewRecord (line 504) | func (s *DB) NewRecord(value interface{}) bool {
method RecordNotFound (line 509) | func (s *DB) RecordNotFound() bool {
method CreateTable (line 519) | func (s *DB) CreateTable(models ...interface{}) *DB {
method DropTable (line 528) | func (s *DB) DropTable(values ...interface{}) *DB {
method DropTableIfExists (line 541) | func (s *DB) DropTableIfExists(values ...interface{}) *DB {
method HasTable (line 552) | func (s *DB) HasTable(value interface{}) bool {
method AutoMigrate (line 570) | func (s *DB) AutoMigrate(values ...interface{}) *DB {
method ModifyColumn (line 579) | func (s *DB) ModifyColumn(column string, typ string) *DB {
method DropColumn (line 586) | func (s *DB) DropColumn(column string) *DB {
method AddIndex (line 593) | func (s *DB) AddIndex(indexName string, columns ...string) *DB {
method AddUniqueIndex (line 600) | func (s *DB) AddUniqueIndex(indexName string, columns ...string) *DB {
method RemoveIndex (line 607) | func (s *DB) RemoveIndex(indexName string) *DB {
method AddForeignKey (line 615) | func (s *DB) AddForeignKey(field string, dest string, onDelete string,...
method RemoveForeignKey (line 623) | func (s *DB) RemoveForeignKey(field string, dest string) *DB {
method Association (line 630) | func (s *DB) Association(column string) *Association {
method Preload (line 653) | func (s *DB) Preload(column string, conditions ...interface{}) *DB {
method Set (line 658) | func (s *DB) Set(name string, value interface{}) *DB {
method InstantSet (line 663) | func (s *DB) InstantSet(name string, value interface{}) *DB {
method Get (line 669) | func (s *DB) Get(name string) (value interface{}, ok bool) {
method SetJoinTableHandler (line 675) | func (s *DB) SetJoinTableHandler(source interface{}, column string, ha...
method AddError (line 693) | func (s *DB) AddError(err error) error {
method GetErrors (line 715) | func (s *DB) GetErrors() []error {
method clone (line 728) | func (s *DB) clone() *DB {
method print (line 754) | func (s *DB) print(v ...interface{}) {
method log (line 758) | func (s *DB) log(v ...interface{}) {
method slog (line 764) | func (s *DB) slog(sql string, t time.Time, vars ...interface{}) {
function Open (line 44) | func Open(dialect string, args ...interface{}) (db *DB, err error) {
type closer (line 94) | type closer interface
FILE: vendor/github.com/jinzhu/gorm/model.go
type Model (line 9) | type Model struct
FILE: vendor/github.com/jinzhu/gorm/model_struct.go
type safeModelStructsMap (line 20) | type safeModelStructsMap struct
method Set (line 25) | func (s *safeModelStructsMap) Set(key reflect.Type, value *ModelStruct) {
method Get (line 31) | func (s *safeModelStructsMap) Get(key reflect.Type) *ModelStruct {
function newModelStructsMap (line 37) | func newModelStructsMap() *safeModelStructsMap {
type ModelStruct (line 44) | type ModelStruct struct
method TableName (line 52) | func (s *ModelStruct) TableName(db *DB) string {
type StructField (line 70) | type StructField struct
method clone (line 86) | func (structField *StructField) clone() *StructField {
type Relationship (line 115) | type Relationship struct
function getForeignField (line 127) | func getForeignField(column string, fields []*StructField) *StructField {
method GetModelStruct (line 137) | func (scope *Scope) GetModelStruct() *ModelStruct {
method GetStructFields (line 610) | func (scope *Scope) GetStructFields() (fields []*StructField) {
function parseTagSetting (line 614) | func parseTagSetting(tags reflect.StructTag) map[string]string {
FILE: vendor/github.com/jinzhu/gorm/scope.go
type Scope (line 16) | type Scope struct
method IndirectValue (line 30) | func (scope *Scope) IndirectValue() reflect.Value {
method New (line 35) | func (scope *Scope) New(value interface{}) *Scope {
method DB (line 44) | func (scope *Scope) DB() *DB {
method NewDB (line 49) | func (scope *Scope) NewDB() *DB {
method SQLDB (line 60) | func (scope *Scope) SQLDB() SQLCommon {
method Dialect (line 65) | func (scope *Scope) Dialect() Dialect {
method Quote (line 70) | func (scope *Scope) Quote(str string) string {
method Err (line 83) | func (scope *Scope) Err(err error) error {
method HasError (line 91) | func (scope *Scope) HasError() bool {
method Log (line 96) | func (scope *Scope) Log(v ...interface{}) {
method SkipLeft (line 101) | func (scope *Scope) SkipLeft() {
method Fields (line 106) | func (scope *Scope) Fields() []*Field {
method FieldByName (line 135) | func (scope *Scope) FieldByName(name string) (field *Field, ok bool) {
method PrimaryFields (line 153) | func (scope *Scope) PrimaryFields() (fields []*Field) {
method PrimaryField (line 163) | func (scope *Scope) PrimaryField() *Field {
method PrimaryKey (line 176) | func (scope *Scope) PrimaryKey() string {
method PrimaryKeyZero (line 184) | func (scope *Scope) PrimaryKeyZero() bool {
method PrimaryKeyValue (line 190) | func (scope *Scope) PrimaryKeyValue() interface{} {
method HasColumn (line 198) | func (scope *Scope) HasColumn(column string) bool {
method SetColumn (line 208) | func (scope *Scope) SetColumn(column interface{}, value interface{}) e...
method CallMethod (line 242) | func (scope *Scope) CallMethod(methodName string) {
method AddToVars (line 257) | func (scope *Scope) AddToVars(value interface{}) string {
method SelectAttrs (line 281) | func (scope *Scope) SelectAttrs() []string {
method OmitAttrs (line 301) | func (scope *Scope) OmitAttrs() []string {
method TableName (line 314) | func (scope *Scope) TableName() string {
method QuotedTableName (line 331) | func (scope *Scope) QuotedTableName() (name string) {
method CombinedConditionSql (line 343) | func (scope *Scope) CombinedConditionSql() string {
method Raw (line 354) | func (scope *Scope) Raw(sql string) *Scope {
method Exec (line 360) | func (scope *Scope) Exec() *Scope {
method Set (line 374) | func (scope *Scope) Set(name string, value interface{}) *Scope {
method Get (line 380) | func (scope *Scope) Get(name string) (interface{}, bool) {
method InstanceID (line 385) | func (scope *Scope) InstanceID() string {
method InstanceSet (line 393) | func (scope *Scope) InstanceSet(name string, value interface{}) *Scope {
method InstanceGet (line 398) | func (scope *Scope) InstanceGet(name string) (interface{}, bool) {
method Begin (line 403) | func (scope *Scope) Begin() *Scope {
method CommitOrRollback (line 414) | func (scope *Scope) CommitOrRollback() *Scope {
method callMethod (line 432) | func (scope *Scope) callMethod(methodName string, reflectValue reflect...
method quoteIfPossible (line 469) | func (scope *Scope) quoteIfPossible(str string) string {
method scan (line 476) | func (scope *Scope) scan(rows *sql.Rows, columns []string, fields []*F...
method primaryCondition (line 522) | func (scope *Scope) primaryCondition(value interface{}) string {
method buildCondition (line 526) | func (scope *Scope) buildCondition(clause map[string]interface{}, incl...
method buildSelectQuery (line 666) | func (scope *Scope) buildSelectQuery(clause map[string]interface{}) (s...
method whereSQL (line 709) | func (scope *Scope) whereSQL() (sql string) {
method selectSQL (line 767) | func (scope *Scope) selectSQL() string {
method orderSQL (line 777) | func (scope *Scope) orderSQL() string {
method limitAndOffsetSQL (line 797) | func (scope *Scope) limitAndOffsetSQL() string {
method groupSQL (line 801) | func (scope *Scope) groupSQL() string {
method havingSQL (line 808) | func (scope *Scope) havingSQL() string {
method joinsSQL (line 828) | func (scope *Scope) joinsSQL() string {
method prepareQuerySQL (line 839) | func (scope *Scope) prepareQuerySQL() {
method inlineCondition (line 848) | func (scope *Scope) inlineCondition(values ...interface{}) *Scope {
method callCallbacks (line 855) | func (scope *Scope) callCallbacks(funcs []*func(s *Scope)) *Scope {
method updatedAttrsWithValues (line 896) | func (scope *Scope) updatedAttrsWithValues(value interface{}) (results...
method row (line 924) | func (scope *Scope) row() *sql.Row {
method rows (line 934) | func (scope *Scope) rows() (*sql.Rows, error) {
method initialize (line 944) | func (scope *Scope) initialize() *Scope {
method isQueryForColumn (line 953) | func (scope *Scope) isQueryForColumn(query interface{}, column string)...
method pluck (line 970) | func (scope *Scope) pluck(column string, value interface{}) *Scope {
method count (line 997) | func (scope *Scope) count(value interface{}) *Scope {
method typeName (line 1011) | func (scope *Scope) typeName() string {
method trace (line 1022) | func (scope *Scope) trace(t time.Time) {
method changeableField (line 1028) | func (scope *Scope) changeableField(field *Field) bool {
method related (line 1047) | func (scope *Scope) related(value interface{}, foreignKeys ...string) ...
method getTableOptions (line 1096) | func (scope *Scope) getTableOptions() string {
method createJoinTable (line 1104) | func (scope *Scope) createJoinTable(field *StructField) {
method createTable (line 1140) | func (scope *Scope) createTable() *Scope {
method dropTable (line 1175) | func (scope *Scope) dropTable() *Scope {
method modifyColumn (line 1180) | func (scope *Scope) modifyColumn(column string, typ string) {
method dropColumn (line 1184) | func (scope *Scope) dropColumn(column string) {
method addIndex (line 1188) | func (scope *Scope) addIndex(unique bool, indexName string, column ......
method addForeignKey (line 1206) | func (scope *Scope) addForeignKey(field string, dest string, onDelete ...
method removeForeignKey (line 1217) | func (scope *Scope) removeForeignKey(field string, dest string) {
method removeIndex (line 1227) | func (scope *Scope) removeIndex(indexName string) {
method autoMigrate (line 1231) | func (scope *Scope) autoMigrate() *Scope {
method autoIndex (line 1252) | func (scope *Scope) autoIndex() *Scope {
method getColumnAsArray (line 1295) | func (scope *Scope) getColumnAsArray(columns []string, values ...inter...
method getColumnAsScope (line 1337) | func (scope *Scope) getColumnAsScope(column string) *Scope {
method hasConditions (line 1376) | func (scope *Scope) hasConditions() bool {
type tabler (line 305) | type tabler interface
type dbTabler (line 309) | type dbTabler interface
function convertInterfaceToMap (line 865) | func convertInterfaceToMap(values interface{}, withIgnoredField bool) ma...
FILE: vendor/github.com/jinzhu/gorm/search.go
type search (line 7) | type search struct
method clone (line 34) | func (s *search) clone() *search {
method Where (line 39) | func (s *search) Where(query interface{}, values ...interface{}) *sear...
method Not (line 44) | func (s *search) Not(query interface{}, values ...interface{}) *search {
method Or (line 49) | func (s *search) Or(query interface{}, values ...interface{}) *search {
method Attrs (line 54) | func (s *search) Attrs(attrs ...interface{}) *search {
method Assign (line 59) | func (s *search) Assign(attrs ...interface{}) *search {
method Order (line 64) | func (s *search) Order(value interface{}, reorder ...bool) *search {
method Select (line 75) | func (s *search) Select(query interface{}, args ...interface{}) *search {
method Omit (line 80) | func (s *search) Omit(columns ...string) *search {
method Limit (line 85) | func (s *search) Limit(limit interface{}) *search {
method Offset (line 90) | func (s *search) Offset(offset interface{}) *search {
method Group (line 95) | func (s *search) Group(query string) *search {
method Having (line 100) | func (s *search) Having(query interface{}, values ...interface{}) *sea...
method Joins (line 109) | func (s *search) Joins(query string, values ...interface{}) *search {
method Preload (line 114) | func (s *search) Preload(schema string, values ...interface{}) *search {
method Raw (line 126) | func (s *search) Raw(b bool) *search {
method unscoped (line 131) | func (s *search) unscoped() *search {
method Table (line 136) | func (s *search) Table(name string) *search {
method getInterfaceAsSQL (line 141) | func (s *search) getInterfaceAsSQL(value interface{}) (str string) {
type searchPreload (line 29) | type searchPreload struct
FILE: vendor/github.com/jinzhu/gorm/utils.go
function init (line 32) | func init() {
type safeMap (line 40) | type safeMap struct
method Set (line 45) | func (s *safeMap) Set(key string, value string) {
method Get (line 51) | func (s *safeMap) Get(key string) string {
function newSafeMap (line 57) | func newSafeMap() *safeMap {
type strCase (line 63) | type strCase
constant lower (line 66) | lower strCase = false
constant upper (line 67) | upper strCase = true
function ToDBName (line 71) | func ToDBName(name string) string {
type expr (line 120) | type expr struct
function Expr (line 127) | func Expr(expression string, args ...interface{}) *expr {
function indirect (line 131) | func indirect(reflectValue reflect.Value) reflect.Value {
function toQueryMarks (line 138) | func toQueryMarks(primaryValues [][]interface{}) string {
function toQueryCondition (line 156) | func toQueryCondition(scope *Scope, columns []string) string {
function toQueryValues (line 168) | func toQueryValues(values [][]interface{}) (results []interface{}) {
function fileWithLineNum (line 177) | func fileWithLineNum() string {
function isBlank (line 187) | func isBlank(value reflect.Value) bool {
function toSearchableMap (line 206) | func toSearchableMap(attrs ...interface{}) (result interface{}) {
function equalAsString (line 223) | func equalAsString(a interface{}, b interface{}) bool {
function toString (line 227) | func toString(str interface{}) string {
function makeSlice (line 242) | func makeSlice(elemType reflect.Type) interface{} {
function strInSlice (line 252) | func strInSlice(a string, list []string) bool {
function getValueFromFields (line 262) | func getValueFromFields(value reflect.Value, fieldNames []string) (resul...
function addExtraSpaceIfExist (line 280) | func addExtraSpaceIfExist(str string) string {
FILE: vendor/github.com/jinzhu/inflection/inflections.go
type inflection (line 31) | type inflection struct
type Regular (line 37) | type Regular struct
type Irregular (line 44) | type Irregular struct
type RegularSlice (line 50) | type RegularSlice
type IrregularSlice (line 53) | type IrregularSlice
function compile (line 124) | func compile() {
function init (line 175) | func init() {
function AddPlural (line 180) | func AddPlural(find, replace string) {
function AddSingular (line 186) | func AddSingular(find, replace string) {
function AddIrregular (line 192) | func AddIrregular(singular, plural string) {
function AddUncountable (line 198) | func AddUncountable(values ...string) {
function GetPlural (line 204) | func GetPlural() RegularSlice {
function GetSingular (line 211) | func GetSingular() RegularSlice {
function GetIrregular (line 218) | func GetIrregular() IrregularSlice {
function GetUncountable (line 225) | func GetUncountable() []string {
function SetPlural (line 232) | func SetPlural(inflections RegularSlice) {
function SetSingular (line 238) | func SetSingular(inflections RegularSlice) {
function SetIrregular (line 244) | func SetIrregular(inflections IrregularSlice) {
function SetUncountable (line 250) | func SetUncountable(inflections []string) {
function Plural (line 256) | func Plural(str string) string {
function Singular (line 266) | func Singular(str string) string {
FILE: vendor/github.com/mailru/easyjson/buffer/pool.go
type PoolConfig (line 11) | type PoolConfig struct
function initBuffers (line 26) | func initBuffers() {
function init (line 32) | func init() {
function Init (line 37) | func Init(cfg PoolConfig) {
function putBuf (line 43) | func putBuf(buf []byte) {
function getBuf (line 54) | func getBuf(size int) []byte {
type Buffer (line 69) | type Buffer struct
method EnsureSpace (line 80) | func (b *Buffer) EnsureSpace(s int) {
method AppendByte (line 107) | func (b *Buffer) AppendByte(data byte) {
method AppendBytes (line 115) | func (b *Buffer) AppendBytes(data []byte) {
method AppendString (line 132) | func (b *Buffer) AppendString(data string) {
method Size (line 149) | func (b *Buffer) Size() int {
method DumpTo (line 158) | func (b *Buffer) DumpTo(w io.Writer) (written int, err error) {
method BuildBytes (line 184) | func (b *Buffer) BuildBytes(reuse ...[]byte) []byte {
method ReadCloser (line 262) | func (b *Buffer) ReadCloser() io.ReadCloser {
type readCloser (line 216) | type readCloser struct
method Read (line 221) | func (r *readCloser) Read(p []byte) (n int, err error) {
method Close (line 250) | func (r *readCloser) Close() error {
FILE: vendor/github.com/mailru/easyjson/jlexer/bytestostr.go
function bytesToStr (line 20) | func bytesToStr(data []byte) string {
FILE: vendor/github.com/mailru/easyjson/jlexer/bytestostr_nounsafe.go
function bytesToStr (line 11) | func bytesToStr(data []byte) string {
FILE: vendor/github.com/mailru/easyjson/jlexer/error.go
type LexerError (line 7) | type LexerError struct
method Error (line 13) | func (l *LexerError) Error() string {
FILE: vendor/github.com/mailru/easyjson/jlexer/lexer.go
type tokenKind (line 20) | type tokenKind
constant tokenUndef (line 23) | tokenUndef tokenKind = iota
constant tokenDelim (line 24) | tokenDelim
constant tokenString (line 25) | tokenString
constant tokenNumber (line 26) | tokenNumber
constant tokenBool (line 27) | tokenBool
constant tokenNull (line 28) | tokenNull
type token (line 32) | type token struct
type Lexer (line 41) | type Lexer struct
method FetchToken (line 57) | func (r *Lexer) FetchToken() {
method fetchNull (line 165) | func (r *Lexer) fetchNull() {
method fetchTrue (line 179) | func (r *Lexer) fetchTrue() {
method fetchFalse (line 193) | func (r *Lexer) fetchFalse() {
method fetchNumber (line 208) | func (r *Lexer) fetchNumber() {
method processEscape (line 290) | func (r *Lexer) processEscape(data []byte) (int, error) {
method fetchString (line 341) | func (r *Lexer) fetchString() {
method scanToken (line 385) | func (r *Lexer) scanToken() {
method consume (line 394) | func (r *Lexer) consume() {
method Ok (line 400) | func (r *Lexer) Ok() bool {
method errParse (line 406) | func (r *Lexer) errParse(what string) {
method errSyntax (line 422) | func (r *Lexer) errSyntax() {
method errInvalidToken (line 426) | func (r *Lexer) errInvalidToken(expected string) {
method GetPos (line 463) | func (r *Lexer) GetPos() int {
method Delim (line 468) | func (r *Lexer) Delim(c byte) {
method IsDelim (line 482) | func (r *Lexer) IsDelim(c byte) bool {
method Null (line 490) | func (r *Lexer) Null() {
method IsNull (line 501) | func (r *Lexer) IsNull() bool {
method Skip (line 509) | func (r *Lexer) Skip() {
method SkipRecursive (line 520) | func (r *Lexer) SkipRecursive() {
method Raw (line 568) | func (r *Lexer) Raw() []byte {
method IsStart (line 578) | func (r *Lexer) IsStart() bool {
method Consumed (line 584) | func (r *Lexer) Consumed() {
method unsafeString (line 604) | func (r *Lexer) unsafeString() (string, []byte) {
method UnsafeString (line 622) | func (r *Lexer) UnsafeString() string {
method UnsafeBytes (line 628) | func (r *Lexer) UnsafeBytes() []byte {
method String (line 634) | func (r *Lexer) String() string {
method Bytes (line 648) | func (r *Lexer) Bytes() []byte {
method Bool (line 670) | func (r *Lexer) Bool() bool {
method number (line 683) | func (r *Lexer) number() string {
method Uint8 (line 696) | func (r *Lexer) Uint8() uint8 {
method Uint16 (line 713) | func (r *Lexer) Uint16() uint16 {
method Uint32 (line 730) | func (r *Lexer) Uint32() uint32 {
method Uint64 (line 747) | func (r *Lexer) Uint64() uint64 {
method Uint (line 764) | func (r *Lexer) Uint() uint {
method Int8 (line 768) | func (r *Lexer) Int8() int8 {
method Int16 (line 785) | func (r *Lexer) Int16() int16 {
method Int32 (line 802) | func (r *Lexer) Int32() int32 {
method Int64 (line 819) | func (r *Lexer) Int64() int64 {
method Int (line 836) | func (r *Lexer) Int() int {
method Uint8Str (line 840) | func (r *Lexer) Uint8Str() uint8 {
method Uint16Str (line 857) | func (r *Lexer) Uint16Str() uint16 {
method Uint32Str (line 874) | func (r *Lexer) Uint32Str() uint32 {
method Uint64Str (line 891) | func (r *Lexer) Uint64Str() uint64 {
method UintStr (line 908) | func (r *Lexer) UintStr() uint {
method UintptrStr (line 912) | func (r *Lexer) UintptrStr() uintptr {
method Int8Str (line 916) | func (r *Lexer) Int8Str() int8 {
method Int16Str (line 933) | func (r *Lexer) Int16Str() int16 {
method Int32Str (line 950) | func (r *Lexer) Int32Str() int32 {
method Int64Str (line 967) | func (r *Lexer) Int64Str() int64 {
method IntStr (line 984) | func (r *Lexer) IntStr() int {
method Float32 (line 988) | func (r *Lexer) Float32() float32 {
method Float32Str (line 1005) | func (r *Lexer) Float32Str() float32 {
method Float64 (line 1021) | func (r *Lexer) Float64() float64 {
method Float64Str (line 1038) | func (r *Lexer) Float64Str() float64 {
method Error (line 1054) | func (r *Lexer) Error() error {
method AddError (line 1058) | func (r *Lexer) AddError(e error) {
method AddNonFatalError (line 1064) | func (r *Lexer) AddNonFatalError(e error) {
method addNonfatalError (line 1072) | func (r *Lexer) addNonfatalError(err *LexerError) {
method GetNonFatalErrors (line 1084) | func (r *Lexer) GetNonFatalErrors() []*LexerError {
method JsonNumber (line 1090) | func (r *Lexer) JsonNumber() json.Number {
method Interface (line 1114) | func (r *Lexer) Interface() interface{} {
method WantComma (line 1172) | func (r *Lexer) WantComma() {
method WantColon (line 1178) | func (r *Lexer) WantColon() {
function isTokenEnd (line 160) | func isTokenEnd(c byte) bool {
function findStringLen (line 243) | func findStringLen(data []byte) (isValid, hasEscapes bool, length int) {
function getu4 (line 264) | func getu4(s []byte) rune {
constant maxErrorContextLen (line 404) | maxErrorContextLen = 13
FILE: vendor/github.com/mailru/easyjson/jwriter/writer.go
type Flags (line 14) | type Flags
constant NilMapAsEmpty (line 17) | NilMapAsEmpty Flags = 1 << iota
constant NilSliceAsEmpty (line 18) | NilSliceAsEmpty
type Writer (line 22) | type Writer struct
method Size (line 31) | func (w *Writer) Size() int {
method DumpTo (line 36) | func (w *Writer) DumpTo(out io.Writer) (written int, err error) {
method BuildBytes (line 42) | func (w *Writer) BuildBytes(reuse ...[]byte) ([]byte, error) {
method ReadCloser (line 52) | func (w *Writer) ReadCloser() (io.ReadCloser, error) {
method RawByte (line 61) | func (w *Writer) RawByte(c byte) {
method RawString (line 66) | func (w *Writer) RawString(s string) {
method Raw (line 72) | func (w *Writer) Raw(data []byte, err error) {
method RawText (line 87) | func (w *Writer) RawText(data []byte, err error) {
method Base64Bytes (line 101) | func (w *Writer) Base64Bytes(data []byte) {
method Uint8 (line 111) | func (w *Writer) Uint8(n uint8) {
method Uint16 (line 116) | func (w *Writer) Uint16(n uint16) {
method Uint32 (line 121) | func (w *Writer) Uint32(n uint32) {
method Uint (line 126) | func (w *Writer) Uint(n uint) {
method Uint64 (line 131) | func (w *Writer) Uint64(n uint64) {
method Int8 (line 136) | func (w *Writer) Int8(n int8) {
method Int16 (line 141) | func (w *Writer) Int16(n int16) {
method Int32 (line 146) | func (w *Writer) Int32(n int32) {
method Int (line 151) | func (w *Writer) Int(n int) {
method Int64 (line 156) | func (w *Writer) Int64(n int64) {
method Uint8Str (line 161) | func (w *Writer) Uint8Str(n uint8) {
method Uint16Str (line 168) | func (w *Writer) Uint16Str(n uint16) {
method Uint32Str (line 175) | func (w *Writer) Uint32Str(n uint32) {
method UintStr (line 182) | func (w *Writer) UintStr(n uint) {
method Uint64Str (line 189) | func (w *Writer) Uint64Str(n uint64) {
method UintptrStr (line 196) | func (w *Writer) UintptrStr(n uintptr) {
method Int8Str (line 203) | func (w *Writer) Int8Str(n int8) {
method Int16Str (line 210) | func (w *Writer) Int16Str(n int16) {
method Int32Str (line 217) | func (w *Writer) Int32Str(n int32) {
method IntStr (line 224) | func (w *Writer) IntStr(n int) {
method Int64Str (line 231) | func (w *Writer) Int64Str(n int64) {
method Float32 (line 238) | func (w *Writer) Float32(n float32) {
method Float32Str (line 243) | func (w *Writer) Float32Str(n float32) {
method Float64 (line 250) | func (w *Writer) Float64(n float64) {
method Float64Str (line 255) | func (w *Writer) Float64Str(n float64) {
method Bool (line 262) | func (w *Writer) Bool(v bool) {
method String (line 283) | func (w *Writer) String(s string) {
method base64 (line 351) | func (w *Writer) base64(in []byte) {
constant chars (line 271) | chars = "0123456789abcdef"
function isNotEscapedSingleChar (line 273) | func isNotEscapedSingleChar(c byte, escapeHTML bool) bool {
constant encode (line 348) | encode = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
constant padChar (line 349) | padChar = '='
FILE: vendor/github.com/mattn/go-isatty/isatty_android.go
constant ioctlReadTermios (line 10) | ioctlReadTermios = syscall.TCGETS
function IsTerminal (line 13) | func IsTerminal(fd uintptr) bool {
function IsCygwinTerminal (line 21) | func IsCygwinTerminal(fd uintptr) bool {
FILE: vendor/github.com/mattn/go-isatty/isatty_bsd.go
constant ioctlReadTermios (line 11) | ioctlReadTermios = syscall.TIOCGETA
function IsTerminal (line 14) | func IsTerminal(fd uintptr) bool {
function IsCygwinTerminal (line 22) | func IsCygwinTerminal(fd uintptr) bool {
FILE: vendor/github.com/mattn/go-isatty/isatty_others.go
function IsTerminal (line 7) | func IsTerminal(fd uintptr) bool {
function IsCygwinTerminal (line 13) | func IsCygwinTerminal(fd uintptr) bool {
FILE: vendor/github.com/mattn/go-isatty/isatty_solaris.go
function IsTerminal (line 12) | func IsTerminal(fd uintptr) bool {
function IsCygwinTerminal (line 20) | func IsCygwinTerminal(fd uintptr) bool {
FILE: vendor/github.com/mattn/go-isatty/isatty_tcgets.go
function IsTerminal (line 10) | func IsTerminal(fd uintptr) bool {
function IsCygwinTerminal (line 17) | func IsCygwinTerminal(fd uintptr) bool {
FILE: vendor/github.com/mattn/go-isatty/isatty_windows.go
constant fileNameInfo (line 14) | fileNameInfo uintptr = 2
constant fileTypePipe (line 15) | fileTypePipe = 3
function init (line 25) | func init() {
function IsTerminal (line 33) | func IsTerminal(fd uintptr) bool {
function isCygwinPipeName (line 42) | func isCygwinPipeName(name string) bool {
function IsCygwinTerminal (line 73) | func IsCygwinTerminal(fd uintptr) bool {
FILE: vendor/github.com/modern-go/concurrent/executor.go
type Executor (line 11) | type Executor interface
FILE: vendor/github.com/modern-go/concurrent/go_above_19.go
type Map (line 8) | type Map struct
function NewMap (line 13) | func NewMap() *Map {
FILE: vendor/github.com/modern-go/concurrent/go_below_19.go
type Map (line 8) | type Map struct
method Load (line 21) | func (m *Map) Load(key interface{}) (elem interface{}, found bool) {
method Store (line 29) | func (m *Map) Store(key interface{}, elem interface{}) {
function NewMap (line 14) | func NewMap() *Map {
FILE: vendor/github.com/modern-go/concurrent/unbounded_executor.go
type UnboundedExecutor (line 21) | type UnboundedExecutor struct
method Go (line 50) | func (executor *UnboundedExecutor) Go(handler func(ctx context.Context...
method Stop (line 80) | func (executor *UnboundedExecutor) Stop() {
method StopAndWaitForever (line 86) | func (executor *UnboundedExecutor) StopAndWaitForever() {
method StopAndWait (line 92) | func (executor *UnboundedExecutor) StopAndWait(ctx context.Context) {
method checkNoActiveGoroutines (line 107) | func (executor *UnboundedExecutor) checkNoActiveGoroutines() bool {
function NewUnboundedExecutor (line 38) | func NewUnboundedExecutor() *UnboundedExecutor {
FILE: vendor/github.com/pkg/errors/errors.go
function New (line 102) | func New(message string) error {
function Errorf (line 112) | func Errorf(format string, args ...interface{}) error {
type fundamental (line 120) | type fundamental struct
method Error (line 125) | func (f *fundamental) Error() string { return f.msg }
method Format (line 127) | func (f *fundamental) Format(s fmt.State, verb rune) {
function WithStack (line 145) | func WithStack(err error) error {
type withStack (line 155) | type withStack struct
method Cause (line 160) | func (w *withStack) Cause() error { return w.error }
method Format (line 162) | func (w *withStack) Format(s fmt.State, verb rune) {
function Wrap (line 181) | func Wrap(err error, message string) error {
function Wrapf (line 198) | func Wrapf(err error, format string, args ...interface{}) error {
function WithMessage (line 214) | func WithMessage(err error, message string) error {
function WithMessagef (line 226) | func WithMessagef(err error, format string, args ...interface{}) error {
type withMessage (line 236) | type withMessage struct
method Error (line 241) | func (w *withMessage) Error() string { return w.msg + ": " + w.cause.E...
method Cause (line 242) | func (w *withMessage) Cause() error { return w.cause }
method Format (line 244) | func (w *withMessage) Format(s fmt.State, verb rune) {
function Cause (line 269) | 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 52) | func (f Frame) Format(s fmt.State, verb rune) {
type StackTrace (line 81) | type StackTrace
method Format (line 91) | func (st StackTrace) Format(s fmt.State, verb rune) {
type stack (line 110) | type stack
method Format (line 112) | func (s *stack) Format(st fmt.State, verb rune) {
method StackTrace (line 125) | func (s *stack) StackTrace() StackTrace {
function callers (line 133) | func callers() *stack {
function funcname (line 142) | func funcname(name string) string {
FILE: vendor/github.com/swaggo/swag/debug.go
constant test (line 8) | test = iota
constant release (line 9) | release
function isRelease (line 14) | func isRelease() bool {
function Println (line 19) | func Println(v ...interface{}) {
function Printf (line 26) | func Printf(format string, v ...interface{}) {
FILE: vendor/github.com/swaggo/swag/operation.go
type Operation (line 22) | type Operation struct
method ParseComment (line 59) | func (operation *Operation) ParseComment(comment string, astFile *ast....
method ParseParamComment (line 122) | func (operation *Operation) ParseParamComment(commentLine string, astF...
method registerSchemaType (line 163) | func (operation *Operation) registerSchemaType(schemaType string, astF...
method parseAndExtractionParamAttribute (line 223) | func (operation *Operation) parseAndExtractionParamAttribute(commentLi...
method ParseTagsComment (line 362) | func (operation *Operation) ParseTagsComment(commentLine string) {
method ParseAcceptComment (line 370) | func (operation *Operation) ParseAcceptComment(commentLine string) err...
method ParseProduceComment (line 375) | func (operation *Operation) ParseProduceComment(commentLine string) er...
method ParseRouterComment (line 401) | func (operation *Operation) ParseRouterComment(commentLine string) err...
method ParseSecurityComment (line 417) | func (operation *Operation) ParseSecurityComment(commentLine string) e...
method ParseResponseComment (line 500) | func (operation *Operation) ParseResponseComment(commentLine string, a...
method ParseResponseHeaderComment (line 571) | func (operation *Operation) ParseResponseHeaderComment(commentLine str...
method ParseEmptyResponseComment (line 619) | func (operation *Operation) ParseEmptyResponseComment(commentLine stri...
method ParseEmptyResponseOnly (line 646) | func (operation *Operation) ParseEmptyResponseOnly(commentLine string)...
function NewOperation (line 49) | func NewOperation() *Operation {
function findAttr (line 314) | func findAttr(re *regexp.Regexp, commentLine string) (string, error) {
function findAttrList (line 324) | func findAttrList(re *regexp.Regexp, commentLine string) ([]string, erro...
function defineType (line 333) | func defineType(schemaType string, value string) (interface{}, error) {
function parseMimeTypeList (line 382) | func parseMimeTypeList(mimeTypeList string, typeList *[]string, format s...
function findTypeDef (line 445) | func findTypeDef(importPath, typeName string) (*ast.TypeSpec, error) {
function createParameter (line 667) | func createParameter(paramType, description, paramName, schemaType strin...
FILE: vendor/github.com/swaggo/swag/parser.go
constant CamelCase (line 25) | CamelCase = "camelcase"
constant PascalCase (line 28) | PascalCase = "pascalcase"
constant SnakeCase (line 31) | SnakeCase = "snakecase"
type Parser (line 35) | type Parser struct
method ParseAPI (line 85) | func (parser *Parser) ParseAPI(searchDir string, mainAPIFile string) e...
method ParseGeneralAPIInfo (line 108) | func (parser *Parser) ParseGeneralAPIInfo(mainAPIFile string) error {
method ParseRouterAPIInfo (line 387) | func (parser *Parser) ParseRouterAPIInfo(fileName string, astFile *ast...
method ParseType (line 431) | func (parser *Parser) ParseType(astFile *ast.File) {
method isInStructStack (line 454) | func (parser *Parser) isInStructStack(refTypeName string) bool {
method ParseDefinitions (line 464) | func (parser *Parser) ParseDefinitions() {
method ParseDefinition (line 484) | func (parser *Parser) ParseDefinition(pkgName, typeName string, typeSp...
method collectRequiredFields (line 507) | func (parser *Parser) collectRequiredFields(pkgName string, properties...
method parseTypeExpr (line 551) | func (parser *Parser) parseTypeExpr(pkgName, typeName string, typeExpr...
method parseStruct (line 691) | func (parser *Parser) parseStruct(pkgName string, field *ast.Field) (m...
method parseAnonymousField (line 843) | func (parser *Parser) parseAnonymousField(pkgName string, field *ast.F...
method parseField (line 896) | func (parser *Parser) parseField(field *ast.Field) (*structField, erro...
method getAllGoFileInfo (line 1159) | func (parser *Parser) getAllGoFileInfo(searchDir string) error {
method visit (line 1163) | func (parser *Parser) visit(path string, f os.FileInfo, err error) err...
method Skip (line 1181) | func (parser *Parser) Skip(path string, f os.FileInfo) error {
method GetSwagger (line 1197) | func (parser *Parser) GetSwagger() *spec.Swagger {
function New (line 60) | func New() *Parser {
function getScopeScheme (line 360) | func getScopeScheme(scope string) (string, error) {
function isExistsScope (line 368) | func isExistsScope(scope string) (bool, error) {
function getSchemes (line 381) | func getSchemes(commentLine string) []string {
function fullTypeName (line 542) | func fullTypeName(pkgName, typeName string) string {
type structField (line 674) | type structField struct
function replaceLastTag (line 1054) | func replaceLastTag(slice []spec.Tag, element spec.Tag) {
function getFloatTag (line 1059) | func getFloatTag(structTag reflect.StructTag, tagName string) (*float64,...
function getIntTag (line 1073) | func getIntTag(structTag reflect.StructTag, tagName string) (*int64, err...
function toSnakeCase (line 1087) | func toSnakeCase(in string) string {
function toLowerCamelCase (line 1101) | func toLowerCamelCase(in string) string {
function defineTypeOfExample (line 1120) | func defineTypeOfExample(schemaType, arrayType, exampleValue string) (in...
FILE: vendor/github.com/swaggo/swag/property.go
type propertyName (line 13) | type propertyName struct
type propertyNewFunc (line 19) | type propertyNewFunc
function newArrayProperty (line 21) | func newArrayProperty(schemeType string, crossPkg string) propertyName {
function newProperty (line 29) | func newProperty(schemeType string, crossPkg string) propertyName {
function convertFromSpecificToPrimitive (line 37) | func convertFromSpecificToPrimitive(typeName string) (string, error) {
function parseFieldSelectorExpr (line 48) | func parseFieldSelectorExpr(astTypeSelectorExpr *ast.SelectorExpr, parse...
function getPropertyName (line 72) | func getPropertyName(expr ast.Expr, parser *Parser) (propertyName, error) {
function getArrayPropertyName (line 112) | func getArrayPropertyName(astTypeArray *ast.ArrayType, parser *Parser) p...
FILE: vendor/github.com/swaggo/swag/schema.go
function CheckSchemaType (line 6) | func CheckSchemaType(typeName string) error {
function IsPrimitiveType (line 14) | func IsPrimitiveType(typeName string) bool {
function IsNumericType (line 24) | func IsNumericType(typeName string) bool {
function TransToValidSchemeType (line 29) | func TransToValidSchemeType(typeName string) string {
function IsGolangPrimitiveType (line 49) | func IsGolangPrimitiveType(typeName string) bool {
FILE: vendor/github.com/swaggo/swag/swagger.go
constant Name (line 9) | Name = "swagger"
type Swagger (line 17) | type Swagger interface
function Register (line 22) | func Register(name string, swagger Swagger) {
function ReadDoc (line 36) | func ReadDoc() (string, error) {
FILE: vendor/github.com/swaggo/swag/version.go
constant Version (line 4) | Version = "v1.5.1"
FILE: vendor/github.com/tealeg/xlsx/cell.go
constant maxNonScientificNumber (line 11) | maxNonScientificNumber = 1e11
constant minNonScientificNumber (line 12) | minNonScientificNumber = 1e-9
type CellType (line 16) | type CellType
method Ptr (line 38) | func (ct CellType) Ptr() *CellType {
constant CellTypeString (line 20) | CellTypeString CellType = iota
constant CellTypeStringFormula (line 23) | CellTypeStringFormula
constant CellTypeNumeric (line 24) | CellTypeNumeric
constant CellTypeBool (line 25) | CellTypeBool
constant CellTypeInline (line 28) | CellTypeInline
constant CellTypeError (line 29) | CellTypeError
constant CellTypeDate (line 35) | CellTypeDate
type Cell (line 44) | type Cell struct
method Merge (line 70) | func (c *Cell) Merge(hcells, vcells int) {
method Type (line 76) | func (c *Cell) Type() CellType {
method SetString (line 81) | func (c *Cell) SetString(s string) {
method String (line 90) | func (c *Cell) String() string {
method SetFloat (line 99) | func (c *Cell) SetFloat(n float64) {
method GetTime (line 104) | func (c *Cell) GetTime(date1904 bool) (t time.Time, err error) {
method SetFloatWithFormat (line 126) | func (c *Cell) SetFloatWithFormat(n float64, format string) {
method SetDate (line 166) | func (c *Cell) SetDate(t time.Time) {
method SetDateTime (line 170) | func (c *Cell) SetDateTime(t time.Time) {
method SetDateWithOptions (line 175) | func (c *Cell) SetDateWithOptions(t time.Time, options DateTimeOptions) {
method SetDateTimeWithFormat (line 181) | func (c *Cell) SetDateTimeWithFormat(n float64, format string) {
method Float (line 189) | func (c *Cell) Float() (float64, error) {
method SetInt64 (line 198) | func (c *Cell) SetInt64(n int64) {
method Int64 (line 203) | func (c *Cell) Int64() (int64, error) {
method GeneralNumeric (line 214) | func (c *Cell) GeneralNumeric() (string, error) {
method GeneralNumericWithoutScientific (line 221) | func (c *Cell) GeneralNumericWithoutScientific() (string, error) {
method SetInt (line 226) | func (c *Cell) SetInt(n int) {
method SetValue (line 231) | func (c *Cell) SetValue(n interface{}) {
method setNumeric (line 259) | func (c *Cell) setNumeric(s string) {
method Int (line 269) | func (c *Cell) Int() (int, error) {
method SetBool (line 278) | func (c *Cell) SetBool(b bool) {
method Bool (line 290) | func (c *Cell) Bool() bool {
method SetFormula (line 304) | func (c *Cell) SetFormula(formula string) {
method SetStringFormula (line 309) | func (c *Cell) SetStringFormula(formula string) {
method Formula (line 315) | func (c *Cell) Formula() string {
method GetStyle (line 320) | func (c *Cell) GetStyle() *Style {
method SetStyle (line 328) | func (c *Cell) SetStyle(style *Style) {
method GetNumberFormat (line 333) | func (c *Cell) GetNumberFormat() string {
method formatToFloat (line 337) | func (c *Cell) formatToFloat(format string) (string, error) {
method formatToInt (line 345) | func (c *Cell) formatToInt(format string) (string, error) {
method getNumberFormat (line 355) | func (c *Cell) getNumberFormat() *parsedNumberFormat {
method FormattedValue (line 366) | func (c *Cell) FormattedValue() (string, error) {
type CellInterface (line 59) | type CellInterface interface
function NewCell (line 65) | func NewCell(r *Row) *Cell {
function TimeToUTCTime (line 134) | func TimeToUTCTime(t time.Time) time.Time {
function TimeToExcelTime (line 138) | func TimeToExcelTime(t time.Time) float64 {
type DateTimeOptions (line 143) | type DateTimeOptions struct
FILE: vendor/github.com/tealeg/xlsx/col.go
constant ColWidth (line 4) | ColWidth = 9.5
type Col (line 6) | type Col struct
method SetType (line 20) | func (c *Col) SetType(cellType CellType) {
method GetStyle (line 42) | func (c *Col) GetStyle() *Style {
method SetStyle (line 47) | func (c *Col) SetStyle(style *Style) {
FILE: vendor/github.com/tealeg/xlsx/date.go
constant MJD_0 (line 8) | MJD_0 float64 = 2400000.5
constant MJD_JD2000 (line 9) | MJD_JD2000 float64 = 51544.5
function shiftJulianToNoon (line 11) | func shiftJulianToNoon(julianDays, julianFraction float64) (float64, flo...
function fractionOfADay (line 28) | func fractionOfADay(fraction float64) (hours, minutes, seconds, nanoseco...
function julianDateToGregorianTime (line 46) | func julianDateToGregorianTime(part1, part2 float64) time.Time {
function doTheFliegelAndVanFlandernAlgorithm (line 64) | func doTheFliegelAndVanFlandernAlgorithm(jd int) (day, month, year int) {
function TimeFromExcelTime (line 79) | func TimeFromExcelTime(excelTime float64, date1904 bool) time.Time {
FILE: vendor/github.com/tealeg/xlsx/file.go
type File (line 18) | type File struct
method Save (line 121) | func (f *File) Save(path string) (err error) {
method Write (line 134) | func (f *File) Write(writer io.Writer) (err error) {
method AddSheet (line 154) | func (f *File) AddSheet(sheetName string) (*Sheet, error) {
method AppendSheet (line 172) | func (f *File) AppendSheet(sheet Sheet, sheetName string) (*Sheet, err...
method makeWorkbook (line 184) | func (f *File) makeWorkbook() xlsxWorkbook {
method MarshallParts (line 232) | func (f *File) MarshallParts() (map[string]string, error) {
method ToSlice (line 340) | func (f *File) ToSlice() (output [][][]string, err error) {
method ToSliceUnmerged (line 378) | func (f *File) ToSliceUnmerged() (output [][][]string, err error) {
constant NoRowLimit (line 29) | NoRowLimit int = -1
function NewFile (line 32) | func NewFile() *File {
function OpenFile (line 42) | func OpenFile(fileName string) (file *File, err error) {
function OpenFileWithRowLimit (line 48) | func OpenFileWithRowLimit(fileName string, rowLimit int) (file *File, er...
function OpenBinary (line 59) | func OpenBinary(bs []byte) (*File, error) {
function OpenBinaryWithRowLimit (line 65) | func OpenBinaryWithRowLimit(bs []byte, rowLimit int) (*File, error) {
function OpenReaderAt (line 72) | func OpenReaderAt(r io.ReaderAt, size int64) (*File, error) {
function OpenReaderAtWithRowLimit (line 78) | func OpenReaderAtWithRowLimit(r io.ReaderAt, size int64, rowLimit int) (...
function FileToSlice (line 100) | func FileToSlice(path string) ([][][]string, error) {
function FileToSliceUnmerged (line 112) | func FileToSliceUnmerged(path string) ([][][]string, error) {
function replaceRelationshipsNameSpace (line 219) | func replaceRelationshipsNameSpace(workbookMarshal string) string {
FILE: vendor/github.com/tealeg/xlsx/format_code.go
type parsedNumberFormat (line 14) | type parsedNumberFormat struct
method FormatValue (line 69) | func (fullFormat *parsedNumberFormat) FormatValue(cell *Cell) (string,...
method formatNumericCell (line 115) | func (fullFormat *parsedNumberFormat) formatNumericCell(cell *Cell) (s...
method parseTime (line 508) | func (fullFormat *parsedNumberFormat) parseTime(value string, date1904...
type formatOptions (line 25) | type formatOptions struct
function generalNumericScientific (line 197) | func generalNumericScientific(value string, allowScientific bool) (strin...
function compareFormatString (line 224) | func compareFormatString(fmt1, fmt2 string) bool {
function parseFullNumberFormatString (line 237) | func parseFullNumberFormatString(numFmt string) *parsedNumberFormat {
function splitFormatOnSemicolon (line 315) | func splitFormatOnSemicolon(format string) ([]string, error) {
function parseNumberFormatSection (line 360) | func parseNumberFormatSection(fullFormat string) (*formatOptions, error) {
function splitFormatAndSuffixFormat (line 416) | func splitFormatAndSuffixFormat(format string) (string, string) {
function parseLiterals (line 438) | func parseLiterals(format string) (string, string, bool, error) {
function isTimeFormat (line 572) | func isTimeFormat(format string) bool {
function is12HourTime (line 642) | func is12HourTime(format string) bool {
FILE: vendor/github.com/tealeg/xlsx/hsl.go
type HSL (line 44) | type HSL struct
method RGBA (line 50) | func (c HSL) RGBA() (uint32, uint32, uint32, uint32) {
function hslModel (line 56) | func hslModel(c color.Color) color.Color {
function RGBToHSL (line 68) | func RGBToHSL(r, g, b uint8) (h, s, l float64) {
function HSLToRGB (line 105) | func HSLToRGB(h, s, l float64) (r, g, b uint8) {
function hueToRGB (line 128) | func hueToRGB(p, q, t float64) float64 {
FILE: vendor/github.com/tealeg/xlsx/lib.go
constant sheetEnding (line 16) | sheetEnding = ``
type XLSXReaderError (line 21) | type XLSXReaderError struct
method Error (line 27) | func (e *XLSXReaderError) Error() string {
function getRangeFromString (line 34) | func getRangeFromString(rangeString string) (lower int, upper int, error...
function ColLettersToIndex (line 56) | func ColLettersToIndex(letters string) int {
function getLargestDenominator (line 73) | func getLargestDenominator(numerator, multiple, baseDenominator, power i...
function formatColumnName (line 87) | func formatColumnName(colId []int) string {
function smooshBase26Slice (line 109) | func smooshBase26Slice(b26 []int) []int {
function intToBase26 (line 126) | func intToBase26(x int) (parts []int) {
function ColIndexToLetters (line 144) | func ColIndexToLetters(colRef int) string {
function letterOnlyMapF (line 151) | func letterOnlyMapF(rune rune) rune {
function intOnlyMapF (line 163) | func intOnlyMapF(rune rune) rune {
function GetCoordsFromCellIDString (line 173) | func GetCoordsFromCellIDString(cellIDString string) (x, y int, error err...
function GetCellIDStringFromCoords (line 186) | func GetCellIDStringFromCoords(x, y int) string {
function getMaxMinFromDimensionRef (line 196) | func getMaxMinFromDimensionRef(ref string) (minx, miny, maxx, maxy int, ...
function calculateMaxMinFromWorksheet (line 214) | func calculateMaxMinFromWorksheet(worksheet *xlsxWorksheet) (minx, miny,...
function makeRowFromSpan (line 256) | func makeRowFromSpan(spans string, sheet *Sheet) *Row {
function makeRowFromRaw (line 279) | func makeRowFromRaw(rawrow xlsxRow, sheet *Sheet) *Row {
function makeEmptyRow (line 314) | func makeEmptyRow(sheet *Sheet) *Row {
type sharedFormula (line 321) | type sharedFormula struct
function formulaForCell (line 326) | func formulaForCell(rawcell xlsxC, sharedFormulas map[int]sharedFormula)...
function shiftCell (line 396) | func shiftCell(cellID string, dx, dy int) string {
function fillCellData (line 446) | func fillCellData(rawCell xlsxC, refTable *RefTable, sharedFormulas map[...
function fillCellDataFromInlineString (line 487) | func fillCellDataFromInlineString(rawcell xlsxC, cell *Cell) {
function readRowsFromSheet (line 504) | func readRowsFromSheet(Worksheet *xlsxWorksheet, file *File, sheet *Shee...
type indexedSheet (line 638) | type indexedSheet struct
function readSheetViews (line 644) | func readSheetViews(xSheetViews xlsxSheetViews) []SheetView {
function readSheetFromFile (line 670) | func readSheetFromFile(sc chan *indexedSheet, index int, rsheet xlsxShee...
function readSheetsFromZipFile (line 711) | func readSheetsFromZipFile(f *zip.File, file *File, sheetXMLMap map[stri...
function readSharedStringsFromZipFile (line 772) | func readSharedStringsFromZipFile(f *zip.File) (*RefTable, error) {
function readStylesFromZipFile (line 802) | func readStylesFromZipFile(f *zip.File, theme *theme) (*xlsxStyleSheet, ...
function buildNumFmtRefTable (line 821) | func buildNumFmtRefTable(style *xlsxStyleSheet) {
function readThemeFromZipFile (line 828) | func readThemeFromZipFile(f *zip.File) (*theme, error) {
type WorkBookRels (line 843) | type WorkBookRels
method MakeXLSXWorkbookRels (line 845) | func (w *WorkBookRels) MakeXLSXWorkbookRels() xlsxWorkbookRels {
function readWorkbookRelationsFromZipFile (line 888) | func readWorkbookRelationsFromZipFile(workbookRels *zip.File) (WorkBookR...
function ReadZip (line 918) | func ReadZip(f *zip.ReadCloser) (*File, error) {
function ReadZipWithRowLimit (line 925) | func ReadZipWithRowLimit(f *zip.ReadCloser, rowLimit int) (*File, error) {
function ReadZipReader (line 932) | func ReadZipReader(r *zip.Reader) (*File, error) {
function ReadZipReaderWithRowLimit (line 940) | func ReadZipReaderWithRowLimit(r *zip.Reader, rowLimit int) (*File, erro...
function truncateSheetXML (line 1030) | func truncateSheetXML(r io.Reader, rowLimit int) (io.Reader, error) {
FILE: vendor/github.com/tealeg/xlsx/read.go
type XLSXUnmarshaler (line 18) | type XLSXUnmarshaler interface
method ReadStruct (line 26) | func (r *Row) ReadStruct(ptr interface{}) error {
FILE: vendor/github.com/tealeg/xlsx/reftable.go
type RefTable (line 3) | type RefTable struct
method makeXLSXSST (line 39) | func (rt *RefTable) makeXLSXSST() xlsxSST {
method ResolveSharedString (line 55) | func (rt *RefTable) ResolveSharedString(index int) string {
method AddString (line 62) | func (rt *RefTable) AddString(str string) int {
method Length (line 75) | func (rt *RefTable) Length() int {
function NewSharedStringRefTable (line 10) | func NewSharedStringRefTable() *RefTable {
function MakeSharedStringRefTable (line 20) | func MakeSharedStringRefTable(source *xlsxSST) *RefTable {
FILE: vendor/github.com/tealeg/xlsx/row.go
type Row (line 3) | type Row struct
method SetHeight (line 12) | func (r *Row) SetHeight(ht float64) {
method SetHeightCM (line 17) | func (r *Row) SetHeightCM(ht float64) {
method AddCell (line 22) | func (r *Row) AddCell() *Cell {
FILE: vendor/github.com/tealeg/xlsx/sheet.go
type Sheet (line 11) | type Sheet struct
method AddRow (line 50) | func (s *Sheet) AddRow() *Row {
method maybeAddCol (line 60) | func (s *Sheet) maybeAddCol(cellCount int) {
method Col (line 74) | func (s *Sheet) Col(idx int) *Col {
method Cell (line 88) | func (sh *Sheet) Cell(row, col int) *Cell {
method SetColWidth (line 104) | func (s *Sheet) SetColWidth(startcol, endcol int, width float64) error {
method handleMerged (line 127) | func (s *Sheet) handleMerged() {
method makeXLSXSheet (line 185) | func (s *Sheet) makeXLSXSheet(refTable *RefTable, styles *xlsxStyleShe...
type SheetView (line 25) | type SheetView struct
type Pane (line 29) | type Pane struct
type SheetFormat (line 37) | type SheetFormat struct
type AutoFilter (line 44) | type AutoFilter struct
function handleStyleForXLSX (line 371) | func handleStyleForXLSX(style *Style, NumFmtId int, styles *xlsxStyleShe...
function handleNumFmtIdForXLSX (line 402) | func handleNumFmtIdForXLSX(NumFmtId int, styles *xlsxStyleSheet) (XfId i...
FILE: vendor/github.com/tealeg/xlsx/stream_file.go
type StreamFile (line 11) | type StreamFile struct
method Write (line 42) | func (sf *StreamFile) Write(cells []string) error {
method WriteAll (line 54) | func (sf *StreamFile) WriteAll(records [][]string) error {
method write (line 68) | func (sf *StreamFile) write(cells []string) error {
method Error (line 116) | func (sf *StreamFile) Error() error {
method Flush (line 120) | func (sf *StreamFile) Flush() {
method NextSheet (line 128) | func (sf *StreamFile) NextSheet() error {
method Close (line 169) | func (sf *StreamFile) Close() error {
method writeSheetStart (line 196) | func (sf *StreamFile) writeSheetStart() error {
method writeSheetEnd (line 204) | func (sf *StreamFile) writeSheetEnd() error {
type streamSheet (line 21) | type streamSheet struct
method write (line 214) | func (ss *streamSheet) write(data string) error {
FILE: vendor/github.com/tealeg/xlsx/stream_file_builder.go
type StreamFileBuilder (line 35) | type StreamFileBuilder struct
method AddSheet (line 80) | func (sb *StreamFileBuilder) AddSheet(name string, headers []string, c...
method Build (line 124) | func (sb *StreamFileBuilder) Build() (*StreamFile, error) {
method processEmptySheetXML (line 167) | func (sb *StreamFileBuilder) processEmptySheetXML(sf *StreamFile, path...
constant sheetFilePathPrefix (line 45) | sheetFilePathPrefix = "xl/worksheets/sheet"
constant sheetFilePathSuffix (line 46) | sheetFilePathSuffix = ".xml"
constant endSheetDataTag (line 47) | endSheetDataTag = ""
constant dimensionTag (line 48) | dimensionTag = ``
constant initMaxStyleId (line 52) | initMaxStyleId = 1
function NewStreamFileBuilder (line 58) | func NewStreamFileBuilder(writer io.Writer) *StreamFileBuilder {
function NewStreamFileBuilderForPath (line 69) | func NewStreamFileBuilderForPath(path string) (*StreamFileBuilder, error) {
function getSheetIndex (line 195) | func getSheetIndex(sf *StreamFile, path string) (int, error) {
function removeDimensionTag (line 213) | func removeDimensionTag(data string, sheet *Sheet) (string, error) {
function splitSheetIntoPrefixAndSuffix (line 238) | func splitSheetIntoPrefixAndSuffix(data string) (string, string, error) {
FILE: vendor/github.com/tealeg/xlsx/style.go
type Style (line 7) | type Style struct
method makeXLSXStyleElements (line 30) | func (style *Style) makeXLSXStyleElements() (xFont xlsxFont, xFill xls...
function NewStyle (line 20) | func NewStyle() *Style {
function makeXLSXCellElement (line 87) | func makeXLSXCellElement() (xCellXf xlsxXf) {
type Border (line 94) | type Border struct
function NewBorder (line 105) | func NewBorder(left, right, top, bottom string) *Border {
type Fill (line 116) | type Fill struct
function NewFill (line 122) | func NewFill(patternType, fgColor, bgColor string) *Fill {
type Font (line 130) | type Font struct
function NewFont (line 141) | func NewFont(size int, name string) *Font {
type Alignment (line 145) | type Alignment struct
function SetDefaultFont (line 157) | func SetDefaultFont(size int, name string) {
function DefaultFont (line 162) | func DefaultFont() *Font {
function DefaultFill (line 166) | func DefaultFill() *Fill {
function DefaultBorder (line 171) | func DefaultBorder() *Border {
function DefaultAlignment (line 175) | func DefaultAlignment() *Alignment {
FILE: vendor/github.com/tealeg/xlsx/templates.go
constant TEMPLATE__RELS_DOT_RELS (line 6) | TEMPLATE__RELS_DOT_RELS = `
constant TEMPLATE_DOCPROPS_APP (line 13) | TEMPLATE_DOCPROPS_APP = `> 63)
constant wordSize (line 137) | wordSize = wordSizeBits / 8
constant maxLevelsEmbedding (line 140) | maxLevelsEmbedding = 14
constant useFinalizers (line 152) | useFinalizers = false
function init (line 164) | func init() {
type handleFlag (line 173) | type handleFlag
constant initedHandleFlag (line 176) | initedHandleFlag handleFlag = 1 << iota
constant binaryHandleFlag (line 177) | binaryHandleFlag
constant jsonHandleFlag (line 178) | jsonHandleFlag
type clsErr (line 181) | type clsErr struct
type charEncoding (line 195) | type charEncoding
constant _ (line 198) | _ charEncoding = iota
constant cUTF8 (line 199) | cUTF8
constant cUTF16LE (line 200) | cUTF16LE
constant cUTF16BE (line 201) | cUTF16BE
constant cUTF32LE (line 202) | cUTF32LE
constant cUTF32BE (line 203) | cUTF32BE
constant cRAW (line 205) | cRAW charEncoding = 255
type valueType (line 209) | type valueType
method String (line 245) | func (x valueType) String() string {
constant valueTypeUnset (line 212) | valueTypeUnset valueType = iota
constant valueTypeNil (line 213) | valueTypeNil
constant valueTypeInt (line 214) | valueTypeInt
constant valueTypeUint (line 215) | valueTypeUint
constant valueTypeFloat (line 216) | valueTypeFloat
constant valueTypeBool (line 217) | valueTypeBool
constant valueTypeString (line 218) | valueTypeString
constant valueTypeSymbol (line 219) | valueTypeSymbol
constant valueTypeBytes (line 220) | valueTypeBytes
constant valueTypeMap (line 221) | valueTypeMap
constant valueTypeArray (line 222) | valueTypeArray
constant valueTypeTime (line 223) | valueTypeTime
constant valueTypeExt (line 224) | valueTypeExt
type seqType (line 252) | type seqType
constant _ (line 255) | _ seqType = iota
constant seqTypeArray (line 256) | seqTypeArray
constant seqTypeSlice (line 257) | seqTypeSlice
constant seqTypeChan (line 258) | seqTypeChan
type containerState (line 263) | type containerState
constant _ (line 266) | _ containerState = iota
constant containerMapStart (line 268) | containerMapStart
constant containerMapKey (line 269) | containerMapKey
constant containerMapValue (line 270) | containerMapValue
constant containerMapEnd (line 271) | containerMapEnd
constant containerArrayStart (line 272) | containerArrayStart
constant containerArrayElem (line 273) | containerArrayElem
constant containerArrayEnd (line 274) | containerArrayEnd
constant rgetMaxRecursion (line 287) | rgetMaxRecursion = 2
constant typeInfoLoadArraySfisLen (line 298) | typeInfoLoadArraySfisLen = 16
constant typeInfoLoadArraySfiidxLen (line 299) | typeInfoLoadArraySfiidxLen = 8 * 112
constant typeInfoLoadArrayEtypesLen (line 300) | typeInfoLoadArrayEtypesLen = 12
constant typeInfoLoadArrayBLen (line 301) | typeInfoLoadArrayBLen = 8 * 4
type typeInfoLoad (line 305) | type typeInfoLoad struct
type typeInfoLoadArray (line 314) | type typeInfoLoadArray struct
type jsonMarshaler (line 332) | type jsonMarshaler interface
type jsonUnmarshaler (line 335) | type jsonUnmarshaler interface
type isZeroer (line 339) | type isZeroer interface
type codecError (line 343) | type codecError struct
method Cause (line 348) | func (e codecError) Cause() error {
method Error (line 363) | func (e codecError) Error() string {
type Selfer (line 477) | type Selfer interface
type MissingFielder (line 491) | type MissingFielder interface
type MapBySlice (line 518) | type MapBySlice interface
type BasicHandle (line 525) | type BasicHandle struct
method isJs (line 616) | func (x *BasicHandle) isJs() bool {
method isBe (line 620) | func (x *BasicHandle) isBe() bool {
method init (line 625) | func (x *BasicHandle) init(hh Handle) {
method getBasicHandle (line 643) | func (x *BasicHandle) getBasicHandle() *BasicHandle {
method getTypeInfo (line 647) | func (x *BasicHandle) getTypeInfo(rtid uintptr, rt reflect.Type) (pti ...
method fn (line 677) | func (x *BasicHandle) fn(rt reflect.Type, checkFastpath, checkCodecSel...
function basicHandle (line 597) | func basicHandle(hh Handle) (x *BasicHandle) {
function findFn (line 654) | func findFn(s []codecRtidFn, rtid uintptr) (i uint, fn *codecFn) {
type Handle (line 905) | type Handle interface
type Raw (line 922) | type Raw
type RawExt (line 930) | type RawExt struct
type BytesExt (line 943) | type BytesExt interface
type InterfaceExt (line 959) | type InterfaceExt interface
type Ext (line 974) | type Ext interface
type addExtWrapper (line 980) | type addExtWrapper struct
method WriteExt (line 985) | func (x addExtWrapper) WriteExt(v interface{}) []byte {
method ReadExt (line 993) | func (x addExtWrapper) ReadExt(v interface{}, bs []byte) {
method ConvertExt (line 999) | func (x addExtWrapper) ConvertExt(v interface{}) interface{} {
method UpdateExt (line 1003) | func (x addExtWrapper) UpdateExt(dest interface{}, v interface{}) {
type bytesExtFailer (line 1007) | type bytesExtFailer struct
method WriteExt (line 1009) | func (bytesExtFailer) WriteExt(v interface{}) []byte {
method ReadExt (line 1013) | func (bytesExtFailer) ReadExt(v interface{}, bs []byte) {
type interfaceExtFailer (line 1017) | type interfaceExtFailer struct
method ConvertExt (line 1019) | func (interfaceExtFailer) ConvertExt(v interface{}) interface{} {
method UpdateExt (line 1023) | func (interfaceExtFailer) UpdateExt(dest interface{}, v interface{}) {
type bytesExtWrapper (line 1032) | type bytesExtWrapper struct
type interfaceExtWrapper (line 1037) | type interfaceExtWrapper struct
type binaryEncodingType (line 1042) | type binaryEncodingType struct
method isBinary (line 1044) | func (binaryEncodingType) isBinary() bool { return true }
type textEncodingType (line 1046) | type textEncodingType struct
method isBinary (line 1048) | func (textEncodingType) isBinary() bool { return false }
type noBuiltInTypes (line 1057) | type noBuiltInTypes struct
method EncodeBuiltin (line 1059) | func (noBuiltInTypes) EncodeBuiltin(rt uintptr, v interface{}) {}
method DecodeBuiltin (line 1060) | func (noBuiltInTypes) DecodeBuiltin(rt uintptr, v interface{}) {}
type noElemSeparators (line 1066) | type noElemSeparators struct
method hasElemSeparators (line 1068) | func (noElemSeparators) hasElemSeparators() (v bool) { retu...
method recreateEncDriver (line 1069) | func (noElemSeparators) recreateEncDriver(e encDriver) (v bool) { retu...
type bigenHelper (line 1073) | type bigenHelper struct
method writeUint16 (line 1078) | func (z bigenHelper) writeUint16(v uint16) {
method writeUint32 (line 1083) | func (z bigenHelper) writeUint32(v uint32) {
method writeUint64 (line 1088) | func (z bigenHelper) writeUint64(v uint64) {
type extTypeTagFn (line 1093) | type extTypeTagFn struct
type extHandle (line 1102) | type extHandle
method AddExt (line 1108) | func (o *extHandle) AddExt(rt reflect.Type, tag byte,
method SetExt (line 1123) | func (o *extHandle) SetExt(rt reflect.Type, tag uint64, ext Ext) (err ...
method getExt (line 1160) | func (o extHandle) getExt(rtid uintptr) (v *extTypeTagFn) {
method getExtForTag (line 1170) | func (o extHandle) getExtForTag(tag uint64) (v *extTypeTagFn) {
type intf2impl (line 1180) | type intf2impl struct
type intf2impls (line 1186) | type intf2impls
method Intf2Impl (line 1194) | func (o *intf2impls) Intf2Impl(intf, impl reflect.Type) (err error) {
method intf2impl (line 1211) | func (o intf2impls) intf2impl(rtid uintptr) (rv reflect.Value) {
type structFieldInfoFlag (line 1227) | type structFieldInfoFlag
method flagSet (line 1235) | func (x *structFieldInfoFlag) flagSet(f structFieldInfoFlag) {
method flagClr (line 1239) | func (x *structFieldInfoFlag) flagClr(f structFieldInfoFlag) {
method flagGet (line 1243) | func (x structFieldInfoFlag) flagGet(f structFieldInfoFlag) bool {
method omitEmpty (line 1247) | func (x structFieldInfoFlag) omitEmpty() bool {
method ready (line 1251) | func (x structFieldInfoFlag) ready() bool {
constant _ (line 1230) | _ structFieldInfoFlag = 1 << iota
constant structFieldInfoFlagReady (line 1231) | structFieldInfoFlagReady
constant structFieldInfoFlagOmitEmpty (line 1232) | structFieldInfoFlagOmitEmpty
type structFieldInfo (line 1255) | type structFieldInfo struct
method setToZeroValue (line 1267) | func (si *structFieldInfo) setToZeroValue(v reflect.Value) {
method field (line 1275) | func (si *structFieldInfo) field(v reflect.Value, update bool) (rv2 re...
method parseTag (line 1324) | func (si *structFieldInfo) parseTag(stag string) {
function parseStructInfo (line 1295) | func parseStructInfo(stag string) (toArray, omitEmpty bool, keytype valu...
type sfiSortedByEncName (line 1349) | type sfiSortedByEncName
method Len (line 1351) | func (p sfiSortedByEncName) Len() int { return len(p) }
method Less (line 1352) | func (p sfiSortedByEncName) Less(i, j int) bool { return p[uint(i)].en...
method Swap (line 1353) | func (p sfiSortedByEncName) Swap(i, j int) { p[uint(i)], p[uint(j...
constant structFieldNodeNumToCache (line 1355) | structFieldNodeNumToCache = 4
type structFieldNodeCache (line 1357) | type structFieldNodeCache struct
method get (line 1363) | func (x *structFieldNodeCache) get(key uint32) (fv reflect.Value, vali...
method tryAdd (line 1375) | func (x *structFieldNodeCache) tryAdd(fv reflect.Value, key uint32) {
type structFieldNode (line 1384) | type structFieldNode struct
method field (line 1391) | func (x *structFieldNode) field(si *structFieldInfo) (fv reflect.Value) {
function baseStructRv (line 1432) | func baseStructRv(v reflect.Value, update bool) (v2 reflect.Value, valid...
type typeInfoFlag (line 1445) | type typeInfoFlag
constant typeInfoFlagComparable (line 1448) | typeInfoFlagComparable = 1 << iota
constant typeInfoFlagIsZeroer (line 1449) | typeInfoFlagIsZeroer
constant typeInfoFlagIsZeroerPtr (line 1450) | typeInfoFlagIsZeroerPtr
type typeInfo (line 1462) | type typeInfo struct
method isFlag (line 1517) | func (ti *typeInfo) isFlag(f typeInfoFlag) bool {
method indexForEncName (line 1521) | func (ti *typeInfo) indexForEncName(name []byte) (index int16) {
type rtid2ti (line 1539) | type rtid2ti struct
type TypeInfos (line 1548) | type TypeInfos struct
method structTag (line 1565) | func (x *TypeInfos) structTag(t reflect.StructTag) (s string) {
method get (line 1605) | func (x *TypeInfos) get(rtid uintptr, rt reflect.Type) (pti *typeInfo) {
method rget (line 1709) | func (x *TypeInfos) rget(rt reflect.Type, rtid uintptr, omitEmpty bool,
function NewTypeInfos (line 1561) | func NewTypeInfos(tags []string) *TypeInfos {
function findTypeInfo (line 1577) | func findTypeInfo(s []rtid2ti, rtid uintptr) (i uint, ti *typeInfo) {
function tiSep (line 1849) | func tiSep(name string) uint8 {
function tiSep2 (line 1858) | func tiSep2(name []byte) uint8 {
function rgetResolveSFI (line 1864) | func rgetResolveSFI(rt reflect.Type, x []structFieldInfo, pv *typeInfoLo...
function implIntf (line 1962) | func implIntf(rt, iTyp reflect.Type) (base bool, indir bool) {
function isEmptyStruct (line 1971) | func isEmptyStruct(v reflect.Value, tinfos *TypeInfos, deref, checkStruc...
function panicToErr (line 2016) | func panicToErr(h errDecorator, err *error) {
function panicValToErr (line 2028) | func panicValToErr(h errDecorator, v interface{}, err *error) {
function isImmutableKind (line 2053) | func isImmutableKind(k reflect.Kind) (v bool) {
type codecFnInfo (line 2061) | type codecFnInfo struct
type codecFn (line 2075) | type codecFn struct
type codecRtidFn (line 2082) | type codecRtidFn struct
type checkOverflow (line 2094) | type checkOverflow struct
method Float32 (line 2104) | func (checkOverflow) Float32(v float64) (overflow bool) {
method Uint (line 2110) | func (checkOverflow) Uint(v uint64, bitsize uint8) (overflow bool) {
method Int (line 2119) | func (checkOverflow) Int(v int64, bitsize uint8) (overflow bool) {
method SignedInt (line 2128) | func (checkOverflow) SignedInt(v uint64) (overflow bool) {
method Float32V (line 2144) | func (x checkOverflow) Float32V(v float64) float64 {
method UintV (line 2150) | func (x checkOverflow) UintV(v uint64, bitsize uint8) uint64 {
method IntV (line 2156) | func (x checkOverflow) IntV(v int64, bitsize uint8) int64 {
method SignedIntV (line 2162) | func (x checkOverflow) SignedIntV(v uint64) int64 {
function isNaN64 (line 2171) | func isNaN64(f float64) bool { return f != f }
function isNaN32 (line 2172) | func isNaN32(f float32) bool { return f != f }
function abs32 (line 2173) | func abs32(f float32) float32 {
function noFrac64 (line 2189) | func noFrac64(f float64) (v bool) {
function noFrac32 (line 2199) | func noFrac32(f float32) (v bool) {
type ioFlusher (line 2217) | type ioFlusher interface
type ioPeeker (line 2221) | type ioPeeker interface
type ioBuffered (line 2225) | type ioBuffered interface
type sfiRv (line 2231) | type sfiRv struct
type set (line 2238) | type set
method add (line 2240) | func (s *set) add(v uintptr) (exists bool) {
method remove (line 2283) | func (s *set) remove(v uintptr) (exists bool) {
type bitset256 (line 2319) | type bitset256
method isset (line 2321) | func (x *bitset256) isset(pos byte) bool {
method set (line 2329) | func (x *bitset256) set(pos byte) {
type pooler (line 2355) | type pooler struct
method init (line 2365) | func (p *pooler) init() {
type panicHdl (line 2452) | type panicHdl struct
method errorv (line 2454) | func (panicHdl) errorv(err error) {
method errorstr (line 2460) | func (panicHdl) errorstr(message string) {
method errorf (line 2466) | func (panicHdl) errorf(format string, params ...interface{}) {
type errDecorator (line 2477) | type errDecorator interface
type errDecoratorDef (line 2481) | type errDecoratorDef struct
method wrapErr (line 2483) | func (errDecoratorDef) wrapErr(v interface{}, e *error) { *e = fmt.Err...
type must (line 2487) | type must struct
method String (line 2489) | func (must) String(s string, err error) string {
method Int (line 2495) | func (must) Int(s int64, err error) int64 {
method Uint (line 2501) | func (must) Uint(s uint64, err error) uint64 {
method Float (line 2507) | func (must) Float(s float64, err error) float64 {
type bytesBufPooler (line 2516) | type bytesBufPooler struct
method end (line 2521) | func (z *bytesBufPooler) end() {
method get (line 2528) | func (z *bytesBufPooler) get(bufsize int) (buf []byte) {
type sfiRvPooler (line 2596) | type sfiRvPooler struct
method end (line 2601) | func (z *sfiRvPooler) end() {
method get (line 2608) | func (z *sfiRvPooler) get(newlen int) (fkvs []sfiRv) {
function xdebugf (line 2634) | func xdebugf(pattern string, args ...interface{}) {
function xdebug2f (line 2644) | func xdebug2f(pattern string, args ...interface{}) {
FILE: vendor/github.com/ugorji/go/codec/helper_internal.go
function pruneSignExt (line 9) | func pruneSignExt(v []byte, pos bool) (n int) {
function halfFloatToFloatBits (line 24) | func halfFloatToFloatBits(yy uint16) (d uint32) {
function growCap (line 57) | func growCap(oldCap, unit, num int) (newCap int) {
FILE: vendor/github.com/ugorji/go/codec/helper_not_unsafe.go
constant safeMode (line 14) | safeMode = true
function stringView (line 22) | func stringView(v []byte) string {
function bytesView (line 32) | func bytesView(v string) []byte {
function definitelyNil (line 36) | func definitelyNil(v interface{}) bool {
function rv2i (line 42) | func rv2i(rv reflect.Value) interface{} {
function rt2id (line 46) | func rt2id(rt reflect.Type) uintptr {
function i2rtid (line 54) | func i2rtid(i interface{}) uintptr {
function isEmptyValue (line 60) | func isEmptyValue(v reflect.Value, tinfos *TypeInfos, deref, checkStruct...
type atomicClsErr (line 97) | type atomicClsErr struct
method load (line 101) | func (x *atomicClsErr) load() (e clsErr) {
method store (line 108) | func (x *atomicClsErr) store(p clsErr) {
type atomicTypeInfoSlice (line 113) | type atomicTypeInfoSlice struct
method load (line 117) | func (x *atomicTypeInfoSlice) load() (e []rtid2ti) {
method store (line 124) | func (x *atomicTypeInfoSlice) store(p []rtid2ti) {
type atomicRtidFnSlice (line 129) | type atomicRtidFnSlice struct
method load (line 133) | func (x *atomicRtidFnSlice) load() (e []codecRtidFn) {
method store (line 140) | func (x *atomicRtidFnSlice) store(p []codecRtidFn) {
method ru (line 145) | func (n *decNaked) ru() reflect.Value {
method ri (line 148) | func (n *decNaked) ri() reflect.Value {
method rf (line 151) | func (n *decNaked) rf() reflect.Value {
method rl (line 154) | func (n *decNaked) rl() reflect.Value {
method rs (line 157) | func (n *decNaked) rs() reflect.Value {
method rt (line 160) | func (n *decNaked) rt() reflect.Value {
method rb (line 163) | func (n *decNaked) rb() reflect.Value {
method raw (line 168) | func (d *Decoder) raw(f *codecFnInfo, rv reflect.Value) {
method kString (line 172) | func (d *Decoder) kString(f *codecFnInfo, rv reflect.Value) {
method kBool (line 176) | func (d *Decoder) kBool(f *codecFnInfo, rv reflect.Value) {
method kTime (line 180) | func (d *Decoder) kTime(f *codecFnInfo, rv reflect.Value) {
method kFloat32 (line 184) | func (d *Decoder) kFloat32(f *codecFnInfo, rv reflect.Value) {
method kFloat64 (line 188) | func (d *Decoder) kFloat64(f *codecFnInfo, rv reflect.Value) {
method kInt (line 192) | func (d *Decoder) kInt(f *codecFnInfo, rv reflect.Value) {
method kInt8 (line 196) | func (d *Decoder) kInt8(f *codecFnInfo, rv reflect.Value) {
method kInt16 (line 200) | func (d *Decoder) kInt16(f *codecFnInfo, rv reflect.Value) {
method kInt32 (line 204) | func (d *Decoder) kInt32(f *codecFnInfo, rv reflect.Value) {
method kInt64 (line 208) | func (d *Decoder) kInt64(f *codecFnInfo, rv reflect.Value) {
method kUint (line 212) | func (d *Decoder) kUint(f *codecFnInfo, rv reflect.Value) {
method kUintptr (line 216) | func (d *Decoder) kUintptr(f *codecFnInfo, rv reflect.Value) {
method kUint8 (line 220) | func (d *Decoder) kUint8(f *codecFnInfo, rv reflect.Value) {
method kUint16 (line 224) | func (d *Decoder) kUint16(f *codecFnInfo, rv reflect.Value) {
method kUint32 (line 228) | func (d *Decoder) kUint32(f *codecFnInfo, rv reflect.Value) {
method kUint64 (line 232) | func (d *Decoder) kUint64(f *codecFnInfo, rv reflect.Value) {
method kBool (line 238) | func (e *Encoder) kBool(f *codecFnInfo, rv reflect.Value) {
method kTime (line 242) | func (e *Encoder) kTime(f *codecFnInfo, rv reflect.Value) {
method kString (line 246) | func (e *Encoder) kString(f *codecFnInfo, rv reflect.Value) {
method kFloat64 (line 255) | func (e *Encoder) kFloat64(f *codecFnInfo, rv reflect.Value) {
method kFloat32 (line 259) | func (e *Encoder) kFloat32(f *codecFnInfo, rv reflect.Value) {
method kInt (line 263) | func (e *Encoder) kInt(f *codecFnInfo, rv reflect.Value) {
method kInt8 (line 267) | func (e *Encoder) kInt8(f *codecFnInfo, rv reflect.Value) {
method kInt16 (line 271) | func (e *Encoder) kInt16(f *codecFnInfo, rv reflect.Value) {
method kInt32 (line 275) | func (e *Encoder) kInt32(f *codecFnInfo, rv reflect.Value) {
method kInt64 (line 279) | func (e *Encoder) kInt64(f *codecFnInfo, rv reflect.Value) {
method kUint (line 283) | func (e *Encoder) kUint(f *codecFnInfo, rv reflect.Value) {
method kUint8 (line 287) | func (e *Encoder) kUint8(f *codecFnInfo, rv reflect.Value) {
method kUint16 (line 291) | func (e *Encoder) kUint16(f *codecFnInfo, rv reflect.Value) {
method kUint32 (line 295) | func (e *Encoder) kUint32(f *codecFnInfo, rv reflect.Value) {
method kUint64 (line 299) | func (e *Encoder) kUint64(f *codecFnInfo, rv reflect.Value) {
method kUintptr (line 303) | func (e *Encoder) kUintptr(f *codecFnInfo, rv reflect.Value) {
FILE: vendor/github.com/ugorji/go/codec/helper_unsafe.go
constant safeMode (line 22) | safeMode = false
constant unsafeFlagIndir (line 23) | unsafeFlagIndir = 1 << 7
type unsafeString (line 25) | type unsafeString struct
type unsafeSlice (line 30) | type unsafeSlice struct
type unsafeIntf (line 36) | type unsafeIntf struct
type unsafeReflectValue (line 41) | type unsafeReflectValue struct
function stringView (line 47) | func stringView(v []byte) string {
function bytesView (line 55) | func bytesView(v string) []byte {
function definitelyNil (line 63) | func definitelyNil(v interface{}) bool {
function rv2i (line 79) | func rv2i(rv reflect.Value) interface{} {
function rt2id (line 96) | func rt2id(rt reflect.Type) uintptr {
function i2rtid (line 104) | func i2rtid(i interface{}) uintptr {
function isEmptyValue (line 110) | func isEmptyValue(v reflect.Value, tinfos *TypeInfos, deref, checkStruct...
type atomicTypeInfoSlice (line 187) | type atomicTypeInfoSlice struct
method load (line 192) | func (x *atomicTypeInfoSlice) load() (s []rtid2ti) {
method store (line 200) | func (x *atomicTypeInfoSlice) store(p []rtid2ti) {
type atomicRtidFnSlice (line 205) | type atomicRtidFnSlice struct
method load (line 210) | func (x *atomicRtidFnSlice) load() (s []codecRtidFn) {
method store (line 218) | func (x *atomicRtidFnSlice) store(p []codecRtidFn) {
type atomicClsErr (line 223) | type atomicClsErr struct
method load (line 228) | func (x *atomicClsErr) load() (e clsErr) {
method store (line 236) | func (x *atomicClsErr) store(p clsErr) {
type unsafeDecNakedWrapper (line 249) | type unsafeDecNakedWrapper struct
method init (line 254) | func (n *unsafeDecNakedWrapper) init() {
function init (line 267) | func init() {
method ru (line 271) | func (n *decNaked) ru() (v reflect.Value) {
method ri (line 276) | func (n *decNaked) ri() (v reflect.Value) {
method rf (line 281) | func (n *decNaked) rf() (v reflect.Value) {
method rl (line 286) | func (n *decNaked) rl() (v reflect.Value) {
method rs (line 291) | func (n *decNaked) rs() (v reflect.Value) {
method rt (line 296) | func (n *decNaked) rt() (v reflect.Value) {
method rb (line 301) | func (n *decNaked) rb() (v reflect.Value) {
method raw (line 308) | func (d *Decoder) raw(f *codecFnInfo, rv reflect.Value) {
method kString (line 313) | func (d *Decoder) kString(f *codecFnInfo, rv reflect.Value) {
method kBool (line 318) | func (d *Decoder) kBool(f *codecFnInfo, rv reflect.Value) {
method kTime (line 323) | func (d *Decoder) kTime(f *codecFnInfo, rv reflect.Value) {
method kFloat32 (line 328) | func (d *Decoder) kFloat32(f *codecFnInfo, rv reflect.Value) {
method kFloat64 (line 333) | func (d *Decoder) kFloat64(f *codecFnInfo, rv reflect.Value) {
method kInt (line 338) | func (d *Decoder) kInt(f *codecFnInfo, rv reflect.Value) {
method kInt8 (line 343) | func (d *Decoder) kInt8(f *codecFnInfo, rv reflect.Value) {
method kInt16 (line 348) | func (d *Decoder) kInt16(f *codecFnInfo, rv reflect.Value) {
method kInt32 (line 353) | func (d *Decoder) kInt32(f *codecFnInfo, rv reflect.Value) {
method kInt64 (line 358) | func (d *Decoder) kInt64(f *codecFnInfo, rv reflect.Value) {
method kUint (line 363) | func (d *Decoder) kUint(f *codecFnInfo, rv reflect.Value) {
method kUintptr (line 368) | func (d *Decoder) kUintptr(f *codecFnInfo, rv reflect.Value) {
method kUint8 (line 373) | func (d *Decoder) kUint8(f *codecFnInfo, rv reflect.Value) {
method kUint16 (line 378) | func (d *Decoder) kUint16(f *codecFnInfo, rv reflect.Value) {
method kUint32 (line 383) | func (d *Decoder) kUint32(f *codecFnInfo, rv reflect.Value) {
method kUint64 (line 388) | func (d *Decoder) kUint64(f *codecFnInfo, rv reflect.Value) {
method kBool (line 395) | func (e *Encoder) kBool(f *codecFnInfo, rv reflect.Value) {
method kTime (line 400) | func (e *Encoder) kTime(f *codecFnInfo, rv reflect.Value) {
method kString (line 405) | func (e *Encoder) kString(f *codecFnInfo, rv reflect.Value) {
method kFloat64 (line 415) | func (e *Encoder) kFloat64(f *codecFnInfo, rv reflect.Value) {
method kFloat32 (line 420) | func (e *Encoder) kFloat32(f *codecFnInfo, rv reflect.Value) {
method kInt (line 425) | func (e *Encoder) kInt(f *codecFnInfo, rv reflect.Value) {
method kInt8 (line 430) | func (e *Encoder) kInt8(f *codecFnInfo, rv reflect.Value) {
method kInt16 (line 435) | func (e *Encoder) kInt16(f *codecFnInfo, rv reflect.Value) {
method kInt32 (line 440) | func (e *Encoder) kInt32(f *codecFnInfo, rv reflect.Value) {
method kInt64 (line 445) | func (e *Encoder) kInt64(f *codecFnInfo, rv reflect.Value) {
method kUint (line 450) | func (e *Encoder) kUint(f *codecFnInfo, rv reflect.Value) {
method kUint8 (line 455) | func (e *Encoder) kUint8(f *codecFnInfo, rv reflect.Value) {
method kUint16 (line 460) | func (e *Encoder) kUint16(f *codecFnInfo, rv reflect.Value) {
method kUint32 (line 465) | func (e *Encoder) kUint32(f *codecFnInfo, rv reflect.Value) {
method kUint64 (line 470) | func (e *Encoder) kUint64(f *codecFnInfo, rv reflect.Value) {
method kUintptr (line 475) | func (e *Encoder) kUintptr(f *codecFnInfo, rv reflect.Value) {
FILE: vendor/github.com/ugorji/go/codec/json.go
constant jsonLitTrueQ (line 45) | jsonLitTrueQ = 0
constant jsonLitTrue (line 46) | jsonLitTrue = 1
constant jsonLitFalseQ (line 47) | jsonLitFalseQ = 6
constant jsonLitFalse (line 48) | jsonLitFalse = 7
constant jsonLitNull (line 50) | jsonLitNull = 14
constant jsonU4Chk2 (line 60) | jsonU4Chk2 = '0'
constant jsonU4Chk1 (line 61) | jsonU4Chk1 = 'a' - 10
constant jsonU4Chk0 (line 62) | jsonU4Chk0 = 'A' - 10
constant jsonScratchArrayLen (line 64) | jsonScratchArrayLen = cacheLineSize
constant jsonValidateSymbols (line 74) | jsonValidateSymbols = true
constant jsonSpacesOrTabsLen (line 76) | jsonSpacesOrTabsLen = 128
constant jsonAlwaysReturnInternString (line 78) | jsonAlwaysReturnInternString = false
function init (line 91) | func init() {
type jsonEncDriverTypical (line 123) | type jsonEncDriverTypical struct
method WriteArrayStart (line 127) | func (e *jsonEncDriverTypical) WriteArrayStart(length int) {
method WriteArrayElem (line 131) | func (e *jsonEncDriverTypical) WriteArrayElem() {
method WriteArrayEnd (line 137) | func (e *jsonEncDriverTypical) WriteArrayEnd() {
method WriteMapStart (line 141) | func (e *jsonEncDriverTypical) WriteMapStart(length int) {
method WriteMapElemKey (line 145) | func (e *jsonEncDriverTypical) WriteMapElemKey() {
method WriteMapElemValue (line 151) | func (e *jsonEncDriverTypical) WriteMapElemValue() {
method WriteMapEnd (line 155) | func (e *jsonEncDriverTypical) WriteMapEnd() {
method EncodeBool (line 159) | func (e *jsonEncDriverTypical) EncodeBool(b bool) {
method EncodeInt (line 167) | func (e *jsonEncDriverTypical) EncodeInt(v int64) {
method EncodeUint (line 171) | func (e *jsonEncDriverTypical) EncodeUint(v uint64) {
method EncodeFloat64 (line 175) | func (e *jsonEncDriverTypical) EncodeFloat64(f float64) {
method EncodeFloat32 (line 181) | func (e *jsonEncDriverTypical) EncodeFloat32(f float32) {
type jsonEncDriverGeneric (line 199) | type jsonEncDriverGeneric struct
method reset (line 208) | func (e *jsonEncDriverGeneric) reset() {
method WriteArrayStart (line 227) | func (e *jsonEncDriverGeneric) WriteArrayStart(length int) {
method WriteArrayEnd (line 234) | func (e *jsonEncDriverGeneric) WriteArrayEnd() {
method WriteMapStart (line 242) | func (e *jsonEncDriverGeneric) WriteMapStart(length int) {
method WriteMapEnd (line 249) | func (e *jsonEncDriverGeneric) WriteMapEnd() {
method EncodeBool (line 259) | func (e *jsonEncDriverGeneric) EncodeBool(b bool) {
method encodeFloat (line 275) | func (e *jsonEncDriverGeneric) encodeFloat(f float64, bitsize, fmt byt...
method EncodeFloat64 (line 287) | func (e *jsonEncDriverGeneric) EncodeFloat64(f float64) {
method EncodeFloat32 (line 292) | func (e *jsonEncDriverGeneric) EncodeFloat32(f float32) {
method EncodeInt (line 297) | func (e *jsonEncDriverGeneric) EncodeInt(v int64) {
method EncodeUint (line 309) | func (e *jsonEncDriverGeneric) EncodeUint(v uint64) {
type jsonEncDriver (line 341) | type jsonEncDriver struct
method getJsonEncDriver (line 367) | func (e *jsonEncDriver) getJsonEncDriver() *jsonEncDriver { return e }
method writeIndent (line 369) | func (e *jsonEncDriver) writeIndent() {
method WriteArrayElem (line 388) | func (e *jsonEncDriver) WriteArrayElem() {
method WriteMapElemKey (line 398) | func (e *jsonEncDriver) WriteMapElemKey() {
method WriteMapElemValue (line 407) | func (e *jsonEncDriver) WriteMapElemValue() {
method EncodeNil (line 415) | func (e *jsonEncDriver) EncodeNil() {
method EncodeTime (line 428) | func (e *jsonEncDriver) EncodeTime(t time.Time) {
method EncodeExt (line 442) | func (e *jsonEncDriver) EncodeExt(rv interface{}, xtag uint64, ext Ext...
method EncodeRawExt (line 450) | func (e *jsonEncDriver) EncodeRawExt(re *RawExt, en *Encoder) {
method EncodeStringEnc (line 459) | func (e *jsonEncDriver) EncodeStringEnc(c charEncoding, v string) {
method EncodeStringBytesRaw (line 463) | func (e *jsonEncDriver) EncodeStringBytesRaw(v []byte) {
method EncodeAsis (line 486) | func (e *jsonEncDriver) EncodeAsis(v []byte) {
method quoteStr (line 490) | func (e *jsonEncDriver) quoteStr(s string) {
method atEndOfEncode (line 566) | func (e *jsonEncDriver) atEndOfEncode() {
method reset (line 1383) | func (e *jsonEncDriver) reset() {
type jsonDecDriver (line 582) | type jsonDecDriver struct
method uncacheRead (line 611) | func (d *jsonDecDriver) uncacheRead() {
method ReadMapStart (line 618) | func (d *jsonDecDriver) ReadMapStart() int {
method ReadArrayStart (line 630) | func (d *jsonDecDriver) ReadArrayStart() int {
method CheckBreak (line 642) | func (d *jsonDecDriver) CheckBreak() bool {
method ReadArrayElem (line 659) | func (d *jsonDecDriver) ReadArrayElem() {
method ReadArrayEnd (line 673) | func (d *jsonDecDriver) ReadArrayEnd() {
method ReadMapElemKey (line 684) | func (d *jsonDecDriver) ReadMapElemKey() {
method ReadMapElemValue (line 697) | func (d *jsonDecDriver) ReadMapElemValue() {
method ReadMapEnd (line 708) | func (d *jsonDecDriver) ReadMapEnd() {
method readLit4True (line 728) | func (d *jsonDecDriver) readLit4True() {
method readLit4False (line 736) | func (d *jsonDecDriver) readLit4False() {
method readLit4Null (line 744) | func (d *jsonDecDriver) readLit4Null() {
method TryDecodeAsNil (line 752) | func (d *jsonDecDriver) TryDecodeAsNil() bool {
method DecodeBool (line 765) | func (d *jsonDecDriver) DecodeBool() (v bool) {
method DecodeTime (line 790) | func (d *jsonDecDriver) DecodeTime() (t time.Time) {
method ContainerType (line 803) | func (d *jsonDecDriver) ContainerType() (vt valueType) {
method decNumBytes (line 826) | func (d *jsonDecDriver) decNumBytes() (bs []byte) {
method DecodeUint64 (line 842) | func (d *jsonDecDriver) DecodeUint64() (u uint64) {
method DecodeInt64 (line 859) | func (d *jsonDecDriver) DecodeInt64() (i int64) {
method decUint64ViaFloat (line 891) | func (d *jsonDecDriver) decUint64ViaFloat(s string) (u uint64) {
method decodeFloat (line 909) | func (d *jsonDecDriver) decodeFloat(bitsize int) (f float64) {
method DecodeFloat64 (line 921) | func (d *jsonDecDriver) DecodeFloat64() (f float64) {
method DecodeFloat32 (line 925) | func (d *jsonDecDriver) DecodeFloat32() (f float64) {
method DecodeExt (line 929) | func (d *jsonDecDriver) DecodeExt(rv interface{}, xtag uint64, ext Ext...
method DecodeBytes (line 942) | func (d *jsonDecDriver) DecodeBytes(bs []byte, zerocopy bool) (bsOut [...
method DecodeString (line 988) | func (d *jsonDecDriver) DecodeString() (s string) {
method DecodeStringAsBytes (line 993) | func (d *jsonDecDriver) DecodeStringAsBytes() (s []byte) {
method appendStringAsBytes (line 998) | func (d *jsonDecDriver) appendStringAsBytes() {
method nakedNum (line 1141) | func (d *jsonDecDriver) nakedNum(z *decNaked, bs []byte) (err error) {
method bsToString (line 1190) | func (d *jsonDecDriver) bsToString() string {
method DecodeNaked (line 1198) | func (d *jsonDecDriver) DecodeNaked() {
method reset (line 1399) | func (d *jsonDecDriver) reset() {
type JsonHandle (line 1284) | type JsonHandle struct
method Name (line 1343) | func (h *JsonHandle) Name() string { return "json" }
method hasElemSeparators (line 1344) | func (h *JsonHandle) hasElemSeparators() bool { return true }
method typical (line 1345) | func (h *JsonHandle) typical() bool {
method recreateEncDriver (line 1349) | func (h *JsonHandle) recreateEncDriver(ed encDriver) (v bool) {
method SetInterfaceExt (line 1355) | func (h *JsonHandle) SetInterfaceExt(rt reflect.Type, tag uint64, ext ...
method newEncDriver (line 1359) | func (h *JsonHandle) newEncDriver(e *Encoder) (ee encDriver) {
method newDecDriver (line 1375) | func (h *JsonHandle) newDecDriver(d *Decoder) decDriver {
function jsonFloatStrconvFmtPrec64 (line 1430) | func jsonFloatStrconvFmtPrec64(f float64) (fmt byte, prec int8) {
function jsonFloatStrconvFmtPrec32 (line 1444) | func jsonFloatStrconvFmtPrec32(f float32) (fmt byte, prec int8) {
function jsonParseInteger (line 1461) | func jsonParseInteger(s []byte) (n uint64, neg, badSyntax, overflow bool) {
FILE: vendor/github.com/ugorji/go/codec/msgpack.go
constant mpPosFixNumMin (line 32) | mpPosFixNumMin byte = 0x00
constant mpPosFixNumMax (line 33) | mpPosFixNumMax byte = 0x7f
constant mpFixMapMin (line 34) | mpFixMapMin byte = 0x80
constant mpFixMapMax (line 35) | mpFixMapMax byte = 0x8f
constant mpFixArrayMin (line 36) | mpFixArrayMin byte = 0x90
constant mpFixArrayMax (line 37) | mpFixArrayMax byte = 0x9f
constant mpFixStrMin (line 38) | mpFixStrMin byte = 0xa0
constant mpFixStrMax (line 39) | mpFixStrMax byte = 0xbf
constant mpNil (line 40) | mpNil byte = 0xc0
constant _ (line 41) | _ byte = 0xc1
constant mpFalse (line 42) | mpFalse byte = 0xc2
constant mpTrue (line 43) | mpTrue byte = 0xc3
constant mpFloat (line 44) | mpFloat byte = 0xca
constant mpDouble (line 45) | mpDouble byte = 0xcb
constant mpUint8 (line 46) | mpUint8 byte = 0xcc
constant mpUint16 (line 47) | mpUint16 byte = 0xcd
constant mpUint32 (line 48) | mpUint32 byte = 0xce
constant mpUint64 (line 49) | mpUint64 byte = 0xcf
constant mpInt8 (line 50) | mpInt8 byte = 0xd0
constant mpInt16 (line 51) | mpInt16 byte = 0xd1
constant mpInt32 (line 52) | mpInt32 byte = 0xd2
constant mpInt64 (line 53) | mpInt64 byte = 0xd3
constant mpBin8 (line 56) | mpBin8 byte = 0xc4
constant mpBin16 (line 57) | mpBin16 byte = 0xc5
constant mpBin32 (line 58) | mpBin32 byte = 0xc6
constant mpExt8 (line 59) | mpExt8 byte = 0xc7
constant mpExt16 (line 60) | mpExt16 byte = 0xc8
constant mpExt32 (line 61) | mpExt32 byte = 0xc9
constant mpFixExt1 (line 62) | mpFixExt1 byte = 0xd4
constant mpFixExt2 (line 63) | mpFixExt2 byte = 0xd5
constant mpFixExt4 (line 64) | mpFixExt4 byte = 0xd6
constant mpFixExt8 (line 65) | mpFixExt8 byte = 0xd7
constant mpFixExt16 (line 66) | mpFixExt16 byte = 0xd8
constant mpStr8 (line 68) | mpStr8 byte = 0xd9
constant mpStr16 (line 69) | mpStr16 byte = 0xda
constant mpStr32 (line 70) | mpStr32 byte = 0xdb
constant mpArray16 (line 72) | mpArray16 byte = 0xdc
constant mpArray32 (line 73) | mpArray32 byte = 0xdd
constant mpMap16 (line 75) | mpMap16 byte = 0xde
constant mpMap32 (line 76) | mpMap32 byte = 0xdf
constant mpNegFixNumMin (line 78) | mpNegFixNumMin byte = 0xe0
constant mpNegFixNumMax (line 79) | mpNegFixNumMax byte = 0xff
function mpdesc (line 129) | func mpdesc(bd byte) string {
type MsgpackSpecRpcMultiArgs (line 171) | type MsgpackSpecRpcMultiArgs
type msgpackContainerType (line 174) | type msgpackContainerType struct
type msgpackEncDriver (line 200) | type msgpackEncDriver struct
method EncodeNil (line 211) | func (e *msgpackEncDriver) EncodeNil() {
method EncodeInt (line 215) | func (e *msgpackEncDriver) EncodeInt(i int64) {
method EncodeUint (line 249) | func (e *msgpackEncDriver) EncodeUint(i uint64) {
method EncodeBool (line 270) | func (e *msgpackEncDriver) EncodeBool(b bool) {
method EncodeFloat32 (line 278) | func (e *msgpackEncDriver) EncodeFloat32(f float32) {
method EncodeFloat64 (line 283) | func (e *msgpackEncDriver) EncodeFloat64(f float64) {
method EncodeTime (line 288) | func (e *msgpackEncDriver) EncodeTime(t time.Time) {
method EncodeExt (line 321) | func (e *msgpackEncDriver) EncodeExt(v interface{}, xtag uint64, ext E...
method EncodeRawExt (line 335) | func (e *msgpackEncDriver) EncodeRawExt(re *RawExt, _ *Encoder) {
method encodeExtPreamble (line 340) | func (e *msgpackEncDriver) encodeExtPreamble(xtag byte, l int) {
method WriteArrayStart (line 365) | func (e *msgpackEncDriver) WriteArrayStart(length int) {
method WriteMapStart (line 369) | func (e *msgpackEncDriver) WriteMapStart(length int) {
method EncodeStringEnc (line 373) | func (e *msgpackEncDriver) EncodeStringEnc(c charEncoding, s string) {
method EncodeStringBytesRaw (line 385) | func (e *msgpackEncDriver) EncodeStringBytesRaw(bs []byte) {
method writeContainerLen (line 401) | func (e *msgpackEncDriver) writeContainerLen(ct msgpackContainerType, ...
method reset (line 983) | func (e *msgpackEncDriver) reset() {
type msgpackDecDriver (line 417) | type msgpackDecDriver struct
method DecodeNaked (line 437) | func (d *msgpackDecDriver) DecodeNaked() {
method DecodeInt64 (line 541) | func (d *msgpackDecDriver) DecodeInt64() (i int64) {
method DecodeUint64 (line 578) | func (d *msgpackDecDriver) DecodeUint64() (ui uint64) {
method DecodeFloat64 (line 636) | func (d *msgpackDecDriver) DecodeFloat64() (f float64) {
method DecodeBool (line 652) | func (d *msgpackDecDriver) DecodeBool() (b bool) {
method DecodeBytes (line 668) | func (d *msgpackDecDriver) DecodeBytes(bs []byte, zerocopy bool) (bsOu...
method DecodeString (line 707) | func (d *msgpackDecDriver) DecodeString() (s string) {
method DecodeStringAsBytes (line 711) | func (d *msgpackDecDriver) DecodeStringAsBytes() (s []byte) {
method readNextBd (line 715) | func (d *msgpackDecDriver) readNextBd() {
method uncacheRead (line 720) | func (d *msgpackDecDriver) uncacheRead() {
method ContainerType (line 727) | func (d *msgpackDecDriver) ContainerType() (vt valueType) {
method TryDecodeAsNil (line 766) | func (d *msgpackDecDriver) TryDecodeAsNil() (v bool) {
method readContainerLen (line 777) | func (d *msgpackDecDriver) readContainerLen(ct msgpackContainerType) (...
method ReadMapStart (line 797) | func (d *msgpackDecDriver) ReadMapStart() int {
method ReadArrayStart (line 804) | func (d *msgpackDecDriver) ReadArrayStart() int {
method readExtLen (line 811) | func (d *msgpackDecDriver) readExtLen() (clen int) {
method DecodeTime (line 838) | func (d *msgpackDecDriver) DecodeTime() (t time.Time) {
method decodeTime (line 871) | func (d *msgpackDecDriver) decodeTime(clen int) (t time.Time) {
method DecodeExt (line 891) | func (d *msgpackDecDriver) DecodeExt(rv interface{}, xtag uint64, ext ...
method decodeExtV (line 908) | func (d *msgpackDecDriver) decodeExtV(verifyTag bool, tag byte) (xtag ...
method reset (line 987) | func (d *msgpackDecDriver) reset() {
type MsgpackHandle (line 938) | type MsgpackHandle struct
method Name (line 968) | func (h *MsgpackHandle) Name() string { return "msgpack" }
method SetBytesExt (line 971) | func (h *MsgpackHandle) SetBytesExt(rt reflect.Type, tag uint64, ext B...
method newEncDriver (line 975) | func (h *MsgpackHandle) newEncDriver(e *Encoder) encDriver {
method newDecDriver (line 979) | func (h *MsgpackHandle) newDecDriver(d *Decoder) decDriver {
type msgpackSpecRpcCodec (line 994) | type msgpackSpecRpcCodec struct
method WriteRequest (line 999) | func (c *msgpackSpecRpcCodec) WriteRequest(r *rpc.Request, body interf...
method WriteResponse (line 1013) | func (c *msgpackSpecRpcCodec) WriteResponse(r *rpc.Response, body inte...
method ReadResponseHeader (line 1025) | func (c *msgpackSpecRpcCodec) ReadResponseHeader(r *rpc.Response) error {
method ReadRequestHeader (line 1029) | func (c *msgpackSpecRpcCodec) ReadRequestHeader(r *rpc.Request) error {
method ReadRequestBody (line 1033) | func (c *msgpackSpecRpcCodec) ReadRequestBody(body interface{}) error {
method parseCustomHeader (line 1041) | func (c *msgpackSpecRpcCodec) parseCustomHeader(expectTypeByte byte, m...
type msgpackSpecRpc (line 1091) | type msgpackSpecRpc struct
method ServerCodec (line 1099) | func (x msgpackSpecRpc) ServerCodec(conn io.ReadWriteCloser, h Handle)...
method ClientCodec (line 1103) | func (x msgpackSpecRpc) ClientCodec(conn io.ReadWriteCloser, h Handle)...
FILE: vendor/github.com/ugorji/go/codec/prebuild.go
function genInternalSortableTypes (line 14) | func genInternalSortableTypes() []string {
function genInternalSortablePlusTypes (line 36) | func genInternalSortablePlusTypes() []string {
function genTypeForShortName (line 49) | func genTypeForShortName(s string) string {
function genArgs (line 59) | func genArgs(args ...interface{}) map[string]interface{} {
function genEndsWith (line 68) | func genEndsWith(s0 string, sn ...string) bool {
function chkerr (line 77) | func chkerr(err error) {
function run (line 83) | func run(fnameIn, fnameOut string) {
function main (line 117) | func main() {
FILE: vendor/github.com/ugorji/go/codec/rpc.go
type Rpc (line 16) | type Rpc interface
type RPCOptions (line 22) | type RPCOptions struct
type rpcCodec (line 32) | type rpcCodec struct
method write (line 88) | func (c *rpcCodec) write(obj1, obj2 interface{}, writeObj2 bool) (err ...
method swallow (line 114) | func (c *rpcCodec) swallow(err *error) {
method read (line 119) | func (c *rpcCodec) read(obj interface{}) (err error) {
method Close (line 136) | func (c *rpcCodec) Close() error {
method ReadResponseBody (line 150) | func (c *rpcCodec) ReadResponseBody(body interface{}) error {
function newRPCCodec (line 47) | func newRPCCodec(conn io.ReadWriteCloser, h Handle) rpcCodec {
function newRPCCodec2 (line 52) | func newRPCCodec2(r io.Reader, w io.Writer, c io.Closer, h Handle) rpcCo...
type goRpcCodec (line 156) | type goRpcCodec struct
method WriteRequest (line 160) | func (c *goRpcCodec) WriteRequest(r *rpc.Request, body interface{}) er...
method WriteResponse (line 164) | func (c *goRpcCodec) WriteResponse(r *rpc.Response, body interface{}) ...
method ReadResponseHeader (line 168) | func (c *goRpcCodec) ReadResponseHeader(r *rpc.Response) error {
method ReadRequestHeader (line 172) | func (c *goRpcCodec) ReadRequestHeader(r *rpc.Request) error {
method ReadRequestBody (line 176) | func (c *goRpcCodec) ReadRequestBody(body interface{}) error {
type goRpc (line 184) | type goRpc struct
method ServerCodec (line 219) | func (x goRpc) ServerCodec(conn io.ReadWriteCloser, h Handle) rpc.Serv...
method ClientCodec (line 223) | func (x goRpc) ClientCodec(conn io.ReadWriteCloser, h Handle) rpc.Clie...
FILE: vendor/github.com/ugorji/go/codec/simple.go
constant _ (line 13) | _ uint8 = iota
constant simpleVdNil (line 14) | simpleVdNil = 1
constant simpleVdFalse (line 15) | simpleVdFalse = 2
constant simpleVdTrue (line 16) | simpleVdTrue = 3
constant simpleVdFloat32 (line 17) | simpleVdFloat32 = 4
constant simpleVdFloat64 (line 18) | simpleVdFloat64 = 5
constant simpleVdPosInt (line 21) | simpleVdPosInt = 8
constant simpleVdNegInt (line 22) | simpleVdNegInt = 12
constant simpleVdTime (line 24) | simpleVdTime = 24
constant simpleVdString (line 27) | simpleVdString = 216
constant simpleVdByteArray (line 28) | simpleVdByteArray = 224
constant simpleVdArray (line 29) | simpleVdArray = 232
constant simpleVdMap (line 30) | simpleVdMap = 240
constant simpleVdExt (line 31) | simpleVdExt = 248
type simpleEncDriver (line 34) | type simpleEncDriver struct
method EncodeNil (line 47) | func (e *simpleEncDriver) EncodeNil() {
method EncodeBool (line 51) | func (e *simpleEncDriver) EncodeBool(b bool) {
method EncodeFloat32 (line 63) | func (e *simpleEncDriver) EncodeFloat32(f float32) {
method EncodeFloat64 (line 72) | func (e *simpleEncDriver) EncodeFloat64(f float64) {
method EncodeInt (line 81) | func (e *simpleEncDriver) EncodeInt(v int64) {
method EncodeUint (line 89) | func (e *simpleEncDriver) EncodeUint(v uint64) {
method encUint (line 93) | func (e *simpleEncDriver) encUint(v uint64, bd uint8) {
method encLen (line 112) | func (e *simpleEncDriver) encLen(bd byte, length int) {
method EncodeExt (line 130) | func (e *simpleEncDriver) EncodeExt(rv interface{}, xtag uint64, ext E...
method EncodeRawExt (line 140) | func (e *simpleEncDriver) EncodeRawExt(re *RawExt, _ *Encoder) {
method encodeExtPreamble (line 145) | func (e *simpleEncDriver) encodeExtPreamble(xtag byte, length int) {
method WriteArrayStart (line 150) | func (e *simpleEncDriver) WriteArrayStart(length int) {
method WriteMapStart (line 154) | func (e *simpleEncDriver) WriteMapStart(length int) {
method EncodeStringEnc (line 162) | func (e *simpleEncDriver) EncodeStringEnc(c charEncoding, v string) {
method EncodeStringBytesRaw (line 171) | func (e *simpleEncDriver) EncodeStringBytesRaw(v []byte) {
method EncodeTime (line 181) | func (e *simpleEncDriver) EncodeTime(t time.Time) {
method reset (line 622) | func (e *simpleEncDriver) reset() {
type simpleDecDriver (line 199) | type simpleDecDriver struct
method readNextBd (line 214) | func (d *simpleDecDriver) readNextBd() {
method uncacheRead (line 219) | func (d *simpleDecDriver) uncacheRead() {
method ContainerType (line 226) | func (d *simpleDecDriver) ContainerType() (vt valueType) {
method TryDecodeAsNil (line 254) | func (d *simpleDecDriver) TryDecodeAsNil() bool {
method decCheckInteger (line 265) | func (d *simpleDecDriver) decCheckInteger() (ui uint64, neg bool) {
method DecodeInt64 (line 302) | func (d *simpleDecDriver) DecodeInt64() (i int64) {
method DecodeUint64 (line 312) | func (d *simpleDecDriver) DecodeUint64() (ui uint64) {
method DecodeFloat64 (line 322) | func (d *simpleDecDriver) DecodeFloat64() (f float64) {
method DecodeBool (line 343) | func (d *simpleDecDriver) DecodeBool() (b bool) {
method ReadMapStart (line 358) | func (d *simpleDecDriver) ReadMapStart() (length int) {
method ReadArrayStart (line 366) | func (d *simpleDecDriver) ReadArrayStart() (length int) {
method decLen (line 374) | func (d *simpleDecDriver) decLen() int {
method DecodeString (line 401) | func (d *simpleDecDriver) DecodeString() (s string) {
method DecodeStringAsBytes (line 405) | func (d *simpleDecDriver) DecodeStringAsBytes() (s []byte) {
method DecodeBytes (line 409) | func (d *simpleDecDriver) DecodeBytes(bs []byte, zerocopy bool) (bsOut...
method DecodeTime (line 438) | func (d *simpleDecDriver) DecodeTime() (t time.Time) {
method DecodeExt (line 459) | func (d *simpleDecDriver) DecodeExt(rv interface{}, xtag uint64, ext E...
method decodeExtV (line 476) | func (d *simpleDecDriver) decodeExtV(verifyTag bool, tag byte) (xtag b...
method DecodeNaked (line 504) | func (d *simpleDecDriver) DecodeNaked() {
method reset (line 626) | func (d *simpleDecDriver) reset() {
type SimpleHandle (line 594) | type SimpleHandle struct
method Name (line 605) | func (h *SimpleHandle) Name() string { return "simple" }
method SetBytesExt (line 608) | func (h *SimpleHandle) SetBytesExt(rt reflect.Type, tag uint64, ext By...
method newEncDriver (line 614) | func (h *SimpleHandle) newEncDriver(e *Encoder) encDriver {
method newDecDriver (line 618) | func (h *SimpleHandle) newDecDriver(d *Decoder) decDriver {
FILE: vendor/github.com/ugorji/go/codec/sort-slice.generated.go
type stringSlice (line 12) | type stringSlice
method Len (line 14) | func (p stringSlice) Len() int { return len(p) }
method Swap (line 15) | func (p stringSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(...
method Less (line 16) | func (p stringSlice) Less(i, j int) bool {
type float32Slice (line 20) | type float32Slice
method Len (line 22) | func (p float32Slice) Len() int { return len(p) }
method Swap (line 23) | func (p float32Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint...
method Less (line 24) | func (p float32Slice) Less(i, j int) bool {
type float64Slice (line 28) | type float64Slice
method Len (line 30) | func (p float64Slice) Len() int { return len(p) }
method Swap (line 31) | func (p float64Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint...
method Less (line 32) | func (p float64Slice) Less(i, j int) bool {
type uintSlice (line 36) | type uintSlice
method Len (line 38) | func (p uintSlice) Len() int { return len(p) }
method Swap (line 39) | func (p uintSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j)...
method Less (line 40) | func (p uintSlice) Less(i, j int) bool {
type uint8Slice (line 44) | type uint8Slice
method Len (line 46) | func (p uint8Slice) Len() int { return len(p) }
method Swap (line 47) | func (p uint8Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j...
method Less (line 48) | func (p uint8Slice) Less(i, j int) bool {
type uint16Slice (line 52) | type uint16Slice
method Len (line 54) | func (p uint16Slice) Len() int { return len(p) }
method Swap (line 55) | func (p uint16Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(...
method Less (line 56) | func (p uint16Slice) Less(i, j int) bool {
type uint32Slice (line 60) | type uint32Slice
method Len (line 62) | func (p uint32Slice) Len() int { return len(p) }
method Swap (line 63) | func (p uint32Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(...
method Less (line 64) | func (p uint32Slice) Less(i, j int) bool {
type uint64Slice (line 68) | type uint64Slice
method Len (line 70) | func (p uint64Slice) Len() int { return len(p) }
method Swap (line 71) | func (p uint64Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(...
method Less (line 72) | func (p uint64Slice) Less(i, j int) bool {
type uintptrSlice (line 76) | type uintptrSlice
method Len (line 78) | func (p uintptrSlice) Len() int { return len(p) }
method Swap (line 79) | func (p uintptrSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint...
method Less (line 80) | func (p uintptrSlice) Less(i, j int) bool {
type intSlice (line 84) | type intSlice
method Len (line 86) | func (p intSlice) Len() int { return len(p) }
method Swap (line 87) | func (p intSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j)]...
method Less (line 88) | func (p intSlice) Less(i, j int) bool {
type int8Slice (line 92) | type int8Slice
method Len (line 94) | func (p int8Slice) Len() int { return len(p) }
method Swap (line 95) | func (p int8Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j)...
method Less (line 96) | func (p int8Slice) Less(i, j int) bool {
type int16Slice (line 100) | type int16Slice
method Len (line 102) | func (p int16Slice) Len() int { return len(p) }
method Swap (line 103) | func (p int16Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j...
method Less (line 104) | func (p int16Slice) Less(i, j int) bool {
type int32Slice (line 108) | type int32Slice
method Len (line 110) | func (p int32Slice) Len() int { return len(p) }
method Swap (line 111) | func (p int32Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j...
method Less (line 112) | func (p int32Slice) Less(i, j int) bool {
type int64Slice (line 116) | type int64Slice
method Len (line 118) | func (p int64Slice) Len() int { return len(p) }
method Swap (line 119) | func (p int64Slice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j...
method Less (line 120) | func (p int64Slice) Less(i, j int) bool {
type boolSlice (line 124) | type boolSlice
method Len (line 126) | func (p boolSlice) Len() int { return len(p) }
method Swap (line 127) | func (p boolSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j)...
method Less (line 128) | func (p boolSlice) Less(i, j int) bool {
type timeSlice (line 132) | type timeSlice
method Len (line 134) | func (p timeSlice) Len() int { return len(p) }
method Swap (line 135) | func (p timeSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j)...
method Less (line 136) | func (p timeSlice) Less(i, j int) bool {
type bytesSlice (line 140) | type bytesSlice
method Len (line 142) | func (p bytesSlice) Len() int { return len(p) }
method Swap (line 143) | func (p bytesSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(j...
method Less (line 144) | func (p bytesSlice) Less(i, j int) bool {
type stringRv (line 148) | type stringRv struct
type stringRvSlice (line 152) | type stringRvSlice
method Len (line 154) | func (p stringRvSlice) Len() int { return len(p) }
method Swap (line 155) | func (p stringRvSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uin...
method Less (line 156) | func (p stringRvSlice) Less(i, j int) bool {
type stringIntf (line 160) | type stringIntf struct
type stringIntfSlice (line 164) | type stringIntfSlice
method Len (line 166) | func (p stringIntfSlice) Len() int { return len(p) }
method Swap (line 167) | func (p stringIntfSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[u...
method Less (line 168) | func (p stringIntfSlice) Less(i, j int) bool {
type float64Rv (line 172) | type float64Rv struct
type float64RvSlice (line 176) | type float64RvSlice
method Len (line 178) | func (p float64RvSlice) Len() int { return len(p) }
method Swap (line 179) | func (p float64RvSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[ui...
method Less (line 180) | func (p float64RvSlice) Less(i, j int) bool {
type float64Intf (line 184) | type float64Intf struct
type float64IntfSlice (line 188) | type float64IntfSlice
method Len (line 190) | func (p float64IntfSlice) Len() int { return len(p) }
method Swap (line 191) | func (p float64IntfSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[...
method Less (line 192) | func (p float64IntfSlice) Less(i, j int) bool {
type uint64Rv (line 196) | type uint64Rv struct
type uint64RvSlice (line 200) | type uint64RvSlice
method Len (line 202) | func (p uint64RvSlice) Len() int { return len(p) }
method Swap (line 203) | func (p uint64RvSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uin...
method Less (line 204) | func (p uint64RvSlice) Less(i, j int) bool {
type uint64Intf (line 208) | type uint64Intf struct
type uint64IntfSlice (line 212) | type uint64IntfSlice
method Len (line 214) | func (p uint64IntfSlice) Len() int { return len(p) }
method Swap (line 215) | func (p uint64IntfSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[u...
method Less (line 216) | func (p uint64IntfSlice) Less(i, j int) bool {
type uintptrRv (line 220) | type uintptrRv struct
type uintptrRvSlice (line 224) | type uintptrRvSlice
method Len (line 226) | func (p uintptrRvSlice) Len() int { return len(p) }
method Swap (line 227) | func (p uintptrRvSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[ui...
method Less (line 228) | func (p uintptrRvSlice) Less(i, j int) bool {
type uintptrIntf (line 232) | type uintptrIntf struct
type uintptrIntfSlice (line 236) | type uintptrIntfSlice
method Len (line 238) | func (p uintptrIntfSlice) Len() int { return len(p) }
method Swap (line 239) | func (p uintptrIntfSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[...
method Less (line 240) | func (p uintptrIntfSlice) Less(i, j int) bool {
type int64Rv (line 244) | type int64Rv struct
type int64RvSlice (line 248) | type int64RvSlice
method Len (line 250) | func (p int64RvSlice) Len() int { return len(p) }
method Swap (line 251) | func (p int64RvSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint...
method Less (line 252) | func (p int64RvSlice) Less(i, j int) bool {
type int64Intf (line 256) | type int64Intf struct
type int64IntfSlice (line 260) | type int64IntfSlice
method Len (line 262) | func (p int64IntfSlice) Len() int { return len(p) }
method Swap (line 263) | func (p int64IntfSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[ui...
method Less (line 264) | func (p int64IntfSlice) Less(i, j int) bool {
type boolRv (line 268) | type boolRv struct
type boolRvSlice (line 272) | type boolRvSlice
method Len (line 274) | func (p boolRvSlice) Len() int { return len(p) }
method Swap (line 275) | func (p boolRvSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(...
method Less (line 276) | func (p boolRvSlice) Less(i, j int) bool {
type boolIntf (line 280) | type boolIntf struct
type boolIntfSlice (line 284) | type boolIntfSlice
method Len (line 286) | func (p boolIntfSlice) Len() int { return len(p) }
method Swap (line 287) | func (p boolIntfSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uin...
method Less (line 288) | func (p boolIntfSlice) Less(i, j int) bool {
type timeRv (line 292) | type timeRv struct
type timeRvSlice (line 296) | type timeRvSlice
method Len (line 298) | func (p timeRvSlice) Len() int { return len(p) }
method Swap (line 299) | func (p timeRvSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint(...
method Less (line 300) | func (p timeRvSlice) Less(i, j int) bool {
type timeIntf (line 304) | type timeIntf struct
type timeIntfSlice (line 308) | type timeIntfSlice
method Len (line 310) | func (p timeIntfSlice) Len() int { return len(p) }
method Swap (line 311) | func (p timeIntfSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uin...
method Less (line 312) | func (p timeIntfSlice) Less(i, j int) bool {
type bytesRv (line 316) | type bytesRv struct
type bytesRvSlice (line 320) | type bytesRvSlice
method Len (line 322) | func (p bytesRvSlice) Len() int { return len(p) }
method Swap (line 323) | func (p bytesRvSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[uint...
method Less (line 324) | func (p bytesRvSlice) Less(i, j int) bool {
type bytesIntf (line 328) | type bytesIntf struct
type bytesIntfSlice (line 332) | type bytesIntfSlice
method Len (line 334) | func (p bytesIntfSlice) Len() int { return len(p) }
method Swap (line 335) | func (p bytesIntfSlice) Swap(i, j int) { p[uint(i)], p[uint(j)] = p[ui...
method Less (line 336) | func (p bytesIntfSlice) Less(i, j int) bool {
FILE: vendor/github.com/ugorji/go/codec/test.py
function get_test_data_list (line 16) | def get_test_data_list():
function build_test_data (line 67) | def build_test_data(destdir):
function doRpcServer (line 80) | def doRpcServer(port, stopTimeSec):
function doRpcClientToPythonSvc (line 98) | def doRpcClientToPythonSvc(port):
function doRpcClientToGoSvc (line 104) | def doRpcClientToGoSvc(port):
function doMain (line 111) | def doMain(args):
FILE: vendor/golang.org/x/image/font/font.go
type Face (line 34) | type Face interface
type Metrics (line 77) | type Metrics struct
type Drawer (line 95) | type Drawer struct
method DrawBytes (line 131) | func (d *Drawer) DrawBytes(s []byte) {
method DrawString (line 153) | func (d *Drawer) DrawString(s string) {
method BoundBytes (line 176) | func (d *Drawer) BoundBytes(s []byte) (bounds fixed.Rectangle26_6, adv...
method BoundString (line 185) | func (d *Drawer) BoundString(s string) (bounds fixed.Rectangle26_6, ad...
method MeasureBytes (line 195) | func (d *Drawer) MeasureBytes(s []byte) (advance fixed.Int26_6) {
method MeasureString (line 200) | func (d *Drawer) MeasureString(s string) (advance fixed.Int26_6) {
function BoundBytes (line 208) | func BoundBytes(f Face, s []byte) (bounds fixed.Rectangle26_6, advance f...
function BoundString (line 234) | func BoundString(f Face, s string) (bounds fixed.Rectangle26_6, advance ...
function MeasureBytes (line 259) | func MeasureBytes(f Face, s []byte) (advance fixed.Int26_6) {
function MeasureString (line 281) | func MeasureString(f Face, s string) (advance fixed.Int26_6) {
type Hinting (line 303) | type Hinting
constant HintingNone (line 306) | HintingNone Hinting = iota
constant HintingVertical (line 307) | HintingVertical
constant HintingFull (line 308) | HintingFull
type Stretch (line 314) | type Stretch
constant StretchUltraCondensed (line 317) | StretchUltraCondensed Stretch = -4
constant StretchExtraCondensed (line 318) | StretchExtraCondensed Stretch = -3
constant StretchCondensed (line 319) | StretchCondensed Stretch = -2
constant StretchSemiCondensed (line 320) | StretchSemiCondensed Stretch = -1
constant StretchNormal (line 321) | StretchNormal Stretch = +0
constant StretchSemiExpanded (line 322) | StretchSemiExpanded Stretch = +1
constant StretchExpanded (line 323) | StretchExpanded Stretch = +2
constant StretchExtraExpanded (line 324) | StretchExtraExpanded Stretch = +3
constant StretchUltraExpanded (line 325) | StretchUltraExpanded Stretch = +4
type Style (line 331) | type Style
constant StyleNormal (line 334) | StyleNormal Style = iota
constant StyleItalic (line 335) | StyleItalic
constant StyleOblique (line 336) | StyleOblique
type Weight (line 347) | type Weight
constant WeightThin (line 350) | WeightThin Weight = -3
constant WeightExtraLight (line 351) | WeightExtraLight Weight = -2
constant WeightLight (line 352) | WeightLight Weight = -1
constant WeightNormal (line 353) | WeightNormal Weight = +0
constant WeightMedium (line 354) | WeightMedium Weight = +1
constant WeightSemiBold (line 355) | WeightSemiBold Weight = +2
constant WeightBold (line 356) | WeightBold Weight = +3
constant WeightExtraBold (line 357) | WeightExtraBold Weight = +4
constant WeightBlack (line 358) | WeightBlack Weight = +5
FILE: vendor/golang.org/x/image/math/fixed/fixed.go
function I (line 17) | func I(i int) Int26_6 {
type Int26_6 (line 27) | type Int26_6
method String (line 32) | func (x Int26_6) String() string {
method Floor (line 47) | func (x Int26_6) Floor() int { return int((x + 0x00) >> 6) }
method Round (line 52) | func (x Int26_6) Round() int { return int((x + 0x20) >> 6) }
method Ceil (line 57) | func (x Int26_6) Ceil() int { return int((x + 0x3f) >> 6) }
method Mul (line 60) | func (x Int26_6) Mul(y Int26_6) Int26_6 {
type Int52_12 (line 70) | type Int52_12
method String (line 76) | func (x Int52_12) String() string {
method Floor (line 91) | func (x Int52_12) Floor() int { return int((x + 0x000) >> 12) }
method Round (line 96) | func (x Int52_12) Round() int { return int((x + 0x800) >> 12) }
method Ceil (line 101) | func (x Int52_12) Ceil() int { return int((x + 0xfff) >> 12) }
method Mul (line 104) | func (x Int52_12) Mul(y Int52_12) Int52_12 {
function muli64 (line 117) | func muli64(u, v int64) (lo, hi uint64) {
function P (line 139) | func P(x, y int) Point26_6 {
type Point26_6 (line 146) | type Point26_6 struct
method Add (line 151) | func (p Point26_6) Add(q Point26_6) Point26_6 {
method Sub (line 156) | func (p Point26_6) Sub(q Point26_6) Point26_6 {
method Mul (line 161) | func (p Point26_6) Mul(k Int26_6) Point26_6 {
method Div (line 166) | func (p Point26_6) Div(k Int26_6) Point26_6 {
method In (line 171) | func (p Point26_6) In(r Rectangle26_6) bool {
type Point52_12 (line 178) | type Point52_12 struct
method Add (line 183) | func (p Point52_12) Add(q Point52_12) Point52_12 {
method Sub (line 188) | func (p Point52_12) Sub(q Point52_12) Point52_12 {
method Mul (line 193) | func (p Point52_12) Mul(k Int52_12) Point52_12 {
method Div (line 198) | func (p Point52_12) Div(k Int52_12) Point52_12 {
method In (line 203) | func (p Point52_12) In(r Rectangle52_12) bool {
function R (line 215) | func R(minX, minY, maxX, maxY int) Rectangle26_6 {
type Rectangle26_6 (line 239) | type Rectangle26_6 struct
method Add (line 244) | func (r Rectangle26_6) Add(p Point26_6) Rectangle26_6 {
method Sub (line 252) | func (r Rectangle26_6) Sub(p Point26_6) Rectangle26_6 {
method Intersect (line 261) | func (r Rectangle26_6) Intersect(s Rectangle26_6) Rectangle26_6 {
method Union (line 285) | func (r Rectangle26_6) Union(s Rectangle26_6) Rectangle26_6 {
method Empty (line 308) | func (r Rectangle26_6) Empty() bool {
method In (line 313) | func (r Rectangle26_6) In(s Rectangle26_6) bool {
type Rectangle52_12 (line 328) | type Rectangle52_12 struct
method Add (line 333) | func (r Rectangle52_12) Add(p Point52_12) Rectangle52_12 {
method Sub (line 341) | func (r Rectangle52_12) Sub(p Point52_12) Rectangle52_12 {
method Intersect (line 350) | func (r Rectangle52_12) Intersect(s Rectangle52_12) Rectangle52_12 {
method Union (line 374) | func (r Rectangle52_12) Union(s Rectangle52_12) Rectangle52_12 {
method Empty (line 397) | func (r Rectangle52_12) Empty() bool {
method In (line 402) | func (r Rectangle52_12) In(s Rectangle52_12) bool {
FILE: vendor/golang.org/x/net/context/context.go
function Background (line 45) | func Background() Context {
function TODO (line 54) | 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/net/idna/idna10.0.0.go
function ToASCII (line 46) | func ToASCII(s string) (string, error) {
function ToUnicode (line 51) | func ToUnicode(s string) (string, error) {
type Option (line 56) | type Option
function Transitional (line 63) | func Transitional(transitional bool) Option {
function VerifyDNSLength (line 69) | func VerifyDNSLength(verify bool) Option {
function RemoveLeadingDots (line 78) | func RemoveLeadingDots(remove bool) Option {
function ValidateLabels (line 85) | func ValidateLabels(enable bool) Option {
function StrictDomainName (line 106) | func StrictDomainName(use bool) Option {
function BidiRule (line 119) | func BidiRule() Option {
function ValidateForRegistration (line 125) | func ValidateForRegistration() Option {
function MapForLookup (line 143) | func MapForLookup() Option {
type options (line 151) | type options struct
type Profile (line 173) | type Profile struct
method ToASCII (line 201) | func (p *Profile) ToASCII(s string) (string, error) {
method ToUnicode (line 209) | func (p *Profile) ToUnicode(s string) (string, error) {
method String (line 217) | func (p *Profile) String() string {
method process (line 303) | func (p *Profile) process(s string, toASCII bool) (string, error) {
method simplify (line 568) | func (p *Profile) simplify(cat category) category {
method validateLabel (line 676) | func (p *Profile) validateLabel(s string) (err error) {
function apply (line 177) | func apply(o *options, opts []Option) {
function New (line 191) | func New(o ...Option) *Profile {
type labelError (line 287) | type labelError struct
method code (line 289) | func (e labelError) code() string { return e.code_ }
method Error (line 290) | func (e labelError) Error() string {
type runeError (line 294) | type runeError
method code (line 296) | func (e runeError) code() string { return "P1" }
method Error (line 297) | func (e runeError) Error() string {
function normalize (line 394) | func normalize(p *Profile, s string) (mapped string, isBidi bool, err er...
function validateRegistration (line 403) | func validateRegistration(p *Profile, s string) (idem string, bidi bool,...
method isBidi (line 428) | func (c info) isBidi(s string) bool {
function validateAndMap (line 442) | func validateAndMap(p *Profile, s string) (vm string, bidi bool, err err...
type labelIter (line 506) | type labelIter struct
method reset (line 514) | func (l *labelIter) reset() {
method done (line 520) | func (l *labelIter) done() bool {
method result (line 524) | func (l *labelIter) result() string {
method label (line 531) | func (l *labelIter) label() string {
method next (line 544) | func (l *labelIter) next() {
method set (line 558) | func (l *labelIter) set(s string) {
constant acePrefix (line 566) | acePrefix = "xn--"
function validateFromPunycode (line 593) | func validateFromPunycode(p *Profile, s string) error {
constant zwnj (line 613) | zwnj = "\u200c"
constant zwj (line 614) | zwj = "\u200d"
type joinState (line 617) | type joinState
constant stateStart (line 620) | stateStart joinState = iota
constant stateVirama (line 621) | stateVirama
constant stateBefore (line 622) | stateBefore
constant stateBeforeVirama (line 623) | stateBeforeVirama
constant stateAfter (line 624) | stateAfter
constant stateFAIL (line 625) | stateFAIL
function ascii (line 727) | func ascii(s string) bool {
FILE: vendor/golang.org/x/net/idna/idna9.0.0.go
function ToASCII (line 45) | func ToASCII(s string) (string, error) {
function ToUnicode (line 50) | func ToUnicode(s string) (string, error) {
type Option (line 55) | type Option
function Transitional (line 62) | func Transitional(transitional bool) Option {
function VerifyDNSLength (line 68) | func VerifyDNSLength(verify bool) Option {
function RemoveLeadingDots (line 77) | func RemoveLeadingDots(remove bool) Option {
function ValidateLabels (line 84) | func ValidateLabels(enable bool) Option {
function StrictDomainName (line 105) | func StrictDomainName(use bool) Option {
function BidiRule (line 118) | func BidiRule() Option {
function ValidateForRegistration (line 124) | func ValidateForRegistration() Option {
function MapForLookup (line 142) | func MapForLookup() Option {
type options (line 151) | type options struct
type Profile (line 173) | type Profile struct
method ToASCII (line 201) | func (p *Profile) ToASCII(s string) (string, error) {
method ToUnicode (line 209) | func (p *Profile) ToUnicode(s string) (string, error) {
method String (line 217) | func (p *Profile) String() string {
method process (line 305) | func (p *Profile) process(s string, toASCII bool) (string, error) {
method simplify (line 518) | func (p *Profile) simplify(cat category) category {
method validateLabel (line 621) | func (p *Profile) validateLabel(s string) error {
function apply (line 177) | func apply(o *options, opts []Option) {
function New (line 191) | func New(o ...Option) *Profile {
type labelError (line 289) | type labelError struct
method code (line 291) | func (e labelError) code() string { return e.code_ }
method Error (line 292) | func (e labelError) Error() string {
type runeError (line 296) | type runeError
method code (line 298) | func (e runeError) code() string { return "P1" }
method Error (line 299) | func (e runeError) Error() string {
function normalize (line 385) | func normalize(p *Profile, s string) (string, error) {
function validateRegistration (line 389) | func validateRegistration(p *Profile, s string) (string, error) {
function validateAndMap (line 409) | func validateAndMap(p *Profile, s string) (string, error) {
type labelIter (line 456) | type labelIter struct
method reset (line 464) | func (l *labelIter) reset() {
method done (line 470) | func (l *labelIter) done() bool {
method result (line 474) | func (l *labelIter) result() string {
method label (line 481) | func (l *labelIter) label() string {
method next (line 494) | func (l *labelIter) next() {
method set (line 508) | func (l *labelIter) set(s string) {
constant acePrefix (line 516) | acePrefix = "xn--"
function validateFromPunycode (line 543) | func validateFromPunycode(p *Profile, s string) error {
constant zwnj (line 558) | zwnj = "\u200c"
constant zwj (line 559) | zwj = "\u200d"
type joinState (line 562) | type joinState
constant stateStart (line 565) | stateStart joinState = iota
constant stateVirama (line 566) | stateVirama
constant stateBefore (line 567) | stateBefore
constant stateBeforeVirama (line 568) | stateBeforeVirama
constant stateAfter (line 569) | stateAfter
constant stateFAIL (line 570) | stateFAIL
function ascii (line 675) | func ascii(s string) bool {
FILE: vendor/golang.org/x/net/idna/punycode.go
constant base (line 22) | base int32 = 36
constant damp (line 23) | damp int32 = 700
constant initialBias (line 24) | initialBias int32 = 72
constant initialN (line 25) | initialN int32 = 128
constant skew (line 26) | skew int32 = 38
constant tmax (line 27) | tmax int32 = 26
constant tmin (line 28) | tmin int32 = 1
function punyError (line 31) | func punyError(s string) error { return &labelError{s, "A3"} }
function decode (line 34) | func decode(encoded string) (string, error) {
function encode (line 101) | func encode(prefix, s string) (string, error) {
function decodeDigit (line 167) | func decodeDigit(x byte) (digit int32, ok bool) {
function encodeDigit (line 179) | func encodeDigit(digit int32) byte {
function adapt (line 190) | func adapt(delta, numPoints int32, firstTime bool) int32 {
FILE: vendor/golang.org/x/net/idna/tables10.0.0.go
constant UnicodeVersion (line 8) | UnicodeVersion = "10.0.0"
type idnaTrie (line 550) | type idnaTrie struct
method lookup (line 382) | func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) {
method lookupUnsafe (line 444) | func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
method lookupString (line 467) | func (t *idnaTrie) lookupString(s string) (v uint16, sz int) {
method lookupStringUnsafe (line 529) | func (t *idnaTrie) lookupStringUnsafe(s string) uint16 {
method lookupValue (line 557) | func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
function newIdnaTrie (line 552) | func newIdnaTrie(i int) *idnaTrie {
FILE: vendor/golang.org/x/net/idna/tables11.0.0.go
constant UnicodeVersion (line 8) | UnicodeVersion = "11.0.0"
type idnaTrie (line 550) | type idnaTrie struct
method lookup (line 382) | func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) {
method lookupUnsafe (line 444) | func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
method lookupString (line 467) | func (t *idnaTrie) lookupString(s string) (v uint16, sz int) {
method lookupStringUnsafe (line 529) | func (t *idnaTrie) lookupStringUnsafe(s string) uint16 {
method lookupValue (line 557) | func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
function newIdnaTrie (line 552) | func newIdnaTrie(i int) *idnaTrie {
FILE: vendor/golang.org/x/net/idna/tables9.0.0.go
constant UnicodeVersion (line 8) | UnicodeVersion = "9.0.0"
type idnaTrie (line 550) | type idnaTrie struct
method lookup (line 382) | func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) {
method lookupUnsafe (line 444) | func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
method lookupString (line 467) | func (t *idnaTrie) lookupString(s string) (v uint16, sz int) {
method lookupStringUnsafe (line 529) | func (t *idnaTrie) lookupStringUnsafe(s string) uint16 {
method lookupValue (line 557) | func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
function newIdnaTrie (line 552) | func newIdnaTrie(i int) *idnaTrie {
FILE: vendor/golang.org/x/net/idna/trie.go
method appendMapping (line 11) | func (c info) appendMapping(b []byte, s string) []byte {
type valueRange (line 32) | type valueRange struct
type sparseBlocks (line 37) | type sparseBlocks struct
method lookup (line 54) | func (t *sparseBlocks) lookup(n uint32, b byte) uint16 {
FILE: vendor/golang.org/x/net/idna/trieval.go
type info (line 40) | type info
method isMapped (line 94) | func (c info) isMapped() bool {
method category (line 98) | func (c info) category() category {
method joinType (line 106) | func (c info) joinType() info {
method isModifier (line 113) | func (c info) isModifier() bool {
method isViramaModifier (line 117) | func (c info) isViramaModifier() bool {
constant catSmallMask (line 43) | catSmallMask = 0x3
constant catBigMask (line 44) | catBigMask = 0xF8
constant indexShift (line 45) | indexShift = 3
constant xorBit (line 46) | xorBit = 0x4
constant inlineXOR (line 47) | inlineXOR = 0xE000
constant joinShift (line 49) | joinShift = 8
constant joinMask (line 50) | joinMask = 0x07
constant attributesMask (line 53) | attributesMask = 0x1800
constant viramaModifier (line 54) | viramaModifier = 0x1800
constant modifier (line 55) | modifier = 0x1000
constant rtl (line 56) | rtl = 0x0800
constant mayNeedNorm (line 58) | mayNeedNorm = 0x2000
type category (line 62) | type category
constant unknown (line 65) | unknown category = 0
constant mapped (line 66) | mapped category = 1
constant disallowedSTD3Mapped (line 67) | disallowedSTD3Mapped category = 2
constant deviation (line 68) | deviation category = 3
constant valid (line 72) | valid category = 0x08
constant validNV8 (line 73) | validNV8 category = 0x18
constant validXV8 (line 74) | validXV8 category = 0x28
constant disallowed (line 75) | disallowed category = 0x40
constant disallowedSTD3Valid (line 76) | disallowedSTD3Valid category = 0x80
constant ignored (line 77) | ignored category = 0xC0
constant joiningL (line 82) | joiningL = (iota + 1)
constant joiningD (line 83) | joiningD
constant joiningT (line 84) | joiningT
constant joiningR (line 85) | joiningR
constant joinZWJ (line 88) | joinZWJ
constant joinZWNJ (line 89) | joinZWNJ
constant joinVirama (line 90) | joinVirama
constant numJoinTypes (line 91) | numJoinTypes
FILE: vendor/golang.org/x/net/webdav/file.go
function slashClean (line 22) | func slashClean(name string) string {
type FileSystem (line 39) | type FileSystem interface
type File (line 52) | type File interface
type Dir (line 65) | type Dir
method resolve (line 67) | func (d Dir) resolve(name string) string {
method Mkdir (line 80) | func (d Dir) Mkdir(ctx context.Context, name string, perm os.FileMode)...
method OpenFile (line 87) | func (d Dir) OpenFile(ctx context.Context, name string, flag int, perm...
method RemoveAll (line 98) | func (d Dir) RemoveAll(ctx context.Context, name string) error {
method Rename (line 109) | func (d Dir) Rename(ctx context.Context, oldName, newName string) error {
method Stat (line 123) | func (d Dir) Stat(ctx context.Context, name string) (os.FileInfo, erro...
function NewMemFS (line 131) | func NewMemFS() FileSystem {
type memFS (line 149) | type memFS struct
method walk (line 167) | func (fs *memFS) walk(op, fullname string, f func(dir *memFSNode, frag...
method find (line 228) | func (fs *memFS) find(op, fullname string) (parent *memFSNode, frag st...
method Mkdir (line 241) | func (fs *memFS) Mkdir(ctx context.Context, name string, perm os.FileM...
method OpenFile (line 264) | func (fs *memFS) OpenFile(ctx context.Context, name string, flag int, ...
method RemoveAll (line 318) | func (fs *memFS) RemoveAll(ctx context.Context, name string) error {
method Rename (line 334) | func (fs *memFS) Rename(ctx context.Context, oldName, newName string) ...
method Stat (line 385) | func (fs *memFS) Stat(ctx context.Context, name string) (os.FileInfo, ...
type memFSNode (line 405) | type memFSNode struct
method stat (line 416) | func (n *memFSNode) stat(name string) *memFileInfo {
method DeadProps (line 427) | func (n *memFSNode) DeadProps() (map[xml.Name]Property, error) {
method Patch (line 440) | func (n *memFSNode) Patch(patches []Proppatch) ([]Propstat, error) {
type memFileInfo (line 460) | type memFileInfo struct
method Name (line 467) | func (f *memFileInfo) Name() string { return f.name }
method Size (line 468) | func (f *memFileInfo) Size() int64 { return f.size }
method Mode (line 469) | func (f *memFileInfo) Mode() os.FileMode { return f.mode }
method ModTime (line 470) | func (f *memFileInfo) ModTime() time.Time { return f.modTime }
method IsDir (line 471) | func (f *memFileInfo) IsDir() bool { return f.mode.IsDir() }
method Sys (line 472) | func (f *memFileInfo) Sys() interface{} { return nil }
type memFile (line 477) | type memFile struct
method DeadProps (line 488) | func (f *memFile) DeadProps() (map[xml.Name]Property, error) { ret...
method Patch (line 489) | func (f *memFile) Patch(patches []Proppatch) ([]Propstat, error) { ret...
method Close (line 491) | func (f *memFile) Close() error {
method Read (line 495) | func (f *memFile) Read(p []byte) (int, error) {
method Readdir (line 509) | func (f *memFile) Readdir(count int) ([]os.FileInfo, error) {
method Seek (line 536) | func (f *memFile) Seek(offset int64, whence int) (int64, error) {
method Stat (line 558) | func (f *memFile) Stat() (os.FileInfo, error) {
method Write (line 562) | func (f *memFile) Write(p []byte) (int, error) {
function moveFiles (line 603) | func moveFiles(ctx context.Context, fs FileSystem, src, dst string, over...
function copyProps (line 630) | func copyProps(dst, src File) error {
function copyFiles (line 654) | func copyFiles(ctx context.Context, fs FileSystem, src, dst string, over...
function walkFS (line 751) | func walkFS(ctx context.Context, fs FileSystem, depth int, name string, ...
FILE: vendor/golang.org/x/net/webdav/if.go
type ifHeader (line 15) | type ifHeader struct
type ifList (line 20) | type ifList struct
function parseIfHeader (line 28) | func parseIfHeader(httpHeader string) (h ifHeader, ok bool) {
function parseNoTagLists (line 40) | func parseNoTagLists(s string) (h ifHeader, ok bool) {
function parseTaggedLists (line 54) | func parseTaggedLists(s string) (h ifHeader, ok bool) {
function parseList (line 83) | func parseList(s string) (l ifList, remaining string, ok bool) {
function parseCondition (line 105) | func parseCondition(s string) (c Condition, remaining string, ok bool) {
constant errTokenType (line 125) | errTokenType = rune(-1)
constant eofTokenType (line 126) | eofTokenType = rune(-2)
constant strTokenType (line 127) | strTokenType = rune(-3)
constant notTokenType (line 128) | notTokenType = rune(-4)
constant angleTokenType (line 129) | angleTokenType = rune(-5)
constant squareTokenType (line 130) | squareTokenType = rune(-6)
function lex (line 133) | func lex(s string) (tokenType rune, tokenStr string, remaining string) {
FILE: vendor/golang.org/x/net/webdav/internal/xml/marshal.go
constant Header (line 22) | Header = `` + "\n"
function Marshal (line 70) | func Marshal(v interface{}) ([]byte, error) {
type Marshaler (line 94) | type Marshaler interface
type MarshalerAttr (line 109) | type MarshalerAttr interface
function MarshalIndent (line 116) | func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error) {
type Encoder (line 127) | type Encoder struct
method Indent (line 141) | func (enc *Encoder) Indent(prefix, indent string) {
method Encode (line 152) | func (enc *Encoder) Encode(v interface{}) error {
method EncodeElement (line 167) | func (enc *Encoder) EncodeElement(v interface{}, start StartElement) e...
method EncodeToken (line 201) | func (enc *Encoder) EncodeToken(t Token) error {
method Flush (line 298) | func (enc *Encoder) Flush() error {
function NewEncoder (line 132) | func NewEncoder(w io.Writer) *Encoder {
function isValidDirective (line 258) | func isValidDirective(dir Directive) bool {
type printer (line 302) | type printer struct
method prefixForNS (line 331) | func (p *printer) prefixForNS(url string, isAttr bool) string {
method defineNS (line 349) | func (p *printer) defineNS(attr Attr, ignoreNonEmptyDefault bool) error {
method createNSPrefix (line 403) | func (p *printer) createNSPrefix(url string, isAttr bool) {
method writeNamespaces (line 460) | func (p *printer) writeNamespaces() {
method pushPrefix (line 482) | func (p *printer) pushPrefix(prefix, url string) {
method nsForPrefix (line 494) | func (p *printer) nsForPrefix(prefix string) string {
method markPrefix (line 503) | func (p *printer) markPrefix() {
method popPrefix (line 511) | func (p *printer) popPrefix() {
method setAttrPrefix (line 525) | func (p *printer) setAttrPrefix(prefix, url string) {
method marshalValue (line 556) | func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo, st...
method fieldAttr (line 722) | func (p *printer) fieldAttr(finfo *fieldInfo, val reflect.Value) (Attr...
method defaultStart (line 779) | func (p *printer) defaultStart(typ reflect.Type, finfo *fieldInfo, sta...
method marshalInterface (line 806) | func (p *printer) marshalInterface(val Marshaler, start StartElement) ...
method marshalTextInterface (line 826) | func (p *printer) marshalTextInterface(val encoding.TextMarshaler, sta...
method writeStart (line 839) | func (p *printer) writeStart(start *StartElement) error {
method writeName (line 894) | func (p *printer) writeName(name Name, isAttr bool) {
method writeEnd (line 902) | func (p *printer) writeEnd(name Name) error {
method marshalSimple (line 926) | func (p *printer) marshalSimple(typ reflect.Type, val reflect.Value) (...
method marshalStruct (line 963) | func (p *printer) marshalStruct(tinfo *typeInfo, val reflect.Value) er...
method cachedWriteError (line 1099) | func (p *printer) cachedWriteError() error {
method writeIndent (line 1104) | func (p *printer) writeIndent(depthDelta int) {
type printerPrefix (line 325) | type printerPrefix struct
type parentStack (line 1135) | type parentStack struct
method setParents (line 1144) | func (s *parentStack) setParents(finfo *fieldInfo, vf reflect.Value) e...
type UnsupportedTypeError (line 1199) | type UnsupportedTypeError struct
method Error (line 1203) | func (e *UnsupportedTypeError) Error() string {
function isEmptyValue (line 1207) | func isEmptyValue(v reflect.Value) bool {
FILE: vendor/golang.org/x/net/webdav/internal/xml/read.go
function Unmarshal (line 114) | func Unmarshal(data []byte, v interface{}) error {
method Decode (line 120) | func (d *Decoder) Decode(v interface{}) error {
method DecodeElement (line 128) | func (d *Decoder) DecodeElement(v interface{}, start *StartElement) error {
type UnmarshalError (line 137) | type UnmarshalError
method Error (line 139) | func (e UnmarshalError) Error() string { return string(e) }
type Unmarshaler (line 156) | type Unmarshaler interface
type UnmarshalerAttr (line 168) | type UnmarshalerAttr interface
function receiverType (line 173) | func receiverType(val interface{}) string {
method unmarshalInterface (line 183) | func (p *Decoder) unmarshalInterface(val Unmarshaler, start *StartElemen...
method unmarshalTextInterface (line 205) | func (p *Decoder) unmarshalTextInterface(val encoding.TextUnmarshaler, s...
method unmarshalAttr (line 228) | func (p *Decoder) unmarshalAttr(val reflect.Value, attr Attr) error {
method unmarshal (line 272) | func (p *Decoder) unmarshal(val reflect.Value, start *StartElement) error {
function copyValue (line 555) | func copyValue(dst reflect.Value, src []byte) (err error) {
method unmarshalPath (line 612) | func (p *Decoder) unmarshalPath(tinfo *typeInfo, sv reflect.Value, paren...
method Skip (line 677) | func (d *Decoder) Skip() error {
FILE: vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go
type typeInfo (line 15) | type typeInfo struct
type fieldInfo (line 21) | type fieldInfo struct
method value (line 357) | func (finfo *fieldInfo) value(v reflect.Value) reflect.Value {
type fieldFlags (line 29) | type fieldFlags
constant fElement (line 32) | fElement fieldFlags = 1 << iota
constant fAttr (line 33) | fAttr
constant fCharData (line 34) | fCharData
constant fInnerXml (line 35) | fInnerXml
constant fComment (line 36) | fComment
constant fAny (line 37) | fAny
constant fOmitEmpty (line 39) | fOmitEmpty
constant fMode (line 41) | fMode = fElement | fAttr | fCharData | fInnerXml | fComment | fAny
function getTypeInfo (line 51) | func getTypeInfo(typ reflect.Type) (*typeInfo, error) {
function structFieldInfo (line 114) | func structFieldInfo(typ reflect.Type, f *reflect.StructField) (*fieldIn...
function lookupXMLName (line 238) | func lookupXMLName(typ reflect.Type) (xmlname *fieldInfo) {
function min (line 261) | func min(a, b int) int {
function addFieldInfo (line 275) | func addFieldInfo(typ reflect.Type, tinfo *typeInfo, newf *fieldInfo) er...
type TagPathError (line 344) | type TagPathError struct
method Error (line 350) | func (e *TagPathError) Error() string {
FILE: vendor/golang.org/x/net/webdav/internal/xml/xml.go
type SyntaxError (line 29) | type SyntaxError struct
method Error (line 34) | func (e *SyntaxError) Error() string {
type Name (line 47) | type Name struct
method isNamespace (line 52) | func (name Name) isNamespace() bool {
type Attr (line 57) | type Attr struct
type Token (line 64) | type Token interface
type StartElement (line 67) | type StartElement struct
method Copy (line 72) | func (e StartElement) Copy() StartElement {
method End (line 80) | func (e StartElement) End() EndElement {
method setDefaultNamespace (line 86) | func (e *StartElement) setDefaultNamespace() {
type EndElement (line 109) | type EndElement struct
type CharData (line 116) | type CharData
method Copy (line 124) | func (c CharData) Copy() CharData { return CharData(makeCopy(c)) }
function makeCopy (line 118) | func makeCopy(b []byte) []byte {
type Comment (line 128) | type Comment
method Copy (line 130) | func (c Comment) Copy() Comment { return Comment(makeCopy(c)) }
type ProcInst (line 133) | type ProcInst struct
method Copy (line 138) | func (p ProcInst) Copy() ProcInst {
type Directive (line 145) | type Directive
method Copy (line 147) | func (d Directive) Copy() Directive { return Directive(makeCopy(d)) }
function CopyToken (line 150) | func CopyToken(t Token) Token {
type Decoder (line 168) | type Decoder struct
method Token (line 272) | func (d *Decoder) Token() (t Token, err error) {
method translate (line 332) | func (d *Decoder) translate(n *Name, isElementName bool) {
method switchToReader (line 350) | func (d *Decoder) switchToReader(r io.Reader) {
method push (line 379) | func (d *Decoder) push(kind int) *stack {
method pop (line 392) | func (d *Decoder) pop() *stack {
method pushEOF (line 405) | func (d *Decoder) pushEOF() {
method popEOF (line 431) | func (d *Decoder) popEOF() bool {
method pushElement (line 440) | func (d *Decoder) pushElement(name Name) {
method pushNs (line 447) | func (d *Decoder) pushNs(local string, url string, ok bool) {
method syntaxError (line 455) | func (d *Decoder) syntaxError(msg string) error {
method popElement (line 465) | func (d *Decoder) popElement(t *EndElement) bool {
method autoClose (line 503) | func (d *Decoder) autoClose(t Token) (Token, bool) {
method RawToken (line 526) | func (d *Decoder) RawToken() (Token, error) {
method rawToken (line 533) | func (d *Decoder) rawToken() (Token, error) {
method attrval (line 832) | func (d *Decoder) attrval() []byte {
method space (line 867) | func (d *Decoder) space() {
method getc (line 886) | func (d *Decoder) getc() (b byte, ok bool) {
method InputOffset (line 912) | func (d *Decoder) InputOffset() int64 {
method savedOffset (line 918) | func (d *Decoder) savedOffset() int {
method mustgetc (line 930) | func (d *Decoder) mustgetc() (b byte, ok bool) {
method ungetc (line 940) | func (d *Decoder) ungetc(b byte) {
method text (line 960) | func (d *Decoder) text(quote int, cdata bool) []byte {
method nsname (line 1139) | func (d *Decoder) nsname() (name Name, ok bool) {
method name (line 1157) | func (d *Decoder) name() (s string, ok bool) {
method readName (line 1175) | func (d *Decoder) readName() (ok bool) {
function NewDecoder (line 239) | func NewDecoder(r io.Reader) *Decoder {
constant xmlURL (line 327) | xmlURL = "http://www.w3.org/XML/1998/namespace"
type stack (line 366) | type stack struct
constant stkStart (line 374) | stkStart = iota
constant stkNs (line 375) | stkNs
constant stkEOF (line 376) | stkEOF
function isInCharacterRange (line 1128) | func isInCharacterRange(r rune) (inrange bool) {
function isNameByte (line 1199) | func isNameByte(c byte) bool {
function isName (line 1206) | func isName(s []byte) bool {
function isNameString (line 1230) | func isNameString(s string) bool {
function EscapeText (line 1876) | func EscapeText(w io.Writer, s []byte) error {
function escapeText (line 1883) | func escapeText(w io.Writer, s []byte, escapeNewline bool) error {
method EscapeString (line 1932) | func (p *printer) EscapeString(s string) {
function Escape (line 1972) | func Escape(w io.Writer, s []byte) {
function procInst (line 1978) | func procInst(param, s string) string {
FILE: vendor/golang.org/x/net/webdav/lock.go
type Condition (line 29) | type Condition struct
type LockSystem (line 38) | type LockSystem interface
type LockDetails (line 97) | type LockDetails struct
function NewMemLS (line 115) | func NewMemLS() LockSystem {
type memLS (line 123) | type memLS struct
method nextToken (line 133) | func (m *memLS) nextToken() string {
method collectExpiredNodes (line 138) | func (m *memLS) collectExpiredNodes(now time.Time) {
method Confirm (line 147) | func (m *memLS) Confirm(now time.Time, name0, name1 string, conditions...
method lookup (line 192) | func (m *memLS) lookup(name string, conditions ...Condition) (n *memLS...
method hold (line 212) | func (m *memLS) hold(n *memLSNode) {
method unhold (line 222) | func (m *memLS) unhold(n *memLSNode) {
method Create (line 232) | func (m *memLS) Create(now time.Time, details LockDetails) (string, er...
method Refresh (line 252) | func (m *memLS) Refresh(now time.Time, token string, duration time.Dur...
method Unlock (line 275) | func (m *memLS) Unlock(now time.Time, token string) error {
method canCreate (line 291) | func (m *memLS) canCreate(name string, zeroDepth bool) bool {
method create (line 315) | func (m *memLS) create(name string) (ret *memLSNode) {
method remove (line 336) | func (m *memLS) remove(n *memLSNode) {
function walkToRoot (line 352) | func walkToRoot(name string, f func(name0 string, first bool) bool) bool {
type memLSNode (line 368) | type memLSNode struct
type byExpiry (line 386) | type byExpiry
method Len (line 388) | func (b *byExpiry) Len() int {
method Less (line 392) | func (b *byExpiry) Less(i, j int) bool {
method Swap (line 396) | func (b *byExpiry) Swap(i, j int) {
method Push (line 402) | func (b *byExpiry) Push(x interface{}) {
method Pop (line 408) | func (b *byExpiry) Pop() interface{} {
constant infiniteTimeout (line 417) | infiniteTimeout = -1
function parseTimeout (line 421) | func parseTimeout(s string) (time.Duration, error) {
FILE: vendor/golang.org/x/net/webdav/prop.go
type Proppatch (line 23) | type Proppatch struct
type Propstat (line 33) | type Propstat struct
function makePropstats (line 57) | func makePropstats(x, y Propstat) []Propstat {
type DeadPropsHolder (line 84) | type DeadPropsHolder interface
function props (line 169) | func props(ctx context.Context, fs FileSystem, ls LockSystem, name strin...
function propnames (line 217) | func propnames(ctx context.Context, fs FileSystem, ls LockSystem, name s...
function allprop (line 257) | func allprop(ctx context.Context, fs FileSystem, ls LockSystem, name str...
function patch (line 277) | func patch(ctx context.Context, fs FileSystem, ls LockSystem, name strin...
function escapeXML (line 339) | func escapeXML(s string) string {
function findResourceType (line 359) | func findResourceType(ctx context.Context, fs FileSystem, ls LockSystem,...
function findDisplayName (line 366) | func findDisplayName(ctx context.Context, fs FileSystem, ls LockSystem, ...
function findContentLength (line 374) | func findContentLength(ctx context.Context, fs FileSystem, ls LockSystem...
function findLastModified (line 378) | func findLastModified(ctx context.Context, fs FileSystem, ls LockSystem,...
type ContentTyper (line 394) | type ContentTyper interface
function findContentType (line 403) | func findContentType(ctx context.Context, fs FileSystem, ls LockSystem, ...
type ETager (line 440) | type ETager interface
function findETag (line 450) | func findETag(ctx context.Context, fs FileSystem, ls LockSystem, name st...
function findSupportedLock (line 463) | func findSupportedLock(ctx context.Context, fs FileSystem, ls LockSystem...
FILE: vendor/golang.org/x/net/webdav/webdav.go
type Handler (line 20) | type Handler struct
method stripPrefix (line 32) | func (h *Handler) stripPrefix(p string) (string, int, error) {
method ServeHTTP (line 42) | func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
method lock (line 84) | func (h *Handler) lock(now time.Time, root string) (token string, stat...
method confirmLocks (line 99) | func (h *Handler) confirmLocks(r *http.Request, src, dst string) (rele...
method handleOptions (line 172) | func (h *Handler) handleOptions(w http.ResponseWriter, r *http.Request...
method handleGetHeadPost (line 194) | func (h *Handler) handleGetHeadPost(w http.ResponseWriter, r *http.Req...
method handleDelete (line 223) | func (h *Handler) handleDelete(w http.ResponseWriter, r *http.Request)...
method handlePut (line 253) | func (h *Handler) handlePut(w http.ResponseWriter, r *http.Request) (s...
method handleMkcol (line 292) | func (h *Handler) handleMkcol(w http.ResponseWriter, r *http.Request) ...
method handleCopyMove (line 317) | func (h *Handler) handleCopyMove(w http.ResponseWriter, r *http.Reques...
method handleLock (line 392) | func (h *Handler) handleLock(w http.ResponseWriter, r *http.Request) (...
method handleUnlock (line 486) | func (h *Handler) handleUnlock(w http.ResponseWriter, r *http.Request)...
method handlePropfind (line 509) | func (h *Handler) handlePropfind(w http.ResponseWriter, r *http.Reques...
method handleProppatch (line 577) | func (h *Handler) handleProppatch(w http.ResponseWriter, r *http.Reque...
function makePropstatResponse (line 616) | func makePropstatResponse(href string, pstats []Propstat) *response {
constant infiniteDepth (line 637) | infiniteDepth = -1
constant invalidDepth (line 638) | invalidDepth = -2
function parseDepth (line 650) | func parseDepth(s string) int {
constant StatusMulti (line 664) | StatusMulti = 207
constant StatusUnprocessableEntity (line 665) | StatusUnprocessableEntity = 422
constant StatusLocked (line 666) | StatusLocked = 423
constant StatusFailedDependency (line 667) | StatusFailedDependency = 424
constant StatusInsufficientStorage (line 668) | StatusInsufficientStorage = 507
function StatusText (line 671) | func StatusText(code int) string {
FILE: vendor/golang.org/x/net/webdav/xml.go
type lockInfo (line 39) | type lockInfo struct
type owner (line 48) | type owner struct
function readLockInfo (line 52) | func readLockInfo(r io.Reader) (li lockInfo, status int, err error) {
type countingReader (line 73) | type countingReader struct
method Read (line 78) | func (c *countingReader) Read(p []byte) (int, error) {
function writeLockInfo (line 84) | func writeLockInfo(w io.Writer, token string, ld LockDetails) (int, erro...
function escape (line 104) | func escape(s string) string {
function next (line 121) | func next(d *ixml.Decoder) (ixml.Token, error) {
type propfindProps (line 137) | type propfindProps
method UnmarshalXML (line 143) | func (pn *propfindProps) UnmarshalXML(d *ixml.Decoder, start ixml.Star...
type propfind (line 170) | type propfind struct
function readPropfind (line 178) | func readPropfind(r io.Reader) (pf propfind, status int, err error) {
type Property (line 209) | type Property struct
type ixmlProperty (line 229) | type ixmlProperty struct
type xmlError (line 237) | type xmlError struct
type propstat (line 244) | type propstat struct
method MarshalXML (line 262) | func (ps propstat) MarshalXML(e *ixml.Encoder, start ixml.StartElement...
type ixmlPropstat (line 253) | type ixmlPropstat struct
type response (line 291) | type response struct
type multistatusWriter (line 309) | type multistatusWriter struct
method write (line 328) | func (w *multistatusWriter) write(r *response) error {
method writeHeader (line 351) | func (w *multistatusWriter) writeHeader() error {
method close (line 378) | func (w *multistatusWriter) close() error {
function xmlLang (line 405) | func xmlLang(s ixml.StartElement, d string) string {
type xmlValue (line 414) | type xmlValue
method UnmarshalXML (line 416) | func (v *xmlValue) UnmarshalXML(d *ixml.Decoder, start ixml.StartEleme...
type proppatchProps (line 444) | type proppatchProps
method UnmarshalXML (line 454) | func (ps *proppatchProps) UnmarshalXML(d *ixml.Decoder, start ixml.Sta...
type setRemove (line 483) | type setRemove struct
type propertyupdate (line 490) | type propertyupdate struct
function readProppatch (line 496) | func readProppatch(r io.Reader) (patches []Proppatch, status int, err er...
FILE: vendor/golang.org/x/sys/unix/affinity_linux.go
constant cpuSetSize (line 14) | cpuSetSize = _CPU_SETSIZE / _NCPUBITS
type CPUSet (line 17) | type CPUSet
method Zero (line 40) | func (s *CPUSet) Zero() {
method Set (line 55) | func (s *CPUSet) Set(cpu int) {
method Clear (line 63) | func (s *CPUSet) Clear(cpu int) {
method IsSet (line 71) | func (s *CPUSet) IsSet(cpu int) bool {
method Count (line 80) | func (s *CPUSet) Count() int {
function schedAffinity (line 19) | func schedAffinity(trap uintptr, pid int, set *CPUSet) error {
function SchedGetaffinity (line 29) | func SchedGetaffinity(pid int, set *CPUSet) error {
function SchedSetaffinity (line 35) | func SchedSetaffinity(pid int, set *CPUSet) error {
function cpuBitsIndex (line 46) | func cpuBitsIndex(cpu int) int {
function cpuBitsMask (line 50) | func cpuBitsMask(cpu int) cpuMask {
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_aix_ppc.go
function Major (line 14) | func Major(dev uint64) uint32 {
function Minor (line 19) | func Minor(dev uint64) uint32 {
function Mkdev (line 25) | func Mkdev(major, minor uint32) uint64 {
FILE: vendor/golang.org/x/sys/unix/dev_aix_ppc64.go
function Major (line 14) | func Major(dev uint64) uint32 {
function Minor (line 19) | func Minor(dev uint64) uint32 {
function Mkdev (line 25) | func Mkdev(major, minor uint32) uint64 {
FILE: vendor/golang.org/x/sys/unix/dev_darwin.go
function Major (line 11) | func Major(dev uint64) uint32 {
function Minor (line 16) | func Minor(dev uint64) uint32 {
function Mkdev (line 22) | func Mkdev(major, minor uint32) uint64 {
FILE: vendor/golang.org/x/sys/unix/dev_dragonfly.go
function Major (line 17) | func Major(dev uint64) uint32 {
function Minor (line 22) | func Minor(dev uint64) uint32 {
function Mkdev (line 28) | func Mkdev(major, minor uint32) uint64 {
FILE: vendor/golang.org/x/sys/unix/dev_freebsd.go
function Major (line 17) | func Major(dev uint64) uint32 {
function Minor (line 22) | func Minor(dev uint64) uint32 {
function Mkdev (line 28) | func Mkdev(major, minor uint32) uint64 {
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/dev_netbsd.go
function Major (line 11) | func Major(dev uint64) uint32 {
function Minor (line 16) | func Minor(dev uint64) uint32 {
function Mkdev (line 24) | func Mkdev(major, minor uint32) uint64 {
FILE: vendor/golang.org/x/sys/unix/dev_openbsd.go
function Major (line 11) | func Major(dev uint64) uint32 {
function Minor (line 16) | func Minor(dev uint64) uint32 {
function Mkdev (line 24) | 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 {
function Unsetenv (line 29) | 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/fcntl.go
function FcntlInt (line 16) | func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
function FcntlFlock (line 26) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
FILE: vendor/golang.org/x/sys/unix/fcntl_darwin.go
function FcntlInt (line 10) | func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
function FcntlFlock (line 15) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
FILE: vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go
function init (line 9) | func init() {
FILE: vendor/golang.org/x/sys/unix/gccgo.go
function realSyscallNoError (line 16) | func realSyscallNoError(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr...
function realSyscall (line 19) | func realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r, e...
function SyscallNoError (line 21) | func SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) {
function Syscall (line 28) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errn...
function Syscall6 (line 35) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err...
function Syscall9 (line 42) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ...
function RawSyscallNoError (line 49) | func RawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) {
function RawSyscall (line 54) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E...
function RawSyscall6 (line 59) | 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 19) | struct ret {
function gccgoRealSyscall (line 24) | struct ret
function gccgoRealSyscallNoError (line 35) | uintptr_t
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/ioctl.go
function IoctlSetInt (line 19) | func IoctlSetInt(fd int, req uint, value int) error {
function IoctlSetWinsize (line 26) | func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
function IoctlSetTermios (line 37) | func IoctlSetTermios(fd int, req uint, value *Termios) error {
function IoctlGetInt (line 49) | func IoctlGetInt(fd int, req uint) (int, error) {
function IoctlGetWinsize (line 55) | func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
function IoctlGetTermios (line 61) | func IoctlGetTermios(fd int, req uint) (*Termios, error) {
FILE: vendor/golang.org/x/sys/unix/pagesize_unix.go
function Getpagesize (line 13) | func Getpagesize() int {
FILE: vendor/golang.org/x/sys/unix/pledge_openbsd.go
function Pledge (line 24) | func Pledge(promises, execpromises string) error {
function PledgePromises (line 66) | func PledgePromises(promises string) error {
function PledgeExecpromises (line 98) | func PledgeExecpromises(execpromises string) error {
function majmin (line 126) | func majmin() (major int, minor int, err error) {
function pledgeAvailable (line 150) | func pledgeAvailable(maj, min int, execpromises 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/readdirent_getdents.go
function ReadDirent (line 10) | func ReadDirent(fd int, buf []byte) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/readdirent_getdirentries.go
function ReadDirent (line 12) | func ReadDirent(fd int, buf []byte) (n int, err error) {
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 17) | func cmsgAlignOf(salen int) int {
function CmsgLen (line 43) | func CmsgLen(datalen int) int {
function CmsgSpace (line 49) | func CmsgSpace(datalen int) int {
function cmsgData (line 53) | func cmsgData(h *Cmsghdr) unsafe.Pointer {
type SocketControlMessage (line 58) | type SocketControlMessage struct
function ParseSocketControlMessage (line 65) | func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error) {
function socketControlMessageHeaderAndData (line 80) | func socketControlMessageHeaderAndData(b []byte) (*Cmsghdr, []byte, erro...
function UnixRights (line 90) | func UnixRights(fds ...int) []byte {
function ParseUnixRights (line 107) | 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 32) | func ByteSliceFromString(s string) ([]byte, error) {
function BytePtrFromString (line 44) | func BytePtrFromString(s string) (*byte, error) {
FILE: vendor/golang.org/x/sys/unix/syscall_aix.go
function Utimes (line 23) | func Utimes(path string, tv []Timeval) error {
function UtimesNano (line 31) | func UtimesNano(path string, ts []Timespec) error {
function UtimesNanoAt (line 38) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {
method sockaddr (line 48) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 62) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 77) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
function Getsockname (line 104) | func Getsockname(fd int) (sa Sockaddr, err error) {
constant ImplementsGetwd (line 115) | ImplementsGetwd = true
function Getwd (line 117) | func Getwd() (ret string, err error) {
function Getcwd (line 134) | func Getcwd(buf []byte) (n int, err error) {
function Getgroups (line 146) | func Getgroups() (gids []int, err error) {
function Setgroups (line 172) | func Setgroups(gids []int) (err error) {
function Accept (line 190) | func Accept(fd int) (nfd int, sa Sockaddr, err error) {
function Recvmsg (line 205) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i...
function Sendmsg (line 211) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {
function SendmsgN (line 216) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err...
function anyToSockaddr (line 221) | func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
function Gettimeofday (line 266) | func Gettimeofday(tv *Timeval) (err error) {
function Sendfile (line 271) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in...
function sendfile (line 279) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function direntIno (line 283) | func direntIno(buf []byte) (uint64, bool) {
function direntReclen (line 287) | func direntReclen(buf []byte) (uint64, bool) {
function direntNamlen (line 291) | func direntNamlen(buf []byte) (uint64, bool) {
function Getdents (line 300) | func Getdents(fd int, buf []byte) (n int, err error) {
function Wait4 (line 305) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w...
type WaitStatus (line 325) | type WaitStatus
method Stopped (line 327) | func (w WaitStatus) Stopped() bool { return w&0x40 != 0 }
method StopSignal (line 328) | func (w WaitStatus) StopSignal() Signal {
method Exited (line 335) | func (w WaitStatus) Exited() bool { return w&0xFF == 0 }
method ExitStatus (line 336) | func (w WaitStatus) ExitStatus() int {
method Signaled (line 343) | func (w WaitStatus) Signaled() bool { return w&0x40 == 0 && w&0xFF != 0 }
method Signal (line 344) | func (w WaitStatus) Signal() Signal {
method Continued (line 351) | func (w WaitStatus) Continued() bool { return w&0x01000000 != 0 }
method CoreDump (line 353) | func (w WaitStatus) CoreDump() bool { return w&0x80 == 0x80 }
method TrapCause (line 355) | func (w WaitStatus) TrapCause() int { return -1 }
function Mmap (line 485) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [...
function Munmap (line 489) | func Munmap(b []byte) (err error) {
function Pipe (line 503) | func Pipe(p []int) (err error) {
function Poll (line 516) | func Poll(fds []PollFd, timeout int) (n int, err error) {
function Unmount (line 530) | func Unmount(target string, flags int) (err error) {
FILE: vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
function setTimespec (line 16) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 20) | func setTimeval(sec, usec int64) Timeval {
method SetLen (line 24) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 28) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 32) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 36) | func (cmsg *Cmsghdr) SetLen(length int) {
function Fstat (line 40) | func Fstat(fd int, stat *Stat_t) error {
function Fstatat (line 44) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {
function Lstat (line 48) | func Lstat(path string, stat *Stat_t) error {
function Stat (line 52) | func Stat(path string, statptr *Stat_t) error {
FILE: vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go
function setTimespec (line 16) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 20) | func setTimeval(sec, usec int64) Timeval {
method SetLen (line 24) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 28) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 32) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 36) | func (cmsg *Cmsghdr) SetLen(length int) {
function fixStatTimFields (line 45) | func fixStatTimFields(stat *Stat_t) {
function Fstat (line 51) | func Fstat(fd int, stat *Stat_t) error {
function Fstatat (line 60) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {
function Lstat (line 69) | func Lstat(path string, stat *Stat_t) error {
function Stat (line 78) | func Stat(path string, statptr *Stat_t) error {
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) {
type WaitStatus (line 72) | type WaitStatus
method Exited (line 84) | func (w WaitStatus) Exited() bool { return w&mask == exited }
method ExitStatus (line 86) | func (w WaitStatus) ExitStatus() int {
method Signaled (line 93) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma...
method Signal (line 95) | func (w WaitStatus) Signal() syscall.Signal {
method CoreDump (line 103) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=...
method Stopped (line 105) | func (w WaitStatus) Stopped() bool { return w&mask == stopped && sysca...
method Killed (line 107) | func (w WaitStatus) Killed() bool { return w&mask == killed && syscall...
method Continued (line 109) | func (w WaitStatus) Continued() bool { return w&mask == stopped && sys...
method StopSignal (line 111) | func (w WaitStatus) StopSignal() syscall.Signal {
method TrapCause (line 118) | func (w WaitStatus) TrapCause() int { return -1 }
constant mask (line 75) | mask = 0x7F
constant core (line 76) | core = 0x80
constant shift (line 77) | shift = 8
constant exited (line 79) | exited = 0
constant killed (line 80) | killed = 9
constant stopped (line 81) | stopped = 0x7F
function Wait4 (line 122) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w...
method sockaddr (line 141) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 156) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 172) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 186) | func (sa *SockaddrDatalink) sockaddr() (unsafe.Pointer, _Socklen, error) {
function anyToSockaddr (line 203) | func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
function Accept (line 268) | func Accept(fd int) (nfd int, sa Sockaddr, err error) {
function Getsockname (line 291) | func Getsockname(fd int) (sa Sockaddr, err error) {
function GetsockoptString (line 310) | func GetsockoptString(fd, level, opt int) (string, error) {
function Recvmsg (line 324) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i...
function Sendmsg (line 360) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {
function SendmsgN (line 365) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err...
function Kevent (line 405) | func Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n in...
function sysctlmib (line 417) | func sysctlmib(name string, args ...int) ([]_C_int, error) {
function Sysctl (line 431) | func Sysctl(name string) (string, error) {
function SysctlArgs (line 435) | func SysctlArgs(name string, args ...int) (string, error) {
function SysctlUint32 (line 449) | func SysctlUint32(name string) (uint32, error) {
function SysctlUint32Args (line 453) | func SysctlUint32Args(name string, args ...int) (uint32, error) {
function SysctlUint64 (line 470) | func SysctlUint64(name string, args ...int) (uint64, error) {
function SysctlRaw (line 487) | func SysctlRaw(name string, args ...int) ([]byte, error) {
function Utimes (line 515) | func Utimes(path string, tv []Timeval) error {
function UtimesNano (line 525) | func UtimesNano(path string, ts []Timespec) error {
function UtimesNanoAt (line 554) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {
function Futimes (line 570) | func Futimes(fd int, tv []Timeval) error {
function Poll (line 584) | func Poll(fds []PollFd, timeout int) (n int, err error) {
function Mmap (line 602) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [...
function Munmap (line 606) | 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 40) | type SockaddrDatalink struct
function nametomib (line 53) | func nametomib(name string) (mib []_C_int, err error) {
function direntIno (line 80) | func direntIno(buf []byte) (uint64, bool) {
function direntReclen (line 84) | func direntReclen(buf []byte) (uint64, bool) {
function direntNamlen (line 88) | 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 SysctlClockinfo (line 158) | func SysctlClockinfo(name string) (*Clockinfo, error) {
function Pipe (line 177) | func Pipe(p []int) (err error) {
function Getfsstat (line 185) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
function xattrPointer (line 195) | func xattrPointer(dest []byte) *byte {
function Getxattr (line 210) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function Lgetxattr (line 214) | func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) {
function Fgetxattr (line 220) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function Setxattr (line 226) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function Lsetxattr (line 256) | func Lsetxattr(link string, attr string, data []byte, flags int) (err er...
function Fsetxattr (line 262) | func Fsetxattr(fd int, attr string, data []byte, flags int) (err error) {
function Removexattr (line 268) | func Removexattr(path string, attr string) (err error) {
function Lremovexattr (line 275) | func Lremovexattr(link string, attr string) (err error) {
function Fremovexattr (line 281) | func Fremovexattr(fd int, attr string) (err error) {
function Listxattr (line 287) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 291) | func Llistxattr(link string, dest []byte) (sz int, err error) {
function Flistxattr (line 297) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function setattrlistTimes (line 301) | func setattrlistTimes(path string, times []Timespec, flags int) error {
function utimensat (line 327) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) er...
function Kill (line 338) | func Kill(pid int, signum syscall.Signal) (err error) { return kill(pid,...
function Uname (line 342) | func Uname(uname *Utsname) error {
function Sendfile (line 388) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in...
FILE: vendor/golang.org/x/sys/unix/syscall_darwin_386.go
function setTimespec (line 16) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 20) | func setTimeval(sec, usec int64) Timeval {
function Gettimeofday (line 25) | func Gettimeofday(tv *Timeval) (err error) {
function SetKevent (line 35) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 41) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 45) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 49) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 53) | func (cmsg *Cmsghdr) SetLen(length int) {
function Syscall9 (line 57) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u...
constant SYS___SYSCTL (line 61) | SYS___SYSCTL = SYS_SYSCTL
FILE: vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go
function setTimespec (line 16) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 20) | func setTimeval(sec, usec int64) Timeval {
function Gettimeofday (line 25) | func Gettimeofday(tv *Timeval) (err error) {
function SetKevent (line 35) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 41) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 45) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 49) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 53) | func (cmsg *Cmsghdr) SetLen(length int) {
function Syscall9 (line 57) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u...
constant SYS___SYSCTL (line 61) | SYS___SYSCTL = SYS_SYSCTL
FILE: vendor/golang.org/x/sys/unix/syscall_darwin_arm.go
function ptrace (line 11) | func ptrace(request int, pid int, addr uintptr, data uintptr) error {
function sysctl (line 15) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ...
function setTimespec (line 19) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 23) | func setTimeval(sec, usec int64) Timeval {
function Gettimeofday (line 28) | func Gettimeofday(tv *Timeval) (err error) {
function SetKevent (line 38) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 44) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 48) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 52) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 56) | func (cmsg *Cmsghdr) SetLen(length int) {
function Syscall9 (line 60) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u...
constant SYS___SYSCTL (line 64) | SYS___SYSCTL = SYS_SYSCTL
function Getdirentries (line 74) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go
function ptrace (line 13) | func ptrace(request int, pid int, addr uintptr, data uintptr) error {
function sysctl (line 17) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ...
function setTimespec (line 21) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 25) | func setTimeval(sec, usec int64) 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 SetIovlen (line 54) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 58) | func (cmsg *Cmsghdr) SetLen(length int) {
function Syscall9 (line 62) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u...
constant SYS___SYSCTL (line 66) | SYS___SYSCTL = SYS_SYSCTL
function Getdirentries (line 76) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go
function syscall_syscall (line 12) | func syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
function syscall_syscall6 (line 13) | func syscall_syscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintpt...
function syscall_syscall6X (line 14) | func syscall_syscall6X(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintp...
function syscall_syscall9 (line 15) | func syscall_syscall9(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r...
function syscall_rawSyscall (line 16) | func syscall_rawSyscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
function syscall_rawSyscall6 (line 17) | func syscall_rawSyscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uin...
function funcPC (line 29) | func funcPC(f func()) uintptr {
FILE: vendor/golang.org/x/sys/unix/syscall_dragonfly.go
type SockaddrDatalink (line 20) | type SockaddrDatalink struct
function nametomib (line 35) | func nametomib(name string) (mib []_C_int, err error) {
function direntIno (line 62) | func direntIno(buf []byte) (uint64, bool) {
function direntReclen (line 66) | func direntReclen(buf []byte) (uint64, bool) {
function direntNamlen (line 74) | func direntNamlen(buf []byte) (uint64, bool) {
function Pipe (line 80) | func Pipe(p []int) (err error) {
function Pread (line 89) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 94) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Accept4 (line 98) | func Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) {
constant ImplementsGetwd (line 116) | ImplementsGetwd = true
function Getwd (line 120) | func Getwd() (string, error) {
function Getfsstat (line 133) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
function setattrlistTimes (line 148) | func setattrlistTimes(path string, times []Timespec, flags int) error {
function sysctlUname (line 155) | func sysctlUname(mib []_C_int, old *byte, oldlen *uintptr) error {
function Uname (line 168) | func Uname(uname *Utsname) error {
function Sendfile (line 218) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in...
FILE: vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go
function setTimespec (line 14) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 18) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 22) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 28) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 32) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 36) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) {
function sendfile (line 44) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Syscall9 (line 56) | 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
constant SYS_FSTAT_FREEBSD12 (line 21) | SYS_FSTAT_FREEBSD12 = 551
constant SYS_FSTATAT_FREEBSD12 (line 22) | SYS_FSTATAT_FREEBSD12 = 552
constant SYS_GETDIRENTRIES_FREEBSD12 (line 23) | SYS_GETDIRENTRIES_FREEBSD12 = 554
constant SYS_STATFS_FREEBSD12 (line 24) | SYS_STATFS_FREEBSD12 = 555
constant SYS_FSTATFS_FREEBSD12 (line 25) | SYS_FSTATFS_FREEBSD12 = 556
constant SYS_GETFSSTAT_FREEBSD12 (line 26) | SYS_GETFSSTAT_FREEBSD12 = 557
constant SYS_MKNODAT_FREEBSD12 (line 27) | SYS_MKNODAT_FREEBSD12 = 559
constant _ino64First (line 37) | _ino64First = 1200031
function supportsABI (line 41) | func supportsABI(ver uint32) bool {
type SockaddrDatalink (line 47) | type SockaddrDatalink struct
function nametomib (line 60) | func nametomib(name string) (mib []_C_int, err error) {
function direntIno (line 87) | func direntIno(buf []byte) (uint64, bool) {
function direntReclen (line 91) | func direntReclen(buf []byte) (uint64, bool) {
function direntNamlen (line 95) | func direntNamlen(buf []byte) (uint64, bool) {
function Pipe (line 99) | func Pipe(p []int) (err error) {
function Pipe2 (line 105) | func Pipe2(p []int, flags int) error {
function GetsockoptIPMreqn (line 116) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) {
function SetsockoptIPMreqn (line 123) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) {
function Accept4 (line 127) | func Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) {
constant ImplementsGetwd (line 145) | ImplementsGetwd = true
function Getwd (line 149) | func Getwd() (string, error) {
function Getfsstat (line 162) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
function setattrlistTimes (line 199) | func setattrlistTimes(path string, times []Timespec, flags int) error {
function Uname (line 206) | func Uname(uname *Utsname) error {
function Stat (line 252) | func Stat(path string, st *Stat_t) (err error) {
function Lstat (line 266) | func Lstat(path string, st *Stat_t) (err error) {
function Fstat (line 280) | func Fstat(fd int, st *Stat_t) (err error) {
function Fstatat (line 294) | func Fstatat(fd int, path string, st *Stat_t, flags int) (err error) {
function Statfs (line 308) | func Statfs(path string, st *Statfs_t) (err error) {
function Fstatfs (line 322) | func Fstatfs(fd int, st *Statfs_t) (err error) {
function Getdents (line 336) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getdirentries (line 340) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function Mknod (line 370) | func Mknod(path string, mode uint32, dev uint64) (err error) {
function Mknodat (line 379) | func Mknodat(fd int, path string, mode uint32, dev uint64) (err error) {
function roundup (line 392) | func roundup(x, y int) int {
method convertFrom (line 396) | func (s *Stat_t) convertFrom(old *stat_freebsd11_t) {
method convertFrom (line 417) | func (s *Statfs_t) convertFrom(old *statfs_freebsd11_t) {
function convertFromDirents11 (line 456) | func convertFromDirents11(buf []byte, old []byte) int {
function Sendfile (line 494) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in...
function PtraceAttach (line 503) | func PtraceAttach(pid int) (err error) {
function PtraceCont (line 507) | func PtraceCont(pid int, signal int) (err error) {
function PtraceDetach (line 511) | func PtraceDetach(pid int) (err error) {
function PtraceGetFpRegs (line 515) | func PtraceGetFpRegs(pid int, fpregsout *FpReg) (err error) {
function PtraceGetFsBase (line 519) | func PtraceGetFsBase(pid int, fsbase *int64) (err error) {
function PtraceGetRegs (line 523) | func PtraceGetRegs(pid int, regsout *Reg) (err error) {
function PtraceIO (line 527) | func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (...
function PtraceLwpEvents (line 533) | func PtraceLwpEvents(pid int, enable int) (err error) {
function PtraceLwpInfo (line 537) | func PtraceLwpInfo(pid int, info uintptr) (err error) {
function PtracePeekData (line 541) | func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err e...
function PtracePeekText (line 545) | func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err e...
function PtracePokeData (line 549) | func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err ...
function PtracePokeText (line 553) | func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err ...
function PtraceSetRegs (line 557) | func PtraceSetRegs(pid int, regs *Reg) (err error) {
function PtraceSingleStep (line 561) | func PtraceSingleStep(pid int) (err error) {
FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
function setTimespec (line 14) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 18) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 22) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 28) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 32) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 36) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) {
function sendfile (line 44) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Syscall9 (line 56) | 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 setTimespec (line 14) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 18) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 22) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 28) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 32) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 36) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) {
function sendfile (line 44) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Syscall9 (line 56) | 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 setTimespec (line 14) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 18) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 22) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 28) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 32) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 36) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) {
function sendfile (line 44) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Syscall9 (line 56) | 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_arm64.go
function setTimespec (line 14) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 18) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 22) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 28) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 32) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 36) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) {
function sendfile (line 44) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Syscall9 (line 56) | 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 25) | func Access(path string, mode uint32) (err error) {
function Chmod (line 29) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 33) | func Chown(path string, uid int, gid int) (err error) {
function Creat (line 37) | func Creat(path string, mode uint32) (fd int, err error) {
function FanotifyMark (line 44) | func FanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname s...
function Fchmodat (line 57) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function IoctlRetInt (line 77) | func IoctlRetInt(fd int, req uint) (int, error) {
function IoctlSetPointerInt (line 89) | func IoctlSetPointerInt(fd int, req uint, value int) error {
function IoctlSetRTCTime (line 94) | func IoctlSetRTCTime(fd int, value *RTCTime) error {
function IoctlGetUint32 (line 100) | func IoctlGetUint32(fd int, req uint) (uint32, error) {
function IoctlGetRTCTime (line 106) | func IoctlGetRTCTime(fd int) (*RTCTime, error) {
function Link (line 114) | func Link(oldpath string, newpath string) (err error) {
function Mkdir (line 118) | func Mkdir(path string, mode uint32) (err error) {
function Mknod (line 122) | func Mknod(path string, mode uint32, dev int) (err error) {
function Open (line 126) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 132) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function Ppoll (line 138) | func Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, e...
function Readlink (line 147) | func Readlink(path string, buf []byte) (n int, err error) {
function Rename (line 151) | func Rename(oldpath string, newpath string) (err error) {
function Rmdir (line 155) | func Rmdir(path string) error {
function Symlink (line 161) | func Symlink(oldpath string, newpath string) (err error) {
function Unlink (line 165) | func Unlink(path string) error {
function Utimes (line 171) | func Utimes(path string, tv []Timeval) error {
function UtimesNano (line 194) | func UtimesNano(path string, ts []Timespec) error {
function UtimesNanoAt (line 218) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {
function Futimesat (line 228) | func Futimesat(dirfd int, path string, tv []Timeval) error {
function Futimes (line 238) | func Futimes(fd int, tv []Timeval) (err error) {
constant ImplementsGetwd (line 244) | ImplementsGetwd = true
function Getwd (line 248) | func Getwd() (wd string, err error) {
function Getgroups (line 261) | func Getgroups() (gids []int, err error) {
function Setgroups (line 287) | func Setgroups(gids []int) (err error) {
type WaitStatus (line 299) | type WaitStatus
method Exited (line 318) | func (w WaitStatus) Exited() bool { return w&mask == exited }
method Signaled (line 320) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma...
method Stopped (line 322) | func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
method Continued (line 324) | func (w WaitStatus) Continued() bool { return w == 0xFFFF }
method CoreDump (line 326) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=...
method ExitStatus (line 328) | func (w WaitStatus) ExitStatus() int {
method Signal (line 335) | func (w WaitStatus) Signal() syscall.Signal {
method StopSignal (line 342) | func (w WaitStatus) StopSignal() syscall.Signal {
method TrapCause (line 349) | func (w WaitStatus) TrapCause() int {
constant mask (line 311) | mask = 0x7F
constant core (line 312) | core = 0x80
constant exited (line 313) | exited = 0x00
constant stopped (line 314) | stopped = 0x7F
constant shift (line 315) | shift = 8
function Wait4 (line 358) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w...
function Mkfifo (line 367) | func Mkfifo(path string, mode uint32) error {
function Mkfifoat (line 371) | func Mkfifoat(dirfd int, path string, mode uint32) error {
method sockaddr (line 375) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 389) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 404) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrLinklayer (line 429) | type SockaddrLinklayer struct
method sockaddr (line 439) | func (sa *SockaddrLinklayer) sockaddr() (unsafe.Pointer, _Socklen, err...
type SockaddrNetlink (line 456) | type SockaddrNetlink struct
method sockaddr (line 464) | func (sa *SockaddrNetlink) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrHCI (line 474) | type SockaddrHCI struct
method sockaddr (line 480) | func (sa *SockaddrHCI) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrL2 (line 489) | type SockaddrL2 struct
method sockaddr (line 497) | func (sa *SockaddrL2) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrRFCOMM (line 535) | type SockaddrRFCOMM struct
method sockaddr (line 546) | func (sa *SockaddrRFCOMM) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrCAN (line 570) | type SockaddrCAN struct
method sockaddr (line 577) | func (sa *SockaddrCAN) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrALG (line 657) | type SockaddrALG struct
method sockaddr (line 665) | func (sa *SockaddrALG) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrVM (line 697) | type SockaddrVM struct
method sockaddr (line 707) | func (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrXDP (line 715) | type SockaddrXDP struct
method sockaddr (line 723) | func (sa *SockaddrXDP) sockaddr() (unsafe.Pointer, _Socklen, error) {
constant px_proto_oe (line 740) | px_proto_oe = 0
type SockaddrPPPoE (line 742) | type SockaddrPPPoE struct
method sockaddr (line 749) | func (sa *SockaddrPPPoE) sockaddr() (unsafe.Pointer, _Socklen, error) {
type SockaddrTIPC (line 780) | type SockaddrTIPC struct
method sockaddr (line 829) | func (sa *SockaddrTIPC) sockaddr() (unsafe.Pointer, _Socklen, error) {
type TIPCAddr (line 800) | type TIPCAddr interface
method tipcAddr (line 805) | func (sa *TIPCSocketAddr) tipcAddr() [12]byte {
method tipcAddrtype (line 811) | func (sa *TIPCSocketAddr) tipcAddrtype() uint8 { return TIPC_SOCKET_ADDR }
method tipcAddr (line 813) | func (sa *TIPCServiceRange) tipcAddr() [12]byte {
method tipcAddrtype (line 819) | func (sa *TIPCServiceRange) tipcAddrtype() uint8 { return TIPC_SERVICE_R...
method tipcAddr (line 821) | func (sa *TIPCServiceName) tipcAddr() [12]byte {
method tipcAddrtype (line 827) | func (sa *TIPCServiceName) tipcAddrtype() uint8 { return TIPC_SERVICE_AD...
function anyToSockaddr (line 842) | func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
function Accept (line 993) | func Accept(fd int) (nfd int, sa Sockaddr, err error) {
function Accept4 (line 1008) | func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) {
function Getsockname (line 1026) | func Getsockname(fd int) (sa Sockaddr, err error) {
function GetsockoptIPMreqn (line 1035) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) {
function GetsockoptUcred (line 1042) | func GetsockoptUcred(fd, level, opt int) (*Ucred, error) {
function GetsockoptTCPInfo (line 1049) | func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) {
function GetsockoptString (line 1058) | func GetsockoptString(fd, level, opt int) (string, error) {
function GetsockoptTpacketStats (line 1074) | func GetsockoptTpacketStats(fd, level, opt int) (*TpacketStats, error) {
function GetsockoptTpacketStatsV3 (line 1081) | func GetsockoptTpacketStatsV3(fd, level, opt int) (*TpacketStatsV3, erro...
function SetsockoptIPMreqn (line 1088) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) {
function SetsockoptPacketMreq (line 1092) | func SetsockoptPacketMreq(fd, level, opt int, mreq *PacketMreq) error {
function SetsockoptSockFprog (line 1098) | func SetsockoptSockFprog(fd, level, opt int, fprog *SockFprog) error {
function SetsockoptCanRawFilter (line 1102) | func SetsockoptCanRawFilter(fd, level, opt int, filter []CanFilter) error {
function SetsockoptTpacketReq (line 1110) | func SetsockoptTpacketReq(fd, level, opt int, tp *TpacketReq) error {
function SetsockoptTpacketReq3 (line 1114) | func SetsockoptTpacketReq3(fd, level, opt int, tp *TpacketReq3) error {
function KeyctlString (line 1134) | func KeyctlString(cmd int, id int) (string, error) {
function KeyctlGetKeyringID (line 1163) | func KeyctlGetKeyringID(id int, create bool) (ringid int, err error) {
function KeyctlSetperm (line 1176) | func KeyctlSetperm(id int, perm uint32) error {
function KeyctlJoinSessionKeyring (line 1186) | func KeyctlJoinSessionKeyring(name string) (ringid int, err error) {
function KeyctlSearch (line 1195) | func KeyctlSearch(ringid int, keyType, description string, destRingid in...
function KeyctlInstantiateIOV (line 1206) | func KeyctlInstantiateIOV(id int, payload []Iovec, ringid int) error {
function KeyctlDHCompute (line 1221) | func KeyctlDHCompute(params *KeyctlDHParams, buffer []byte) (size int, e...
function KeyctlRestrictKeyring (line 1243) | func KeyctlRestrictKeyring(ringid int, keyType string, restriction strin...
function Recvmsg (line 1253) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i...
function Sendmsg (line 1294) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {
function SendmsgN (line 1299) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err...
function BindToDevice (line 1346) | func BindToDevice(fd int, device string) (err error) {
function ptracePeek (line 1352) | func ptracePeek(req int, pid int, addr uintptr, out []byte) (count int, ...
function PtracePeekText (line 1392) | func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err e...
function PtracePeekData (line 1396) | func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err e...
function PtracePeekUser (line 1400) | func PtracePeekUser(pid int, addr uintptr, out []byte) (count int, err e...
function ptracePoke (line 1404) | func ptracePoke(pokeReq int, peekReq int, pid int, addr uintptr, data []...
function PtracePokeText (line 1455) | func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err ...
function PtracePokeData (line 1459) | func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err ...
function PtracePokeUser (line 1463) | func PtracePokeUser(pid int, addr uintptr, data []byte) (count int, err ...
function PtraceGetRegs (line 1467) | func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) {
function PtraceSetRegs (line 1471) | func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) {
function PtraceSetOptions (line 1475) | func PtraceSetOptions(pid int, options int) (err error) {
function PtraceGetEventMsg (line 1479) | func PtraceGetEventMsg(pid int) (msg uint, err error) {
function PtraceCont (line 1486) | func PtraceCont(pid int, signal int) (err error) {
function PtraceSyscall (line 1490) | func PtraceSyscall(pid int, signal int) (err error) {
function PtraceSingleStep (line 1494) | func PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLE...
function PtraceAttach (line 1496) | func PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pi...
function PtraceDetach (line 1498) | func PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pi...
function Reboot (line 1502) | func Reboot(cmd int) (err error) {
function direntIno (line 1506) | func direntIno(buf []byte) (uint64, bool) {
function direntReclen (line 1510) | func direntReclen(buf []byte) (uint64, bool) {
function direntNamlen (line 1514) | func direntNamlen(buf []byte) (uint64, bool) {
function Mount (line 1524) | func Mount(source string, target string, fstype string, flags uintptr, d...
function Sendfile (line 1537) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Getpgrp (line 1586) | func Getpgrp() (pid int) {
function Setuid (line 1635) | func Setuid(uid int) (err error) {
function Setgid (line 1639) | func Setgid(uid int) (err error) {
function Signalfd (line 1643) | func Signalfd(fd int, sigmask *Sigset_t, flags int) (newfd int, err erro...
function Mmap (line 1675) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [...
function Munmap (line 1679) | func Munmap(b []byte) (err error) {
function Vmsplice (line 1693) | func Vmsplice(fd int, iovs []Iovec, flags int) (int, error) {
function Faccessat (line 1709) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
type fileHandle (line 1786) | type fileHandle struct
type FileHandle (line 1794) | type FileHandle struct
method Size (line 1809) | func (fh *FileHandle) Size() int { return int(fh.fileHandle.Bytes) }
method Type (line 1810) | func (fh *FileHandle) Type() int32 { return fh.fileHandle.Type }
method Bytes (line 1811) | func (fh *FileHandle) Bytes() []byte {
function NewFileHandle (line 1799) | func NewFileHandle(handleType int32, handle []byte) FileHandle {
function NameToHandleAt (line 1821) | func NameToHandleAt(dirfd int, path string, flags int) (handle FileHandl...
function OpenByHandleAt (line 1850) | func OpenByHandleAt(mountFD int, handle FileHandle, flags int) (fd int, ...
FILE: vendor/golang.org/x/sys/unix/syscall_linux_386.go
function setTimespec (line 16) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 20) | func setTimeval(sec, usec int64) Timeval {
function Pipe (line 26) | func Pipe(p []int) (err error) {
function Pipe2 (line 39) | func Pipe2(p []int, flags int) (err error) {
function mmap (line 91) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
type rlimit32 (line 99) | type rlimit32 struct
constant rlimInf32 (line 106) | rlimInf32 = ^uint32(0)
constant rlimInf64 (line 107) | rlimInf64 = ^uint64(0)
function Getrlimit (line 109) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Setrlimit (line 137) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Seek (line 162) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
constant _SOCKET (line 185) | _SOCKET = 1
constant _BIND (line 186) | _BIND = 2
constant _CONNECT (line 187) | _CONNECT = 3
constant _LISTEN (line 188) | _LISTEN = 4
constant _ACCEPT (line 189) | _ACCEPT = 5
constant _GETSOCKNAME (line 190) | _GETSOCKNAME = 6
constant _GETPEERNAME (line 191) | _GETPEERNAME = 7
constant _SOCKETPAIR (line 192) | _SOCKETPAIR = 8
constant _SEND (line 193) | _SEND = 9
constant _RECV (line 194) | _RECV = 10
constant _SENDTO (line 195) | _SENDTO = 11
constant _RECVFROM (line 196) | _RECVFROM = 12
constant _SHUTDOWN (line 197) | _SHUTDOWN = 13
constant _SETSOCKOPT (line 198) | _SETSOCKOPT = 14
constant _GETSOCKOPT (line 199) | _GETSOCKOPT = 15
constant _SENDMSG (line 200) | _SENDMSG = 16
constant _RECVMSG (line 201) | _RECVMSG = 17
constant _ACCEPT4 (line 202) | _ACCEPT4 = 18
constant _RECVMMSG (line 203) | _RECVMMSG = 19
constant _SENDMMSG (line 204) | _SENDMMSG = 20
function accept (line 207) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 215) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function getsockname (line 223) | func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err err...
function getpeername (line 231) | func getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err err...
function socketpair (line 239) | func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) {
function bind (line 247) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 255) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function socket (line 263) | func socket(domain int, typ int, proto int) (fd int, err error) {
function getsockopt (line 271) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 279) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function recvfrom (line 287) | func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen ...
function sendto (line 299) | func sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Sock...
function recvmsg (line 311) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 319) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function Listen (line 327) | func Listen(s int, n int) (err error) {
function Shutdown (line 335) | func Shutdown(s, how int) (err error) {
function Fstatfs (line 343) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Statfs (line 351) | func Statfs(path string, buf *Statfs_t) (err error) {
method PC (line 363) | func (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) }
method SetPC (line 365) | func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) }
method SetLen (line 367) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 371) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 375) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 379) | func (cmsg *Cmsghdr) SetLen(length int) {
function Poll (line 385) | func Poll(fds []PollFd, timeout int) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/syscall_linux_amd64.go
function InotifyInit (line 25) | func InotifyInit() (fd int, err error) {
function Lstat (line 39) | func Lstat(path string, stat *Stat_t) (err error) {
function Select (line 49) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function Stat (line 68) | func Stat(path string, stat *Stat_t) (err error) {
function Gettimeofday (line 97) | func Gettimeofday(tv *Timeval) (err error) {
function Time (line 105) | func Time(t *Time_t) (tt Time_t, err error) {
function setTimespec (line 120) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 124) | func setTimeval(sec, usec int64) Timeval {
function Pipe (line 130) | func Pipe(p []int) (err error) {
function Pipe2 (line 143) | func Pipe2(p []int, flags int) (err error) {
method PC (line 154) | func (r *PtraceRegs) PC() uint64 { return r.Rip }
method SetPC (line 156) | func (r *PtraceRegs) SetPC(pc uint64) { r.Rip = pc }
method SetLen (line 158) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 162) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 166) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 170) | func (cmsg *Cmsghdr) SetLen(length int) {
function Poll (line 176) | func Poll(fds []PollFd, timeout int) (n int, err error) {
function KexecFileLoad (line 185) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int...
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 setTimespec (line 14) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 18) | func setTimeval(sec, usec int64) Timeval {
function Pipe (line 24) | func Pipe(p []int) (err error) {
function Pipe2 (line 41) | func Pipe2(p []int, flags int) (err error) {
function seek (line 54) | func seek(fd int, offset int64, whence int) (newoffset int64, err syscal...
function Seek (line 56) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Time (line 115) | func Time(t *Time_t) (Time_t, error) {
function Utime (line 127) | func Utime(path string, buf *Utimbuf) error {
function Fadvise (line 142) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fstatfs (line 152) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Statfs (line 160) | func Statfs(path string, buf *Statfs_t) (err error) {
function mmap (line 172) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
type rlimit32 (line 180) | type rlimit32 struct
constant rlimInf32 (line 187) | rlimInf32 = ^uint32(0)
constant rlimInf64 (line 188) | rlimInf64 = ^uint64(0)
function Getrlimit (line 190) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Setrlimit (line 218) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
method PC (line 243) | func (r *PtraceRegs) PC() uint64 { return uint64(r.Uregs[15]) }
method SetPC (line 245) | func (r *PtraceRegs) SetPC(pc uint64) { r.Uregs[15] = uint32(pc) }
method SetLen (line 247) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 251) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 255) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 259) | func (cmsg *Cmsghdr) SetLen(length int) {
function Poll (line 265) | func Poll(fds []PollFd, timeout int) (n int, err error) {
function SyncFileRange (line 274) | func SyncFileRange(fd int, off int64, n int64, flags int) error {
function KexecFileLoad (line 282) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int...
FILE: vendor/golang.org/x/sys/unix/syscall_linux_arm64.go
function EpollCreate (line 11) | func EpollCreate(size int) (fd int, err error) {
function Select (line 36) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function Stat (line 55) | func Stat(path string, stat *Stat_t) (err error) {
function Lchown (line 59) | func Lchown(path string, uid int, gid int) (err error) {
function Lstat (line 63) | func Lstat(path string, stat *Stat_t) (err error) {
function Ustat (line 71) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function setTimespec (line 95) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 99) | func setTimeval(sec, usec int64) Timeval {
function futimesat (line 103) | func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
function Time (line 115) | func Time(t *Time_t) (Time_t, error) {
function Utime (line 127) | func Utime(path string, buf *Utimbuf) error {
function utimes (line 135) | func utimes(path string, tv *[2]Timeval) (err error) {
function Pipe (line 147) | func Pipe(p []int) (err error) {
function Pipe2 (line 160) | func Pipe2(p []int, flags int) (err error) {
method PC (line 171) | func (r *PtraceRegs) PC() uint64 { return r.Pc }
method SetPC (line 173) | func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
method SetLen (line 175) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 179) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 183) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 187) | func (cmsg *Cmsghdr) SetLen(length int) {
function InotifyInit (line 191) | func InotifyInit() (fd int, err error) {
function Dup2 (line 195) | func Dup2(oldfd int, newfd int) (err error) {
function Pause (line 199) | func Pause() error {
function Poll (line 204) | func Poll(fds []PollFd, timeout int) (n int, err error) {
function KexecFileLoad (line 218) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int...
FILE: vendor/golang.org/x/sys/unix/syscall_linux_gc.go
function SyscallNoError (line 10) | func SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr)
function RawSyscallNoError (line 14) | func RawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr)
FILE: vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
function seek (line 13) | func seek(fd int, offset int64, whence int) (newoffset int64, err syscal...
function socketcall (line 15) | func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err sy...
function rawsocketcall (line 16) | func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err...
FILE: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go
function seek (line 14) | func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
function socketcall (line 22) | func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall....
function rawsocketcall (line 27) | func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, sysca...
FILE: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go
function seek (line 14) | func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
FILE: vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go
function Select (line 30) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function Time (line 73) | func Time(t *Time_t) (tt Time_t, err error) {
function setTimespec (line 88) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 92) | func setTimeval(sec, usec int64) Timeval {
function Pipe (line 96) | func Pipe(p []int) (err error) {
function Pipe2 (line 109) | func Pipe2(p []int, flags int) (err error) {
function Ioperm (line 120) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 124) | func Iopl(level int) (err error) {
type stat_t (line 128) | type stat_t struct
function Fstat (line 155) | func Fstat(fd int, s *Stat_t) (err error) {
function Fstatat (line 162) | func Fstatat(dirfd int, path string, s *Stat_t, flags int) (err error) {
function Lstat (line 169) | func Lstat(path string, s *Stat_t) (err error) {
function Stat (line 176) | func Stat(path string, s *Stat_t) (err error) {
function fillStat_t (line 183) | func fillStat_t(s *Stat_t, st *stat_t) {
method PC (line 199) | func (r *PtraceRegs) PC() uint64 { return r.Epc }
method SetPC (line 201) | func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc }
method SetLen (line 203) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 207) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 211) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 215) | func (cmsg *Cmsghdr) SetLen(length int) {
function Poll (line 221) | 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 79) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Statfs (line 87) | func Statfs(path string, buf *Statfs_t) (err error) {
function Seek (line 99) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function setTimespec (line 107) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 111) | func setTimeval(sec, usec int64) Timeval {
function Pipe2 (line 117) | func Pipe2(p []int, flags int) (err error) {
function Pipe (line 130) | func Pipe(p []int) (err error) {
function mmap (line 140) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
constant rlimInf32 (line 148) | rlimInf32 = ^uint32(0)
constant rlimInf64 (line 149) | rlimInf64 = ^uint64(0)
type rlimit32 (line 151) | type rlimit32 struct
function Getrlimit (line 158) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Setrlimit (line 186) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
method PC (line 211) | func (r *PtraceRegs) PC() uint64 { return r.Epc }
method SetPC (line 213) | func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc }
method SetLen (line 215) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 219) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 223) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 227) | func (cmsg *Cmsghdr) SetLen(length int) {
function Poll (line 233) | func Poll(fds []PollFd, timeout int) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go
function setTimespec (line 74) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 78) | func setTimeval(sec, usec int64) Timeval {
method PC (line 82) | func (r *PtraceRegs) PC() uint64 { return r.Nip }
method SetPC (line 84) | func (r *PtraceRegs) SetPC(pc uint64) { r.Nip = pc }
method SetLen (line 86) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 90) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 94) | func (msghdr *Msghdr) SetIovlen(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) {
function SyncFileRange (line 139) | func SyncFileRange(fd int, off int64, n int64, flags int) error {
function KexecFileLoad (line 147) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int...
FILE: vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
function EpollCreate (line 11) | func EpollCreate(size int) (fd int, err error) {
function Select (line 35) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function Stat (line 54) | func Stat(path string, stat *Stat_t) (err error) {
function Lchown (line 58) | func Lchown(path string, uid int, gid int) (err error) {
function Lstat (line 62) | func Lstat(path string, stat *Stat_t) (err error) {
function Ustat (line 70) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function setTimespec (line 94) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 98) | func setTimeval(sec, usec int64) Timeval {
function futimesat (line 102) | func futimesat(dirfd int, path string, tv *[2]Timeval) (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 utimes (line 134) | func utimes(path string, tv *[2]Timeval) (err error) {
function Pipe (line 146) | func Pipe(p []int) (err error) {
function Pipe2 (line 159) | func Pipe2(p []int, flags int) (err error) {
method PC (line 170) | func (r *PtraceRegs) PC() uint64 { return r.Pc }
method SetPC (line 172) | func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
method SetLen (line 174) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 178) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 182) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 186) | func (cmsg *Cmsghdr) SetLen(length int) {
function InotifyInit (line 190) | func InotifyInit() (fd int, err error) {
function Dup2 (line 194) | func Dup2(oldfd int, newfd int) (err error) {
function Pause (line 198) | func Pause() error {
function Poll (line 203) | func Poll(fds []PollFd, timeout int) (n int, err error) {
function Renameat (line 215) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function KexecFileLoad (line 221) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int...
FILE: vendor/golang.org/x/sys/unix/syscall_linux_s390x.go
function Time (line 56) | func Time(t *Time_t) (tt Time_t, err error) {
function setTimespec (line 71) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 75) | func setTimeval(sec, usec int64) Timeval {
function Pipe (line 81) | func Pipe(p []int) (err error) {
function Pipe2 (line 92) | func Pipe2(p []int, flags int) (err error) {
function Ioperm (line 103) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 107) | func Iopl(level int) (err error) {
method PC (line 111) | func (r *PtraceRegs) PC() uint64 { return r.Psw.Addr }
method SetPC (line 113) | func (r *PtraceRegs) SetPC(pc uint64) { r.Psw.Addr = pc }
method SetLen (line 115) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 119) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 123) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 127) | func (cmsg *Cmsghdr) SetLen(length int) {
function mmap (line 133) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
constant netSocket (line 148) | netSocket = 1
constant netBind (line 149) | netBind = 2
constant netConnect (line 150) | netConnect = 3
constant netListen (line 151) | netListen = 4
constant netAccept (line 152) | netAccept = 5
constant netGetSockName (line 153) | netGetSockName = 6
constant netGetPeerName (line 154) | netGetPeerName = 7
constant netSocketPair (line 155) | netSocketPair = 8
constant netSend (line 156) | netSend = 9
constant netRecv (line 157) | netRecv = 10
constant netSendTo (line 158) | netSendTo = 11
constant netRecvFrom (line 159) | netRecvFrom = 12
constant netShutdown (line 160) | netShutdown = 13
constant netSetSockOpt (line 161) | netSetSockOpt = 14
constant netGetSockOpt (line 162) | netGetSockOpt = 15
constant netSendMsg (line 163) | netSendMsg = 16
constant netRecvMsg (line 164) | netRecvMsg = 17
constant netAccept4 (line 165) | netAccept4 = 18
constant netRecvMMsg (line 166) | netRecvMMsg = 19
constant netSendMMsg (line 167) | netSendMMsg = 20
function accept (line 170) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (int, error) {
function accept4 (line 179) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function getsockname (line 188) | func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error {
function getpeername (line 197) | func getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error {
function socketpair (line 206) | func socketpair(domain int, typ int, flags int, fd *[2]int32) error {
function bind (line 215) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) error {
function connect (line 224) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) error {
function socket (line 233) | func socket(domain int, typ int, proto int) (int, error) {
function getsockopt (line 242) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 251) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function recvfrom (line 260) | func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen ...
function sendto (line 273) | func sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Sock...
function recvmsg (line 286) | func recvmsg(s int, msg *Msghdr, flags int) (int, error) {
function sendmsg (line 295) | func sendmsg(s int, msg *Msghdr, flags int) (int, error) {
function Listen (line 304) | func Listen(s int, n int) error {
function Shutdown (line 313) | func Shutdown(s, how int) error {
function Poll (line 324) | func Poll(fds []PollFd, timeout int) (n int, err error) {
function KexecFileLoad (line 333) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int...
FILE: vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go
function Ioperm (line 64) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 68) | func Iopl(level int) (err error) {
function Time (line 75) | func Time(t *Time_t) (tt Time_t, err error) {
function setTimespec (line 90) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 94) | func setTimeval(sec, usec int64) Timeval {
method PC (line 98) | func (r *PtraceRegs) PC() uint64 { return r.Tpc }
method SetPC (line 100) | func (r *PtraceRegs) SetPC(pc uint64) { r.Tpc = pc }
method SetLen (line 102) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 106) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 110) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 114) | func (cmsg *Cmsghdr) SetLen(length int) {
function Pipe (line 120) | func Pipe(p []int) (err error) {
function Pipe2 (line 133) | func Pipe2(p []int, flags int) (err error) {
function Poll (line 146) | func Poll(fds []PollFd, timeout int) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/syscall_netbsd.go
type SockaddrDatalink (line 24) | type SockaddrDatalink struct
function Syscall9 (line 36) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ...
function sysctlNodes (line 38) | func sysctlNodes(mib []_C_int) (nodes []Sysctlnode, err error) {
function nametomib (line 61) | func nametomib(name string) (mib []_C_int, err error) {
function direntIno (line 99) | func direntIno(buf []byte) (uint64, bool) {
function direntReclen (line 103) | func direntReclen(buf []byte) (uint64, bool) {
function direntNamlen (line 107) | func direntNamlen(buf []byte) (uint64, bool) {
function SysctlClockinfo (line 111) | func SysctlClockinfo(name string) (*Clockinfo, error) {
function Pipe (line 129) | func Pipe(p []int) (err error) {
function Getdirentries (line 138) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
constant ImplementsGetwd (line 163) | ImplementsGetwd = true
function Getwd (line 167) | func Getwd() (string, error) {
function sendfile (line 181) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function setattrlistTimes (line 185) | func setattrlistTimes(path string, times []Timespec, flags int) error {
function IoctlGetPtmget (line 192) | func IoctlGetPtmget(fd int, req uint) (*Ptmget, error) {
function Uname (line 199) | func Uname(uname *Utsname) error {
function Sendfile (line 245) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in...
FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_386.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 17) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 23) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 27) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 31) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 35) | func (cmsg *Cmsghdr) SetLen(length int) {
FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 17) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 23) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 27) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 31) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 35) | func (cmsg *Cmsghdr) SetLen(length int) {
FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 17) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 23) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 27) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 31) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 35) | func (cmsg *Cmsghdr) SetLen(length int) {
FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 17) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 23) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 27) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 31) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 35) | func (cmsg *Cmsghdr) SetLen(length int) {
FILE: vendor/golang.org/x/sys/unix/syscall_openbsd.go
type SockaddrDatalink (line 24) | type SockaddrDatalink struct
function Syscall9 (line 36) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ...
function nametomib (line 38) | func nametomib(name string) (mib []_C_int, err error) {
function direntIno (line 48) | func direntIno(buf []byte) (uint64, bool) {
function direntReclen (line 52) | func direntReclen(buf []byte) (uint64, bool) {
function direntNamlen (line 56) | func direntNamlen(buf []byte) (uint64, bool) {
function SysctlClockinfo (line 60) | func SysctlClockinfo(name string) (*Clockinfo, error) {
function SysctlUvmexp (line 77) | func SysctlUvmexp(name string) (*Uvmexp, error) {
function Pipe (line 95) | func Pipe(p []int) (err error) {
function Getdirentries (line 107) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
constant ImplementsGetwd (line 132) | ImplementsGetwd = true
function Getwd (line 136) | func Getwd() (string, error) {
function Sendfile (line 149) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in...
function sendfile (line 157) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Getfsstat (line 161) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
function setattrlistTimes (line 176) | func setattrlistTimes(path string, times []Timespec, flags int) error {
function Ppoll (line 185) | func Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, e...
function Uname (line 192) | func Uname(uname *Utsname) error {
FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_386.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 17) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 23) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 27) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 31) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 35) | func (cmsg *Cmsghdr) SetLen(length int) {
constant SYS___SYSCTL (line 41) | SYS___SYSCTL = SYS_SYSCTL
FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 17) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 23) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 27) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 31) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 35) | func (cmsg *Cmsghdr) SetLen(length int) {
constant SYS___SYSCTL (line 41) | SYS___SYSCTL = SYS_SYSCTL
FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 17) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 23) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 27) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 31) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 35) | func (cmsg *Cmsghdr) SetLen(length int) {
constant SYS___SYSCTL (line 41) | SYS___SYSCTL = SYS_SYSCTL
FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
function SetKevent (line 17) | func SetKevent(k *Kevent_t, fd, mode, flags int) {
method SetLen (line 23) | func (iov *Iovec) SetLen(length int) {
method SetControllen (line 27) | func (msghdr *Msghdr) SetControllen(length int) {
method SetIovlen (line 31) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 35) | func (cmsg *Cmsghdr) SetLen(length int) {
constant SYS___SYSCTL (line 41) | SYS___SYSCTL = SYS_SYSCTL
FILE: vendor/golang.org/x/sys/unix/syscall_solaris.go
type syscallFunc (line 21) | type syscallFunc
function rawSysvicall6 (line 23) | func rawSysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 ...
function sysvicall6 (line 24) | func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uin...
type SockaddrDatalink (line 27) | type SockaddrDatalink struct
function direntIno (line 38) | func direntIno(buf []byte) (uint64, bool) {
function direntReclen (line 42) | func direntReclen(buf []byte) (uint64, bool) {
function direntNamlen (line 46) | func direntNamlen(buf []byte) (uint64, bool) {
function Pipe (line 56) | func Pipe(p []int) (err error) {
method sockaddr (line 70) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 84) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {
method sockaddr (line 99) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
function Getsockname (line 125) | func Getsockname(fd int) (sa Sockaddr, err error) {
function GetsockoptString (line 136) | func GetsockoptString(fd, level, opt int) (string, error) {
constant ImplementsGetwd (line 146) | ImplementsGetwd = true
function Getwd (line 150) | func Getwd() (wd string, err error) {
function Getgroups (line 171) | func Getgroups() (gids []int, err error) {
function Setgroups (line 196) | func Setgroups(gids []int) (err error) {
function ReadDirent (line 209) | func ReadDirent(fd int, buf []byte) (n int, err error) {
type WaitStatus (line 221) | type WaitStatus
method Exited (line 232) | func (w WaitStatus) Exited() bool { return w&mask == exited }
method ExitStatus (line 234) | func (w WaitStatus) ExitStatus() int {
method Signaled (line 241) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma...
method Signal (line 243) | func (w WaitStatus) Signal() syscall.Signal {
method CoreDump (line 251) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=...
method Stopped (line 253) | func (w WaitStatus) Stopped() bool { return w&mask == stopped && sysca...
method Continued (line 255) | func (w WaitStatus) Continued() bool { return w&mask == stopped && sys...
method StopSignal (line 257) | func (w WaitStatus) StopSignal() syscall.Signal {
method TrapCause (line 264) | func (w WaitStatus) TrapCause() int { return -1 }
constant mask (line 224) | mask = 0x7F
constant core (line 225) | core = 0x80
constant shift (line 226) | shift = 8
constant exited (line 228) | exited = 0
constant stopped (line 229) | stopped = 0x7F
function Wait4 (line 268) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (i...
function Gethostname (line 283) | func Gethostname() (name string, err error) {
function Utimes (line 298) | func Utimes(path string, tv []Timeval) (err error) {
function UtimesNano (line 310) | func UtimesNano(path string, ts []Timespec) error {
function UtimesNanoAt (line 320) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {
function FcntlInt (line 333) | func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
function FcntlFlock (line 343) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
function Futimesat (line 353) | func Futimesat(dirfd int, path string, tv []Timeval) error {
function Futimes (line 370) | func Futimes(fd int, tv []Timeval) error {
function anyToSockaddr (line 380) | func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
function Accept (line 424) | func Accept(fd int) (nfd int, sa Sockaddr, err error) {
function Recvmsg (line 441) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i...
function Sendmsg (line 473) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {
function SendmsgN (line 480) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err...
function Acct (line 519) | func Acct(path string) (err error) {
function Mkdev (line 534) | func Mkdev(major, minor uint32) uint64 {
function Major (line 540) | func Major(dev uint64) uint32 {
function Minor (line 546) | func Minor(dev uint64) uint32 {
function IoctlSetTermio (line 556) | func IoctlSetTermio(fd int, req uint, value *Termio) (err error) {
function IoctlGetTermio (line 560) | func IoctlGetTermio(fd int, req uint) (*Termio, error) {
function Poll (line 568) | func Poll(fds []PollFd, timeout int) (n int, err error) {
function Sendfile (line 575) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in...
function readlen (line 694) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 703) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function Mmap (line 718) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [...
function Munmap (line 722) | func Munmap(b []byte) (err error) {
FILE: vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go
function setTimespec (line 9) | func setTimespec(sec, nsec int64) Timespec {
function setTimeval (line 13) | func setTimeval(sec, usec int64) Timeval {
method SetLen (line 17) | func (iov *Iovec) SetLen(length int) {
method SetIovlen (line 21) | func (msghdr *Msghdr) SetIovlen(length int) {
method SetLen (line 25) | func (cmsg *Cmsghdr) SetLen(length int) {
FILE: vendor/golang.org/x/sys/unix/syscall_unix.go
function errnoErr (line 38) | func errnoErr(e syscall.Errno) error {
function ErrnoName (line 53) | func ErrnoName(e syscall.Errno) string {
function SignalName (line 64) | func SignalName(s syscall.Signal) string {
function SignalNum (line 77) | func SignalNum(s string) syscall.Signal {
function clen (line 88) | func clen(n []byte) int {
type mmapper (line 98) | type mmapper struct
method Mmap (line 105) | func (m *mmapper) Mmap(fd int, offset int64, length int, prot int, fla...
method Munmap (line 134) | func (m *mmapper) Munmap(data []byte) (err error) {
function Read (line 156) | func Read(fd int, p []byte) (n int, err error) {
function Write (line 169) | func Write(fd int, p []byte) (n int, err error) {
type Sockaddr (line 185) | type Sockaddr interface
type SockaddrInet4 (line 190) | type SockaddrInet4 struct
type SockaddrInet6 (line 197) | type SockaddrInet6 struct
type SockaddrUnix (line 205) | type SockaddrUnix struct
function Bind (line 210) | func Bind(fd int, sa Sockaddr) (err error) {
function Connect (line 218) | func Connect(fd int, sa Sockaddr) (err error) {
function Getpeername (line 226) | func Getpeername(fd int) (sa Sockaddr, err error) {
function GetsockoptByte (line 235) | func GetsockoptByte(fd, level, opt int) (value byte, err error) {
function GetsockoptInt (line 242) | func GetsockoptInt(fd, level, opt int) (value int, err error) {
function GetsockoptInet4Addr (line 249) | func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error) {
function GetsockoptIPMreq (line 255) | func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error) {
function GetsockoptIPv6Mreq (line 262) | func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error) {
function GetsockoptIPv6MTUInfo (line 269) | func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error) {
function GetsockoptICMPv6Filter (line 276) | func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error) {
function GetsockoptLinger (line 283) | func GetsockoptLinger(fd, level, opt int) (*Linger, error) {
function GetsockoptTimeval (line 290) | func GetsockoptTimeval(fd, level, opt int) (*Timeval, error) {
function GetsockoptUint64 (line 297) | func GetsockoptUint64(fd, level, opt int) (value uint64, err error) {
function Recvfrom (line 304) | func Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err er...
function Sendto (line 316) | func Sendto(fd int, p []byte, flags int, to Sockaddr) (err error) {
function SetsockoptByte (line 324) | func SetsockoptByte(fd, level, opt int, value byte) (err error) {
function SetsockoptInt (line 328) | func SetsockoptInt(fd, level, opt int, value int) (err error) {
function SetsockoptInet4Addr (line 333) | func SetsockoptInet4Addr(fd, level, opt int, value [4]byte) (err error) {
function SetsockoptIPMreq (line 337) | func SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error) {
function SetsockoptIPv6Mreq (line 341) | func SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error) {
function SetsockoptICMPv6Filter (line 345) | func SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) er...
function SetsockoptLinger (line 349) | func SetsockoptLinger(fd, level, opt int, l *Linger) (err error) {
function SetsockoptString (line 353) | func SetsockoptString(fd, level, opt int, s string) (err error) {
function SetsockoptTimeval (line 361) | func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error) {
function SetsockoptUint64 (line 365) | func SetsockoptUint64(fd, level, opt int, value uint64) (err error) {
function Socket (line 369) | func Socket(domain, typ, proto int) (fd int, err error) {
function Socketpair (line 377) | func Socketpair(domain, typ, proto int) (fd [2]int, err error) {
function CloseOnExec (line 389) | func CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) }
function SetNonblock (line 391) | func SetNonblock(fd int, nonblocking bool) (err error) {
function Exec (line 410) | func Exec(argv0 string, argv []string, envv []string) error {
function Lutimes (line 419) | func Lutimes(path string, tv []Timeval) 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/syscall_unix_gc_ppc64x.go
function Syscall (line 13) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errn...
function Syscall6 (line 16) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err...
function RawSyscall (line 19) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E...
function RawSyscall6 (line 22) | func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, ...
FILE: vendor/golang.org/x/sys/unix/timestruct.go
function TimespecToNsec (line 13) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6...
function NsecToTimespec (line 17) | func NsecToTimespec(nsec int64) Timespec {
function TimeToTimespec (line 31) | func TimeToTimespec(t time.Time) (Timespec, error) {
function TimevalToNsec (line 47) | func TimevalToNsec(tv Timeval) int64 { return int64(tv.Sec)*1e9 + int64(...
function NsecToTimeval (line 51) | func NsecToTimeval(nsec int64) Timeval {
method Unix (line 64) | func (ts *Timespec) Unix() (sec int64, nsec int64) {
method Unix (line 70) | func (tv *Timeval) Unix() (sec int64, nsec int64) {
method Nano (line 75) | func (ts *Timespec) Nano() int64 {
method Nano (line 80) | func (tv *Timeval) Nano() int64 {
FILE: vendor/golang.org/x/sys/unix/unveil_openbsd.go
function Unveil (line 16) | func Unveil(path string, flags string) error {
function UnveilBlock (line 34) | func UnveilBlock() error {
FILE: vendor/golang.org/x/sys/unix/xattr_bsd.go
function xattrnamespace (line 16) | func xattrnamespace(fullattr string) (ns int, attr string, err error) {
function initxattrdest (line 35) | func initxattrdest(dest []byte, idx int) (d unsafe.Pointer) {
function Getxattr (line 45) | func Getxattr(file string, attr string, dest []byte) (sz int, err error) {
function Fgetxattr (line 57) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function Lgetxattr (line 69) | func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) {
function Fsetxattr (line 83) | func Fsetxattr(fd int, attr string, data []byte, flags int) (err error) {
function Setxattr (line 99) | func Setxattr(file string, attr string, data []byte, flags int) (err err...
function Lsetxattr (line 115) | func Lsetxattr(link string, attr string, data []byte, flags int) (err er...
function Removexattr (line 131) | func Removexattr(file string, attr string) (err error) {
function Fremovexattr (line 141) | func Fremovexattr(fd int, attr string) (err error) {
function Lremovexattr (line 151) | func Lremovexattr(link string, attr string) (err error) {
function Listxattr (line 161) | func Listxattr(file string, dest []byte) (sz int, err error) {
function Flistxattr (line 194) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Llistxattr (line 218) | func Llistxattr(link string, dest []byte) (sz int, err error) {
FILE: vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go
constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10
constant AF_BYPASS (line 15) | AF_BYPASS = 0x19
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_HYLINK (line 22) | AF_HYLINK = 0xf
constant AF_IMPLINK (line 23) | AF_IMPLINK = 0x3
constant AF_INET (line 24) | AF_INET = 0x2
constant AF_INET6 (line 25) | AF_INET6 = 0x18
constant AF_INTF (line 26) | AF_INTF = 0x14
constant AF_ISO (line 27) | AF_ISO = 0x7
constant AF_LAT (line 28) | AF_LAT = 0xe
constant AF_LINK (line 29) | AF_LINK = 0x12
constant AF_LOCAL (line 30) | AF_LOCAL = 0x1
constant AF_MAX (line 31) | AF_MAX = 0x1e
constant AF_NDD (line 32) | AF_NDD = 0x17
constant AF_NETWARE (line 33) | AF_NETWARE = 0x16
constant AF_NS (line 34) | AF_NS = 0x6
constant AF_OSI (line 35) | AF_OSI = 0x7
constant AF_PUP (line 36) | AF_PUP = 0x4
constant AF_RIF (line 37) | AF_RIF = 0x15
constant AF_ROUTE (line 38) | AF_ROUTE = 0x11
constant AF_SNA (line 39) | AF_SNA = 0xb
constant AF_UNIX (line 40) | AF_UNIX = 0x1
constant AF_UNSPEC (line 41) | AF_UNSPEC = 0x0
constant ALTWERASE (line 42) | ALTWERASE = 0x400000
constant ARPHRD_802_3 (line 43) | ARPHRD_802_3 = 0x6
constant ARPHRD_802_5 (line 44) | ARPHRD_802_5 = 0x6
constant ARPHRD_ETHER (line 45) | ARPHRD_ETHER = 0x1
constant ARPHRD_FDDI (line 46) | ARPHRD_FDDI = 0x1
constant B0 (line 47) | B0 = 0x0
constant B110 (line 48) | B110 = 0x3
constant B1200 (line 49) | B1200 = 0x9
constant B134 (line 50) | B134 = 0x4
constant B150 (line 51) | B150 = 0x5
constant B1800 (line 52) | B1800 = 0xa
constant B19200 (line 53) | B19200 = 0xe
constant B200 (line 54) | B200 = 0x6
constant B2400 (line 55) | B2400 = 0xb
constant B300 (line 56) | B300 = 0x7
constant B38400 (line 57) | B38400 = 0xf
constant B4800 (line 58) | B4800 = 0xc
constant B50 (line 59) | B50 = 0x1
constant B600 (line 60) | B600 = 0x8
constant B75 (line 61) | B75 = 0x2
constant B9600 (line 62) | B9600 = 0xd
constant BRKINT (line 63) | BRKINT = 0x2
constant BS0 (line 64) | BS0 = 0x0
constant BS1 (line 65) | BS1 = 0x1000
constant BSDLY (line 66) | BSDLY = 0x1000
constant CAP_AACCT (line 67) | CAP_AACCT = 0x6
constant CAP_ARM_APPLICATION (line 68) | CAP_ARM_APPLICATION = 0x5
constant CAP_BYPASS_RAC_VMM (line 69) | CAP_BYPASS_RAC_VMM = 0x3
constant CAP_CLEAR (line 70) | CAP_CLEAR = 0x0
constant CAP_CREDENTIALS (line 71) | CAP_CREDENTIALS = 0x7
constant CAP_EFFECTIVE (line 72) | CAP_EFFECTIVE = 0x1
constant CAP_EWLM_AGENT (line 73) | CAP_EWLM_AGENT = 0x4
constant CAP_INHERITABLE (line 74) | CAP_INHERITABLE = 0x2
constant CAP_MAXIMUM (line 75) | CAP_MAXIMUM = 0x7
constant CAP_NUMA_ATTACH (line 76) | CAP_NUMA_ATTACH = 0x2
constant CAP_PERMITTED (line 77) | CAP_PERMITTED = 0x3
constant CAP_PROPAGATE (line 78) | CAP_PROPAGATE = 0x1
constant CAP_PROPOGATE (line 79) | CAP_PROPOGATE = 0x1
constant CAP_SET (line 80) | CAP_SET = 0x1
constant CBAUD (line 81) | CBAUD = 0xf
constant CFLUSH (line 82) | CFLUSH = 0xf
constant CIBAUD (line 83) | CIBAUD = 0xf0000
constant CLOCAL (line 84) | CLOCAL = 0x800
constant CLOCK_MONOTONIC (line 85) | CLOCK_MONOTONIC = 0xa
constant CLOCK_PROCESS_CPUTIME_ID (line 86) | CLOCK_PROCESS_CPUTIME_ID = 0xb
constant CLOCK_REALTIME (line 87) | CLOCK_REALTIME = 0x9
constant CLOCK_THREAD_CPUTIME_ID (line 88) | CLOCK_THREAD_CPUTIME_ID = 0xc
constant CR0 (line 89) | CR0 = 0x0
constant CR1 (line 90) | CR1 = 0x100
constant CR2 (line 91) | CR2 = 0x200
constant CR3 (line 92) | CR3 = 0x300
constant CRDLY (line 93) | CRDLY = 0x300
constant CREAD (line 94) | CREAD = 0x80
constant CS5 (line 95) | CS5 = 0x0
constant CS6 (line 96) | CS6 = 0x10
constant CS7 (line 97) | CS7 = 0x20
constant CS8 (line 98) | CS8 = 0x30
constant CSIOCGIFCONF (line 99) | CSIOCGIFCONF = -0x3ff796dc
constant CSIZE (line 100) | CSIZE = 0x30
constant CSMAP_DIR (line 101) | CSMAP_DIR = "/usr/lib/nls/csmap/"
constant CSTART (line 102) | CSTART = '\021'
constant CSTOP (line 103) | CSTOP = '\023'
constant CSTOPB (line 104) | CSTOPB = 0x40
constant CSUSP (line 105) | CSUSP = 0x1a
constant ECHO (line 106) | ECHO = 0x8
constant ECHOCTL (line 107) | ECHOCTL = 0x20000
constant ECHOE (line 108) | ECHOE = 0x10
constant ECHOK (line 109) | ECHOK = 0x20
constant ECHOKE (line 110) | ECHOKE = 0x80000
constant ECHONL (line 111) | ECHONL = 0x40
constant ECHOPRT (line 112) | ECHOPRT = 0x40000
constant ECH_ICMPID (line 113) | ECH_ICMPID = 0x2
constant ETHERNET_CSMACD (line 114) | ETHERNET_CSMACD = 0x6
constant EVENP (line 115) | EVENP = 0x80
constant EXCONTINUE (line 116) | EXCONTINUE = 0x0
constant EXDLOK (line 117) | EXDLOK = 0x3
constant EXIO (line 118) | EXIO = 0x2
constant EXPGIO (line 119) | EXPGIO = 0x0
constant EXRESUME (line 120) | EXRESUME = 0x2
constant EXRETURN (line 121) | EXRETURN = 0x1
constant EXSIG (line 122) | EXSIG = 0x4
constant EXTA (line 123) | EXTA = 0xe
constant EXTB (line 124) | EXTB = 0xf
constant EXTRAP (line 125) | EXTRAP = 0x1
constant EYEC_RTENTRYA (line 126) | EYEC_RTENTRYA = 0x257274656e747241
constant EYEC_RTENTRYF (line 127) | EYEC_RTENTRYF = 0x257274656e747246
constant E_ACC (line 128) | E_ACC = 0x0
constant FD_CLOEXEC (line 129) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 130) | FD_SETSIZE = 0xfffe
constant FF0 (line 131) | FF0 = 0x0
constant FF1 (line 132) | FF1 = 0x2000
constant FFDLY (line 133) | FFDLY = 0x2000
constant FLUSHBAND (line 134) | FLUSHBAND = 0x40
constant FLUSHLOW (line 135) | FLUSHLOW = 0x8
constant FLUSHO (line 136) | FLUSHO = 0x100000
constant FLUSHR (line 137) | FLUSHR = 0x1
constant FLUSHRW (line 138) | FLUSHRW = 0x3
constant FLUSHW (line 139) | FLUSHW = 0x2
constant F_CLOSEM (line 140) | F_CLOSEM = 0xa
constant F_DUP2FD (line 141) | F_DUP2FD = 0xe
constant F_DUPFD (line 142) | F_DUPFD = 0x0
constant F_GETFD (line 143) | F_GETFD = 0x1
constant F_GETFL (line 144) | F_GETFL = 0x3
constant F_GETLK (line 145) | F_GETLK = 0x5
constant F_GETLK64 (line 146) | F_GETLK64 = 0xb
constant F_GETOWN (line 147) | F_GETOWN = 0x8
constant F_LOCK (line 148) | F_LOCK = 0x1
constant F_OK (line 149) | F_OK = 0x0
constant F_RDLCK (line 150) | F_RDLCK = 0x1
constant F_SETFD (line 151) | F_SETFD = 0x2
constant F_SETFL (line 152) | F_SETFL = 0x4
constant F_SETLK (line 153) | F_SETLK = 0x6
constant F_SETLK64 (line 154) | F_SETLK64 = 0xc
constant F_SETLKW (line 155) | F_SETLKW = 0x7
constant F_SETLKW64 (line 156) | F_SETLKW64 = 0xd
constant F_SETOWN (line 157) | F_SETOWN = 0x9
constant F_TEST (line 158) | F_TEST = 0x3
constant F_TLOCK (line 159) | F_TLOCK = 0x2
constant F_TSTLK (line 160) | F_TSTLK = 0xf
constant F_ULOCK (line 161) | F_ULOCK = 0x0
constant F_UNLCK (line 162) | F_UNLCK = 0x3
constant F_WRLCK (line 163) | F_WRLCK = 0x2
constant HUPCL (line 164) | HUPCL = 0x400
constant IBSHIFT (line 165) | IBSHIFT = 0x10
constant ICANON (line 166) | ICANON = 0x2
constant ICMP6_FILTER (line 167) | ICMP6_FILTER = 0x26
constant ICMP6_SEC_SEND_DEL (line 168) | ICMP6_SEC_SEND_DEL = 0x46
constant ICMP6_SEC_SEND_GET (line 169) | ICMP6_SEC_SEND_GET = 0x47
constant ICMP6_SEC_SEND_SET (line 170) | ICMP6_SEC_SEND_SET = 0x44
constant ICMP6_SEC_SEND_SET_CGA_ADDR (line 171) | ICMP6_SEC_SEND_SET_CGA_ADDR = 0x45
constant ICRNL (line 172) | ICRNL = 0x100
constant IEXTEN (line 173) | IEXTEN = 0x200000
constant IFA_FIRSTALIAS (line 174) | IFA_FIRSTALIAS = 0x2000
constant IFA_ROUTE (line 175) | IFA_ROUTE = 0x1
constant IFF_64BIT (line 176) | IFF_64BIT = 0x4000000
constant IFF_ALLCAST (line 177) | IFF_ALLCAST = 0x20000
constant IFF_ALLMULTI (line 178) | IFF_ALLMULTI = 0x200
constant IFF_BPF (line 179) | IFF_BPF = 0x8000000
constant IFF_BRIDGE (line 180) | IFF_BRIDGE = 0x40000
constant IFF_BROADCAST (line 181) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 182) | IFF_CANTCHANGE = 0x80c52
constant IFF_CHECKSUM_OFFLOAD (line 183) | IFF_CHECKSUM_OFFLOAD = 0x10000000
constant IFF_D1 (line 184) | IFF_D1 = 0x8000
constant IFF_D2 (line 185) | IFF_D2 = 0x4000
constant IFF_D3 (line 186) | IFF_D3 = 0x2000
constant IFF_D4 (line 187) | IFF_D4 = 0x1000
constant IFF_DEBUG (line 188) | IFF_DEBUG = 0x4
constant IFF_DEVHEALTH (line 189) | IFF_DEVHEALTH = 0x4000
constant IFF_DO_HW_LOOPBACK (line 190) | IFF_DO_HW_LOOPBACK = 0x10000
constant IFF_GROUP_ROUTING (line 191) | IFF_GROUP_ROUTING = 0x2000000
constant IFF_IFBUFMGT (line 192) | IFF_IFBUFMGT = 0x800000
constant IFF_LINK0 (line 193) | IFF_LINK0 = 0x100000
constant IFF_LINK1 (line 194) | IFF_LINK1 = 0x200000
constant IFF_LINK2 (line 195) | IFF_LINK2 = 0x400000
constant IFF_LOOPBACK (line 196) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 197) | IFF_MULTICAST = 0x80000
constant IFF_NOARP (line 198) | IFF_NOARP = 0x80
constant IFF_NOECHO (line 199) | IFF_NOECHO = 0x800
constant IFF_NOTRAILERS (line 200) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 201) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 202) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 203) | IFF_PROMISC = 0x100
constant IFF_PSEG (line 204) | IFF_PSEG = 0x40000000
constant IFF_RUNNING (line 205) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 206) | IFF_SIMPLEX = 0x800
constant IFF_SNAP (line 207) | IFF_SNAP = 0x8000
constant IFF_TCP_DISABLE_CKSUM (line 208) | IFF_TCP_DISABLE_CKSUM = 0x20000000
constant IFF_TCP_NOCKSUM (line 209) | IFF_TCP_NOCKSUM = 0x1000000
constant IFF_UP (line 210) | IFF_UP = 0x1
constant IFF_VIPA (line 211) | IFF_VIPA = 0x80000000
constant IFNAMSIZ (line 212) | IFNAMSIZ = 0x10
constant IFO_FLUSH (line 213) | IFO_FLUSH = 0x1
constant IFT_1822 (line 214) | IFT_1822 = 0x2
constant IFT_AAL5 (line 215) | IFT_AAL5 = 0x31
constant IFT_ARCNET (line 216) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 217) | IFT_ARCNETPLUS = 0x24
constant IFT_ATM (line 218) | IFT_ATM = 0x25
constant IFT_CEPT (line 219) | IFT_CEPT = 0x13
constant IFT_CLUSTER (line 220) | IFT_CLUSTER = 0x3e
constant IFT_DS3 (line 221) | IFT_DS3 = 0x1e
constant IFT_EON (line 222) | IFT_EON = 0x19
constant IFT_ETHER (line 223) | IFT_ETHER = 0x6
constant IFT_FCS (line 224) | IFT_FCS = 0x3a
constant IFT_FDDI (line 225) | IFT_FDDI = 0xf
constant IFT_FRELAY (line 226) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 227) | IFT_FRELAYDCE = 0x2c
constant IFT_GIFTUNNEL (line 228) | IFT_GIFTUNNEL = 0x3c
constant IFT_HDH1822 (line 229) | IFT_HDH1822 = 0x3
constant IFT_HF (line 230) | IFT_HF = 0x3d
constant IFT_HIPPI (line 231) | IFT_HIPPI = 0x2f
constant IFT_HSSI (line 232) | IFT_HSSI = 0x2e
constant IFT_HY (line 233) | IFT_HY = 0xe
constant IFT_IB (line 234) | IFT_IB = 0xc7
constant IFT_ISDNBASIC (line 235) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 236) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISO88022LLC (line 237) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 238) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 239) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 240) | IFT_ISO88025 = 0x9
constant IFT_ISO88026 (line 241) | IFT_ISO88026 = 0xa
constant IFT_LAPB (line 242) | IFT_LAPB = 0x10
constant IFT_LOCALTALK (line 243) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 244) | IFT_LOOP = 0x18
constant IFT_MIOX25 (line 245) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 246) | IFT_MODEM = 0x30
constant IFT_NSIP (line 247) | IFT_NSIP = 0x1b
constant IFT_OTHER (line 248) | IFT_OTHER = 0x1
constant IFT_P10 (line 249) | IFT_P10 = 0xc
constant IFT_P80 (line 250) | IFT_P80 = 0xd
constant IFT_PARA (line 251) | IFT_PARA = 0x22
constant IFT_PPP (line 252) | IFT_PPP = 0x17
constant IFT_PROPMUX (line 253) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 254) | IFT_PROPVIRTUAL = 0x35
constant IFT_PTPSERIAL (line 255) | IFT_PTPSERIAL = 0x16
constant IFT_RS232 (line 256) | IFT_RS232 = 0x21
constant IFT_SDLC (line 257) | IFT_SDLC = 0x11
constant IFT_SIP (line 258) | IFT_SIP = 0x1f
constant IFT_SLIP (line 259) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 260) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 261) | IFT_SMDSICIP = 0x34
constant IFT_SN (line 262) | IFT_SN = 0x38
constant IFT_SONET (line 263) | IFT_SONET = 0x27
constant IFT_SONETPATH (line 264) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 265) | IFT_SONETVT = 0x33
constant IFT_SP (line 266) | IFT_SP = 0x39
constant IFT_STARLAN (line 267) | IFT_STARLAN = 0xb
constant IFT_T1 (line 268) | IFT_T1 = 0x12
constant IFT_TUNNEL (line 269) | IFT_TUNNEL = 0x3b
constant IFT_ULTRA (line 270) | IFT_ULTRA = 0x1d
constant IFT_V35 (line 271) | IFT_V35 = 0x2d
constant IFT_VIPA (line 272) | IFT_VIPA = 0x37
constant IFT_X25 (line 273) | IFT_X25 = 0x5
constant IFT_X25DDN (line 274) | IFT_X25DDN = 0x4
constant IFT_X25PLE (line 275) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 276) | IFT_XETHER = 0x1a
constant IGNBRK (line 277) | IGNBRK = 0x1
constant IGNCR (line 278) | IGNCR = 0x80
constant IGNPAR (line 279) | IGNPAR = 0x4
constant IMAXBEL (line 280) | IMAXBEL = 0x10000
constant INLCR (line 281) | INLCR = 0x40
constant INPCK (line 282) | INPCK = 0x10
constant IN_CLASSA_HOST (line 283) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 284) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 285) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 286) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 287) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 288) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 289) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 290) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 291) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 292) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 293) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 294) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 295) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 296) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 297) | IN_LOOPBACKNET = 0x7f
constant IN_USE (line 298) | IN_USE = 0x1
constant IPPROTO_AH (line 299) | IPPROTO_AH = 0x33
constant IPPROTO_BIP (line 300) | IPPROTO_BIP = 0x53
constant IPPROTO_DSTOPTS (line 301) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 302) | IPPROTO_EGP = 0x8
constant IPPROTO_EON (line 303) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 304) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 305) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 306) | IPPROTO_GGP = 0x3
constant IPPROTO_GIF (line 307) | IPPROTO_GIF = 0x8c
constant IPPROTO_GRE (line 308) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 309) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 310) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 311) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 312) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 313) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 314) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 315) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 316) | IPPROTO_IPV6 = 0x29
constant IPPROTO_LOCAL (line 317) | IPPROTO_LOCAL = 0x3f
constant IPPROTO_MAX (line 318) | IPPROTO_MAX = 0x100
constant IPPROTO_MH (line 319) | IPPROTO_MH = 0x87
constant IPPROTO_NONE (line 320) | IPPROTO_NONE = 0x3b
constant IPPROTO_PUP (line 321) | IPPROTO_PUP = 0xc
constant IPPROTO_QOS (line 322) | IPPROTO_QOS = 0x2d
constant IPPROTO_RAW (line 323) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 324) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 325) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 326) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 327) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 328) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 329) | IPPROTO_UDP = 0x11
constant IPV6_ADDRFORM (line 330) | IPV6_ADDRFORM = 0x16
constant IPV6_ADDR_PREFERENCES (line 331) | IPV6_ADDR_PREFERENCES = 0x4a
constant IPV6_ADD_MEMBERSHIP (line 332) | IPV6_ADD_MEMBERSHIP = 0xc
constant IPV6_AIXRAWSOCKET (line 333) | IPV6_AIXRAWSOCKET = 0x39
constant IPV6_CHECKSUM (line 334) | IPV6_CHECKSUM = 0x27
constant IPV6_DONTFRAG (line 335) | IPV6_DONTFRAG = 0x2d
constant IPV6_DROP_MEMBERSHIP (line 336) | IPV6_DROP_MEMBERSHIP = 0xd
constant IPV6_DSTOPTS (line 337) | IPV6_DSTOPTS = 0x36
constant IPV6_FLOWINFO_FLOWLABEL (line 338) | IPV6_FLOWINFO_FLOWLABEL = 0xffffff
constant IPV6_FLOWINFO_PRIFLOW (line 339) | IPV6_FLOWINFO_PRIFLOW = 0xfffffff
constant IPV6_FLOWINFO_PRIORITY (line 340) | IPV6_FLOWINFO_PRIORITY = 0xf000000
constant IPV6_FLOWINFO_SRFLAG (line 341) | IPV6_FLOWINFO_SRFLAG = 0x10000000
constant IPV6_FLOWINFO_VERSION (line 342) | IPV6_FLOWINFO_VERSION = 0xf0000000
constant IPV6_HOPLIMIT (line 343) | IPV6_HOPLIMIT = 0x28
constant IPV6_HOPOPTS (line 344) | IPV6_HOPOPTS = 0x34
constant IPV6_JOIN_GROUP (line 345) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 346) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MIPDSTOPTS (line 347) | IPV6_MIPDSTOPTS = 0x36
constant IPV6_MULTICAST_HOPS (line 348) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 349) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 350) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 351) | IPV6_NEXTHOP = 0x30
constant IPV6_NOPROBE (line 352) | IPV6_NOPROBE = 0x1c
constant IPV6_PATHMTU (line 353) | IPV6_PATHMTU = 0x2e
constant IPV6_PKTINFO (line 354) | IPV6_PKTINFO = 0x21
constant IPV6_PKTOPTIONS (line 355) | IPV6_PKTOPTIONS = 0x24
constant IPV6_PRIORITY_10 (line 356) | IPV6_PRIORITY_10 = 0xa000000
constant IPV6_PRIORITY_11 (line 357) | IPV6_PRIORITY_11 = 0xb000000
constant IPV6_PRIORITY_12 (line 358) | IPV6_PRIORITY_12 = 0xc000000
constant IPV6_PRIORITY_13 (line 359) | IPV6_PRIORITY_13 = 0xd000000
constant IPV6_PRIORITY_14 (line 360) | IPV6_PRIORITY_14 = 0xe000000
constant IPV6_PRIORITY_15 (line 361) | IPV6_PRIORITY_15 = 0xf000000
constant IPV6_PRIORITY_8 (line 362) | IPV6_PRIORITY_8 = 0x8000000
constant IPV6_PRIORITY_9 (line 363) | IPV6_PRIORITY_9 = 0x9000000
constant IPV6_PRIORITY_BULK (line 364) | IPV6_PRIORITY_BULK = 0x4000000
constant IPV6_PRIORITY_CONTROL (line 365) | IPV6_PRIORITY_CONTROL = 0x7000000
constant IPV6_PRIORITY_FILLER (line 366) | IPV6_PRIORITY_FILLER = 0x1000000
constant IPV6_PRIORITY_INTERACTIVE (line 367) | IPV6_PRIORITY_INTERACTIVE = 0x6000000
constant IPV6_PRIORITY_RESERVED1 (line 368) | IPV6_PRIORITY_RESERVED1 = 0x3000000
constant IPV6_PRIORITY_RESERVED2 (line 369) | IPV6_PRIORITY_RESERVED2 = 0x5000000
constant IPV6_PRIORITY_UNATTENDED (line 370) | IPV6_PRIORITY_UNATTENDED = 0x2000000
constant IPV6_PRIORITY_UNCHARACTERIZED (line 371) | IPV6_PRIORITY_UNCHARACTERIZED = 0x0
constant IPV6_RECVDSTOPTS (line 372) | IPV6_RECVDSTOPTS = 0x38
constant IPV6_RECVHOPLIMIT (line 373) | IPV6_RECVHOPLIMIT = 0x29
constant IPV6_RECVHOPOPTS (line 374) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVHOPS (line 375) | IPV6_RECVHOPS = 0x22
constant IPV6_RECVIF (line 376) | IPV6_RECVIF = 0x1e
constant IPV6_RECVPATHMTU (line 377) | IPV6_RECVPATHMTU = 0x2f
constant IPV6_RECVPKTINFO (line 378) | IPV6_RECVPKTINFO = 0x23
constant IPV6_RECVRTHDR (line 379) | IPV6_RECVRTHDR = 0x33
constant IPV6_RECVSRCRT (line 380) | IPV6_RECVSRCRT = 0x1d
constant IPV6_RECVTCLASS (line 381) | IPV6_RECVTCLASS = 0x2a
constant IPV6_RTHDR (line 382) | IPV6_RTHDR = 0x32
constant IPV6_RTHDRDSTOPTS (line 383) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_TYPE_0 (line 384) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RTHDR_TYPE_2 (line 385) | IPV6_RTHDR_TYPE_2 = 0x2
constant IPV6_SENDIF (line 386) | IPV6_SENDIF = 0x1f
constant IPV6_SRFLAG_LOOSE (line 387) | IPV6_SRFLAG_LOOSE = 0x0
constant IPV6_SRFLAG_STRICT (line 388) | IPV6_SRFLAG_STRICT = 0x10000000
constant IPV6_TCLASS (line 389) | IPV6_TCLASS = 0x2b
constant IPV6_TOKEN_LENGTH (line 390) | IPV6_TOKEN_LENGTH = 0x40
constant IPV6_UNICAST_HOPS (line 391) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 392) | IPV6_USE_MIN_MTU = 0x2c
constant IPV6_V6ONLY (line 393) | IPV6_V6ONLY = 0x25
constant IPV6_VERSION (line 394) | IPV6_VERSION = 0x60000000
constant IP_ADDRFORM (line 395) | IP_ADDRFORM = 0x16
constant IP_ADD_MEMBERSHIP (line 396) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 397) | IP_ADD_SOURCE_MEMBERSHIP = 0x3c
constant IP_BLOCK_SOURCE (line 398) | IP_BLOCK_SOURCE = 0x3a
constant IP_BROADCAST_IF (line 399) | IP_BROADCAST_IF = 0x10
constant IP_CACHE_LINE_SIZE (line 400) | IP_CACHE_LINE_SIZE = 0x80
constant IP_DEFAULT_MULTICAST_LOOP (line 401) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 402) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 403) | IP_DF = 0x4000
constant IP_DHCPMODE (line 404) | IP_DHCPMODE = 0x11
constant IP_DONTFRAG (line 405) | IP_DONTFRAG = 0x19
constant IP_DROP_MEMBERSHIP (line 406) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 407) | IP_DROP_SOURCE_MEMBERSHIP = 0x3d
constant IP_FINDPMTU (line 408) | IP_FINDPMTU = 0x1a
constant IP_HDRINCL (line 409) | IP_HDRINCL = 0x2
constant IP_INC_MEMBERSHIPS (line 410) | IP_INC_MEMBERSHIPS = 0x14
constant IP_INIT_MEMBERSHIP (line 411) | IP_INIT_MEMBERSHIP = 0x14
constant IP_MAXPACKET (line 412) | IP_MAXPACKET = 0xffff
constant IP_MF (line 413) | IP_MF = 0x2000
constant IP_MSS (line 414) | IP_MSS = 0x240
constant IP_MULTICAST_HOPS (line 415) | IP_MULTICAST_HOPS = 0xa
constant IP_MULTICAST_IF (line 416) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 417) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 418) | IP_MULTICAST_TTL = 0xa
constant IP_OPT (line 419) | IP_OPT = 0x1b
constant IP_OPTIONS (line 420) | IP_OPTIONS = 0x1
constant IP_PMTUAGE (line 421) | IP_PMTUAGE = 0x1b
constant IP_RECVDSTADDR (line 422) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 423) | IP_RECVIF = 0x14
constant IP_RECVIFINFO (line 424) | IP_RECVIFINFO = 0xf
constant IP_RECVINTERFACE (line 425) | IP_RECVINTERFACE = 0x20
constant IP_RECVMACHDR (line 426) | IP_RECVMACHDR = 0xe
constant IP_RECVOPTS (line 427) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 428) | IP_RECVRETOPTS = 0x6
constant IP_RECVTTL (line 429) | IP_RECVTTL = 0x22
constant IP_RETOPTS (line 430) | IP_RETOPTS = 0x8
constant IP_SOURCE_FILTER (line 431) | IP_SOURCE_FILTER = 0x48
constant IP_TOS (line 432) | IP_TOS = 0x3
constant IP_TTL (line 433) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 434) | IP_UNBLOCK_SOURCE = 0x3b
constant IP_UNICAST_HOPS (line 435) | IP_UNICAST_HOPS = 0x4
constant ISIG (line 436) | ISIG = 0x1
constant ISTRIP (line 437) | ISTRIP = 0x20
constant IUCLC (line 438) | IUCLC = 0x800
constant IXANY (line 439) | IXANY = 0x1000
constant IXOFF (line 440) | IXOFF = 0x400
constant IXON (line 441) | IXON = 0x200
constant I_FLUSH (line 442) | I_FLUSH = 0x20005305
constant LNOFLSH (line 443) | LNOFLSH = 0x8000
constant LOCK_EX (line 444) | LOCK_EX = 0x2
constant LOCK_NB (line 445) | LOCK_NB = 0x4
constant LOCK_SH (line 446) | LOCK_SH = 0x1
constant LOCK_UN (line 447) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 448) | MADV_DONTNEED = 0x4
constant MADV_NORMAL (line 449) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 450) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 451) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 452) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 453) | MADV_WILLNEED = 0x3
constant MAP_ANON (line 454) | MAP_ANON = 0x10
constant MAP_ANONYMOUS (line 455) | MAP_ANONYMOUS = 0x10
constant MAP_FILE (line 456) | MAP_FILE = 0x0
constant MAP_FIXED (line 457) | MAP_FIXED = 0x100
constant MAP_PRIVATE (line 458) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 459) | MAP_SHARED = 0x1
constant MAP_TYPE (line 460) | MAP_TYPE = 0xf0
constant MAP_VARIABLE (line 461) | MAP_VARIABLE = 0x0
constant MCL_CURRENT (line 462) | MCL_CURRENT = 0x100
constant MCL_FUTURE (line 463) | MCL_FUTURE = 0x200
constant MSG_ANY (line 464) | MSG_ANY = 0x4
constant MSG_ARGEXT (line 465) | MSG_ARGEXT = 0x400
constant MSG_BAND (line 466) | MSG_BAND = 0x2
constant MSG_COMPAT (line 467) | MSG_COMPAT = 0x8000
constant MSG_CTRUNC (line 468) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 469) | MSG_DONTROUTE = 0x4
constant MSG_EOR (line 470) | MSG_EOR = 0x8
constant MSG_HIPRI (line 471) | MSG_HIPRI = 0x1
constant MSG_MAXIOVLEN (line 472) | MSG_MAXIOVLEN = 0x10
constant MSG_MPEG2 (line 473) | MSG_MPEG2 = 0x80
constant MSG_NONBLOCK (line 474) | MSG_NONBLOCK = 0x4000
constant MSG_NOSIGNAL (line 475) | MSG_NOSIGNAL = 0x100
constant MSG_OOB (line 476) | MSG_OOB = 0x1
constant MSG_PEEK (line 477) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 478) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 479) | MSG_WAITALL = 0x40
constant MSG_WAITFORONE (line 480) | MSG_WAITFORONE = 0x200
constant MS_ASYNC (line 481) | MS_ASYNC = 0x10
constant MS_EINTR (line 482) | MS_EINTR = 0x80
constant MS_INVALIDATE (line 483) | MS_INVALIDATE = 0x40
constant MS_PER_SEC (line 484) | MS_PER_SEC = 0x3e8
constant MS_SYNC (line 485) | MS_SYNC = 0x20
constant NL0 (line 486) | NL0 = 0x0
constant NL1 (line 487) | NL1 = 0x4000
constant NL2 (line 488) | NL2 = 0x8000
constant NL3 (line 489) | NL3 = 0xc000
constant NLDLY (line 490) | NLDLY = 0x4000
constant NOFLSH (line 491) | NOFLSH = 0x80
constant NOFLUSH (line 492) | NOFLUSH = 0x80000000
constant OCRNL (line 493) | OCRNL = 0x8
constant OFDEL (line 494) | OFDEL = 0x80
constant OFILL (line 495) | OFILL = 0x40
constant OLCUC (line 496) | OLCUC = 0x2
constant ONLCR (line 497) | ONLCR = 0x4
constant ONLRET (line 498) | ONLRET = 0x20
constant ONOCR (line 499) | ONOCR = 0x10
constant ONOEOT (line 500) | ONOEOT = 0x80000
constant OPOST (line 501) | OPOST = 0x1
constant OXTABS (line 502) | OXTABS = 0x40000
constant O_ACCMODE (line 503) | O_ACCMODE = 0x23
constant O_APPEND (line 504) | O_APPEND = 0x8
constant O_CIO (line 505) | O_CIO = 0x80
constant O_CIOR (line 506) | O_CIOR = 0x800000000
constant O_CLOEXEC (line 507) | O_CLOEXEC = 0x800000
constant O_CREAT (line 508) | O_CREAT = 0x100
constant O_DEFER (line 509) | O_DEFER = 0x2000
constant O_DELAY (line 510) | O_DELAY = 0x4000
constant O_DIRECT (line 511) | O_DIRECT = 0x8000000
constant O_DIRECTORY (line 512) | O_DIRECTORY = 0x80000
constant O_DSYNC (line 513) | O_DSYNC = 0x400000
constant O_EFSOFF (line 514) | O_EFSOFF = 0x400000000
constant O_EFSON (line 515) | O_EFSON = 0x200000000
constant O_EXCL (line 516) | O_EXCL = 0x400
constant O_EXEC (line 517) | O_EXEC = 0x20
constant O_LARGEFILE (line 518) | O_LARGEFILE = 0x4000000
constant O_NDELAY (line 519) | O_NDELAY = 0x8000
constant O_NOCACHE (line 520) | O_NOCACHE = 0x100000
constant O_NOCTTY (line 521) | O_NOCTTY = 0x800
constant O_NOFOLLOW (line 522) | O_NOFOLLOW = 0x1000000
constant O_NONBLOCK (line 523) | O_NONBLOCK = 0x4
constant O_NONE (line 524) | O_NONE = 0x3
constant O_NSHARE (line 525) | O_NSHARE = 0x10000
constant O_RAW (line 526) | O_RAW = 0x100000000
constant O_RDONLY (line 527) | O_RDONLY = 0x0
constant O_RDWR (line 528) | O_RDWR = 0x2
constant O_RSHARE (line 529) | O_RSHARE = 0x1000
constant O_RSYNC (line 530) | O_RSYNC = 0x200000
constant O_SEARCH (line 531) | O_SEARCH = 0x20
constant O_SNAPSHOT (line 532) | O_SNAPSHOT = 0x40
constant O_SYNC (line 533) | O_SYNC = 0x10
constant O_TRUNC (line 534) | O_TRUNC = 0x200
constant O_TTY_INIT (line 535) | O_TTY_INIT = 0x0
constant O_WRONLY (line 536) | O_WRONLY = 0x1
constant PARENB (line 537) | PARENB = 0x100
constant PAREXT (line 538) | PAREXT = 0x100000
constant PARMRK (line 539) | PARMRK = 0x8
constant PARODD (line 540) | PARODD = 0x200
constant PENDIN (line 541) | PENDIN = 0x20000000
constant PRIO_PGRP (line 542) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 543) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 544) | PRIO_USER = 0x2
constant PROT_EXEC (line 545) | PROT_EXEC = 0x4
constant PROT_NONE (line 546) | PROT_NONE = 0x0
constant PROT_READ (line 547) | PROT_READ = 0x1
constant PROT_WRITE (line 548) | PROT_WRITE = 0x2
constant PR_64BIT (line 549) | PR_64BIT = 0x20
constant PR_ADDR (line 550) | PR_ADDR = 0x2
constant PR_ARGEXT (line 551) | PR_ARGEXT = 0x400
constant PR_ATOMIC (line 552) | PR_ATOMIC = 0x1
constant PR_CONNREQUIRED (line 553) | PR_CONNREQUIRED = 0x4
constant PR_FASTHZ (line 554) | PR_FASTHZ = 0x5
constant PR_INP (line 555) | PR_INP = 0x40
constant PR_INTRLEVEL (line 556) | PR_INTRLEVEL = 0x8000
constant PR_MLS (line 557) | PR_MLS = 0x100
constant PR_MLS_1_LABEL (line 558) | PR_MLS_1_LABEL = 0x200
constant PR_NOEOR (line 559) | PR_NOEOR = 0x4000
constant PR_RIGHTS (line 560) | PR_RIGHTS = 0x10
constant PR_SLOWHZ (line 561) | PR_SLOWHZ = 0x2
constant PR_WANTRCVD (line 562) | PR_WANTRCVD = 0x8
constant RLIMIT_AS (line 563) | RLIMIT_AS = 0x6
constant RLIMIT_CORE (line 564) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 565) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 566) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 567) | RLIMIT_FSIZE = 0x1
constant RLIMIT_NOFILE (line 568) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 569) | RLIMIT_NPROC = 0x9
constant RLIMIT_RSS (line 570) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 571) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 572) | RLIM_INFINITY = 0x7fffffff
constant RTAX_AUTHOR (line 573) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 574) | RTAX_BRD = 0x7
constant RTAX_DST (line 575) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 576) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 577) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 578) | RTAX_IFA = 0x5
constant RTAX_IFP (line 579) | RTAX_IFP = 0x4
constant RTAX_MAX (line 580) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 581) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 582) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 583) | RTA_BRD = 0x80
constant RTA_DOWNSTREAM (line 584) | RTA_DOWNSTREAM = 0x100
constant RTA_DST (line 585) | RTA_DST = 0x1
constant RTA_GATEWAY (line 586) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 587) | RTA_GENMASK = 0x8
constant RTA_IFA (line 588) | RTA_IFA = 0x20
constant RTA_IFP (line 589) | RTA_IFP = 0x10
constant RTA_NETMASK (line 590) | RTA_NETMASK = 0x4
constant RTC_IA64 (line 591) | RTC_IA64 = 0x3
constant RTC_POWER (line 592) | RTC_POWER = 0x1
constant RTC_POWER_PC (line 593) | RTC_POWER_PC = 0x2
constant RTF_ACTIVE_DGD (line 594) | RTF_ACTIVE_DGD = 0x1000000
constant RTF_BCE (line 595) | RTF_BCE = 0x80000
constant RTF_BLACKHOLE (line 596) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 597) | RTF_BROADCAST = 0x400000
constant RTF_BUL (line 598) | RTF_BUL = 0x2000
constant RTF_CLONE (line 599) | RTF_CLONE = 0x10000
constant RTF_CLONED (line 600) | RTF_CLONED = 0x20000
constant RTF_CLONING (line 601) | RTF_CLONING = 0x100
constant RTF_DONE (line 602) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 603) | RTF_DYNAMIC = 0x10
constant RTF_FREE_IN_PROG (line 604) | RTF_FREE_IN_PROG = 0x4000000
constant RTF_GATEWAY (line 605) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 606) | RTF_HOST = 0x4
constant RTF_LLINFO (line 607) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 608) | RTF_LOCAL = 0x200000
constant RTF_MASK (line 609) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 610) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 611) | RTF_MULTICAST = 0x800000
constant RTF_PERMANENT6 (line 612) | RTF_PERMANENT6 = 0x8000000
constant RTF_PINNED (line 613) | RTF_PINNED = 0x100000
constant RTF_PROTO1 (line 614) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 615) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 616) | RTF_PROTO3 = 0x40000
constant RTF_REJECT (line 617) | RTF_REJECT = 0x8
constant RTF_SMALLMTU (line 618) | RTF_SMALLMTU = 0x40000
constant RTF_STATIC (line 619) | RTF_STATIC = 0x800
constant RTF_STOPSRCH (line 620) | RTF_STOPSRCH = 0x2000000
constant RTF_UNREACHABLE (line 621) | RTF_UNREACHABLE = 0x10000000
constant RTF_UP (line 622) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 623) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 624) | RTM_ADD = 0x1
constant RTM_CHANGE (line 625) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 626) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 627) | RTM_DELETE = 0x2
constant RTM_EXPIRE (line 628) | RTM_EXPIRE = 0xf
constant RTM_GET (line 629) | RTM_GET = 0x4
constant RTM_GETNEXT (line 630) | RTM_GETNEXT = 0x11
constant RTM_IFINFO (line 631) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 632) | RTM_LOCK = 0x8
constant RTM_LOSING (line 633) | RTM_LOSING = 0x5
constant RTM_MISS (line 634) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 635) | RTM_NEWADDR = 0xc
constant RTM_OLDADD (line 636) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 637) | RTM_OLDDEL = 0xa
constant RTM_REDIRECT (line 638) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 639) | RTM_RESOLVE = 0xb
constant RTM_RTLOST (line 640) | RTM_RTLOST = 0x10
constant RTM_RTTUNIT (line 641) | RTM_RTTUNIT = 0xf4240
constant RTM_SAMEADDR (line 642) | RTM_SAMEADDR = 0x12
constant RTM_SET (line 643) | RTM_SET = 0x13
constant RTM_VERSION (line 644) | RTM_VERSION = 0x2
constant RTM_VERSION_GR (line 645) | RTM_VERSION_GR = 0x4
constant RTM_VERSION_GR_COMPAT (line 646) | RTM_VERSION_GR_COMPAT = 0x3
constant RTM_VERSION_POLICY (line 647) | RTM_VERSION_POLICY = 0x5
constant RTM_VERSION_POLICY_EXT (line 648) | RTM_VERSION_POLICY_EXT = 0x6
constant RTM_VERSION_POLICY_PRFN (line 649) | RTM_VERSION_POLICY_PRFN = 0x7
constant RTV_EXPIRE (line 650) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 651) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 652) | RTV_MTU = 0x1
constant RTV_RPIPE (line 653) | RTV_RPIPE = 0x8
constant RTV_RTT (line 654) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 655) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 656) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 657) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 658) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 659) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 660) | RUSAGE_THREAD = 0x1
constant SCM_RIGHTS (line 661) | SCM_RIGHTS = 0x1
constant SHUT_RD (line 662) | SHUT_RD = 0x0
constant SHUT_RDWR (line 663) | SHUT_RDWR = 0x2
constant SHUT_WR (line 664) | SHUT_WR = 0x1
constant SIGMAX64 (line 665) | SIGMAX64 = 0xff
constant SIGQUEUE_MAX (line 666) | SIGQUEUE_MAX = 0x20
constant SIOCADDIFVIPA (line 667) | SIOCADDIFVIPA = 0x20006942
constant SIOCADDMTU (line 668) | SIOCADDMTU = -0x7ffb9690
constant SIOCADDMULTI (line 669) | SIOCADDMULTI = -0x7fdf96cf
constant SIOCADDNETID (line 670) | SIOCADDNETID = -0x7fd796a9
constant SIOCADDRT (line 671) | SIOCADDRT = -0x7fcf8df6
constant SIOCAIFADDR (line 672) | SIOCAIFADDR = -0x7fbf96e6
constant SIOCATMARK (line 673) | SIOCATMARK = 0x40047307
constant SIOCDARP (line 674) | SIOCDARP = -0x7fb396e0
constant SIOCDELIFVIPA (line 675) | SIOCDELIFVIPA = 0x20006943
constant SIOCDELMTU (line 676) | SIOCDELMTU = -0x7ffb968f
constant SIOCDELMULTI (line 677) | SIOCDELMULTI = -0x7fdf96ce
constant SIOCDELPMTU (line 678) | SIOCDELPMTU = -0x7fd78ff6
constant SIOCDELRT (line 679) | SIOCDELRT = -0x7fcf8df5
constant SIOCDIFADDR (line 680) | SIOCDIFADDR = -0x7fd796e7
constant SIOCDNETOPT (line 681) | SIOCDNETOPT = -0x3ffe9680
constant SIOCDX25XLATE (line 682) | SIOCDX25XLATE = -0x7fd7969b
constant SIOCFIFADDR (line 683) | SIOCFIFADDR = -0x7fdf966d
constant SIOCGARP (line 684) | SIOCGARP = -0x3fb396da
constant SIOCGETMTUS (line 685) | SIOCGETMTUS = 0x2000696f
constant SIOCGETSGCNT (line 686) | SIOCGETSGCNT = -0x3feb8acc
constant SIOCGETVIFCNT (line 687) | SIOCGETVIFCNT = -0x3feb8acd
constant SIOCGHIWAT (line 688) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 689) | SIOCGIFADDR = -0x3fd796df
constant SIOCGIFADDRS (line 690) | SIOCGIFADDRS = 0x2000698c
constant SIOCGIFBAUDRATE (line 691) | SIOCGIFBAUDRATE = -0x3fd79693
constant SIOCGIFBRDADDR (line 692) | SIOCGIFBRDADDR = -0x3fd796dd
constant SIOCGIFCONF (line 693) | SIOCGIFCONF = -0x3ff796bb
constant SIOCGIFCONFGLOB (line 694) | SIOCGIFCONFGLOB = -0x3ff79670
constant SIOCGIFDSTADDR (line 695) | SIOCGIFDSTADDR = -0x3fd796de
constant SIOCGIFFLAGS (line 696) | SIOCGIFFLAGS = -0x3fd796ef
constant SIOCGIFGIDLIST (line 697) | SIOCGIFGIDLIST = 0x20006968
constant SIOCGIFHWADDR (line 698) | SIOCGIFHWADDR = -0x3fab966b
constant SIOCGIFMETRIC (line 699) | SIOCGIFMETRIC = -0x3fd796e9
constant SIOCGIFMTU (line 700) | SIOCGIFMTU = -0x3fd796aa
constant SIOCGIFNETMASK (line 701) | SIOCGIFNETMASK = -0x3fd796db
constant SIOCGIFOPTIONS (line 702) | SIOCGIFOPTIONS = -0x3fd796d6
constant SIOCGISNO (line 703) | SIOCGISNO = -0x3fd79695
constant SIOCGLOADF (line 704) | SIOCGLOADF = -0x3ffb967e
constant SIOCGLOWAT (line 705) | SIOCGLOWAT = 0x40047303
constant SIOCGNETOPT (line 706) | SIOCGNETOPT = -0x3ffe96a5
constant SIOCGNETOPT1 (line 707) | SIOCGNETOPT1 = -0x3fdf967f
constant SIOCGNMTUS (line 708) | SIOCGNMTUS = 0x2000696e
constant SIOCGPGRP (line 709) | SIOCGPGRP = 0x40047309
constant SIOCGSIZIFCONF (line 710) | SIOCGSIZIFCONF = 0x4004696a
constant SIOCGSRCFILTER (line 711) | SIOCGSRCFILTER = -0x3fe796cb
constant SIOCGTUNEPHASE (line 712) | SIOCGTUNEPHASE = -0x3ffb9676
constant SIOCGX25XLATE (line 713) | SIOCGX25XLATE = -0x3fd7969c
constant SIOCIFATTACH (line 714) | SIOCIFATTACH = -0x7fdf9699
constant SIOCIFDETACH (line 715) | SIOCIFDETACH = -0x7fdf969a
constant SIOCIFGETPKEY (line 716) | SIOCIFGETPKEY = -0x7fdf969b
constant SIOCIF_ATM_DARP (line 717) | SIOCIF_ATM_DARP = -0x7fdf9683
constant SIOCIF_ATM_DUMPARP (line 718) | SIOCIF_ATM_DUMPARP = -0x7fdf9685
constant SIOCIF_ATM_GARP (line 719) | SIOCIF_ATM_GARP = -0x7fdf9682
constant SIOCIF_ATM_IDLE (line 720) | SIOCIF_ATM_IDLE = -0x7fdf9686
constant SIOCIF_ATM_SARP (line 721) | SIOCIF_ATM_SARP = -0x7fdf9681
constant SIOCIF_ATM_SNMPARP (line 722) | SIOCIF_ATM_SNMPARP = -0x7fdf9687
constant SIOCIF_ATM_SVC (line 723) | SIOCIF_ATM_SVC = -0x7fdf9684
constant SIOCIF_ATM_UBR (line 724) | SIOCIF_ATM_UBR = -0x7fdf9688
constant SIOCIF_DEVHEALTH (line 725) | SIOCIF_DEVHEALTH = -0x7ffb966c
constant SIOCIF_IB_ARP_INCOMP (line 726) | SIOCIF_IB_ARP_INCOMP = -0x7fdf9677
constant SIOCIF_IB_ARP_TIMER (line 727) | SIOCIF_IB_ARP_TIMER = -0x7fdf9678
constant SIOCIF_IB_CLEAR_PINFO (line 728) | SIOCIF_IB_CLEAR_PINFO = -0x3fdf966f
constant SIOCIF_IB_DEL_ARP (line 729) | SIOCIF_IB_DEL_ARP = -0x7fdf967f
constant SIOCIF_IB_DEL_PINFO (line 730) | SIOCIF_IB_DEL_PINFO = -0x3fdf9670
constant SIOCIF_IB_DUMP_ARP (line 731) | SIOCIF_IB_DUMP_ARP = -0x7fdf9680
constant SIOCIF_IB_GET_ARP (line 732) | SIOCIF_IB_GET_ARP = -0x7fdf967e
constant SIOCIF_IB_GET_INFO (line 733) | SIOCIF_IB_GET_INFO = -0x3f879675
constant SIOCIF_IB_GET_STATS (line 734) | SIOCIF_IB_GET_STATS = -0x3f879672
constant SIOCIF_IB_NOTIFY_ADDR_REM (line 735) | SIOCIF_IB_NOTIFY_ADDR_REM = -0x3f87966a
constant SIOCIF_IB_RESET_STATS (line 736) | SIOCIF_IB_RESET_STATS = -0x3f879671
constant SIOCIF_IB_RESIZE_CQ (line 737) | SIOCIF_IB_RESIZE_CQ = -0x7fdf9679
constant SIOCIF_IB_SET_ARP (line 738) | SIOCIF_IB_SET_ARP = -0x7fdf967d
constant SIOCIF_IB_SET_PKEY (line 739) | SIOCIF_IB_SET_PKEY = -0x7fdf967c
constant SIOCIF_IB_SET_PORT (line 740) | SIOCIF_IB_SET_PORT = -0x7fdf967b
constant SIOCIF_IB_SET_QKEY (line 741) | SIOCIF_IB_SET_QKEY = -0x7fdf9676
constant SIOCIF_IB_SET_QSIZE (line 742) | SIOCIF_IB_SET_QSIZE = -0x7fdf967a
constant SIOCLISTIFVIPA (line 743) | SIOCLISTIFVIPA = 0x20006944
constant SIOCSARP (line 744) | SIOCSARP = -0x7fb396e2
constant SIOCSHIWAT (line 745) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 746) | SIOCSIFADDR = -0x7fd796f4
constant SIOCSIFADDRORI (line 747) | SIOCSIFADDRORI = -0x7fdb9673
constant SIOCSIFBRDADDR (line 748) | SIOCSIFBRDADDR = -0x7fd796ed
constant SIOCSIFDSTADDR (line 749) | SIOCSIFDSTADDR = -0x7fd796f2
constant SIOCSIFFLAGS (line 750) | SIOCSIFFLAGS = -0x7fd796f0
constant SIOCSIFGIDLIST (line 751) | SIOCSIFGIDLIST = 0x20006969
constant SIOCSIFMETRIC (line 752) | SIOCSIFMETRIC = -0x7fd796e8
constant SIOCSIFMTU (line 753) | SIOCSIFMTU = -0x7fd796a8
constant SIOCSIFNETDUMP (line 754) | SIOCSIFNETDUMP = -0x7fd796e4
constant SIOCSIFNETMASK (line 755) | SIOCSIFNETMASK = -0x7fd796ea
constant SIOCSIFOPTIONS (line 756) | SIOCSIFOPTIONS = -0x7fd796d7
constant SIOCSIFSUBCHAN (line 757) | SIOCSIFSUBCHAN = -0x7fd796e5
constant SIOCSISNO (line 758) | SIOCSISNO = -0x7fd79694
constant SIOCSLOADF (line 759) | SIOCSLOADF = -0x3ffb967d
constant SIOCSLOWAT (line 760) | SIOCSLOWAT = 0x80047302
constant SIOCSNETOPT (line 761) | SIOCSNETOPT = -0x7ffe96a6
constant SIOCSPGRP (line 762) | SIOCSPGRP = 0x80047308
constant SIOCSX25XLATE (line 763) | SIOCSX25XLATE = -0x7fd7969d
constant SOCK_CONN_DGRAM (line 764) | SOCK_CONN_DGRAM = 0x6
constant SOCK_DGRAM (line 765) | SOCK_DGRAM = 0x2
constant SOCK_RAW (line 766) | SOCK_RAW = 0x3
constant SOCK_RDM (line 767) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 768) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 769) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 770) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 771) | SOMAXCONN = 0x400
constant SO_ACCEPTCONN (line 772) | SO_ACCEPTCONN = 0x2
constant SO_AUDIT (line 773) | SO_AUDIT = 0x8000
constant SO_BROADCAST (line 774) | SO_BROADCAST = 0x20
constant SO_CKSUMRECV (line 775) | SO_CKSUMRECV = 0x800
constant SO_DEBUG (line 776) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 777) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 778) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 779) | SO_KEEPALIVE = 0x8
constant SO_KERNACCEPT (line 780) | SO_KERNACCEPT = 0x2000
constant SO_LINGER (line 781) | SO_LINGER = 0x80
constant SO_NOMULTIPATH (line 782) | SO_NOMULTIPATH = 0x4000
constant SO_NOREUSEADDR (line 783) | SO_NOREUSEADDR = 0x1000
constant SO_OOBINLINE (line 784) | SO_OOBINLINE = 0x100
constant SO_PEERID (line 785) | SO_PEERID = 0x1009
constant SO_RCVBUF (line 786) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 787) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 788) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 789) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 790) | SO_REUSEPORT = 0x200
constant SO_SNDBUF (line 791) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 792) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 793) | SO_SNDTIMEO = 0x1005
constant SO_TIMESTAMPNS (line 794) | SO_TIMESTAMPNS = 0x100a
constant SO_TYPE (line 795) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 796) | SO_USELOOPBACK = 0x40
constant SO_USE_IFBUFS (line 797) | SO_USE_IFBUFS = 0x400
constant S_BANDURG (line 798) | S_BANDURG = 0x400
constant S_EMODFMT (line 799) | S_EMODFMT = 0x3c000000
constant S_ENFMT (line 800) | S_ENFMT = 0x400
constant S_ERROR (line 801) | S_ERROR = 0x100
constant S_HANGUP (line 802) | S_HANGUP = 0x200
constant S_HIPRI (line 803) | S_HIPRI = 0x2
constant S_ICRYPTO (line 804) | S_ICRYPTO = 0x80000
constant S_IEXEC (line 805) | S_IEXEC = 0x40
constant S_IFBLK (line 806) | S_IFBLK = 0x6000
constant S_IFCHR (line 807) | S_IFCHR = 0x2000
constant S_IFDIR (line 808) | S_IFDIR = 0x4000
constant S_IFIFO (line 809) | S_IFIFO = 0x1000
constant S_IFJOURNAL (line 810) | S_IFJOURNAL = 0x10000
constant S_IFLNK (line 811) | S_IFLNK = 0xa000
constant S_IFMPX (line 812) | S_IFMPX = 0x2200
constant S_IFMT (line 813) | S_IFMT = 0xf000
constant S_IFPDIR (line 814) | S_IFPDIR = 0x4000000
constant S_IFPSDIR (line 815) | S_IFPSDIR = 0x8000000
constant S_IFPSSDIR (line 816) | S_IFPSSDIR = 0xc000000
constant S_IFREG (line 817) | S_IFREG = 0x8000
constant S_IFSOCK (line 818) | S_IFSOCK = 0xc000
constant S_IFSYSEA (line 819) | S_IFSYSEA = 0x30000000
constant S_INPUT (line 820) | S_INPUT = 0x1
constant S_IREAD (line 821) | S_IREAD = 0x100
constant S_IRGRP (line 822) | S_IRGRP = 0x20
constant S_IROTH (line 823) | S_IROTH = 0x4
constant S_IRUSR (line 824) | S_IRUSR = 0x100
constant S_IRWXG (line 825) | S_IRWXG = 0x38
constant S_IRWXO (line 826) | S_IRWXO = 0x7
constant S_IRWXU (line 827) | S_IRWXU = 0x1c0
constant S_ISGID (line 828) | S_ISGID = 0x400
constant S_ISUID (line 829) | S_ISUID = 0x800
constant S_ISVTX (line 830) | S_ISVTX = 0x200
constant S_ITCB (line 831) | S_ITCB = 0x1000000
constant S_ITP (line 832) | S_ITP = 0x800000
constant S_IWGRP (line 833) | S_IWGRP = 0x10
constant S_IWOTH (line 834) | S_IWOTH = 0x2
constant S_IWRITE (line 835) | S_IWRITE = 0x80
constant S_IWUSR (line 836) | S_IWUSR = 0x80
constant S_IXACL (line 837) | S_IXACL = 0x2000000
constant S_IXATTR (line 838) | S_IXATTR = 0x40000
constant S_IXGRP (line 839) | S_IXGRP = 0x8
constant S_IXINTERFACE (line 840) | S_IXINTERFACE = 0x100000
constant S_IXMOD (line 841) | S_IXMOD = 0x40000000
constant S_IXOTH (line 842) | S_IXOTH = 0x1
constant S_IXUSR (line 843) | S_IXUSR = 0x40
constant S_MSG (line 844) | S_MSG = 0x8
constant S_OUTPUT (line 845) | S_OUTPUT = 0x4
constant S_RDBAND (line 846) | S_RDBAND = 0x20
constant S_RDNORM (line 847) | S_RDNORM = 0x10
constant S_RESERVED1 (line 848) | S_RESERVED1 = 0x20000
constant S_RESERVED2 (line 849) | S_RESERVED2 = 0x200000
constant S_RESERVED3 (line 850) | S_RESERVED3 = 0x400000
constant S_RESERVED4 (line 851) | S_RESERVED4 = 0x80000000
constant S_RESFMT1 (line 852) | S_RESFMT1 = 0x10000000
constant S_RESFMT10 (line 853) | S_RESFMT10 = 0x34000000
constant S_RESFMT11 (line 854) | S_RESFMT11 = 0x38000000
constant S_RESFMT12 (line 855) | S_RESFMT12 = 0x3c000000
constant S_RESFMT2 (line 856) | S_RESFMT2 = 0x14000000
constant S_RESFMT3 (line 857) | S_RESFMT3 = 0x18000000
constant S_RESFMT4 (line 858) | S_RESFMT4 = 0x1c000000
constant S_RESFMT5 (line 859) | S_RESFMT5 = 0x20000000
constant S_RESFMT6 (line 860) | S_RESFMT6 = 0x24000000
constant S_RESFMT7 (line 861) | S_RESFMT7 = 0x28000000
constant S_RESFMT8 (line 862) | S_RESFMT8 = 0x2c000000
constant S_WRBAND (line 863) | S_WRBAND = 0x80
constant S_WRNORM (line 864) | S_WRNORM = 0x40
constant TAB0 (line 865) | TAB0 = 0x0
constant TAB1 (line 866) | TAB1 = 0x400
constant TAB2 (line 867) | TAB2 = 0x800
constant TAB3 (line 868) | TAB3 = 0xc00
constant TABDLY (line 869) | TABDLY = 0xc00
constant TCFLSH (line 870) | TCFLSH = 0x540c
constant TCGETA (line 871) | TCGETA = 0x5405
constant TCGETS (line 872) | TCGETS = 0x5401
constant TCIFLUSH (line 873) | TCIFLUSH = 0x0
constant TCIOFF (line 874) | TCIOFF = 0x2
constant TCIOFLUSH (line 875) | TCIOFLUSH = 0x2
constant TCION (line 876) | TCION = 0x3
constant TCOFLUSH (line 877) | TCOFLUSH = 0x1
constant TCOOFF (line 878) | TCOOFF = 0x0
constant TCOON (line 879) | TCOON = 0x1
constant TCP_24DAYS_WORTH_OF_SLOWTICKS (line 880) | TCP_24DAYS_WORTH_OF_SLOWTICKS = 0x3f4800
constant TCP_ACLADD (line 881) | TCP_ACLADD = 0x23
constant TCP_ACLBIND (line 882) | TCP_ACLBIND = 0x26
constant TCP_ACLCLEAR (line 883) | TCP_ACLCLEAR = 0x22
constant TCP_ACLDEL (line 884) | TCP_ACLDEL = 0x24
constant TCP_ACLDENY (line 885) | TCP_ACLDENY = 0x8
constant TCP_ACLFLUSH (line 886) | TCP_ACLFLUSH = 0x21
constant TCP_ACLGID (line 887) | TCP_ACLGID = 0x1
constant TCP_ACLLS (line 888) | TCP_ACLLS = 0x25
constant TCP_ACLSUBNET (line 889) | TCP_ACLSUBNET = 0x4
constant TCP_ACLUID (line 890) | TCP_ACLUID = 0x2
constant TCP_CWND_DF (line 891) | TCP_CWND_DF = 0x16
constant TCP_CWND_IF (line 892) | TCP_CWND_IF = 0x15
constant TCP_DELAY_ACK_FIN (line 893) | TCP_DELAY_ACK_FIN = 0x2
constant TCP_DELAY_ACK_SYN (line 894) | TCP_DELAY_ACK_SYN = 0x1
constant TCP_FASTNAME (line 895) | TCP_FASTNAME = 0x101080a
constant TCP_KEEPCNT (line 896) | TCP_KEEPCNT = 0x13
constant TCP_KEEPIDLE (line 897) | TCP_KEEPIDLE = 0x11
constant TCP_KEEPINTVL (line 898) | TCP_KEEPINTVL = 0x12
constant TCP_LSPRIV (line 899) | TCP_LSPRIV = 0x29
constant TCP_LUID (line 900) | TCP_LUID = 0x20
constant TCP_MAXBURST (line 901) | TCP_MAXBURST = 0x8
constant TCP_MAXDF (line 902) | TCP_MAXDF = 0x64
constant TCP_MAXIF (line 903) | TCP_MAXIF = 0x64
constant TCP_MAXSEG (line 904) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 905) | TCP_MAXWIN = 0xffff
constant TCP_MAXWINDOWSCALE (line 906) | TCP_MAXWINDOWSCALE = 0xe
constant TCP_MAX_SACK (line 907) | TCP_MAX_SACK = 0x4
constant TCP_MSS (line 908) | TCP_MSS = 0x5b4
constant TCP_NODELAY (line 909) | TCP_NODELAY = 0x1
constant TCP_NODELAYACK (line 910) | TCP_NODELAYACK = 0x14
constant TCP_NOREDUCE_CWND_EXIT_FRXMT (line 911) | TCP_NOREDUCE_CWND_EXIT_FRXMT = 0x19
constant TCP_NOREDUCE_CWND_IN_FRXMT (line 912) | TCP_NOREDUCE_CWND_IN_FRXMT = 0x18
constant TCP_NOTENTER_SSTART (line 913) | TCP_NOTENTER_SSTART = 0x17
constant TCP_OPT (line 914) | TCP_OPT = 0x19
constant TCP_RFC1323 (line 915) | TCP_RFC1323 = 0x4
constant TCP_SETPRIV (line 916) | TCP_SETPRIV = 0x27
constant TCP_STDURG (line 917) | TCP_STDURG = 0x10
constant TCP_TIMESTAMP_OPTLEN (line 918) | TCP_TIMESTAMP_OPTLEN = 0xc
constant TCP_UNSETPRIV (line 919) | TCP_UNSETPRIV = 0x28
constant TCSAFLUSH (line 920) | TCSAFLUSH = 0x2
constant TCSBRK (line 921) | TCSBRK = 0x5409
constant TCSETA (line 922) | TCSETA = 0x5406
constant TCSETAF (line 923) | TCSETAF = 0x5408
constant TCSETAW (line 924) | TCSETAW = 0x5407
constant TCSETS (line 925) | TCSETS = 0x5402
constant TCSETSF (line 926) | TCSETSF = 0x5404
constant TCSETSW (line 927) | TCSETSW = 0x5403
constant TCXONC (line 928) | TCXONC = 0x540b
constant TIMER_ABSTIME (line 929) | TIMER_ABSTIME = 0x3e7
constant TIMER_MAX (line 930) | TIMER_MAX = 0x20
constant TIOC (line 931) | TIOC = 0x5400
constant TIOCCBRK (line 932) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 933) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 934) | TIOCCONS = 0x80047462
constant TIOCEXCL (line 935) | TIOCEXCL = 0x2000740d
constant TIOCFLUSH (line 936) | TIOCFLUSH = 0x80047410
constant TIOCGETC (line 937) | TIOCGETC = 0x40067412
constant TIOCGETD (line 938) | TIOCGETD = 0x40047400
constant TIOCGETP (line 939) | TIOCGETP = 0x40067408
constant TIOCGLTC (line 940) | TIOCGLTC = 0x40067474
constant TIOCGPGRP (line 941) | TIOCGPGRP = 0x40047477
constant TIOCGSID (line 942) | TIOCGSID = 0x40047448
constant TIOCGSIZE (line 943) | TIOCGSIZE = 0x40087468
constant TIOCGWINSZ (line 944) | TIOCGWINSZ = 0x40087468
constant TIOCHPCL (line 945) | TIOCHPCL = 0x20007402
constant TIOCLBIC (line 946) | TIOCLBIC = 0x8004747e
constant TIOCLBIS (line 947) | TIOCLBIS = 0x8004747f
constant TIOCLGET (line 948) | TIOCLGET = 0x4004747c
constant TIOCLSET (line 949) | TIOCLSET = 0x8004747d
constant TIOCMBIC (line 950) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 951) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 952) | TIOCMGET = 0x4004746a
constant TIOCMIWAIT (line 953) | TIOCMIWAIT = 0x80047464
constant TIOCMODG (line 954) | TIOCMODG = 0x40047403
constant TIOCMODS (line 955) | TIOCMODS = 0x80047404
constant TIOCMSET (line 956) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 957) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 958) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 959) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 960) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 961) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 962) | TIOCM_LE = 0x1
constant TIOCM_RI (line 963) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 964) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 965) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 966) | TIOCM_SR = 0x10
constant TIOCM_ST (line 967) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 968) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 969) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 970) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 971) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 972) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 973) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 974) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 975) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_NOSTOP (line 976) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 977) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 978) | TIOCPKT_STOP = 0x4
constant TIOCREMOTE (line 979) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 980) | TIOCSBRK = 0x2000747b
constant TIOCSDTR (line 981) | TIOCSDTR = 0x20007479
constant TIOCSETC (line 982) | TIOCSETC = 0x80067411
constant TIOCSETD (line 983) | TIOCSETD = 0x80047401
constant TIOCSETN (line 984) | TIOCSETN = 0x8006740a
constant TIOCSETP (line 985) | TIOCSETP = 0x80067409
constant TIOCSLTC (line 986) | TIOCSLTC = 0x80067475
constant TIOCSPGRP (line 987) | TIOCSPGRP = 0x80047476
constant TIOCSSIZE (line 988) | TIOCSSIZE = 0x80087467
constant TIOCSTART (line 989) | TIOCSTART = 0x2000746e
constant TIOCSTI (line 990) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 991) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 992) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 993) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 994) | TOSTOP = 0x10000
constant UTIME_NOW (line 995) | UTIME_NOW = -0x2
constant UTIME_OMIT (line 996) | UTIME_OMIT = -0x3
constant VDISCRD (line 997) | VDISCRD = 0xc
constant VDSUSP (line 998) | VDSUSP = 0xa
constant VEOF (line 999) | VEOF = 0x4
constant VEOL (line 1000) | VEOL = 0x5
constant VEOL2 (line 1001) | VEOL2 = 0x6
constant VERASE (line 1002) | VERASE = 0x2
constant VINTR (line 1003) | VINTR = 0x0
constant VKILL (line 1004) | VKILL = 0x3
constant VLNEXT (line 1005) | VLNEXT = 0xe
constant VMIN (line 1006) | VMIN = 0x4
constant VQUIT (line 1007) | VQUIT = 0x1
constant VREPRINT (line 1008) | VREPRINT = 0xb
constant VSTART (line 1009) | VSTART = 0x7
constant VSTOP (line 1010) | VSTOP = 0x8
constant VSTRT (line 1011) | VSTRT = 0x7
constant VSUSP (line 1012) | VSUSP = 0x9
constant VT0 (line 1013) | VT0 = 0x0
constant VT1 (line 1014) | VT1 = 0x8000
constant VTDELAY (line 1015) | VTDELAY = 0x2000
constant VTDLY (line 1016) | VTDLY = 0x8000
constant VTIME (line 1017) | VTIME = 0x5
constant VWERSE (line 1018) | VWERSE = 0xd
constant WPARSTART (line 1019) | WPARSTART = 0x1
constant WPARSTOP (line 1020) | WPARSTOP = 0x2
constant WPARTTYNAME (line 1021) | WPARTTYNAME = "Global"
constant XCASE (line 1022) | XCASE = 0x4
constant XTABS (line 1023) | XTABS = 0xc00
constant _FDATAFLUSH (line 1024) | _FDATAFLUSH = 0x2000000000
constant E2BIG (line 1029) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1030) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1031) | EADDRINUSE = syscall.Errno(0x43)
constant EADDRNOTAVAIL (line 1032) | EADDRNOTAVAIL = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 1033) | EAFNOSUPPORT = syscall.Errno(0x42)
constant EAGAIN (line 1034) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 1035) | EALREADY = syscall.Errno(0x38)
constant EBADF (line 1036) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1037) | EBADMSG = syscall.Errno(0x78)
constant EBUSY (line 1038) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1039) | ECANCELED = syscall.Errno(0x75)
constant ECHILD (line 1040) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 1041) | ECHRNG = syscall.Errno(0x25)
constant ECLONEME (line 1042) | ECLONEME = syscall.Errno(0x52)
constant ECONNABORTED (line 1043) | ECONNABORTED = syscall.Errno(0x48)
constant ECONNREFUSED (line 1044) | ECONNREFUSED = syscall.Errno(0x4f)
constant ECONNRESET (line 1045) | ECONNRESET = syscall.Errno(0x49)
constant ECORRUPT (line 1046) | ECORRUPT = syscall.Errno(0x59)
constant EDEADLK (line 1047) | EDEADLK = syscall.Errno(0x2d)
constant EDESTADDREQ (line 1048) | EDESTADDREQ = syscall.Errno(0x3a)
constant EDESTADDRREQ (line 1049) | EDESTADDRREQ = syscall.Errno(0x3a)
constant EDIST (line 1050) | EDIST = syscall.Errno(0x35)
constant EDOM (line 1051) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1052) | EDQUOT = syscall.Errno(0x58)
constant EEXIST (line 1053) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1054) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1055) | EFBIG = syscall.Errno(0x1b)
constant EFORMAT (line 1056) | EFORMAT = syscall.Errno(0x30)
constant EHOSTDOWN (line 1057) | EHOSTDOWN = syscall.Errno(0x50)
constant EHOSTUNREACH (line 1058) | EHOSTUNREACH = syscall.Errno(0x51)
constant EIDRM (line 1059) | EIDRM = syscall.Errno(0x24)
constant EILSEQ (line 1060) | EILSEQ = syscall.Errno(0x74)
constant EINPROGRESS (line 1061) | EINPROGRESS = syscall.Errno(0x37)
constant EINTR (line 1062) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1063) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1064) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1065) | EISCONN = syscall.Errno(0x4b)
constant EISDIR (line 1066) | EISDIR = syscall.Errno(0x15)
constant EL2HLT (line 1067) | EL2HLT = syscall.Errno(0x2c)
constant EL2NSYNC (line 1068) | EL2NSYNC = syscall.Errno(0x26)
constant EL3HLT (line 1069) | EL3HLT = syscall.Errno(0x27)
constant EL3RST (line 1070) | EL3RST = syscall.Errno(0x28)
constant ELNRNG (line 1071) | ELNRNG = syscall.Errno(0x29)
constant ELOOP (line 1072) | ELOOP = syscall.Errno(0x55)
constant EMEDIA (line 1073) | EMEDIA = syscall.Errno(0x6e)
constant EMFILE (line 1074) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1075) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1076) | EMSGSIZE = syscall.Errno(0x3b)
constant EMULTIHOP (line 1077) | EMULTIHOP = syscall.Errno(0x7d)
constant ENAMETOOLONG (line 1078) | ENAMETOOLONG = syscall.Errno(0x56)
constant ENETDOWN (line 1079) | ENETDOWN = syscall.Errno(0x45)
constant ENETRESET (line 1080) | ENETRESET = syscall.Errno(0x47)
constant ENETUNREACH (line 1081) | ENETUNREACH = syscall.Errno(0x46)
constant ENFILE (line 1082) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1083) | ENOATTR = syscall.Errno(0x70)
constant ENOBUFS (line 1084) | ENOBUFS = syscall.Errno(0x4a)
constant ENOCONNECT (line 1085) | ENOCONNECT = syscall.Errno(0x32)
constant ENOCSI (line 1086) | ENOCSI = syscall.Errno(0x2b)
constant ENODATA (line 1087) | ENODATA = syscall.Errno(0x7a)
constant ENODEV (line 1088) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1089) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1090) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1091) | ENOLCK = syscall.Errno(0x31)
constant ENOLINK (line 1092) | ENOLINK = syscall.Errno(0x7e)
constant ENOMEM (line 1093) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1094) | ENOMSG = syscall.Errno(0x23)
constant ENOPROTOOPT (line 1095) | ENOPROTOOPT = syscall.Errno(0x3d)
constant ENOSPC (line 1096) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1097) | ENOSR = syscall.Errno(0x76)
constant ENOSTR (line 1098) | ENOSTR = syscall.Errno(0x7b)
constant ENOSYS (line 1099) | ENOSYS = syscall.Errno(0x6d)
constant ENOTBLK (line 1100) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1101) | ENOTCONN = syscall.Errno(0x4c)
constant ENOTDIR (line 1102) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1103) | ENOTEMPTY = syscall.Errno(0x11)
constant ENOTREADY (line 1104) | ENOTREADY = syscall.Errno(0x2e)
constant ENOTRECOVERABLE (line 1105) | ENOTRECOVERABLE = syscall.Errno(0x5e)
constant ENOTRUST (line 1106) | ENOTRUST = syscall.Errno(0x72)
constant ENOTSOCK (line 1107) | ENOTSOCK = syscall.Errno(0x39)
constant ENOTSUP (line 1108) | ENOTSUP = syscall.Errno(0x7c)
constant ENOTTY (line 1109) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1110) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1111) | EOPNOTSUPP = syscall.Errno(0x40)
constant EOVERFLOW (line 1112) | EOVERFLOW = syscall.Errno(0x7f)
constant EOWNERDEAD (line 1113) | EOWNERDEAD = syscall.Errno(0x5f)
constant EPERM (line 1114) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1115) | EPFNOSUPPORT = syscall.Errno(0x41)
constant EPIPE (line 1116) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1117) | EPROCLIM = syscall.Errno(0x53)
constant EPROTO (line 1118) | EPROTO = syscall.Errno(0x79)
constant EPROTONOSUPPORT (line 1119) | EPROTONOSUPPORT = syscall.Errno(0x3e)
constant EPROTOTYPE (line 1120) | EPROTOTYPE = syscall.Errno(0x3c)
constant ERANGE (line 1121) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1122) | EREMOTE = syscall.Errno(0x5d)
constant ERESTART (line 1123) | ERESTART = syscall.Errno(0x52)
constant EROFS (line 1124) | EROFS = syscall.Errno(0x1e)
constant ESAD (line 1125) | ESAD = syscall.Errno(0x71)
constant ESHUTDOWN (line 1126) | ESHUTDOWN = syscall.Errno(0x4d)
constant ESOCKTNOSUPPORT (line 1127) | ESOCKTNOSUPPORT = syscall.Errno(0x3f)
constant ESOFT (line 1128) | ESOFT = syscall.Errno(0x6f)
constant ESPIPE (line 1129) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1130) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1131) | ESTALE = syscall.Errno(0x34)
constant ESYSERROR (line 1132) | ESYSERROR = syscall.Errno(0x5a)
constant ETIME (line 1133) | ETIME = syscall.Errno(0x77)
constant ETIMEDOUT (line 1134) | ETIMEDOUT = syscall.Errno(0x4e)
constant ETOOMANYREFS (line 1135) | ETOOMANYREFS = syscall.Errno(0x73)
constant ETXTBSY (line 1136) | ETXTBSY = syscall.Errno(0x1a)
constant EUNATCH (line 1137) | EUNATCH = syscall.Errno(0x2a)
constant EUSERS (line 1138) | EUSERS = syscall.Errno(0x54)
constant EWOULDBLOCK (line 1139) | EWOULDBLOCK = syscall.Errno(0xb)
constant EWRPROTECT (line 1140) | EWRPROTECT = syscall.Errno(0x2f)
constant EXDEV (line 1141) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1146) | SIGABRT = syscall.Signal(0x6)
constant SIGAIO (line 1147) | SIGAIO = syscall.Signal(0x17)
constant SIGALRM (line 1148) | SIGALRM = syscall.Signal(0xe)
constant SIGALRM1 (line 1149) | SIGALRM1 = syscall.Signal(0x26)
constant SIGBUS (line 1150) | SIGBUS = syscall.Signal(0xa)
constant SIGCAPI (line 1151) | SIGCAPI = syscall.Signal(0x31)
constant SIGCHLD (line 1152) | SIGCHLD = syscall.Signal(0x14)
constant SIGCLD (line 1153) | SIGCLD = syscall.Signal(0x14)
constant SIGCONT (line 1154) | SIGCONT = syscall.Signal(0x13)
constant SIGCPUFAIL (line 1155) | SIGCPUFAIL = syscall.Signal(0x3b)
constant SIGDANGER (line 1156) | SIGDANGER = syscall.Signal(0x21)
constant SIGEMT (line 1157) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1158) | SIGFPE = syscall.Signal(0x8)
constant SIGGRANT (line 1159) | SIGGRANT = syscall.Signal(0x3c)
constant SIGHUP (line 1160) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1161) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 1162) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1163) | SIGIO = syscall.Signal(0x17)
constant SIGIOINT (line 1164) | SIGIOINT = syscall.Signal(0x10)
constant SIGIOT (line 1165) | SIGIOT = syscall.Signal(0x6)
constant SIGKAP (line 1166) | SIGKAP = syscall.Signal(0x3c)
constant SIGKILL (line 1167) | SIGKILL = syscall.Signal(0x9)
constant SIGLOST (line 1168) | SIGLOST = syscall.Signal(0x6)
constant SIGMAX (line 1169) | SIGMAX = syscall.Signal(0x3f)
constant SIGMAX32 (line 1170) | SIGMAX32 = syscall.Signal(0x3f)
constant SIGMIGRATE (line 1171) | SIGMIGRATE = syscall.Signal(0x23)
constant SIGMSG (line 1172) | SIGMSG = syscall.Signal(0x1b)
constant SIGPIPE (line 1173) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 1174) | SIGPOLL = syscall.Signal(0x17)
constant SIGPRE (line 1175) | SIGPRE = syscall.Signal(0x24)
constant SIGPROF (line 1176) | SIGPROF = syscall.Signal(0x20)
constant SIGPTY (line 1177) | SIGPTY = syscall.Signal(0x17)
constant SIGPWR (line 1178) | SIGPWR = syscall.Signal(0x1d)
constant SIGQUIT (line 1179) | SIGQUIT = syscall.Signal(0x3)
constant SIGRECONFIG (line 1180) | SIGRECONFIG = syscall.Signal(0x3a)
constant SIGRETRACT (line 1181) | SIGRETRACT = syscall.Signal(0x3d)
constant SIGSAK (line 1182) | SIGSAK = syscall.Signal(0x3f)
constant SIGSEGV (line 1183) | SIGSEGV = syscall.Signal(0xb)
constant SIGSOUND (line 1184) | SIGSOUND = syscall.Signal(0x3e)
constant SIGSTOP (line 1185) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1186) | SIGSYS = syscall.Signal(0xc)
constant SIGSYSERROR (line 1187) | SIGSYSERROR = syscall.Signal(0x30)
constant SIGTALRM (line 1188) | SIGTALRM = syscall.Signal(0x26)
constant SIGTERM (line 1189) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1190) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1191) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1192) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1193) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1194) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1195) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1196) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVIRT (line 1197) | SIGVIRT = syscall.Signal(0x25)
constant SIGVTALRM (line 1198) | SIGVTALRM = syscall.Signal(0x22)
constant SIGWAITING (line 1199) | SIGWAITING = syscall.Signal(0x27)
constant SIGWINCH (line 1200) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1201) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1202) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go
constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10
constant AF_BYPASS (line 15) | AF_BYPASS = 0x19
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_HYLINK (line 22) | AF_HYLINK = 0xf
constant AF_IMPLINK (line 23) | AF_IMPLINK = 0x3
constant AF_INET (line 24) | AF_INET = 0x2
constant AF_INET6 (line 25) | AF_INET6 = 0x18
constant AF_INTF (line 26) | AF_INTF = 0x14
constant AF_ISO (line 27) | AF_ISO = 0x7
constant AF_LAT (line 28) | AF_LAT = 0xe
constant AF_LINK (line 29) | AF_LINK = 0x12
constant AF_LOCAL (line 30) | AF_LOCAL = 0x1
constant AF_MAX (line 31) | AF_MAX = 0x1e
constant AF_NDD (line 32) | AF_NDD = 0x17
constant AF_NETWARE (line 33) | AF_NETWARE = 0x16
constant AF_NS (line 34) | AF_NS = 0x6
constant AF_OSI (line 35) | AF_OSI = 0x7
constant AF_PUP (line 36) | AF_PUP = 0x4
constant AF_RIF (line 37) | AF_RIF = 0x15
constant AF_ROUTE (line 38) | AF_ROUTE = 0x11
constant AF_SNA (line 39) | AF_SNA = 0xb
constant AF_UNIX (line 40) | AF_UNIX = 0x1
constant AF_UNSPEC (line 41) | AF_UNSPEC = 0x0
constant ALTWERASE (line 42) | ALTWERASE = 0x400000
constant ARPHRD_802_3 (line 43) | ARPHRD_802_3 = 0x6
constant ARPHRD_802_5 (line 44) | ARPHRD_802_5 = 0x6
constant ARPHRD_ETHER (line 45) | ARPHRD_ETHER = 0x1
constant ARPHRD_FDDI (line 46) | ARPHRD_FDDI = 0x1
constant B0 (line 47) | B0 = 0x0
constant B110 (line 48) | B110 = 0x3
constant B1200 (line 49) | B1200 = 0x9
constant B134 (line 50) | B134 = 0x4
constant B150 (line 51) | B150 = 0x5
constant B1800 (line 52) | B1800 = 0xa
constant B19200 (line 53) | B19200 = 0xe
constant B200 (line 54) | B200 = 0x6
constant B2400 (line 55) | B2400 = 0xb
constant B300 (line 56) | B300 = 0x7
constant B38400 (line 57) | B38400 = 0xf
constant B4800 (line 58) | B4800 = 0xc
constant B50 (line 59) | B50 = 0x1
constant B600 (line 60) | B600 = 0x8
constant B75 (line 61) | B75 = 0x2
constant B9600 (line 62) | B9600 = 0xd
constant BRKINT (line 63) | BRKINT = 0x2
constant BS0 (line 64) | BS0 = 0x0
constant BS1 (line 65) | BS1 = 0x1000
constant BSDLY (line 66) | BSDLY = 0x1000
constant CAP_AACCT (line 67) | CAP_AACCT = 0x6
constant CAP_ARM_APPLICATION (line 68) | CAP_ARM_APPLICATION = 0x5
constant CAP_BYPASS_RAC_VMM (line 69) | CAP_BYPASS_RAC_VMM = 0x3
constant CAP_CLEAR (line 70) | CAP_CLEAR = 0x0
constant CAP_CREDENTIALS (line 71) | CAP_CREDENTIALS = 0x7
constant CAP_EFFECTIVE (line 72) | CAP_EFFECTIVE = 0x1
constant CAP_EWLM_AGENT (line 73) | CAP_EWLM_AGENT = 0x4
constant CAP_INHERITABLE (line 74) | CAP_INHERITABLE = 0x2
constant CAP_MAXIMUM (line 75) | CAP_MAXIMUM = 0x7
constant CAP_NUMA_ATTACH (line 76) | CAP_NUMA_ATTACH = 0x2
constant CAP_PERMITTED (line 77) | CAP_PERMITTED = 0x3
constant CAP_PROPAGATE (line 78) | CAP_PROPAGATE = 0x1
constant CAP_PROPOGATE (line 79) | CAP_PROPOGATE = 0x1
constant CAP_SET (line 80) | CAP_SET = 0x1
constant CBAUD (line 81) | CBAUD = 0xf
constant CFLUSH (line 82) | CFLUSH = 0xf
constant CIBAUD (line 83) | CIBAUD = 0xf0000
constant CLOCAL (line 84) | CLOCAL = 0x800
constant CLOCK_MONOTONIC (line 85) | CLOCK_MONOTONIC = 0xa
constant CLOCK_PROCESS_CPUTIME_ID (line 86) | CLOCK_PROCESS_CPUTIME_ID = 0xb
constant CLOCK_REALTIME (line 87) | CLOCK_REALTIME = 0x9
constant CLOCK_THREAD_CPUTIME_ID (line 88) | CLOCK_THREAD_CPUTIME_ID = 0xc
constant CR0 (line 89) | CR0 = 0x0
constant CR1 (line 90) | CR1 = 0x100
constant CR2 (line 91) | CR2 = 0x200
constant CR3 (line 92) | CR3 = 0x300
constant CRDLY (line 93) | CRDLY = 0x300
constant CREAD (line 94) | CREAD = 0x80
constant CS5 (line 95) | CS5 = 0x0
constant CS6 (line 96) | CS6 = 0x10
constant CS7 (line 97) | CS7 = 0x20
constant CS8 (line 98) | CS8 = 0x30
constant CSIOCGIFCONF (line 99) | CSIOCGIFCONF = -0x3fef96dc
constant CSIZE (line 100) | CSIZE = 0x30
constant CSMAP_DIR (line 101) | CSMAP_DIR = "/usr/lib/nls/csmap/"
constant CSTART (line 102) | CSTART = '\021'
constant CSTOP (line 103) | CSTOP = '\023'
constant CSTOPB (line 104) | CSTOPB = 0x40
constant CSUSP (line 105) | CSUSP = 0x1a
constant ECHO (line 106) | ECHO = 0x8
constant ECHOCTL (line 107) | ECHOCTL = 0x20000
constant ECHOE (line 108) | ECHOE = 0x10
constant ECHOK (line 109) | ECHOK = 0x20
constant ECHOKE (line 110) | ECHOKE = 0x80000
constant ECHONL (line 111) | ECHONL = 0x40
constant ECHOPRT (line 112) | ECHOPRT = 0x40000
constant ECH_ICMPID (line 113) | ECH_ICMPID = 0x2
constant ETHERNET_CSMACD (line 114) | ETHERNET_CSMACD = 0x6
constant EVENP (line 115) | EVENP = 0x80
constant EXCONTINUE (line 116) | EXCONTINUE = 0x0
constant EXDLOK (line 117) | EXDLOK = 0x3
constant EXIO (line 118) | EXIO = 0x2
constant EXPGIO (line 119) | EXPGIO = 0x0
constant EXRESUME (line 120) | EXRESUME = 0x2
constant EXRETURN (line 121) | EXRETURN = 0x1
constant EXSIG (line 122) | EXSIG = 0x4
constant EXTA (line 123) | EXTA = 0xe
constant EXTB (line 124) | EXTB = 0xf
constant EXTRAP (line 125) | EXTRAP = 0x1
constant EYEC_RTENTRYA (line 126) | EYEC_RTENTRYA = 0x257274656e747241
constant EYEC_RTENTRYF (line 127) | EYEC_RTENTRYF = 0x257274656e747246
constant E_ACC (line 128) | E_ACC = 0x0
constant FD_CLOEXEC (line 129) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 130) | FD_SETSIZE = 0xfffe
constant FF0 (line 131) | FF0 = 0x0
constant FF1 (line 132) | FF1 = 0x2000
constant FFDLY (line 133) | FFDLY = 0x2000
constant FLUSHBAND (line 134) | FLUSHBAND = 0x40
constant FLUSHLOW (line 135) | FLUSHLOW = 0x8
constant FLUSHO (line 136) | FLUSHO = 0x100000
constant FLUSHR (line 137) | FLUSHR = 0x1
constant FLUSHRW (line 138) | FLUSHRW = 0x3
constant FLUSHW (line 139) | FLUSHW = 0x2
constant F_CLOSEM (line 140) | F_CLOSEM = 0xa
constant F_DUP2FD (line 141) | F_DUP2FD = 0xe
constant F_DUPFD (line 142) | F_DUPFD = 0x0
constant F_GETFD (line 143) | F_GETFD = 0x1
constant F_GETFL (line 144) | F_GETFL = 0x3
constant F_GETLK (line 145) | F_GETLK = 0xb
constant F_GETLK64 (line 146) | F_GETLK64 = 0xb
constant F_GETOWN (line 147) | F_GETOWN = 0x8
constant F_LOCK (line 148) | F_LOCK = 0x1
constant F_OK (line 149) | F_OK = 0x0
constant F_RDLCK (line 150) | F_RDLCK = 0x1
constant F_SETFD (line 151) | F_SETFD = 0x2
constant F_SETFL (line 152) | F_SETFL = 0x4
constant F_SETLK (line 153) | F_SETLK = 0xc
constant F_SETLK64 (line 154) | F_SETLK64 = 0xc
constant F_SETLKW (line 155) | F_SETLKW = 0xd
constant F_SETLKW64 (line 156) | F_SETLKW64 = 0xd
constant F_SETOWN (line 157) | F_SETOWN = 0x9
constant F_TEST (line 158) | F_TEST = 0x3
constant F_TLOCK (line 159) | F_TLOCK = 0x2
constant F_TSTLK (line 160) | F_TSTLK = 0xf
constant F_ULOCK (line 161) | F_ULOCK = 0x0
constant F_UNLCK (line 162) | F_UNLCK = 0x3
constant F_WRLCK (line 163) | F_WRLCK = 0x2
constant HUPCL (line 164) | HUPCL = 0x400
constant IBSHIFT (line 165) | IBSHIFT = 0x10
constant ICANON (line 166) | ICANON = 0x2
constant ICMP6_FILTER (line 167) | ICMP6_FILTER = 0x26
constant ICMP6_SEC_SEND_DEL (line 168) | ICMP6_SEC_SEND_DEL = 0x46
constant ICMP6_SEC_SEND_GET (line 169) | ICMP6_SEC_SEND_GET = 0x47
constant ICMP6_SEC_SEND_SET (line 170) | ICMP6_SEC_SEND_SET = 0x44
constant ICMP6_SEC_SEND_SET_CGA_ADDR (line 171) | ICMP6_SEC_SEND_SET_CGA_ADDR = 0x45
constant ICRNL (line 172) | ICRNL = 0x100
constant IEXTEN (line 173) | IEXTEN = 0x200000
constant IFA_FIRSTALIAS (line 174) | IFA_FIRSTALIAS = 0x2000
constant IFA_ROUTE (line 175) | IFA_ROUTE = 0x1
constant IFF_64BIT (line 176) | IFF_64BIT = 0x4000000
constant IFF_ALLCAST (line 177) | IFF_ALLCAST = 0x20000
constant IFF_ALLMULTI (line 178) | IFF_ALLMULTI = 0x200
constant IFF_BPF (line 179) | IFF_BPF = 0x8000000
constant IFF_BRIDGE (line 180) | IFF_BRIDGE = 0x40000
constant IFF_BROADCAST (line 181) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 182) | IFF_CANTCHANGE = 0x80c52
constant IFF_CHECKSUM_OFFLOAD (line 183) | IFF_CHECKSUM_OFFLOAD = 0x10000000
constant IFF_D1 (line 184) | IFF_D1 = 0x8000
constant IFF_D2 (line 185) | IFF_D2 = 0x4000
constant IFF_D3 (line 186) | IFF_D3 = 0x2000
constant IFF_D4 (line 187) | IFF_D4 = 0x1000
constant IFF_DEBUG (line 188) | IFF_DEBUG = 0x4
constant IFF_DEVHEALTH (line 189) | IFF_DEVHEALTH = 0x4000
constant IFF_DO_HW_LOOPBACK (line 190) | IFF_DO_HW_LOOPBACK = 0x10000
constant IFF_GROUP_ROUTING (line 191) | IFF_GROUP_ROUTING = 0x2000000
constant IFF_IFBUFMGT (line 192) | IFF_IFBUFMGT = 0x800000
constant IFF_LINK0 (line 193) | IFF_LINK0 = 0x100000
constant IFF_LINK1 (line 194) | IFF_LINK1 = 0x200000
constant IFF_LINK2 (line 195) | IFF_LINK2 = 0x400000
constant IFF_LOOPBACK (line 196) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 197) | IFF_MULTICAST = 0x80000
constant IFF_NOARP (line 198) | IFF_NOARP = 0x80
constant IFF_NOECHO (line 199) | IFF_NOECHO = 0x800
constant IFF_NOTRAILERS (line 200) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 201) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 202) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 203) | IFF_PROMISC = 0x100
constant IFF_PSEG (line 204) | IFF_PSEG = 0x40000000
constant IFF_RUNNING (line 205) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 206) | IFF_SIMPLEX = 0x800
constant IFF_SNAP (line 207) | IFF_SNAP = 0x8000
constant IFF_TCP_DISABLE_CKSUM (line 208) | IFF_TCP_DISABLE_CKSUM = 0x20000000
constant IFF_TCP_NOCKSUM (line 209) | IFF_TCP_NOCKSUM = 0x1000000
constant IFF_UP (line 210) | IFF_UP = 0x1
constant IFF_VIPA (line 211) | IFF_VIPA = 0x80000000
constant IFNAMSIZ (line 212) | IFNAMSIZ = 0x10
constant IFO_FLUSH (line 213) | IFO_FLUSH = 0x1
constant IFT_1822 (line 214) | IFT_1822 = 0x2
constant IFT_AAL5 (line 215) | IFT_AAL5 = 0x31
constant IFT_ARCNET (line 216) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 217) | IFT_ARCNETPLUS = 0x24
constant IFT_ATM (line 218) | IFT_ATM = 0x25
constant IFT_CEPT (line 219) | IFT_CEPT = 0x13
constant IFT_CLUSTER (line 220) | IFT_CLUSTER = 0x3e
constant IFT_DS3 (line 221) | IFT_DS3 = 0x1e
constant IFT_EON (line 222) | IFT_EON = 0x19
constant IFT_ETHER (line 223) | IFT_ETHER = 0x6
constant IFT_FCS (line 224) | IFT_FCS = 0x3a
constant IFT_FDDI (line 225) | IFT_FDDI = 0xf
constant IFT_FRELAY (line 226) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 227) | IFT_FRELAYDCE = 0x2c
constant IFT_GIFTUNNEL (line 228) | IFT_GIFTUNNEL = 0x3c
constant IFT_HDH1822 (line 229) | IFT_HDH1822 = 0x3
constant IFT_HF (line 230) | IFT_HF = 0x3d
constant IFT_HIPPI (line 231) | IFT_HIPPI = 0x2f
constant IFT_HSSI (line 232) | IFT_HSSI = 0x2e
constant IFT_HY (line 233) | IFT_HY = 0xe
constant IFT_IB (line 234) | IFT_IB = 0xc7
constant IFT_ISDNBASIC (line 235) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 236) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISO88022LLC (line 237) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 238) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 239) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 240) | IFT_ISO88025 = 0x9
constant IFT_ISO88026 (line 241) | IFT_ISO88026 = 0xa
constant IFT_LAPB (line 242) | IFT_LAPB = 0x10
constant IFT_LOCALTALK (line 243) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 244) | IFT_LOOP = 0x18
constant IFT_MIOX25 (line 245) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 246) | IFT_MODEM = 0x30
constant IFT_NSIP (line 247) | IFT_NSIP = 0x1b
constant IFT_OTHER (line 248) | IFT_OTHER = 0x1
constant IFT_P10 (line 249) | IFT_P10 = 0xc
constant IFT_P80 (line 250) | IFT_P80 = 0xd
constant IFT_PARA (line 251) | IFT_PARA = 0x22
constant IFT_PPP (line 252) | IFT_PPP = 0x17
constant IFT_PROPMUX (line 253) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 254) | IFT_PROPVIRTUAL = 0x35
constant IFT_PTPSERIAL (line 255) | IFT_PTPSERIAL = 0x16
constant IFT_RS232 (line 256) | IFT_RS232 = 0x21
constant IFT_SDLC (line 257) | IFT_SDLC = 0x11
constant IFT_SIP (line 258) | IFT_SIP = 0x1f
constant IFT_SLIP (line 259) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 260) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 261) | IFT_SMDSICIP = 0x34
constant IFT_SN (line 262) | IFT_SN = 0x38
constant IFT_SONET (line 263) | IFT_SONET = 0x27
constant IFT_SONETPATH (line 264) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 265) | IFT_SONETVT = 0x33
constant IFT_SP (line 266) | IFT_SP = 0x39
constant IFT_STARLAN (line 267) | IFT_STARLAN = 0xb
constant IFT_T1 (line 268) | IFT_T1 = 0x12
constant IFT_TUNNEL (line 269) | IFT_TUNNEL = 0x3b
constant IFT_ULTRA (line 270) | IFT_ULTRA = 0x1d
constant IFT_V35 (line 271) | IFT_V35 = 0x2d
constant IFT_VIPA (line 272) | IFT_VIPA = 0x37
constant IFT_X25 (line 273) | IFT_X25 = 0x5
constant IFT_X25DDN (line 274) | IFT_X25DDN = 0x4
constant IFT_X25PLE (line 275) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 276) | IFT_XETHER = 0x1a
constant IGNBRK (line 277) | IGNBRK = 0x1
constant IGNCR (line 278) | IGNCR = 0x80
constant IGNPAR (line 279) | IGNPAR = 0x4
constant IMAXBEL (line 280) | IMAXBEL = 0x10000
constant INLCR (line 281) | INLCR = 0x40
constant INPCK (line 282) | INPCK = 0x10
constant IN_CLASSA_HOST (line 283) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 284) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 285) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 286) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 287) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 288) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 289) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 290) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 291) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 292) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 293) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 294) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 295) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 296) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 297) | IN_LOOPBACKNET = 0x7f
constant IN_USE (line 298) | IN_USE = 0x1
constant IPPROTO_AH (line 299) | IPPROTO_AH = 0x33
constant IPPROTO_BIP (line 300) | IPPROTO_BIP = 0x53
constant IPPROTO_DSTOPTS (line 301) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 302) | IPPROTO_EGP = 0x8
constant IPPROTO_EON (line 303) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 304) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 305) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 306) | IPPROTO_GGP = 0x3
constant IPPROTO_GIF (line 307) | IPPROTO_GIF = 0x8c
constant IPPROTO_GRE (line 308) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 309) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 310) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 311) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 312) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 313) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 314) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 315) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 316) | IPPROTO_IPV6 = 0x29
constant IPPROTO_LOCAL (line 317) | IPPROTO_LOCAL = 0x3f
constant IPPROTO_MAX (line 318) | IPPROTO_MAX = 0x100
constant IPPROTO_MH (line 319) | IPPROTO_MH = 0x87
constant IPPROTO_NONE (line 320) | IPPROTO_NONE = 0x3b
constant IPPROTO_PUP (line 321) | IPPROTO_PUP = 0xc
constant IPPROTO_QOS (line 322) | IPPROTO_QOS = 0x2d
constant IPPROTO_RAW (line 323) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 324) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 325) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 326) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 327) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 328) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 329) | IPPROTO_UDP = 0x11
constant IPV6_ADDRFORM (line 330) | IPV6_ADDRFORM = 0x16
constant IPV6_ADDR_PREFERENCES (line 331) | IPV6_ADDR_PREFERENCES = 0x4a
constant IPV6_ADD_MEMBERSHIP (line 332) | IPV6_ADD_MEMBERSHIP = 0xc
constant IPV6_AIXRAWSOCKET (line 333) | IPV6_AIXRAWSOCKET = 0x39
constant IPV6_CHECKSUM (line 334) | IPV6_CHECKSUM = 0x27
constant IPV6_DONTFRAG (line 335) | IPV6_DONTFRAG = 0x2d
constant IPV6_DROP_MEMBERSHIP (line 336) | IPV6_DROP_MEMBERSHIP = 0xd
constant IPV6_DSTOPTS (line 337) | IPV6_DSTOPTS = 0x36
constant IPV6_FLOWINFO_FLOWLABEL (line 338) | IPV6_FLOWINFO_FLOWLABEL = 0xffffff
constant IPV6_FLOWINFO_PRIFLOW (line 339) | IPV6_FLOWINFO_PRIFLOW = 0xfffffff
constant IPV6_FLOWINFO_PRIORITY (line 340) | IPV6_FLOWINFO_PRIORITY = 0xf000000
constant IPV6_FLOWINFO_SRFLAG (line 341) | IPV6_FLOWINFO_SRFLAG = 0x10000000
constant IPV6_FLOWINFO_VERSION (line 342) | IPV6_FLOWINFO_VERSION = 0xf0000000
constant IPV6_HOPLIMIT (line 343) | IPV6_HOPLIMIT = 0x28
constant IPV6_HOPOPTS (line 344) | IPV6_HOPOPTS = 0x34
constant IPV6_JOIN_GROUP (line 345) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 346) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MIPDSTOPTS (line 347) | IPV6_MIPDSTOPTS = 0x36
constant IPV6_MULTICAST_HOPS (line 348) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 349) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 350) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 351) | IPV6_NEXTHOP = 0x30
constant IPV6_NOPROBE (line 352) | IPV6_NOPROBE = 0x1c
constant IPV6_PATHMTU (line 353) | IPV6_PATHMTU = 0x2e
constant IPV6_PKTINFO (line 354) | IPV6_PKTINFO = 0x21
constant IPV6_PKTOPTIONS (line 355) | IPV6_PKTOPTIONS = 0x24
constant IPV6_PRIORITY_10 (line 356) | IPV6_PRIORITY_10 = 0xa000000
constant IPV6_PRIORITY_11 (line 357) | IPV6_PRIORITY_11 = 0xb000000
constant IPV6_PRIORITY_12 (line 358) | IPV6_PRIORITY_12 = 0xc000000
constant IPV6_PRIORITY_13 (line 359) | IPV6_PRIORITY_13 = 0xd000000
constant IPV6_PRIORITY_14 (line 360) | IPV6_PRIORITY_14 = 0xe000000
constant IPV6_PRIORITY_15 (line 361) | IPV6_PRIORITY_15 = 0xf000000
constant IPV6_PRIORITY_8 (line 362) | IPV6_PRIORITY_8 = 0x8000000
constant IPV6_PRIORITY_9 (line 363) | IPV6_PRIORITY_9 = 0x9000000
constant IPV6_PRIORITY_BULK (line 364) | IPV6_PRIORITY_BULK = 0x4000000
constant IPV6_PRIORITY_CONTROL (line 365) | IPV6_PRIORITY_CONTROL = 0x7000000
constant IPV6_PRIORITY_FILLER (line 366) | IPV6_PRIORITY_FILLER = 0x1000000
constant IPV6_PRIORITY_INTERACTIVE (line 367) | IPV6_PRIORITY_INTERACTIVE = 0x6000000
constant IPV6_PRIORITY_RESERVED1 (line 368) | IPV6_PRIORITY_RESERVED1 = 0x3000000
constant IPV6_PRIORITY_RESERVED2 (line 369) | IPV6_PRIORITY_RESERVED2 = 0x5000000
constant IPV6_PRIORITY_UNATTENDED (line 370) | IPV6_PRIORITY_UNATTENDED = 0x2000000
constant IPV6_PRIORITY_UNCHARACTERIZED (line 371) | IPV6_PRIORITY_UNCHARACTERIZED = 0x0
constant IPV6_RECVDSTOPTS (line 372) | IPV6_RECVDSTOPTS = 0x38
constant IPV6_RECVHOPLIMIT (line 373) | IPV6_RECVHOPLIMIT = 0x29
constant IPV6_RECVHOPOPTS (line 374) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVHOPS (line 375) | IPV6_RECVHOPS = 0x22
constant IPV6_RECVIF (line 376) | IPV6_RECVIF = 0x1e
constant IPV6_RECVPATHMTU (line 377) | IPV6_RECVPATHMTU = 0x2f
constant IPV6_RECVPKTINFO (line 378) | IPV6_RECVPKTINFO = 0x23
constant IPV6_RECVRTHDR (line 379) | IPV6_RECVRTHDR = 0x33
constant IPV6_RECVSRCRT (line 380) | IPV6_RECVSRCRT = 0x1d
constant IPV6_RECVTCLASS (line 381) | IPV6_RECVTCLASS = 0x2a
constant IPV6_RTHDR (line 382) | IPV6_RTHDR = 0x32
constant IPV6_RTHDRDSTOPTS (line 383) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_TYPE_0 (line 384) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RTHDR_TYPE_2 (line 385) | IPV6_RTHDR_TYPE_2 = 0x2
constant IPV6_SENDIF (line 386) | IPV6_SENDIF = 0x1f
constant IPV6_SRFLAG_LOOSE (line 387) | IPV6_SRFLAG_LOOSE = 0x0
constant IPV6_SRFLAG_STRICT (line 388) | IPV6_SRFLAG_STRICT = 0x10000000
constant IPV6_TCLASS (line 389) | IPV6_TCLASS = 0x2b
constant IPV6_TOKEN_LENGTH (line 390) | IPV6_TOKEN_LENGTH = 0x40
constant IPV6_UNICAST_HOPS (line 391) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 392) | IPV6_USE_MIN_MTU = 0x2c
constant IPV6_V6ONLY (line 393) | IPV6_V6ONLY = 0x25
constant IPV6_VERSION (line 394) | IPV6_VERSION = 0x60000000
constant IP_ADDRFORM (line 395) | IP_ADDRFORM = 0x16
constant IP_ADD_MEMBERSHIP (line 396) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 397) | IP_ADD_SOURCE_MEMBERSHIP = 0x3c
constant IP_BLOCK_SOURCE (line 398) | IP_BLOCK_SOURCE = 0x3a
constant IP_BROADCAST_IF (line 399) | IP_BROADCAST_IF = 0x10
constant IP_CACHE_LINE_SIZE (line 400) | IP_CACHE_LINE_SIZE = 0x80
constant IP_DEFAULT_MULTICAST_LOOP (line 401) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 402) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 403) | IP_DF = 0x4000
constant IP_DHCPMODE (line 404) | IP_DHCPMODE = 0x11
constant IP_DONTFRAG (line 405) | IP_DONTFRAG = 0x19
constant IP_DROP_MEMBERSHIP (line 406) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 407) | IP_DROP_SOURCE_MEMBERSHIP = 0x3d
constant IP_FINDPMTU (line 408) | IP_FINDPMTU = 0x1a
constant IP_HDRINCL (line 409) | IP_HDRINCL = 0x2
constant IP_INC_MEMBERSHIPS (line 410) | IP_INC_MEMBERSHIPS = 0x14
constant IP_INIT_MEMBERSHIP (line 411) | IP_INIT_MEMBERSHIP = 0x14
constant IP_MAXPACKET (line 412) | IP_MAXPACKET = 0xffff
constant IP_MF (line 413) | IP_MF = 0x2000
constant IP_MSS (line 414) | IP_MSS = 0x240
constant IP_MULTICAST_HOPS (line 415) | IP_MULTICAST_HOPS = 0xa
constant IP_MULTICAST_IF (line 416) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 417) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 418) | IP_MULTICAST_TTL = 0xa
constant IP_OPT (line 419) | IP_OPT = 0x1b
constant IP_OPTIONS (line 420) | IP_OPTIONS = 0x1
constant IP_PMTUAGE (line 421) | IP_PMTUAGE = 0x1b
constant IP_RECVDSTADDR (line 422) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 423) | IP_RECVIF = 0x14
constant IP_RECVIFINFO (line 424) | IP_RECVIFINFO = 0xf
constant IP_RECVINTERFACE (line 425) | IP_RECVINTERFACE = 0x20
constant IP_RECVMACHDR (line 426) | IP_RECVMACHDR = 0xe
constant IP_RECVOPTS (line 427) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 428) | IP_RECVRETOPTS = 0x6
constant IP_RECVTTL (line 429) | IP_RECVTTL = 0x22
constant IP_RETOPTS (line 430) | IP_RETOPTS = 0x8
constant IP_SOURCE_FILTER (line 431) | IP_SOURCE_FILTER = 0x48
constant IP_TOS (line 432) | IP_TOS = 0x3
constant IP_TTL (line 433) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 434) | IP_UNBLOCK_SOURCE = 0x3b
constant IP_UNICAST_HOPS (line 435) | IP_UNICAST_HOPS = 0x4
constant ISIG (line 436) | ISIG = 0x1
constant ISTRIP (line 437) | ISTRIP = 0x20
constant IUCLC (line 438) | IUCLC = 0x800
constant IXANY (line 439) | IXANY = 0x1000
constant IXOFF (line 440) | IXOFF = 0x400
constant IXON (line 441) | IXON = 0x200
constant I_FLUSH (line 442) | I_FLUSH = 0x20005305
constant LNOFLSH (line 443) | LNOFLSH = 0x8000
constant LOCK_EX (line 444) | LOCK_EX = 0x2
constant LOCK_NB (line 445) | LOCK_NB = 0x4
constant LOCK_SH (line 446) | LOCK_SH = 0x1
constant LOCK_UN (line 447) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 448) | MADV_DONTNEED = 0x4
constant MADV_NORMAL (line 449) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 450) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 451) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 452) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 453) | MADV_WILLNEED = 0x3
constant MAP_ANON (line 454) | MAP_ANON = 0x10
constant MAP_ANONYMOUS (line 455) | MAP_ANONYMOUS = 0x10
constant MAP_FILE (line 456) | MAP_FILE = 0x0
constant MAP_FIXED (line 457) | MAP_FIXED = 0x100
constant MAP_PRIVATE (line 458) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 459) | MAP_SHARED = 0x1
constant MAP_TYPE (line 460) | MAP_TYPE = 0xf0
constant MAP_VARIABLE (line 461) | MAP_VARIABLE = 0x0
constant MCL_CURRENT (line 462) | MCL_CURRENT = 0x100
constant MCL_FUTURE (line 463) | MCL_FUTURE = 0x200
constant MSG_ANY (line 464) | MSG_ANY = 0x4
constant MSG_ARGEXT (line 465) | MSG_ARGEXT = 0x400
constant MSG_BAND (line 466) | MSG_BAND = 0x2
constant MSG_COMPAT (line 467) | MSG_COMPAT = 0x8000
constant MSG_CTRUNC (line 468) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 469) | MSG_DONTROUTE = 0x4
constant MSG_EOR (line 470) | MSG_EOR = 0x8
constant MSG_HIPRI (line 471) | MSG_HIPRI = 0x1
constant MSG_MAXIOVLEN (line 472) | MSG_MAXIOVLEN = 0x10
constant MSG_MPEG2 (line 473) | MSG_MPEG2 = 0x80
constant MSG_NONBLOCK (line 474) | MSG_NONBLOCK = 0x4000
constant MSG_NOSIGNAL (line 475) | MSG_NOSIGNAL = 0x100
constant MSG_OOB (line 476) | MSG_OOB = 0x1
constant MSG_PEEK (line 477) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 478) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 479) | MSG_WAITALL = 0x40
constant MSG_WAITFORONE (line 480) | MSG_WAITFORONE = 0x200
constant MS_ASYNC (line 481) | MS_ASYNC = 0x10
constant MS_EINTR (line 482) | MS_EINTR = 0x80
constant MS_INVALIDATE (line 483) | MS_INVALIDATE = 0x40
constant MS_PER_SEC (line 484) | MS_PER_SEC = 0x3e8
constant MS_SYNC (line 485) | MS_SYNC = 0x20
constant NL0 (line 486) | NL0 = 0x0
constant NL1 (line 487) | NL1 = 0x4000
constant NL2 (line 488) | NL2 = 0x8000
constant NL3 (line 489) | NL3 = 0xc000
constant NLDLY (line 490) | NLDLY = 0x4000
constant NOFLSH (line 491) | NOFLSH = 0x80
constant NOFLUSH (line 492) | NOFLUSH = 0x80000000
constant OCRNL (line 493) | OCRNL = 0x8
constant OFDEL (line 494) | OFDEL = 0x80
constant OFILL (line 495) | OFILL = 0x40
constant OLCUC (line 496) | OLCUC = 0x2
constant ONLCR (line 497) | ONLCR = 0x4
constant ONLRET (line 498) | ONLRET = 0x20
constant ONOCR (line 499) | ONOCR = 0x10
constant ONOEOT (line 500) | ONOEOT = 0x80000
constant OPOST (line 501) | OPOST = 0x1
constant OXTABS (line 502) | OXTABS = 0x40000
constant O_ACCMODE (line 503) | O_ACCMODE = 0x23
constant O_APPEND (line 504) | O_APPEND = 0x8
constant O_CIO (line 505) | O_CIO = 0x80
constant O_CIOR (line 506) | O_CIOR = 0x800000000
constant O_CLOEXEC (line 507) | O_CLOEXEC = 0x800000
constant O_CREAT (line 508) | O_CREAT = 0x100
constant O_DEFER (line 509) | O_DEFER = 0x2000
constant O_DELAY (line 510) | O_DELAY = 0x4000
constant O_DIRECT (line 511) | O_DIRECT = 0x8000000
constant O_DIRECTORY (line 512) | O_DIRECTORY = 0x80000
constant O_DSYNC (line 513) | O_DSYNC = 0x400000
constant O_EFSOFF (line 514) | O_EFSOFF = 0x400000000
constant O_EFSON (line 515) | O_EFSON = 0x200000000
constant O_EXCL (line 516) | O_EXCL = 0x400
constant O_EXEC (line 517) | O_EXEC = 0x20
constant O_LARGEFILE (line 518) | O_LARGEFILE = 0x4000000
constant O_NDELAY (line 519) | O_NDELAY = 0x8000
constant O_NOCACHE (line 520) | O_NOCACHE = 0x100000
constant O_NOCTTY (line 521) | O_NOCTTY = 0x800
constant O_NOFOLLOW (line 522) | O_NOFOLLOW = 0x1000000
constant O_NONBLOCK (line 523) | O_NONBLOCK = 0x4
constant O_NONE (line 524) | O_NONE = 0x3
constant O_NSHARE (line 525) | O_NSHARE = 0x10000
constant O_RAW (line 526) | O_RAW = 0x100000000
constant O_RDONLY (line 527) | O_RDONLY = 0x0
constant O_RDWR (line 528) | O_RDWR = 0x2
constant O_RSHARE (line 529) | O_RSHARE = 0x1000
constant O_RSYNC (line 530) | O_RSYNC = 0x200000
constant O_SEARCH (line 531) | O_SEARCH = 0x20
constant O_SNAPSHOT (line 532) | O_SNAPSHOT = 0x40
constant O_SYNC (line 533) | O_SYNC = 0x10
constant O_TRUNC (line 534) | O_TRUNC = 0x200
constant O_TTY_INIT (line 535) | O_TTY_INIT = 0x0
constant O_WRONLY (line 536) | O_WRONLY = 0x1
constant PARENB (line 537) | PARENB = 0x100
constant PAREXT (line 538) | PAREXT = 0x100000
constant PARMRK (line 539) | PARMRK = 0x8
constant PARODD (line 540) | PARODD = 0x200
constant PENDIN (line 541) | PENDIN = 0x20000000
constant PRIO_PGRP (line 542) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 543) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 544) | PRIO_USER = 0x2
constant PROT_EXEC (line 545) | PROT_EXEC = 0x4
constant PROT_NONE (line 546) | PROT_NONE = 0x0
constant PROT_READ (line 547) | PROT_READ = 0x1
constant PROT_WRITE (line 548) | PROT_WRITE = 0x2
constant PR_64BIT (line 549) | PR_64BIT = 0x20
constant PR_ADDR (line 550) | PR_ADDR = 0x2
constant PR_ARGEXT (line 551) | PR_ARGEXT = 0x400
constant PR_ATOMIC (line 552) | PR_ATOMIC = 0x1
constant PR_CONNREQUIRED (line 553) | PR_CONNREQUIRED = 0x4
constant PR_FASTHZ (line 554) | PR_FASTHZ = 0x5
constant PR_INP (line 555) | PR_INP = 0x40
constant PR_INTRLEVEL (line 556) | PR_INTRLEVEL = 0x8000
constant PR_MLS (line 557) | PR_MLS = 0x100
constant PR_MLS_1_LABEL (line 558) | PR_MLS_1_LABEL = 0x200
constant PR_NOEOR (line 559) | PR_NOEOR = 0x4000
constant PR_RIGHTS (line 560) | PR_RIGHTS = 0x10
constant PR_SLOWHZ (line 561) | PR_SLOWHZ = 0x2
constant PR_WANTRCVD (line 562) | PR_WANTRCVD = 0x8
constant RLIMIT_AS (line 563) | RLIMIT_AS = 0x6
constant RLIMIT_CORE (line 564) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 565) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 566) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 567) | RLIMIT_FSIZE = 0x1
constant RLIMIT_NOFILE (line 568) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 569) | RLIMIT_NPROC = 0x9
constant RLIMIT_RSS (line 570) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 571) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 572) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 573) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 574) | RTAX_BRD = 0x7
constant RTAX_DST (line 575) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 576) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 577) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 578) | RTAX_IFA = 0x5
constant RTAX_IFP (line 579) | RTAX_IFP = 0x4
constant RTAX_MAX (line 580) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 581) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 582) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 583) | RTA_BRD = 0x80
constant RTA_DOWNSTREAM (line 584) | RTA_DOWNSTREAM = 0x100
constant RTA_DST (line 585) | RTA_DST = 0x1
constant RTA_GATEWAY (line 586) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 587) | RTA_GENMASK = 0x8
constant RTA_IFA (line 588) | RTA_IFA = 0x20
constant RTA_IFP (line 589) | RTA_IFP = 0x10
constant RTA_NETMASK (line 590) | RTA_NETMASK = 0x4
constant RTC_IA64 (line 591) | RTC_IA64 = 0x3
constant RTC_POWER (line 592) | RTC_POWER = 0x1
constant RTC_POWER_PC (line 593) | RTC_POWER_PC = 0x2
constant RTF_ACTIVE_DGD (line 594) | RTF_ACTIVE_DGD = 0x1000000
constant RTF_BCE (line 595) | RTF_BCE = 0x80000
constant RTF_BLACKHOLE (line 596) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 597) | RTF_BROADCAST = 0x400000
constant RTF_BUL (line 598) | RTF_BUL = 0x2000
constant RTF_CLONE (line 599) | RTF_CLONE = 0x10000
constant RTF_CLONED (line 600) | RTF_CLONED = 0x20000
constant RTF_CLONING (line 601) | RTF_CLONING = 0x100
constant RTF_DONE (line 602) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 603) | RTF_DYNAMIC = 0x10
constant RTF_FREE_IN_PROG (line 604) | RTF_FREE_IN_PROG = 0x4000000
constant RTF_GATEWAY (line 605) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 606) | RTF_HOST = 0x4
constant RTF_LLINFO (line 607) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 608) | RTF_LOCAL = 0x200000
constant RTF_MASK (line 609) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 610) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 611) | RTF_MULTICAST = 0x800000
constant RTF_PERMANENT6 (line 612) | RTF_PERMANENT6 = 0x8000000
constant RTF_PINNED (line 613) | RTF_PINNED = 0x100000
constant RTF_PROTO1 (line 614) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 615) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 616) | RTF_PROTO3 = 0x40000
constant RTF_REJECT (line 617) | RTF_REJECT = 0x8
constant RTF_SMALLMTU (line 618) | RTF_SMALLMTU = 0x40000
constant RTF_STATIC (line 619) | RTF_STATIC = 0x800
constant RTF_STOPSRCH (line 620) | RTF_STOPSRCH = 0x2000000
constant RTF_UNREACHABLE (line 621) | RTF_UNREACHABLE = 0x10000000
constant RTF_UP (line 622) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 623) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 624) | RTM_ADD = 0x1
constant RTM_CHANGE (line 625) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 626) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 627) | RTM_DELETE = 0x2
constant RTM_EXPIRE (line 628) | RTM_EXPIRE = 0xf
constant RTM_GET (line 629) | RTM_GET = 0x4
constant RTM_GETNEXT (line 630) | RTM_GETNEXT = 0x11
constant RTM_IFINFO (line 631) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 632) | RTM_LOCK = 0x8
constant RTM_LOSING (line 633) | RTM_LOSING = 0x5
constant RTM_MISS (line 634) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 635) | RTM_NEWADDR = 0xc
constant RTM_OLDADD (line 636) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 637) | RTM_OLDDEL = 0xa
constant RTM_REDIRECT (line 638) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 639) | RTM_RESOLVE = 0xb
constant RTM_RTLOST (line 640) | RTM_RTLOST = 0x10
constant RTM_RTTUNIT (line 641) | RTM_RTTUNIT = 0xf4240
constant RTM_SAMEADDR (line 642) | RTM_SAMEADDR = 0x12
constant RTM_SET (line 643) | RTM_SET = 0x13
constant RTM_VERSION (line 644) | RTM_VERSION = 0x2
constant RTM_VERSION_GR (line 645) | RTM_VERSION_GR = 0x4
constant RTM_VERSION_GR_COMPAT (line 646) | RTM_VERSION_GR_COMPAT = 0x3
constant RTM_VERSION_POLICY (line 647) | RTM_VERSION_POLICY = 0x5
constant RTM_VERSION_POLICY_EXT (line 648) | RTM_VERSION_POLICY_EXT = 0x6
constant RTM_VERSION_POLICY_PRFN (line 649) | RTM_VERSION_POLICY_PRFN = 0x7
constant RTV_EXPIRE (line 650) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 651) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 652) | RTV_MTU = 0x1
constant RTV_RPIPE (line 653) | RTV_RPIPE = 0x8
constant RTV_RTT (line 654) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 655) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 656) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 657) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 658) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 659) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 660) | RUSAGE_THREAD = 0x1
constant SCM_RIGHTS (line 661) | SCM_RIGHTS = 0x1
constant SHUT_RD (line 662) | SHUT_RD = 0x0
constant SHUT_RDWR (line 663) | SHUT_RDWR = 0x2
constant SHUT_WR (line 664) | SHUT_WR = 0x1
constant SIGMAX64 (line 665) | SIGMAX64 = 0xff
constant SIGQUEUE_MAX (line 666) | SIGQUEUE_MAX = 0x20
constant SIOCADDIFVIPA (line 667) | SIOCADDIFVIPA = 0x20006942
constant SIOCADDMTU (line 668) | SIOCADDMTU = -0x7ffb9690
constant SIOCADDMULTI (line 669) | SIOCADDMULTI = -0x7fdf96cf
constant SIOCADDNETID (line 670) | SIOCADDNETID = -0x7fd796a9
constant SIOCADDRT (line 671) | SIOCADDRT = -0x7fc78df6
constant SIOCAIFADDR (line 672) | SIOCAIFADDR = -0x7fbf96e6
constant SIOCATMARK (line 673) | SIOCATMARK = 0x40047307
constant SIOCDARP (line 674) | SIOCDARP = -0x7fb396e0
constant SIOCDELIFVIPA (line 675) | SIOCDELIFVIPA = 0x20006943
constant SIOCDELMTU (line 676) | SIOCDELMTU = -0x7ffb968f
constant SIOCDELMULTI (line 677) | SIOCDELMULTI = -0x7fdf96ce
constant SIOCDELPMTU (line 678) | SIOCDELPMTU = -0x7fd78ff6
constant SIOCDELRT (line 679) | SIOCDELRT = -0x7fc78df5
constant SIOCDIFADDR (line 680) | SIOCDIFADDR = -0x7fd796e7
constant SIOCDNETOPT (line 681) | SIOCDNETOPT = -0x3ffe9680
constant SIOCDX25XLATE (line 682) | SIOCDX25XLATE = -0x7fd7969b
constant SIOCFIFADDR (line 683) | SIOCFIFADDR = -0x7fdf966d
constant SIOCGARP (line 684) | SIOCGARP = -0x3fb396da
constant SIOCGETMTUS (line 685) | SIOCGETMTUS = 0x2000696f
constant SIOCGETSGCNT (line 686) | SIOCGETSGCNT = -0x3feb8acc
constant SIOCGETVIFCNT (line 687) | SIOCGETVIFCNT = -0x3feb8acd
constant SIOCGHIWAT (line 688) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 689) | SIOCGIFADDR = -0x3fd796df
constant SIOCGIFADDRS (line 690) | SIOCGIFADDRS = 0x2000698c
constant SIOCGIFBAUDRATE (line 691) | SIOCGIFBAUDRATE = -0x3fd79693
constant SIOCGIFBRDADDR (line 692) | SIOCGIFBRDADDR = -0x3fd796dd
constant SIOCGIFCONF (line 693) | SIOCGIFCONF = -0x3fef96bb
constant SIOCGIFCONFGLOB (line 694) | SIOCGIFCONFGLOB = -0x3fef9670
constant SIOCGIFDSTADDR (line 695) | SIOCGIFDSTADDR = -0x3fd796de
constant SIOCGIFFLAGS (line 696) | SIOCGIFFLAGS = -0x3fd796ef
constant SIOCGIFGIDLIST (line 697) | SIOCGIFGIDLIST = 0x20006968
constant SIOCGIFHWADDR (line 698) | SIOCGIFHWADDR = -0x3fab966b
constant SIOCGIFMETRIC (line 699) | SIOCGIFMETRIC = -0x3fd796e9
constant SIOCGIFMTU (line 700) | SIOCGIFMTU = -0x3fd796aa
constant SIOCGIFNETMASK (line 701) | SIOCGIFNETMASK = -0x3fd796db
constant SIOCGIFOPTIONS (line 702) | SIOCGIFOPTIONS = -0x3fd796d6
constant SIOCGISNO (line 703) | SIOCGISNO = -0x3fd79695
constant SIOCGLOADF (line 704) | SIOCGLOADF = -0x3ffb967e
constant SIOCGLOWAT (line 705) | SIOCGLOWAT = 0x40047303
constant SIOCGNETOPT (line 706) | SIOCGNETOPT = -0x3ffe96a5
constant SIOCGNETOPT1 (line 707) | SIOCGNETOPT1 = -0x3fdf967f
constant SIOCGNMTUS (line 708) | SIOCGNMTUS = 0x2000696e
constant SIOCGPGRP (line 709) | SIOCGPGRP = 0x40047309
constant SIOCGSIZIFCONF (line 710) | SIOCGSIZIFCONF = 0x4004696a
constant SIOCGSRCFILTER (line 711) | SIOCGSRCFILTER = -0x3fe796cb
constant SIOCGTUNEPHASE (line 712) | SIOCGTUNEPHASE = -0x3ffb9676
constant SIOCGX25XLATE (line 713) | SIOCGX25XLATE = -0x3fd7969c
constant SIOCIFATTACH (line 714) | SIOCIFATTACH = -0x7fdf9699
constant SIOCIFDETACH (line 715) | SIOCIFDETACH = -0x7fdf969a
constant SIOCIFGETPKEY (line 716) | SIOCIFGETPKEY = -0x7fdf969b
constant SIOCIF_ATM_DARP (line 717) | SIOCIF_ATM_DARP = -0x7fdf9683
constant SIOCIF_ATM_DUMPARP (line 718) | SIOCIF_ATM_DUMPARP = -0x7fdf9685
constant SIOCIF_ATM_GARP (line 719) | SIOCIF_ATM_GARP = -0x7fdf9682
constant SIOCIF_ATM_IDLE (line 720) | SIOCIF_ATM_IDLE = -0x7fdf9686
constant SIOCIF_ATM_SARP (line 721) | SIOCIF_ATM_SARP = -0x7fdf9681
constant SIOCIF_ATM_SNMPARP (line 722) | SIOCIF_ATM_SNMPARP = -0x7fdf9687
constant SIOCIF_ATM_SVC (line 723) | SIOCIF_ATM_SVC = -0x7fdf9684
constant SIOCIF_ATM_UBR (line 724) | SIOCIF_ATM_UBR = -0x7fdf9688
constant SIOCIF_DEVHEALTH (line 725) | SIOCIF_DEVHEALTH = -0x7ffb966c
constant SIOCIF_IB_ARP_INCOMP (line 726) | SIOCIF_IB_ARP_INCOMP = -0x7fdf9677
constant SIOCIF_IB_ARP_TIMER (line 727) | SIOCIF_IB_ARP_TIMER = -0x7fdf9678
constant SIOCIF_IB_CLEAR_PINFO (line 728) | SIOCIF_IB_CLEAR_PINFO = -0x3fdf966f
constant SIOCIF_IB_DEL_ARP (line 729) | SIOCIF_IB_DEL_ARP = -0x7fdf967f
constant SIOCIF_IB_DEL_PINFO (line 730) | SIOCIF_IB_DEL_PINFO = -0x3fdf9670
constant SIOCIF_IB_DUMP_ARP (line 731) | SIOCIF_IB_DUMP_ARP = -0x7fdf9680
constant SIOCIF_IB_GET_ARP (line 732) | SIOCIF_IB_GET_ARP = -0x7fdf967e
constant SIOCIF_IB_GET_INFO (line 733) | SIOCIF_IB_GET_INFO = -0x3f879675
constant SIOCIF_IB_GET_STATS (line 734) | SIOCIF_IB_GET_STATS = -0x3f879672
constant SIOCIF_IB_NOTIFY_ADDR_REM (line 735) | SIOCIF_IB_NOTIFY_ADDR_REM = -0x3f87966a
constant SIOCIF_IB_RESET_STATS (line 736) | SIOCIF_IB_RESET_STATS = -0x3f879671
constant SIOCIF_IB_RESIZE_CQ (line 737) | SIOCIF_IB_RESIZE_CQ = -0x7fdf9679
constant SIOCIF_IB_SET_ARP (line 738) | SIOCIF_IB_SET_ARP = -0x7fdf967d
constant SIOCIF_IB_SET_PKEY (line 739) | SIOCIF_IB_SET_PKEY = -0x7fdf967c
constant SIOCIF_IB_SET_PORT (line 740) | SIOCIF_IB_SET_PORT = -0x7fdf967b
constant SIOCIF_IB_SET_QKEY (line 741) | SIOCIF_IB_SET_QKEY = -0x7fdf9676
constant SIOCIF_IB_SET_QSIZE (line 742) | SIOCIF_IB_SET_QSIZE = -0x7fdf967a
constant SIOCLISTIFVIPA (line 743) | SIOCLISTIFVIPA = 0x20006944
constant SIOCSARP (line 744) | SIOCSARP = -0x7fb396e2
constant SIOCSHIWAT (line 745) | SIOCSHIWAT = 0xffffffff80047300
constant SIOCSIFADDR (line 746) | SIOCSIFADDR = -0x7fd796f4
constant SIOCSIFADDRORI (line 747) | SIOCSIFADDRORI = -0x7fdb9673
constant SIOCSIFBRDADDR (line 748) | SIOCSIFBRDADDR = -0x7fd796ed
constant SIOCSIFDSTADDR (line 749) | SIOCSIFDSTADDR = -0x7fd796f2
constant SIOCSIFFLAGS (line 750) | SIOCSIFFLAGS = -0x7fd796f0
constant SIOCSIFGIDLIST (line 751) | SIOCSIFGIDLIST = 0x20006969
constant SIOCSIFMETRIC (line 752) | SIOCSIFMETRIC = -0x7fd796e8
constant SIOCSIFMTU (line 753) | SIOCSIFMTU = -0x7fd796a8
constant SIOCSIFNETDUMP (line 754) | SIOCSIFNETDUMP = -0x7fd796e4
constant SIOCSIFNETMASK (line 755) | SIOCSIFNETMASK = -0x7fd796ea
constant SIOCSIFOPTIONS (line 756) | SIOCSIFOPTIONS = -0x7fd796d7
constant SIOCSIFSUBCHAN (line 757) | SIOCSIFSUBCHAN = -0x7fd796e5
constant SIOCSISNO (line 758) | SIOCSISNO = -0x7fd79694
constant SIOCSLOADF (line 759) | SIOCSLOADF = -0x3ffb967d
constant SIOCSLOWAT (line 760) | SIOCSLOWAT = 0xffffffff80047302
constant SIOCSNETOPT (line 761) | SIOCSNETOPT = -0x7ffe96a6
constant SIOCSPGRP (line 762) | SIOCSPGRP = 0xffffffff80047308
constant SIOCSX25XLATE (line 763) | SIOCSX25XLATE = -0x7fd7969d
constant SOCK_CONN_DGRAM (line 764) | SOCK_CONN_DGRAM = 0x6
constant SOCK_DGRAM (line 765) | SOCK_DGRAM = 0x2
constant SOCK_RAW (line 766) | SOCK_RAW = 0x3
constant SOCK_RDM (line 767) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 768) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 769) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 770) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 771) | SOMAXCONN = 0x400
constant SO_ACCEPTCONN (line 772) | SO_ACCEPTCONN = 0x2
constant SO_AUDIT (line 773) | SO_AUDIT = 0x8000
constant SO_BROADCAST (line 774) | SO_BROADCAST = 0x20
constant SO_CKSUMRECV (line 775) | SO_CKSUMRECV = 0x800
constant SO_DEBUG (line 776) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 777) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 778) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 779) | SO_KEEPALIVE = 0x8
constant SO_KERNACCEPT (line 780) | SO_KERNACCEPT = 0x2000
constant SO_LINGER (line 781) | SO_LINGER = 0x80
constant SO_NOMULTIPATH (line 782) | SO_NOMULTIPATH = 0x4000
constant SO_NOREUSEADDR (line 783) | SO_NOREUSEADDR = 0x1000
constant SO_OOBINLINE (line 784) | SO_OOBINLINE = 0x100
constant SO_PEERID (line 785) | SO_PEERID = 0x1009
constant SO_RCVBUF (line 786) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 787) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 788) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 789) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 790) | SO_REUSEPORT = 0x200
constant SO_SNDBUF (line 791) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 792) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 793) | SO_SNDTIMEO = 0x1005
constant SO_TIMESTAMPNS (line 794) | SO_TIMESTAMPNS = 0x100a
constant SO_TYPE (line 795) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 796) | SO_USELOOPBACK = 0x40
constant SO_USE_IFBUFS (line 797) | SO_USE_IFBUFS = 0x400
constant S_BANDURG (line 798) | S_BANDURG = 0x400
constant S_EMODFMT (line 799) | S_EMODFMT = 0x3c000000
constant S_ENFMT (line 800) | S_ENFMT = 0x400
constant S_ERROR (line 801) | S_ERROR = 0x100
constant S_HANGUP (line 802) | S_HANGUP = 0x200
constant S_HIPRI (line 803) | S_HIPRI = 0x2
constant S_ICRYPTO (line 804) | S_ICRYPTO = 0x80000
constant S_IEXEC (line 805) | S_IEXEC = 0x40
constant S_IFBLK (line 806) | S_IFBLK = 0x6000
constant S_IFCHR (line 807) | S_IFCHR = 0x2000
constant S_IFDIR (line 808) | S_IFDIR = 0x4000
constant S_IFIFO (line 809) | S_IFIFO = 0x1000
constant S_IFJOURNAL (line 810) | S_IFJOURNAL = 0x10000
constant S_IFLNK (line 811) | S_IFLNK = 0xa000
constant S_IFMPX (line 812) | S_IFMPX = 0x2200
constant S_IFMT (line 813) | S_IFMT = 0xf000
constant S_IFPDIR (line 814) | S_IFPDIR = 0x4000000
constant S_IFPSDIR (line 815) | S_IFPSDIR = 0x8000000
constant S_IFPSSDIR (line 816) | S_IFPSSDIR = 0xc000000
constant S_IFREG (line 817) | S_IFREG = 0x8000
constant S_IFSOCK (line 818) | S_IFSOCK = 0xc000
constant S_IFSYSEA (line 819) | S_IFSYSEA = 0x30000000
constant S_INPUT (line 820) | S_INPUT = 0x1
constant S_IREAD (line 821) | S_IREAD = 0x100
constant S_IRGRP (line 822) | S_IRGRP = 0x20
constant S_IROTH (line 823) | S_IROTH = 0x4
constant S_IRUSR (line 824) | S_IRUSR = 0x100
constant S_IRWXG (line 825) | S_IRWXG = 0x38
constant S_IRWXO (line 826) | S_IRWXO = 0x7
constant S_IRWXU (line 827) | S_IRWXU = 0x1c0
constant S_ISGID (line 828) | S_ISGID = 0x400
constant S_ISUID (line 829) | S_ISUID = 0x800
constant S_ISVTX (line 830) | S_ISVTX = 0x200
constant S_ITCB (line 831) | S_ITCB = 0x1000000
constant S_ITP (line 832) | S_ITP = 0x800000
constant S_IWGRP (line 833) | S_IWGRP = 0x10
constant S_IWOTH (line 834) | S_IWOTH = 0x2
constant S_IWRITE (line 835) | S_IWRITE = 0x80
constant S_IWUSR (line 836) | S_IWUSR = 0x80
constant S_IXACL (line 837) | S_IXACL = 0x2000000
constant S_IXATTR (line 838) | S_IXATTR = 0x40000
constant S_IXGRP (line 839) | S_IXGRP = 0x8
constant S_IXINTERFACE (line 840) | S_IXINTERFACE = 0x100000
constant S_IXMOD (line 841) | S_IXMOD = 0x40000000
constant S_IXOTH (line 842) | S_IXOTH = 0x1
constant S_IXUSR (line 843) | S_IXUSR = 0x40
constant S_MSG (line 844) | S_MSG = 0x8
constant S_OUTPUT (line 845) | S_OUTPUT = 0x4
constant S_RDBAND (line 846) | S_RDBAND = 0x20
constant S_RDNORM (line 847) | S_RDNORM = 0x10
constant S_RESERVED1 (line 848) | S_RESERVED1 = 0x20000
constant S_RESERVED2 (line 849) | S_RESERVED2 = 0x200000
constant S_RESERVED3 (line 850) | S_RESERVED3 = 0x400000
constant S_RESERVED4 (line 851) | S_RESERVED4 = 0x80000000
constant S_RESFMT1 (line 852) | S_RESFMT1 = 0x10000000
constant S_RESFMT10 (line 853) | S_RESFMT10 = 0x34000000
constant S_RESFMT11 (line 854) | S_RESFMT11 = 0x38000000
constant S_RESFMT12 (line 855) | S_RESFMT12 = 0x3c000000
constant S_RESFMT2 (line 856) | S_RESFMT2 = 0x14000000
constant S_RESFMT3 (line 857) | S_RESFMT3 = 0x18000000
constant S_RESFMT4 (line 858) | S_RESFMT4 = 0x1c000000
constant S_RESFMT5 (line 859) | S_RESFMT5 = 0x20000000
constant S_RESFMT6 (line 860) | S_RESFMT6 = 0x24000000
constant S_RESFMT7 (line 861) | S_RESFMT7 = 0x28000000
constant S_RESFMT8 (line 862) | S_RESFMT8 = 0x2c000000
constant S_WRBAND (line 863) | S_WRBAND = 0x80
constant S_WRNORM (line 864) | S_WRNORM = 0x40
constant TAB0 (line 865) | TAB0 = 0x0
constant TAB1 (line 866) | TAB1 = 0x400
constant TAB2 (line 867) | TAB2 = 0x800
constant TAB3 (line 868) | TAB3 = 0xc00
constant TABDLY (line 869) | TABDLY = 0xc00
constant TCFLSH (line 870) | TCFLSH = 0x540c
constant TCGETA (line 871) | TCGETA = 0x5405
constant TCGETS (line 872) | TCGETS = 0x5401
constant TCIFLUSH (line 873) | TCIFLUSH = 0x0
constant TCIOFF (line 874) | TCIOFF = 0x2
constant TCIOFLUSH (line 875) | TCIOFLUSH = 0x2
constant TCION (line 876) | TCION = 0x3
constant TCOFLUSH (line 877) | TCOFLUSH = 0x1
constant TCOOFF (line 878) | TCOOFF = 0x0
constant TCOON (line 879) | TCOON = 0x1
constant TCP_24DAYS_WORTH_OF_SLOWTICKS (line 880) | TCP_24DAYS_WORTH_OF_SLOWTICKS = 0x3f4800
constant TCP_ACLADD (line 881) | TCP_ACLADD = 0x23
constant TCP_ACLBIND (line 882) | TCP_ACLBIND = 0x26
constant TCP_ACLCLEAR (line 883) | TCP_ACLCLEAR = 0x22
constant TCP_ACLDEL (line 884) | TCP_ACLDEL = 0x24
constant TCP_ACLDENY (line 885) | TCP_ACLDENY = 0x8
constant TCP_ACLFLUSH (line 886) | TCP_ACLFLUSH = 0x21
constant TCP_ACLGID (line 887) | TCP_ACLGID = 0x1
constant TCP_ACLLS (line 888) | TCP_ACLLS = 0x25
constant TCP_ACLSUBNET (line 889) | TCP_ACLSUBNET = 0x4
constant TCP_ACLUID (line 890) | TCP_ACLUID = 0x2
constant TCP_CWND_DF (line 891) | TCP_CWND_DF = 0x16
constant TCP_CWND_IF (line 892) | TCP_CWND_IF = 0x15
constant TCP_DELAY_ACK_FIN (line 893) | TCP_DELAY_ACK_FIN = 0x2
constant TCP_DELAY_ACK_SYN (line 894) | TCP_DELAY_ACK_SYN = 0x1
constant TCP_FASTNAME (line 895) | TCP_FASTNAME = 0x101080a
constant TCP_KEEPCNT (line 896) | TCP_KEEPCNT = 0x13
constant TCP_KEEPIDLE (line 897) | TCP_KEEPIDLE = 0x11
constant TCP_KEEPINTVL (line 898) | TCP_KEEPINTVL = 0x12
constant TCP_LSPRIV (line 899) | TCP_LSPRIV = 0x29
constant TCP_LUID (line 900) | TCP_LUID = 0x20
constant TCP_MAXBURST (line 901) | TCP_MAXBURST = 0x8
constant TCP_MAXDF (line 902) | TCP_MAXDF = 0x64
constant TCP_MAXIF (line 903) | TCP_MAXIF = 0x64
constant TCP_MAXSEG (line 904) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 905) | TCP_MAXWIN = 0xffff
constant TCP_MAXWINDOWSCALE (line 906) | TCP_MAXWINDOWSCALE = 0xe
constant TCP_MAX_SACK (line 907) | TCP_MAX_SACK = 0x4
constant TCP_MSS (line 908) | TCP_MSS = 0x5b4
constant TCP_NODELAY (line 909) | TCP_NODELAY = 0x1
constant TCP_NODELAYACK (line 910) | TCP_NODELAYACK = 0x14
constant TCP_NOREDUCE_CWND_EXIT_FRXMT (line 911) | TCP_NOREDUCE_CWND_EXIT_FRXMT = 0x19
constant TCP_NOREDUCE_CWND_IN_FRXMT (line 912) | TCP_NOREDUCE_CWND_IN_FRXMT = 0x18
constant TCP_NOTENTER_SSTART (line 913) | TCP_NOTENTER_SSTART = 0x17
constant TCP_OPT (line 914) | TCP_OPT = 0x19
constant TCP_RFC1323 (line 915) | TCP_RFC1323 = 0x4
constant TCP_SETPRIV (line 916) | TCP_SETPRIV = 0x27
constant TCP_STDURG (line 917) | TCP_STDURG = 0x10
constant TCP_TIMESTAMP_OPTLEN (line 918) | TCP_TIMESTAMP_OPTLEN = 0xc
constant TCP_UNSETPRIV (line 919) | TCP_UNSETPRIV = 0x28
constant TCSAFLUSH (line 920) | TCSAFLUSH = 0x2
constant TCSBRK (line 921) | TCSBRK = 0x5409
constant TCSETA (line 922) | TCSETA = 0x5406
constant TCSETAF (line 923) | TCSETAF = 0x5408
constant TCSETAW (line 924) | TCSETAW = 0x5407
constant TCSETS (line 925) | TCSETS = 0x5402
constant TCSETSF (line 926) | TCSETSF = 0x5404
constant TCSETSW (line 927) | TCSETSW = 0x5403
constant TCXONC (line 928) | TCXONC = 0x540b
constant TIMER_ABSTIME (line 929) | TIMER_ABSTIME = 0x3e7
constant TIMER_MAX (line 930) | TIMER_MAX = 0x20
constant TIOC (line 931) | TIOC = 0x5400
constant TIOCCBRK (line 932) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 933) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 934) | TIOCCONS = 0xffffffff80047462
constant TIOCEXCL (line 935) | TIOCEXCL = 0x2000740d
constant TIOCFLUSH (line 936) | TIOCFLUSH = 0xffffffff80047410
constant TIOCGETC (line 937) | TIOCGETC = 0x40067412
constant TIOCGETD (line 938) | TIOCGETD = 0x40047400
constant TIOCGETP (line 939) | TIOCGETP = 0x40067408
constant TIOCGLTC (line 940) | TIOCGLTC = 0x40067474
constant TIOCGPGRP (line 941) | TIOCGPGRP = 0x40047477
constant TIOCGSID (line 942) | TIOCGSID = 0x40047448
constant TIOCGSIZE (line 943) | TIOCGSIZE = 0x40087468
constant TIOCGWINSZ (line 944) | TIOCGWINSZ = 0x40087468
constant TIOCHPCL (line 945) | TIOCHPCL = 0x20007402
constant TIOCLBIC (line 946) | TIOCLBIC = 0xffffffff8004747e
constant TIOCLBIS (line 947) | TIOCLBIS = 0xffffffff8004747f
constant TIOCLGET (line 948) | TIOCLGET = 0x4004747c
constant TIOCLSET (line 949) | TIOCLSET = 0xffffffff8004747d
constant TIOCMBIC (line 950) | TIOCMBIC = 0xffffffff8004746b
constant TIOCMBIS (line 951) | TIOCMBIS = 0xffffffff8004746c
constant TIOCMGET (line 952) | TIOCMGET = 0x4004746a
constant TIOCMIWAIT (line 953) | TIOCMIWAIT = 0xffffffff80047464
constant TIOCMODG (line 954) | TIOCMODG = 0x40047403
constant TIOCMODS (line 955) | TIOCMODS = 0xffffffff80047404
constant TIOCMSET (line 956) | TIOCMSET = 0xffffffff8004746d
constant TIOCM_CAR (line 957) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 958) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 959) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 960) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 961) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 962) | TIOCM_LE = 0x1
constant TIOCM_RI (line 963) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 964) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 965) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 966) | TIOCM_SR = 0x10
constant TIOCM_ST (line 967) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 968) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 969) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 970) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 971) | TIOCPKT = 0xffffffff80047470
constant TIOCPKT_DATA (line 972) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 973) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 974) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 975) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_NOSTOP (line 976) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 977) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 978) | TIOCPKT_STOP = 0x4
constant TIOCREMOTE (line 979) | TIOCREMOTE = 0xffffffff80047469
constant TIOCSBRK (line 980) | TIOCSBRK = 0x2000747b
constant TIOCSDTR (line 981) | TIOCSDTR = 0x20007479
constant TIOCSETC (line 982) | TIOCSETC = 0xffffffff80067411
constant TIOCSETD (line 983) | TIOCSETD = 0xffffffff80047401
constant TIOCSETN (line 984) | TIOCSETN = 0xffffffff8006740a
constant TIOCSETP (line 985) | TIOCSETP = 0xffffffff80067409
constant TIOCSLTC (line 986) | TIOCSLTC = 0xffffffff80067475
constant TIOCSPGRP (line 987) | TIOCSPGRP = 0xffffffff80047476
constant TIOCSSIZE (line 988) | TIOCSSIZE = 0xffffffff80087467
constant TIOCSTART (line 989) | TIOCSTART = 0x2000746e
constant TIOCSTI (line 990) | TIOCSTI = 0xffffffff80017472
constant TIOCSTOP (line 991) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 992) | TIOCSWINSZ = 0xffffffff80087467
constant TIOCUCNTL (line 993) | TIOCUCNTL = 0xffffffff80047466
constant TOSTOP (line 994) | TOSTOP = 0x10000
constant UTIME_NOW (line 995) | UTIME_NOW = -0x2
constant UTIME_OMIT (line 996) | UTIME_OMIT = -0x3
constant VDISCRD (line 997) | VDISCRD = 0xc
constant VDSUSP (line 998) | VDSUSP = 0xa
constant VEOF (line 999) | VEOF = 0x4
constant VEOL (line 1000) | VEOL = 0x5
constant VEOL2 (line 1001) | VEOL2 = 0x6
constant VERASE (line 1002) | VERASE = 0x2
constant VINTR (line 1003) | VINTR = 0x0
constant VKILL (line 1004) | VKILL = 0x3
constant VLNEXT (line 1005) | VLNEXT = 0xe
constant VMIN (line 1006) | VMIN = 0x4
constant VQUIT (line 1007) | VQUIT = 0x1
constant VREPRINT (line 1008) | VREPRINT = 0xb
constant VSTART (line 1009) | VSTART = 0x7
constant VSTOP (line 1010) | VSTOP = 0x8
constant VSTRT (line 1011) | VSTRT = 0x7
constant VSUSP (line 1012) | VSUSP = 0x9
constant VT0 (line 1013) | VT0 = 0x0
constant VT1 (line 1014) | VT1 = 0x8000
constant VTDELAY (line 1015) | VTDELAY = 0x2000
constant VTDLY (line 1016) | VTDLY = 0x8000
constant VTIME (line 1017) | VTIME = 0x5
constant VWERSE (line 1018) | VWERSE = 0xd
constant WPARSTART (line 1019) | WPARSTART = 0x1
constant WPARSTOP (line 1020) | WPARSTOP = 0x2
constant WPARTTYNAME (line 1021) | WPARTTYNAME = "Global"
constant XCASE (line 1022) | XCASE = 0x4
constant XTABS (line 1023) | XTABS = 0xc00
constant _FDATAFLUSH (line 1024) | _FDATAFLUSH = 0x2000000000
constant E2BIG (line 1029) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1030) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1031) | EADDRINUSE = syscall.Errno(0x43)
constant EADDRNOTAVAIL (line 1032) | EADDRNOTAVAIL = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 1033) | EAFNOSUPPORT = syscall.Errno(0x42)
constant EAGAIN (line 1034) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 1035) | EALREADY = syscall.Errno(0x38)
constant EBADF (line 1036) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1037) | EBADMSG = syscall.Errno(0x78)
constant EBUSY (line 1038) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1039) | ECANCELED = syscall.Errno(0x75)
constant ECHILD (line 1040) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 1041) | ECHRNG = syscall.Errno(0x25)
constant ECLONEME (line 1042) | ECLONEME = syscall.Errno(0x52)
constant ECONNABORTED (line 1043) | ECONNABORTED = syscall.Errno(0x48)
constant ECONNREFUSED (line 1044) | ECONNREFUSED = syscall.Errno(0x4f)
constant ECONNRESET (line 1045) | ECONNRESET = syscall.Errno(0x49)
constant ECORRUPT (line 1046) | ECORRUPT = syscall.Errno(0x59)
constant EDEADLK (line 1047) | EDEADLK = syscall.Errno(0x2d)
constant EDESTADDREQ (line 1048) | EDESTADDREQ = syscall.Errno(0x3a)
constant EDESTADDRREQ (line 1049) | EDESTADDRREQ = syscall.Errno(0x3a)
constant EDIST (line 1050) | EDIST = syscall.Errno(0x35)
constant EDOM (line 1051) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1052) | EDQUOT = syscall.Errno(0x58)
constant EEXIST (line 1053) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1054) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1055) | EFBIG = syscall.Errno(0x1b)
constant EFORMAT (line 1056) | EFORMAT = syscall.Errno(0x30)
constant EHOSTDOWN (line 1057) | EHOSTDOWN = syscall.Errno(0x50)
constant EHOSTUNREACH (line 1058) | EHOSTUNREACH = syscall.Errno(0x51)
constant EIDRM (line 1059) | EIDRM = syscall.Errno(0x24)
constant EILSEQ (line 1060) | EILSEQ = syscall.Errno(0x74)
constant EINPROGRESS (line 1061) | EINPROGRESS = syscall.Errno(0x37)
constant EINTR (line 1062) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1063) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1064) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1065) | EISCONN = syscall.Errno(0x4b)
constant EISDIR (line 1066) | EISDIR = syscall.Errno(0x15)
constant EL2HLT (line 1067) | EL2HLT = syscall.Errno(0x2c)
constant EL2NSYNC (line 1068) | EL2NSYNC = syscall.Errno(0x26)
constant EL3HLT (line 1069) | EL3HLT = syscall.Errno(0x27)
constant EL3RST (line 1070) | EL3RST = syscall.Errno(0x28)
constant ELNRNG (line 1071) | ELNRNG = syscall.Errno(0x29)
constant ELOOP (line 1072) | ELOOP = syscall.Errno(0x55)
constant EMEDIA (line 1073) | EMEDIA = syscall.Errno(0x6e)
constant EMFILE (line 1074) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1075) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1076) | EMSGSIZE = syscall.Errno(0x3b)
constant EMULTIHOP (line 1077) | EMULTIHOP = syscall.Errno(0x7d)
constant ENAMETOOLONG (line 1078) | ENAMETOOLONG = syscall.Errno(0x56)
constant ENETDOWN (line 1079) | ENETDOWN = syscall.Errno(0x45)
constant ENETRESET (line 1080) | ENETRESET = syscall.Errno(0x47)
constant ENETUNREACH (line 1081) | ENETUNREACH = syscall.Errno(0x46)
constant ENFILE (line 1082) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1083) | ENOATTR = syscall.Errno(0x70)
constant ENOBUFS (line 1084) | ENOBUFS = syscall.Errno(0x4a)
constant ENOCONNECT (line 1085) | ENOCONNECT = syscall.Errno(0x32)
constant ENOCSI (line 1086) | ENOCSI = syscall.Errno(0x2b)
constant ENODATA (line 1087) | ENODATA = syscall.Errno(0x7a)
constant ENODEV (line 1088) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1089) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1090) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1091) | ENOLCK = syscall.Errno(0x31)
constant ENOLINK (line 1092) | ENOLINK = syscall.Errno(0x7e)
constant ENOMEM (line 1093) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1094) | ENOMSG = syscall.Errno(0x23)
constant ENOPROTOOPT (line 1095) | ENOPROTOOPT = syscall.Errno(0x3d)
constant ENOSPC (line 1096) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1097) | ENOSR = syscall.Errno(0x76)
constant ENOSTR (line 1098) | ENOSTR = syscall.Errno(0x7b)
constant ENOSYS (line 1099) | ENOSYS = syscall.Errno(0x6d)
constant ENOTBLK (line 1100) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1101) | ENOTCONN = syscall.Errno(0x4c)
constant ENOTDIR (line 1102) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1103) | ENOTEMPTY = syscall.Errno(0x11)
constant ENOTREADY (line 1104) | ENOTREADY = syscall.Errno(0x2e)
constant ENOTRECOVERABLE (line 1105) | ENOTRECOVERABLE = syscall.Errno(0x5e)
constant ENOTRUST (line 1106) | ENOTRUST = syscall.Errno(0x72)
constant ENOTSOCK (line 1107) | ENOTSOCK = syscall.Errno(0x39)
constant ENOTSUP (line 1108) | ENOTSUP = syscall.Errno(0x7c)
constant ENOTTY (line 1109) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1110) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1111) | EOPNOTSUPP = syscall.Errno(0x40)
constant EOVERFLOW (line 1112) | EOVERFLOW = syscall.Errno(0x7f)
constant EOWNERDEAD (line 1113) | EOWNERDEAD = syscall.Errno(0x5f)
constant EPERM (line 1114) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1115) | EPFNOSUPPORT = syscall.Errno(0x41)
constant EPIPE (line 1116) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1117) | EPROCLIM = syscall.Errno(0x53)
constant EPROTO (line 1118) | EPROTO = syscall.Errno(0x79)
constant EPROTONOSUPPORT (line 1119) | EPROTONOSUPPORT = syscall.Errno(0x3e)
constant EPROTOTYPE (line 1120) | EPROTOTYPE = syscall.Errno(0x3c)
constant ERANGE (line 1121) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1122) | EREMOTE = syscall.Errno(0x5d)
constant ERESTART (line 1123) | ERESTART = syscall.Errno(0x52)
constant EROFS (line 1124) | EROFS = syscall.Errno(0x1e)
constant ESAD (line 1125) | ESAD = syscall.Errno(0x71)
constant ESHUTDOWN (line 1126) | ESHUTDOWN = syscall.Errno(0x4d)
constant ESOCKTNOSUPPORT (line 1127) | ESOCKTNOSUPPORT = syscall.Errno(0x3f)
constant ESOFT (line 1128) | ESOFT = syscall.Errno(0x6f)
constant ESPIPE (line 1129) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1130) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1131) | ESTALE = syscall.Errno(0x34)
constant ESYSERROR (line 1132) | ESYSERROR = syscall.Errno(0x5a)
constant ETIME (line 1133) | ETIME = syscall.Errno(0x77)
constant ETIMEDOUT (line 1134) | ETIMEDOUT = syscall.Errno(0x4e)
constant ETOOMANYREFS (line 1135) | ETOOMANYREFS = syscall.Errno(0x73)
constant ETXTBSY (line 1136) | ETXTBSY = syscall.Errno(0x1a)
constant EUNATCH (line 1137) | EUNATCH = syscall.Errno(0x2a)
constant EUSERS (line 1138) | EUSERS = syscall.Errno(0x54)
constant EWOULDBLOCK (line 1139) | EWOULDBLOCK = syscall.Errno(0xb)
constant EWRPROTECT (line 1140) | EWRPROTECT = syscall.Errno(0x2f)
constant EXDEV (line 1141) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1146) | SIGABRT = syscall.Signal(0x6)
constant SIGAIO (line 1147) | SIGAIO = syscall.Signal(0x17)
constant SIGALRM (line 1148) | SIGALRM = syscall.Signal(0xe)
constant SIGALRM1 (line 1149) | SIGALRM1 = syscall.Signal(0x26)
constant SIGBUS (line 1150) | SIGBUS = syscall.Signal(0xa)
constant SIGCAPI (line 1151) | SIGCAPI = syscall.Signal(0x31)
constant SIGCHLD (line 1152) | SIGCHLD = syscall.Signal(0x14)
constant SIGCLD (line 1153) | SIGCLD = syscall.Signal(0x14)
constant SIGCONT (line 1154) | SIGCONT = syscall.Signal(0x13)
constant SIGCPUFAIL (line 1155) | SIGCPUFAIL = syscall.Signal(0x3b)
constant SIGDANGER (line 1156) | SIGDANGER = syscall.Signal(0x21)
constant SIGEMT (line 1157) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1158) | SIGFPE = syscall.Signal(0x8)
constant SIGGRANT (line 1159) | SIGGRANT = syscall.Signal(0x3c)
constant SIGHUP (line 1160) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1161) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 1162) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1163) | SIGIO = syscall.Signal(0x17)
constant SIGIOINT (line 1164) | SIGIOINT = syscall.Signal(0x10)
constant SIGIOT (line 1165) | SIGIOT = syscall.Signal(0x6)
constant SIGKAP (line 1166) | SIGKAP = syscall.Signal(0x3c)
constant SIGKILL (line 1167) | SIGKILL = syscall.Signal(0x9)
constant SIGLOST (line 1168) | SIGLOST = syscall.Signal(0x6)
constant SIGMAX (line 1169) | SIGMAX = syscall.Signal(0xff)
constant SIGMAX32 (line 1170) | SIGMAX32 = syscall.Signal(0x3f)
constant SIGMIGRATE (line 1171) | SIGMIGRATE = syscall.Signal(0x23)
constant SIGMSG (line 1172) | SIGMSG = syscall.Signal(0x1b)
constant SIGPIPE (line 1173) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 1174) | SIGPOLL = syscall.Signal(0x17)
constant SIGPRE (line 1175) | SIGPRE = syscall.Signal(0x24)
constant SIGPROF (line 1176) | SIGPROF = syscall.Signal(0x20)
constant SIGPTY (line 1177) | SIGPTY = syscall.Signal(0x17)
constant SIGPWR (line 1178) | SIGPWR = syscall.Signal(0x1d)
constant SIGQUIT (line 1179) | SIGQUIT = syscall.Signal(0x3)
constant SIGRECONFIG (line 1180) | SIGRECONFIG = syscall.Signal(0x3a)
constant SIGRETRACT (line 1181) | SIGRETRACT = syscall.Signal(0x3d)
constant SIGSAK (line 1182) | SIGSAK = syscall.Signal(0x3f)
constant SIGSEGV (line 1183) | SIGSEGV = syscall.Signal(0xb)
constant SIGSOUND (line 1184) | SIGSOUND = syscall.Signal(0x3e)
constant SIGSTOP (line 1185) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1186) | SIGSYS = syscall.Signal(0xc)
constant SIGSYSERROR (line 1187) | SIGSYSERROR = syscall.Signal(0x30)
constant SIGTALRM (line 1188) | SIGTALRM = syscall.Signal(0x26)
constant SIGTERM (line 1189) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1190) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1191) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1192) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1193) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1194) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1195) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1196) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVIRT (line 1197) | SIGVIRT = syscall.Signal(0x25)
constant SIGVTALRM (line 1198) | SIGVTALRM = syscall.Signal(0x22)
constant SIGWAITING (line 1199) | SIGWAITING = syscall.Signal(0x27)
constant SIGWINCH (line 1200) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1201) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1202) | SIGXFSZ = syscall.Signal(0x19)
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 ATTR_BIT_MAP_COUNT (line 52) | ATTR_BIT_MAP_COUNT = 0x5
constant ATTR_CMN_ACCESSMASK (line 53) | ATTR_CMN_ACCESSMASK = 0x20000
constant ATTR_CMN_ACCTIME (line 54) | ATTR_CMN_ACCTIME = 0x1000
constant ATTR_CMN_ADDEDTIME (line 55) | ATTR_CMN_ADDEDTIME = 0x10000000
constant ATTR_CMN_BKUPTIME (line 56) | ATTR_CMN_BKUPTIME = 0x2000
constant ATTR_CMN_CHGTIME (line 57) | ATTR_CMN_CHGTIME = 0x800
constant ATTR_CMN_CRTIME (line 58) | ATTR_CMN_CRTIME = 0x200
constant ATTR_CMN_DATA_PROTECT_FLAGS (line 59) | ATTR_CMN_DATA_PROTECT_FLAGS = 0x40000000
constant ATTR_CMN_DEVID (line 60) | ATTR_CMN_DEVID = 0x2
constant ATTR_CMN_DOCUMENT_ID (line 61) | ATTR_CMN_DOCUMENT_ID = 0x100000
constant ATTR_CMN_ERROR (line 62) | ATTR_CMN_ERROR = 0x20000000
constant ATTR_CMN_EXTENDED_SECURITY (line 63) | ATTR_CMN_EXTENDED_SECURITY = 0x400000
constant ATTR_CMN_FILEID (line 64) | ATTR_CMN_FILEID = 0x2000000
constant ATTR_CMN_FLAGS (line 65) | ATTR_CMN_FLAGS = 0x40000
constant ATTR_CMN_FNDRINFO (line 66) | ATTR_CMN_FNDRINFO = 0x4000
constant ATTR_CMN_FSID (line 67) | ATTR_CMN_FSID = 0x4
constant ATTR_CMN_FULLPATH (line 68) | ATTR_CMN_FULLPATH = 0x8000000
constant ATTR_CMN_GEN_COUNT (line 69) | ATTR_CMN_GEN_COUNT = 0x80000
constant ATTR_CMN_GRPID (line 70) | ATTR_CMN_GRPID = 0x10000
constant ATTR_CMN_GRPUUID (line 71) | ATTR_CMN_GRPUUID = 0x1000000
constant ATTR_CMN_MODTIME (line 72) | ATTR_CMN_MODTIME = 0x400
constant ATTR_CMN_NAME (line 73) | ATTR_CMN_NAME = 0x1
constant ATTR_CMN_NAMEDATTRCOUNT (line 74) | ATTR_CMN_NAMEDATTRCOUNT = 0x80000
constant ATTR_CMN_NAMEDATTRLIST (line 75) | ATTR_CMN_NAMEDATTRLIST = 0x100000
constant ATTR_CMN_OBJID (line 76) | ATTR_CMN_OBJID = 0x20
constant ATTR_CMN_OBJPERMANENTID (line 77) | ATTR_CMN_OBJPERMANENTID = 0x40
constant ATTR_CMN_OBJTAG (line 78) | ATTR_CMN_OBJTAG = 0x10
constant ATTR_CMN_OBJTYPE (line 79) | ATTR_CMN_OBJTYPE = 0x8
constant ATTR_CMN_OWNERID (line 80) | ATTR_CMN_OWNERID = 0x8000
constant ATTR_CMN_PARENTID (line 81) | ATTR_CMN_PARENTID = 0x4000000
constant ATTR_CMN_PAROBJID (line 82) | ATTR_CMN_PAROBJID = 0x80
constant ATTR_CMN_RETURNED_ATTRS (line 83) | ATTR_CMN_RETURNED_ATTRS = 0x80000000
constant ATTR_CMN_SCRIPT (line 84) | ATTR_CMN_SCRIPT = 0x100
constant ATTR_CMN_SETMASK (line 85) | ATTR_CMN_SETMASK = 0x41c7ff00
constant ATTR_CMN_USERACCESS (line 86) | ATTR_CMN_USERACCESS = 0x200000
constant ATTR_CMN_UUID (line 87) | ATTR_CMN_UUID = 0x800000
constant ATTR_CMN_VALIDMASK (line 88) | ATTR_CMN_VALIDMASK = 0xffffffff
constant ATTR_CMN_VOLSETMASK (line 89) | ATTR_CMN_VOLSETMASK = 0x6700
constant ATTR_FILE_ALLOCSIZE (line 90) | ATTR_FILE_ALLOCSIZE = 0x4
constant ATTR_FILE_CLUMPSIZE (line 91) | ATTR_FILE_CLUMPSIZE = 0x10
constant ATTR_FILE_DATAALLOCSIZE (line 92) | ATTR_FILE_DATAALLOCSIZE = 0x400
constant ATTR_FILE_DATAEXTENTS (line 93) | ATTR_FILE_DATAEXTENTS = 0x800
constant ATTR_FILE_DATALENGTH (line 94) | ATTR_FILE_DATALENGTH = 0x200
constant ATTR_FILE_DEVTYPE (line 95) | ATTR_FILE_DEVTYPE = 0x20
constant ATTR_FILE_FILETYPE (line 96) | ATTR_FILE_FILETYPE = 0x40
constant ATTR_FILE_FORKCOUNT (line 97) | ATTR_FILE_FORKCOUNT = 0x80
constant ATTR_FILE_FORKLIST (line 98) | ATTR_FILE_FORKLIST = 0x100
constant ATTR_FILE_IOBLOCKSIZE (line 99) | ATTR_FILE_IOBLOCKSIZE = 0x8
constant ATTR_FILE_LINKCOUNT (line 100) | ATTR_FILE_LINKCOUNT = 0x1
constant ATTR_FILE_RSRCALLOCSIZE (line 101) | ATTR_FILE_RSRCALLOCSIZE = 0x2000
constant ATTR_FILE_RSRCEXTENTS (line 102) | ATTR_FILE_RSRCEXTENTS = 0x4000
constant ATTR_FILE_RSRCLENGTH (line 103) | ATTR_FILE_RSRCLENGTH = 0x1000
constant ATTR_FILE_SETMASK (line 104) | ATTR_FILE_SETMASK = 0x20
constant ATTR_FILE_TOTALSIZE (line 105) | ATTR_FILE_TOTALSIZE = 0x2
constant ATTR_FILE_VALIDMASK (line 106) | ATTR_FILE_VALIDMASK = 0x37ff
constant ATTR_VOL_ALLOCATIONCLUMP (line 107) | ATTR_VOL_ALLOCATIONCLUMP = 0x40
constant ATTR_VOL_ATTRIBUTES (line 108) | ATTR_VOL_ATTRIBUTES = 0x40000000
constant ATTR_VOL_CAPABILITIES (line 109) | ATTR_VOL_CAPABILITIES = 0x20000
constant ATTR_VOL_DIRCOUNT (line 110) | ATTR_VOL_DIRCOUNT = 0x400
constant ATTR_VOL_ENCODINGSUSED (line 111) | ATTR_VOL_ENCODINGSUSED = 0x10000
constant ATTR_VOL_FILECOUNT (line 112) | ATTR_VOL_FILECOUNT = 0x200
constant ATTR_VOL_FSTYPE (line 113) | ATTR_VOL_FSTYPE = 0x1
constant ATTR_VOL_INFO (line 114) | ATTR_VOL_INFO = 0x80000000
constant ATTR_VOL_IOBLOCKSIZE (line 115) | ATTR_VOL_IOBLOCKSIZE = 0x80
constant ATTR_VOL_MAXOBJCOUNT (line 116) | ATTR_VOL_MAXOBJCOUNT = 0x800
constant ATTR_VOL_MINALLOCATION (line 117) | ATTR_VOL_MINALLOCATION = 0x20
constant ATTR_VOL_MOUNTEDDEVICE (line 118) | ATTR_VOL_MOUNTEDDEVICE = 0x8000
constant ATTR_VOL_MOUNTFLAGS (line 119) | ATTR_VOL_MOUNTFLAGS = 0x4000
constant ATTR_VOL_MOUNTPOINT (line 120) | ATTR_VOL_MOUNTPOINT = 0x1000
constant ATTR_VOL_NAME (line 121) | ATTR_VOL_NAME = 0x2000
constant ATTR_VOL_OBJCOUNT (line 122) | ATTR_VOL_OBJCOUNT = 0x100
constant ATTR_VOL_QUOTA_SIZE (line 123) | ATTR_VOL_QUOTA_SIZE = 0x10000000
constant ATTR_VOL_RESERVED_SIZE (line 124) | ATTR_VOL_RESERVED_SIZE = 0x20000000
constant ATTR_VOL_SETMASK (line 125) | ATTR_VOL_SETMASK = 0x80002000
constant ATTR_VOL_SIGNATURE (line 126) | ATTR_VOL_SIGNATURE = 0x2
constant ATTR_VOL_SIZE (line 127) | ATTR_VOL_SIZE = 0x4
constant ATTR_VOL_SPACEAVAIL (line 128) | ATTR_VOL_SPACEAVAIL = 0x10
constant ATTR_VOL_SPACEFREE (line 129) | ATTR_VOL_SPACEFREE = 0x8
constant ATTR_VOL_UUID (line 130) | ATTR_VOL_UUID = 0x40000
constant ATTR_VOL_VALIDMASK (line 131) | ATTR_VOL_VALIDMASK = 0xf007ffff
constant B0 (line 132) | B0 = 0x0
constant B110 (line 133) | B110 = 0x6e
constant B115200 (line 134) | B115200 = 0x1c200
constant B1200 (line 135) | B1200 = 0x4b0
constant B134 (line 136) | B134 = 0x86
constant B14400 (line 137) | B14400 = 0x3840
constant B150 (line 138) | B150 = 0x96
constant B1800 (line 139) | B1800 = 0x708
constant B19200 (line 140) | B19200 = 0x4b00
constant B200 (line 141) | B200 = 0xc8
constant B230400 (line 142) | B230400 = 0x38400
constant B2400 (line 143) | B2400 = 0x960
constant B28800 (line 144) | B28800 = 0x7080
constant B300 (line 145) | B300 = 0x12c
constant B38400 (line 146) | B38400 = 0x9600
constant B4800 (line 147) | B4800 = 0x12c0
constant B50 (line 148) | B50 = 0x32
constant B57600 (line 149) | B57600 = 0xe100
constant B600 (line 150) | B600 = 0x258
constant B7200 (line 151) | B7200 = 0x1c20
constant B75 (line 152) | B75 = 0x4b
constant B76800 (line 153) | B76800 = 0x12c00
constant B9600 (line 154) | B9600 = 0x2580
constant BIOCFLUSH (line 155) | BIOCFLUSH = 0x20004268
constant BIOCGBLEN (line 156) | BIOCGBLEN = 0x40044266
constant BIOCGDLT (line 157) | BIOCGDLT = 0x4004426a
constant BIOCGDLTLIST (line 158) | BIOCGDLTLIST = 0xc00c4279
constant BIOCGETIF (line 159) | BIOCGETIF = 0x4020426b
constant BIOCGHDRCMPLT (line 160) | BIOCGHDRCMPLT = 0x40044274
constant BIOCGRSIG (line 161) | BIOCGRSIG = 0x40044272
constant BIOCGRTIMEOUT (line 162) | BIOCGRTIMEOUT = 0x4008426e
constant BIOCGSEESENT (line 163) | BIOCGSEESENT = 0x40044276
constant BIOCGSTATS (line 164) | BIOCGSTATS = 0x4008426f
constant BIOCIMMEDIATE (line 165) | BIOCIMMEDIATE = 0x80044270
constant BIOCPROMISC (line 166) | BIOCPROMISC = 0x20004269
constant BIOCSBLEN (line 167) | BIOCSBLEN = 0xc0044266
constant BIOCSDLT (line 168) | BIOCSDLT = 0x80044278
constant BIOCSETF (line 169) | BIOCSETF = 0x80084267
constant BIOCSETFNR (line 170) | BIOCSETFNR = 0x8008427e
constant BIOCSETIF (line 171) | BIOCSETIF = 0x8020426c
constant BIOCSHDRCMPLT (line 172) | BIOCSHDRCMPLT = 0x80044275
constant BIOCSRSIG (line 173) | BIOCSRSIG = 0x80044273
constant BIOCSRTIMEOUT (line 174) | BIOCSRTIMEOUT = 0x8008426d
constant BIOCSSEESENT (line 175) | BIOCSSEESENT = 0x80044277
constant BIOCVERSION (line 176) | BIOCVERSION = 0x40044271
constant BPF_A (line 177) | BPF_A = 0x10
constant BPF_ABS (line 178) | BPF_ABS = 0x20
constant BPF_ADD (line 179) | BPF_ADD = 0x0
constant BPF_ALIGNMENT (line 180) | BPF_ALIGNMENT = 0x4
constant BPF_ALU (line 181) | BPF_ALU = 0x4
constant BPF_AND (line 182) | BPF_AND = 0x50
constant BPF_B (line 183) | BPF_B = 0x10
constant BPF_DIV (line 184) | BPF_DIV = 0x30
constant BPF_H (line 185) | BPF_H = 0x8
constant BPF_IMM (line 186) | BPF_IMM = 0x0
constant BPF_IND (line 187) | BPF_IND = 0x40
constant BPF_JA (line 188) | BPF_JA = 0x0
constant BPF_JEQ (line 189) | BPF_JEQ = 0x10
constant BPF_JGE (line 190) | BPF_JGE = 0x30
constant BPF_JGT (line 191) | BPF_JGT = 0x20
constant BPF_JMP (line 192) | BPF_JMP = 0x5
constant BPF_JSET (line 193) | BPF_JSET = 0x40
constant BPF_K (line 194) | BPF_K = 0x0
constant BPF_LD (line 195) | BPF_LD = 0x0
constant BPF_LDX (line 196) | BPF_LDX = 0x1
constant BPF_LEN (line 197) | BPF_LEN = 0x80
constant BPF_LSH (line 198) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 199) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXBUFSIZE (line 200) | BPF_MAXBUFSIZE = 0x80000
constant BPF_MAXINSNS (line 201) | BPF_MAXINSNS = 0x200
constant BPF_MEM (line 202) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 203) | BPF_MEMWORDS = 0x10
constant BPF_MINBUFSIZE (line 204) | BPF_MINBUFSIZE = 0x20
constant BPF_MINOR_VERSION (line 205) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 206) | BPF_MISC = 0x7
constant BPF_MSH (line 207) | BPF_MSH = 0xa0
constant BPF_MUL (line 208) | BPF_MUL = 0x20
constant BPF_NEG (line 209) | BPF_NEG = 0x80
constant BPF_OR (line 210) | BPF_OR = 0x40
constant BPF_RELEASE (line 211) | BPF_RELEASE = 0x30bb6
constant BPF_RET (line 212) | BPF_RET = 0x6
constant BPF_RSH (line 213) | BPF_RSH = 0x70
constant BPF_ST (line 214) | BPF_ST = 0x2
constant BPF_STX (line 215) | BPF_STX = 0x3
constant BPF_SUB (line 216) | BPF_SUB = 0x10
constant BPF_TAX (line 217) | BPF_TAX = 0x0
constant BPF_TXA (line 218) | BPF_TXA = 0x80
constant BPF_W (line 219) | BPF_W = 0x0
constant BPF_X (line 220) | BPF_X = 0x8
constant BRKINT (line 221) | BRKINT = 0x2
constant BS0 (line 222) | BS0 = 0x0
constant BS1 (line 223) | BS1 = 0x8000
constant BSDLY (line 224) | BSDLY = 0x8000
constant CFLUSH (line 225) | CFLUSH = 0xf
constant CLOCAL (line 226) | CLOCAL = 0x8000
constant CLOCK_MONOTONIC (line 227) | CLOCK_MONOTONIC = 0x6
constant CLOCK_MONOTONIC_RAW (line 228) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_MONOTONIC_RAW_APPROX (line 229) | CLOCK_MONOTONIC_RAW_APPROX = 0x5
constant CLOCK_PROCESS_CPUTIME_ID (line 230) | CLOCK_PROCESS_CPUTIME_ID = 0xc
constant CLOCK_REALTIME (line 231) | CLOCK_REALTIME = 0x0
constant CLOCK_THREAD_CPUTIME_ID (line 232) | CLOCK_THREAD_CPUTIME_ID = 0x10
constant CLOCK_UPTIME_RAW (line 233) | CLOCK_UPTIME_RAW = 0x8
constant CLOCK_UPTIME_RAW_APPROX (line 234) | CLOCK_UPTIME_RAW_APPROX = 0x9
constant CR0 (line 235) | CR0 = 0x0
constant CR1 (line 236) | CR1 = 0x1000
constant CR2 (line 237) | CR2 = 0x2000
constant CR3 (line 238) | CR3 = 0x3000
constant CRDLY (line 239) | CRDLY = 0x3000
constant CREAD (line 240) | CREAD = 0x800
constant CRTSCTS (line 241) | CRTSCTS = 0x30000
constant CS5 (line 242) | CS5 = 0x0
constant CS6 (line 243) | CS6 = 0x100
constant CS7 (line 244) | CS7 = 0x200
constant CS8 (line 245) | CS8 = 0x300
constant CSIZE (line 246) | CSIZE = 0x300
constant CSTART (line 247) | CSTART = 0x11
constant CSTATUS (line 248) | CSTATUS = 0x14
constant CSTOP (line 249) | CSTOP = 0x13
constant CSTOPB (line 250) | CSTOPB = 0x400
constant CSUSP (line 251) | CSUSP = 0x1a
constant CTL_HW (line 252) | CTL_HW = 0x6
constant CTL_KERN (line 253) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 254) | CTL_MAXNAME = 0xc
constant CTL_NET (line 255) | CTL_NET = 0x4
constant DLT_A429 (line 256) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 257) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 258) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 259) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 260) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 261) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 262) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 263) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 264) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 265) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 266) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 267) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 268) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_HCI_H4 (line 269) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 270) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_CAN20B (line 271) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 272) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 273) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 274) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 275) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 276) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 277) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DBUS (line 278) | DLT_DBUS = 0xe7
constant DLT_DECT (line 279) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 280) | DLT_DOCSIS = 0x8f
constant DLT_DVB_CI (line 281) | DLT_DVB_CI = 0xeb
constant DLT_ECONET (line 282) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 283) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 284) | DLT_EN3MB = 0x2
constant DLT_ENC (line 285) | DLT_ENC = 0x6d
constant DLT_ERF (line 286) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 287) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 288) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 289) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 290) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 291) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 292) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 293) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 294) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 295) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 296) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 297) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 298) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 299) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 300) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 301) | DLT_GSMTAP_UM = 0xd9
constant DLT_HHDLC (line 302) | DLT_HHDLC = 0x79
constant DLT_IBM_SN (line 303) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 304) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 305) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 306) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 307) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 308) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 309) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 310) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NOFCS (line 311) | DLT_IEEE802_15_4_NOFCS = 0xe6
constant DLT_IEEE802_15_4_NONASK_PHY (line 312) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 313) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 314) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPFILTER (line 315) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 316) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 317) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPNET (line 318) | DLT_IPNET = 0xe2
constant DLT_IPOIB (line 319) | DLT_IPOIB = 0xf2
constant DLT_IPV4 (line 320) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 321) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 322) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 323) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 324) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_ATM_CEMIC (line 325) | DLT_JUNIPER_ATM_CEMIC = 0xee
constant DLT_JUNIPER_CHDLC (line 326) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 327) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 328) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FIBRECHANNEL (line 329) | DLT_JUNIPER_FIBRECHANNEL = 0xea
constant DLT_JUNIPER_FRELAY (line 330) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 331) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 332) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 333) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 334) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 335) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 336) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 337) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 338) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 339) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 340) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 341) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_SRX_E2E (line 342) | DLT_JUNIPER_SRX_E2E = 0xe9
constant DLT_JUNIPER_ST (line 343) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 344) | DLT_JUNIPER_VP = 0xb7
constant DLT_JUNIPER_VS (line 345) | DLT_JUNIPER_VS = 0xe8
constant DLT_LAPB_WITH_DIR (line 346) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 347) | DLT_LAPD = 0xcb
constant DLT_LIN (line 348) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 349) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 350) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 351) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_PPP_WITHDIRECTION (line 352) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6
constant DLT_LINUX_SLL (line 353) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 354) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 355) | DLT_LTALK = 0x72
constant DLT_MATCHING_MAX (line 356) | DLT_MATCHING_MAX = 0xf5
constant DLT_MATCHING_MIN (line 357) | DLT_MATCHING_MIN = 0x68
constant DLT_MFR (line 358) | DLT_MFR = 0xb6
constant DLT_MOST (line 359) | DLT_MOST = 0xd3
constant DLT_MPEG_2_TS (line 360) | DLT_MPEG_2_TS = 0xf3
constant DLT_MPLS (line 361) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 362) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 363) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 364) | DLT_MTP3 = 0x8d
constant DLT_MUX27010 (line 365) | DLT_MUX27010 = 0xec
constant DLT_NETANALYZER (line 366) | DLT_NETANALYZER = 0xf0
constant DLT_NETANALYZER_TRANSPARENT (line 367) | DLT_NETANALYZER_TRANSPARENT = 0xf1
constant DLT_NFC_LLCP (line 368) | DLT_NFC_LLCP = 0xf5
constant DLT_NFLOG (line 369) | DLT_NFLOG = 0xef
constant DLT_NG40 (line 370) | DLT_NG40 = 0xf4
constant DLT_NULL (line 371) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 372) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 373) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 374) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 375) | DLT_PPI = 0xc0
constant DLT_PPP (line 376) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 377) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 378) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 379) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 380) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 381) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PPP_WITH_DIRECTION (line 382) | DLT_PPP_WITH_DIRECTION = 0xa6
constant DLT_PRISM_HEADER (line 383) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 384) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 385) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 386) | DLT_RAW = 0xc
constant DLT_RIO (line 387) | DLT_RIO = 0x7c
constant DLT_SCCP (line 388) | DLT_SCCP = 0x8e
constant DLT_SITA (line 389) | DLT_SITA = 0xc4
constant DLT_SLIP (line 390) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 391) | DLT_SLIP_BSDOS = 0xf
constant DLT_STANAG_5066_D_PDU (line 392) | DLT_STANAG_5066_D_PDU = 0xed
constant DLT_SUNATM (line 393) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 394) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 395) | DLT_TZSP = 0x80
constant DLT_USB (line 396) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 397) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 398) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_USER0 (line 399) | DLT_USER0 = 0x93
constant DLT_USER1 (line 400) | DLT_USER1 = 0x94
constant DLT_USER10 (line 401) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 402) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 403) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 404) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 405) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 406) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 407) | DLT_USER2 = 0x95
constant DLT_USER3 (line 408) | DLT_USER3 = 0x96
constant DLT_USER4 (line 409) | DLT_USER4 = 0x97
constant DLT_USER5 (line 410) | DLT_USER5 = 0x98
constant DLT_USER6 (line 411) | DLT_USER6 = 0x99
constant DLT_USER7 (line 412) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 413) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 414) | DLT_USER9 = 0x9c
constant DLT_WIHART (line 415) | DLT_WIHART = 0xdf
constant DLT_X2E_SERIAL (line 416) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 417) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 418) | DT_BLK = 0x6
constant DT_CHR (line 419) | DT_CHR = 0x2
constant DT_DIR (line 420) | DT_DIR = 0x4
constant DT_FIFO (line 421) | DT_FIFO = 0x1
constant DT_LNK (line 422) | DT_LNK = 0xa
constant DT_REG (line 423) | DT_REG = 0x8
constant DT_SOCK (line 424) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 425) | DT_UNKNOWN = 0x0
constant DT_WHT (line 426) | DT_WHT = 0xe
constant ECHO (line 427) | ECHO = 0x8
constant ECHOCTL (line 428) | ECHOCTL = 0x40
constant ECHOE (line 429) | ECHOE = 0x2
constant ECHOK (line 430) | ECHOK = 0x4
constant ECHOKE (line 431) | ECHOKE = 0x1
constant ECHONL (line 432) | ECHONL = 0x10
constant ECHOPRT (line 433) | ECHOPRT = 0x20
constant EVFILT_AIO (line 434) | EVFILT_AIO = -0x3
constant EVFILT_EXCEPT (line 435) | EVFILT_EXCEPT = -0xf
constant EVFILT_FS (line 436) | EVFILT_FS = -0x9
constant EVFILT_MACHPORT (line 437) | EVFILT_MACHPORT = -0x8
constant EVFILT_PROC (line 438) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 439) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 440) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 441) | EVFILT_SYSCOUNT = 0xf
constant EVFILT_THREADMARKER (line 442) | EVFILT_THREADMARKER = 0xf
constant EVFILT_TIMER (line 443) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 444) | EVFILT_USER = -0xa
constant EVFILT_VM (line 445) | EVFILT_VM = -0xc
constant EVFILT_VNODE (line 446) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 447) | EVFILT_WRITE = -0x2
constant EV_ADD (line 448) | EV_ADD = 0x1
constant EV_CLEAR (line 449) | EV_CLEAR = 0x20
constant EV_DELETE (line 450) | EV_DELETE = 0x2
constant EV_DISABLE (line 451) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 452) | EV_DISPATCH = 0x80
constant EV_DISPATCH2 (line 453) | EV_DISPATCH2 = 0x180
constant EV_ENABLE (line 454) | EV_ENABLE = 0x4
constant EV_EOF (line 455) | EV_EOF = 0x8000
constant EV_ERROR (line 456) | EV_ERROR = 0x4000
constant EV_FLAG0 (line 457) | EV_FLAG0 = 0x1000
constant EV_FLAG1 (line 458) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 459) | EV_ONESHOT = 0x10
constant EV_OOBAND (line 460) | EV_OOBAND = 0x2000
constant EV_POLL (line 461) | EV_POLL = 0x1000
constant EV_RECEIPT (line 462) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 463) | EV_SYSFLAGS = 0xf000
constant EV_UDATA_SPECIFIC (line 464) | EV_UDATA_SPECIFIC = 0x100
constant EV_VANISHED (line 465) | EV_VANISHED = 0x200
constant EXTA (line 466) | EXTA = 0x4b00
constant EXTB (line 467) | EXTB = 0x9600
constant EXTPROC (line 468) | EXTPROC = 0x800
constant FD_CLOEXEC (line 469) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 470) | FD_SETSIZE = 0x400
constant FF0 (line 471) | FF0 = 0x0
constant FF1 (line 472) | FF1 = 0x4000
constant FFDLY (line 473) | FFDLY = 0x4000
constant FLUSHO (line 474) | FLUSHO = 0x800000
constant FSOPT_ATTR_CMN_EXTENDED (line 475) | FSOPT_ATTR_CMN_EXTENDED = 0x20
constant FSOPT_NOFOLLOW (line 476) | FSOPT_NOFOLLOW = 0x1
constant FSOPT_NOINMEMUPDATE (line 477) | FSOPT_NOINMEMUPDATE = 0x2
constant FSOPT_PACK_INVAL_ATTRS (line 478) | FSOPT_PACK_INVAL_ATTRS = 0x8
constant FSOPT_REPORT_FULLSIZE (line 479) | FSOPT_REPORT_FULLSIZE = 0x4
constant F_ADDFILESIGS (line 480) | F_ADDFILESIGS = 0x3d
constant F_ADDFILESIGS_FOR_DYLD_SIM (line 481) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53
constant F_ADDFILESIGS_RETURN (line 482) | F_ADDFILESIGS_RETURN = 0x61
constant F_ADDSIGS (line 483) | F_ADDSIGS = 0x3b
constant F_ALLOCATEALL (line 484) | F_ALLOCATEALL = 0x4
constant F_ALLOCATECONTIG (line 485) | F_ALLOCATECONTIG = 0x2
constant F_BARRIERFSYNC (line 486) | F_BARRIERFSYNC = 0x55
constant F_CHECK_LV (line 487) | F_CHECK_LV = 0x62
constant F_CHKCLEAN (line 488) | F_CHKCLEAN = 0x29
constant F_DUPFD (line 489) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 490) | F_DUPFD_CLOEXEC = 0x43
constant F_FINDSIGS (line 491) | F_FINDSIGS = 0x4e
constant F_FLUSH_DATA (line 492) | F_FLUSH_DATA = 0x28
constant F_FREEZE_FS (line 493) | F_FREEZE_FS = 0x35
constant F_FULLFSYNC (line 494) | F_FULLFSYNC = 0x33
constant F_GETCODEDIR (line 495) | F_GETCODEDIR = 0x48
constant F_GETFD (line 496) | F_GETFD = 0x1
constant F_GETFL (line 497) | F_GETFL = 0x3
constant F_GETLK (line 498) | F_GETLK = 0x7
constant F_GETLKPID (line 499) | F_GETLKPID = 0x42
constant F_GETNOSIGPIPE (line 500) | F_GETNOSIGPIPE = 0x4a
constant F_GETOWN (line 501) | F_GETOWN = 0x5
constant F_GETPATH (line 502) | F_GETPATH = 0x32
constant F_GETPATH_MTMINFO (line 503) | F_GETPATH_MTMINFO = 0x47
constant F_GETPROTECTIONCLASS (line 504) | F_GETPROTECTIONCLASS = 0x3f
constant F_GETPROTECTIONLEVEL (line 505) | F_GETPROTECTIONLEVEL = 0x4d
constant F_GLOBAL_NOCACHE (line 506) | F_GLOBAL_NOCACHE = 0x37
constant F_LOG2PHYS (line 507) | F_LOG2PHYS = 0x31
constant F_LOG2PHYS_EXT (line 508) | F_LOG2PHYS_EXT = 0x41
constant F_NOCACHE (line 509) | F_NOCACHE = 0x30
constant F_NODIRECT (line 510) | F_NODIRECT = 0x3e
constant F_OK (line 511) | F_OK = 0x0
constant F_PATHPKG_CHECK (line 512) | F_PATHPKG_CHECK = 0x34
constant F_PEOFPOSMODE (line 513) | F_PEOFPOSMODE = 0x3
constant F_PREALLOCATE (line 514) | F_PREALLOCATE = 0x2a
constant F_PUNCHHOLE (line 515) | F_PUNCHHOLE = 0x63
constant F_RDADVISE (line 516) | F_RDADVISE = 0x2c
constant F_RDAHEAD (line 517) | F_RDAHEAD = 0x2d
constant F_RDLCK (line 518) | F_RDLCK = 0x1
constant F_SETBACKINGSTORE (line 519) | F_SETBACKINGSTORE = 0x46
constant F_SETFD (line 520) | F_SETFD = 0x2
constant F_SETFL (line 521) | F_SETFL = 0x4
constant F_SETLK (line 522) | F_SETLK = 0x8
constant F_SETLKW (line 523) | F_SETLKW = 0x9
constant F_SETLKWTIMEOUT (line 524) | F_SETLKWTIMEOUT = 0xa
constant F_SETNOSIGPIPE (line 525) | F_SETNOSIGPIPE = 0x49
constant F_SETOWN (line 526) | F_SETOWN = 0x6
constant F_SETPROTECTIONCLASS (line 527) | F_SETPROTECTIONCLASS = 0x40
constant F_SETSIZE (line 528) | F_SETSIZE = 0x2b
constant F_SINGLE_WRITER (line 529) | F_SINGLE_WRITER = 0x4c
constant F_THAW_FS (line 530) | F_THAW_FS = 0x36
constant F_TRANSCODEKEY (line 531) | F_TRANSCODEKEY = 0x4b
constant F_TRIM_ACTIVE_FILE (line 532) | F_TRIM_ACTIVE_FILE = 0x64
constant F_UNLCK (line 533) | F_UNLCK = 0x2
constant F_VOLPOSMODE (line 534) | F_VOLPOSMODE = 0x4
constant F_WRLCK (line 535) | F_WRLCK = 0x3
constant HUPCL (line 536) | HUPCL = 0x4000
constant HW_MACHINE (line 537) | HW_MACHINE = 0x1
constant ICANON (line 538) | ICANON = 0x100
constant ICMP6_FILTER (line 539) | ICMP6_FILTER = 0x12
constant ICRNL (line 540) | ICRNL = 0x100
constant IEXTEN (line 541) | IEXTEN = 0x400
constant IFF_ALLMULTI (line 542) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 543) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 544) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 545) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 546) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 547) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 548) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 549) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 550) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 551) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 552) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 553) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 554) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 555) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 556) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 557) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 558) | IFF_UP = 0x1
constant IFNAMSIZ (line 559) | IFNAMSIZ = 0x10
constant IFT_1822 (line 560) | IFT_1822 = 0x2
constant IFT_AAL5 (line 561) | IFT_AAL5 = 0x31
constant IFT_ARCNET (line 562) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 563) | IFT_ARCNETPLUS = 0x24
constant IFT_ATM (line 564) | IFT_ATM = 0x25
constant IFT_BRIDGE (line 565) | IFT_BRIDGE = 0xd1
constant IFT_CARP (line 566) | IFT_CARP = 0xf8
constant IFT_CELLULAR (line 567) | IFT_CELLULAR = 0xff
constant IFT_CEPT (line 568) | IFT_CEPT = 0x13
constant IFT_DS3 (line 569) | IFT_DS3 = 0x1e
constant IFT_ENC (line 570) | IFT_ENC = 0xf4
constant IFT_EON (line 571) | IFT_EON = 0x19
constant IFT_ETHER (line 572) | IFT_ETHER = 0x6
constant IFT_FAITH (line 573) | IFT_FAITH = 0x38
constant IFT_FDDI (line 574) | IFT_FDDI = 0xf
constant IFT_FRELAY (line 575) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 576) | IFT_FRELAYDCE = 0x2c
constant IFT_GIF (line 577) | IFT_GIF = 0x37
constant IFT_HDH1822 (line 578) | IFT_HDH1822 = 0x3
constant IFT_HIPPI (line 579) | IFT_HIPPI = 0x2f
constant IFT_HSSI (line 580) | IFT_HSSI = 0x2e
constant IFT_HY (line 581) | IFT_HY = 0xe
constant IFT_IEEE1394 (line 582) | IFT_IEEE1394 = 0x90
constant IFT_IEEE8023ADLAG (line 583) | IFT_IEEE8023ADLAG = 0x88
constant IFT_ISDNBASIC (line 584) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 585) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISO88022LLC (line 586) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 587) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 588) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 589) | IFT_ISO88025 = 0x9
constant IFT_ISO88026 (line 590) | IFT_ISO88026 = 0xa
constant IFT_L2VLAN (line 591) | IFT_L2VLAN = 0x87
constant IFT_LAPB (line 592) | IFT_LAPB = 0x10
constant IFT_LOCALTALK (line 593) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 594) | IFT_LOOP = 0x18
constant IFT_MIOX25 (line 595) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 596) | IFT_MODEM = 0x30
constant IFT_NSIP (line 597) | IFT_NSIP = 0x1b
constant IFT_OTHER (line 598) | IFT_OTHER = 0x1
constant IFT_P10 (line 599) | IFT_P10 = 0xc
constant IFT_P80 (line 600) | IFT_P80 = 0xd
constant IFT_PARA (line 601) | IFT_PARA = 0x22
constant IFT_PDP (line 602) | IFT_PDP = 0xff
constant IFT_PFLOG (line 603) | IFT_PFLOG = 0xf5
constant IFT_PFSYNC (line 604) | IFT_PFSYNC = 0xf6
constant IFT_PKTAP (line 605) | IFT_PKTAP = 0xfe
constant IFT_PPP (line 606) | IFT_PPP = 0x17
constant IFT_PROPMUX (line 607) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 608) | IFT_PROPVIRTUAL = 0x35
constant IFT_PTPSERIAL (line 609) | IFT_PTPSERIAL = 0x16
constant IFT_RS232 (line 610) | IFT_RS232 = 0x21
constant IFT_SDLC (line 611) | IFT_SDLC = 0x11
constant IFT_SIP (line 612) | IFT_SIP = 0x1f
constant IFT_SLIP (line 613) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 614) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 615) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 616) | IFT_SONET = 0x27
constant IFT_SONETPATH (line 617) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 618) | IFT_SONETVT = 0x33
constant IFT_STARLAN (line 619) | IFT_STARLAN = 0xb
constant IFT_STF (line 620) | IFT_STF = 0x39
constant IFT_T1 (line 621) | IFT_T1 = 0x12
constant IFT_ULTRA (line 622) | IFT_ULTRA = 0x1d
constant IFT_V35 (line 623) | IFT_V35 = 0x2d
constant IFT_X25 (line 624) | IFT_X25 = 0x5
constant IFT_X25DDN (line 625) | IFT_X25DDN = 0x4
constant IFT_X25PLE (line 626) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 627) | IFT_XETHER = 0x1a
constant IGNBRK (line 628) | IGNBRK = 0x1
constant IGNCR (line 629) | IGNCR = 0x80
constant IGNPAR (line 630) | IGNPAR = 0x4
constant IMAXBEL (line 631) | IMAXBEL = 0x2000
constant INLCR (line 632) | INLCR = 0x40
constant INPCK (line 633) | INPCK = 0x10
constant IN_CLASSA_HOST (line 634) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 635) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 636) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 637) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 638) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 639) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 640) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 641) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 642) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 643) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 644) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 645) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 646) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 647) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LINKLOCALNETNUM (line 648) | IN_LINKLOCALNETNUM = 0xa9fe0000
constant IN_LOOPBACKNET (line 649) | IN_LOOPBACKNET = 0x7f
constant IPPROTO_3PC (line 650) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 651) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 652) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 653) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 654) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 655) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 656) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 657) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 658) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 659) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CFTP (line 660) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 661) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 662) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 663) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 664) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 665) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 666) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 667) | IPPROTO_DIVERT = 0xfe
constant IPPROTO_DONE (line 668) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 669) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 670) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 671) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 672) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 673) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 674) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 675) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 676) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 677) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 678) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 679) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 680) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HMP (line 681) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 682) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 683) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 684) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 685) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 686) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 687) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 688) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 689) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 690) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 691) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 692) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 693) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 694) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 695) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 696) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 697) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 698) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 699) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 700) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 701) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 702) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 703) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 704) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 705) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 706) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 707) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 708) | IPPROTO_MAXID = 0x34
constant IPPROTO_MEAS (line 709) | IPPROTO_MEAS = 0x13
constant IPPROTO_MHRP (line 710) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 711) | IPPROTO_MICP = 0x5f
constant IPPROTO_MTP (line 712) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 713) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 714) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 715) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 716) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 717) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 718) | IPPROTO_NVPII = 0xb
constant IPPROTO_OSPFIGP (line 719) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PGM (line 720) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 721) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 722) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 723) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 724) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 725) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 726) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 727) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 728) | IPPROTO_RDP = 0x1b
constant IPPROTO_ROUTING (line 729) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 730) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 731) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 732) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 733) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 734) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SCTP (line 735) | IPPROTO_SCTP = 0x84
constant IPPROTO_SDRP (line 736) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEP (line 737) | IPPROTO_SEP = 0x21
constant IPPROTO_SRPC (line 738) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 739) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 740) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 741) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 742) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 743) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 744) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 745) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 746) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 747) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 748) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 749) | IPPROTO_UDP = 0x11
constant IPPROTO_VINES (line 750) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 751) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 752) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 753) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 754) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 755) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 756) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 757) | IPPROTO_XTP = 0x24
constant IPV6_2292DSTOPTS (line 758) | IPV6_2292DSTOPTS = 0x17
constant IPV6_2292HOPLIMIT (line 759) | IPV6_2292HOPLIMIT = 0x14
constant IPV6_2292HOPOPTS (line 760) | IPV6_2292HOPOPTS = 0x16
constant IPV6_2292NEXTHOP (line 761) | IPV6_2292NEXTHOP = 0x15
constant IPV6_2292PKTINFO (line 762) | IPV6_2292PKTINFO = 0x13
constant IPV6_2292PKTOPTIONS (line 763) | IPV6_2292PKTOPTIONS = 0x19
constant IPV6_2292RTHDR (line 764) | IPV6_2292RTHDR = 0x18
constant IPV6_BINDV6ONLY (line 765) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_BOUND_IF (line 766) | IPV6_BOUND_IF = 0x7d
constant IPV6_CHECKSUM (line 767) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 768) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 769) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 770) | IPV6_DEFHLIM = 0x40
constant IPV6_FAITH (line 771) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 772) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 773) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FLOW_ECN_MASK (line 774) | IPV6_FLOW_ECN_MASK = 0x300
constant IPV6_FRAGTTL (line 775) | IPV6_FRAGTTL = 0x3c
constant IPV6_FW_ADD (line 776) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 777) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 778) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 779) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 780) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 781) | IPV6_HLIMDEC = 0x1
constant IPV6_IPSEC_POLICY (line 782) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 783) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 784) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 785) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXOPTHDR (line 786) | IPV6_MAXOPTHDR = 0x800
constant IPV6_MAXPACKET (line 787) | IPV6_MAXPACKET = 0xffff
constant IPV6_MAX_GROUP_SRC_FILTER (line 788) | IPV6_MAX_GROUP_SRC_FILTER = 0x200
constant IPV6_MAX_MEMBERSHIPS (line 789) | IPV6_MAX_MEMBERSHIPS = 0xfff
constant IPV6_MAX_SOCK_SRC_FILTER (line 790) | IPV6_MAX_SOCK_SRC_FILTER = 0x80
constant IPV6_MIN_MEMBERSHIPS (line 791) | IPV6_MIN_MEMBERSHIPS = 0x1f
constant IPV6_MMTU (line 792) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 793) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 794) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 795) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_PORTRANGE (line 796) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 797) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 798) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 799) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVTCLASS (line 800) | IPV6_RECVTCLASS = 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 = 0x24
constant IPV6_UNICAST_HOPS (line 806) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_V6ONLY (line 807) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 808) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 809) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 810) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 811) | IP_ADD_SOURCE_MEMBERSHIP = 0x46
constant IP_BLOCK_SOURCE (line 812) | IP_BLOCK_SOURCE = 0x48
constant IP_BOUND_IF (line 813) | IP_BOUND_IF = 0x19
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_DROP_MEMBERSHIP (line 817) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 818) | IP_DROP_SOURCE_MEMBERSHIP = 0x47
constant IP_DUMMYNET_CONFIGURE (line 819) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 820) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 821) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 822) | IP_DUMMYNET_GET = 0x40
constant IP_FAITH (line 823) | IP_FAITH = 0x16
constant IP_FW_ADD (line 824) | IP_FW_ADD = 0x28
constant IP_FW_DEL (line 825) | IP_FW_DEL = 0x29
constant IP_FW_FLUSH (line 826) | IP_FW_FLUSH = 0x2a
constant IP_FW_GET (line 827) | IP_FW_GET = 0x2c
constant IP_FW_RESETLOG (line 828) | IP_FW_RESETLOG = 0x2d
constant IP_FW_ZERO (line 829) | IP_FW_ZERO = 0x2b
constant IP_HDRINCL (line 830) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 831) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 832) | IP_MAXPACKET = 0xffff
constant IP_MAX_GROUP_SRC_FILTER (line 833) | IP_MAX_GROUP_SRC_FILTER = 0x200
constant IP_MAX_MEMBERSHIPS (line 834) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MAX_SOCK_MUTE_FILTER (line 835) | IP_MAX_SOCK_MUTE_FILTER = 0x80
constant IP_MAX_SOCK_SRC_FILTER (line 836) | IP_MAX_SOCK_SRC_FILTER = 0x80
constant IP_MF (line 837) | IP_MF = 0x2000
constant IP_MIN_MEMBERSHIPS (line 838) | IP_MIN_MEMBERSHIPS = 0x1f
constant IP_MSFILTER (line 839) | IP_MSFILTER = 0x4a
constant IP_MSS (line 840) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 841) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_IFINDEX (line 842) | IP_MULTICAST_IFINDEX = 0x42
constant IP_MULTICAST_LOOP (line 843) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 844) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 845) | IP_MULTICAST_VIF = 0xe
constant IP_NAT__XXX (line 846) | IP_NAT__XXX = 0x37
constant IP_OFFMASK (line 847) | IP_OFFMASK = 0x1fff
constant IP_OLD_FW_ADD (line 848) | IP_OLD_FW_ADD = 0x32
constant IP_OLD_FW_DEL (line 849) | IP_OLD_FW_DEL = 0x33
constant IP_OLD_FW_FLUSH (line 850) | IP_OLD_FW_FLUSH = 0x34
constant IP_OLD_FW_GET (line 851) | IP_OLD_FW_GET = 0x36
constant IP_OLD_FW_RESETLOG (line 852) | IP_OLD_FW_RESETLOG = 0x38
constant IP_OLD_FW_ZERO (line 853) | IP_OLD_FW_ZERO = 0x35
constant IP_OPTIONS (line 854) | IP_OPTIONS = 0x1
constant IP_PKTINFO (line 855) | IP_PKTINFO = 0x1a
constant IP_PORTRANGE (line 856) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 857) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 858) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 859) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 860) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 861) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 862) | IP_RECVOPTS = 0x5
constant IP_RECVPKTINFO (line 863) | IP_RECVPKTINFO = 0x1a
constant IP_RECVRETOPTS (line 864) | IP_RECVRETOPTS = 0x6
constant IP_RECVTOS (line 865) | IP_RECVTOS = 0x1b
constant IP_RECVTTL (line 866) | IP_RECVTTL = 0x18
constant IP_RETOPTS (line 867) | IP_RETOPTS = 0x8
constant IP_RF (line 868) | IP_RF = 0x8000
constant IP_RSVP_OFF (line 869) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 870) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 871) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 872) | IP_RSVP_VIF_ON = 0x11
constant IP_STRIPHDR (line 873) | IP_STRIPHDR = 0x17
constant IP_TOS (line 874) | IP_TOS = 0x3
constant IP_TRAFFIC_MGT_BACKGROUND (line 875) | IP_TRAFFIC_MGT_BACKGROUND = 0x41
constant IP_TTL (line 876) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 877) | IP_UNBLOCK_SOURCE = 0x49
constant ISIG (line 878) | ISIG = 0x80
constant ISTRIP (line 879) | ISTRIP = 0x20
constant IUTF8 (line 880) | IUTF8 = 0x4000
constant IXANY (line 881) | IXANY = 0x800
constant IXOFF (line 882) | IXOFF = 0x400
constant IXON (line 883) | IXON = 0x200
constant KERN_HOSTNAME (line 884) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 885) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 886) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 887) | KERN_VERSION = 0x4
constant LOCK_EX (line 888) | LOCK_EX = 0x2
constant LOCK_NB (line 889) | LOCK_NB = 0x4
constant LOCK_SH (line 890) | LOCK_SH = 0x1
constant LOCK_UN (line 891) | LOCK_UN = 0x8
constant MADV_CAN_REUSE (line 892) | MADV_CAN_REUSE = 0x9
constant MADV_DONTNEED (line 893) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 894) | MADV_FREE = 0x5
constant MADV_FREE_REUSABLE (line 895) | MADV_FREE_REUSABLE = 0x7
constant MADV_FREE_REUSE (line 896) | MADV_FREE_REUSE = 0x8
constant MADV_NORMAL (line 897) | MADV_NORMAL = 0x0
constant MADV_PAGEOUT (line 898) | MADV_PAGEOUT = 0xa
constant MADV_RANDOM (line 899) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 900) | MADV_SEQUENTIAL = 0x2
constant MADV_WILLNEED (line 901) | MADV_WILLNEED = 0x3
constant MADV_ZERO_WIRED_PAGES (line 902) | MADV_ZERO_WIRED_PAGES = 0x6
constant MAP_ANON (line 903) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 904) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 905) | MAP_COPY = 0x2
constant MAP_FILE (line 906) | MAP_FILE = 0x0
constant MAP_FIXED (line 907) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 908) | MAP_HASSEMAPHORE = 0x200
constant MAP_JIT (line 909) | MAP_JIT = 0x800
constant MAP_NOCACHE (line 910) | MAP_NOCACHE = 0x400
constant MAP_NOEXTEND (line 911) | MAP_NOEXTEND = 0x100
constant MAP_NORESERVE (line 912) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 913) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 914) | MAP_RENAME = 0x20
constant MAP_RESERVED0080 (line 915) | MAP_RESERVED0080 = 0x80
constant MAP_RESILIENT_CODESIGN (line 916) | MAP_RESILIENT_CODESIGN = 0x2000
constant MAP_RESILIENT_MEDIA (line 917) | MAP_RESILIENT_MEDIA = 0x4000
constant MAP_SHARED (line 918) | MAP_SHARED = 0x1
constant MCL_CURRENT (line 919) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 920) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 921) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 922) | MNT_AUTOMOUNTED = 0x400000
constant MNT_CMDFLAGS (line 923) | MNT_CMDFLAGS = 0xf0000
constant MNT_CPROTECT (line 924) | MNT_CPROTECT = 0x80
constant MNT_DEFWRITE (line 925) | MNT_DEFWRITE = 0x2000000
constant MNT_DONTBROWSE (line 926) | MNT_DONTBROWSE = 0x100000
constant MNT_DOVOLFS (line 927) | MNT_DOVOLFS = 0x8000
constant MNT_DWAIT (line 928) | MNT_DWAIT = 0x4
constant MNT_EXPORTED (line 929) | MNT_EXPORTED = 0x100
constant MNT_FORCE (line 930) | MNT_FORCE = 0x80000
constant MNT_IGNORE_OWNERSHIP (line 931) | MNT_IGNORE_OWNERSHIP = 0x200000
constant MNT_JOURNALED (line 932) | MNT_JOURNALED = 0x800000
constant MNT_LOCAL (line 933) | MNT_LOCAL = 0x1000
constant MNT_MULTILABEL (line 934) | MNT_MULTILABEL = 0x4000000
constant MNT_NOATIME (line 935) | MNT_NOATIME = 0x10000000
constant MNT_NOBLOCK (line 936) | MNT_NOBLOCK = 0x20000
constant MNT_NODEV (line 937) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 938) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 939) | MNT_NOSUID = 0x8
constant MNT_NOUSERXATTR (line 940) | MNT_NOUSERXATTR = 0x1000000
constant MNT_NOWAIT (line 941) | MNT_NOWAIT = 0x2
constant MNT_QUARANTINE (line 942) | MNT_QUARANTINE = 0x400
constant MNT_QUOTA (line 943) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 944) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 945) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 946) | MNT_ROOTFS = 0x4000
constant MNT_SYNCHRONOUS (line 947) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 948) | MNT_UNION = 0x20
constant MNT_UNKNOWNPERMISSIONS (line 949) | MNT_UNKNOWNPERMISSIONS = 0x200000
constant MNT_UPDATE (line 950) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 951) | MNT_VISFLAGMASK = 0x17f0f5ff
constant MNT_WAIT (line 952) | MNT_WAIT = 0x1
constant MSG_CTRUNC (line 953) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 954) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 955) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 956) | MSG_EOF = 0x100
constant MSG_EOR (line 957) | MSG_EOR = 0x8
constant MSG_FLUSH (line 958) | MSG_FLUSH = 0x400
constant MSG_HAVEMORE (line 959) | MSG_HAVEMORE = 0x2000
constant MSG_HOLD (line 960) | MSG_HOLD = 0x800
constant MSG_NEEDSA (line 961) | MSG_NEEDSA = 0x10000
constant MSG_OOB (line 962) | MSG_OOB = 0x1
constant MSG_PEEK (line 963) | MSG_PEEK = 0x2
constant MSG_RCVMORE (line 964) | MSG_RCVMORE = 0x4000
constant MSG_SEND (line 965) | MSG_SEND = 0x1000
constant MSG_TRUNC (line 966) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 967) | MSG_WAITALL = 0x40
constant MSG_WAITSTREAM (line 968) | MSG_WAITSTREAM = 0x200
constant MS_ASYNC (line 969) | MS_ASYNC = 0x1
constant MS_DEACTIVATE (line 970) | MS_DEACTIVATE = 0x8
constant MS_INVALIDATE (line 971) | MS_INVALIDATE = 0x2
constant MS_KILLPAGES (line 972) | MS_KILLPAGES = 0x4
constant MS_SYNC (line 973) | MS_SYNC = 0x10
constant NAME_MAX (line 974) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 975) | NET_RT_DUMP = 0x1
constant NET_RT_DUMP2 (line 976) | NET_RT_DUMP2 = 0x7
constant NET_RT_FLAGS (line 977) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 978) | NET_RT_IFLIST = 0x3
constant NET_RT_IFLIST2 (line 979) | NET_RT_IFLIST2 = 0x6
constant NET_RT_MAXID (line 980) | NET_RT_MAXID = 0xa
constant NET_RT_STAT (line 981) | NET_RT_STAT = 0x4
constant NET_RT_TRASH (line 982) | NET_RT_TRASH = 0x5
constant NL0 (line 983) | NL0 = 0x0
constant NL1 (line 984) | NL1 = 0x100
constant NL2 (line 985) | NL2 = 0x200
constant NL3 (line 986) | NL3 = 0x300
constant NLDLY (line 987) | NLDLY = 0x300
constant NOFLSH (line 988) | NOFLSH = 0x80000000
constant NOKERNINFO (line 989) | NOKERNINFO = 0x2000000
constant NOTE_ABSOLUTE (line 990) | NOTE_ABSOLUTE = 0x8
constant NOTE_ATTRIB (line 991) | NOTE_ATTRIB = 0x8
constant NOTE_BACKGROUND (line 992) | NOTE_BACKGROUND = 0x40
constant NOTE_CHILD (line 993) | NOTE_CHILD = 0x4
constant NOTE_CRITICAL (line 994) | NOTE_CRITICAL = 0x20
constant NOTE_DELETE (line 995) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 996) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 997) | NOTE_EXIT = 0x80000000
constant NOTE_EXITSTATUS (line 998) | NOTE_EXITSTATUS = 0x4000000
constant NOTE_EXIT_CSERROR (line 999) | NOTE_EXIT_CSERROR = 0x40000
constant NOTE_EXIT_DECRYPTFAIL (line 1000) | NOTE_EXIT_DECRYPTFAIL = 0x10000
constant NOTE_EXIT_DETAIL (line 1001) | NOTE_EXIT_DETAIL = 0x2000000
constant NOTE_EXIT_DETAIL_MASK (line 1002) | NOTE_EXIT_DETAIL_MASK = 0x70000
constant NOTE_EXIT_MEMORY (line 1003) | NOTE_EXIT_MEMORY = 0x20000
constant NOTE_EXIT_REPARENTED (line 1004) | NOTE_EXIT_REPARENTED = 0x80000
constant NOTE_EXTEND (line 1005) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 1006) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 1007) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 1008) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 1009) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 1010) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 1011) | NOTE_FFOR = 0x80000000
constant NOTE_FORK (line 1012) | NOTE_FORK = 0x40000000
constant NOTE_FUNLOCK (line 1013) | NOTE_FUNLOCK = 0x100
constant NOTE_LEEWAY (line 1014) | NOTE_LEEWAY = 0x10
constant NOTE_LINK (line 1015) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1016) | NOTE_LOWAT = 0x1
constant NOTE_MACH_CONTINUOUS_TIME (line 1017) | NOTE_MACH_CONTINUOUS_TIME = 0x80
constant NOTE_NONE (line 1018) | NOTE_NONE = 0x80
constant NOTE_NSECONDS (line 1019) | NOTE_NSECONDS = 0x4
constant NOTE_OOB (line 1020) | NOTE_OOB = 0x2
constant NOTE_PCTRLMASK (line 1021) | NOTE_PCTRLMASK = -0x100000
constant NOTE_PDATAMASK (line 1022) | NOTE_PDATAMASK = 0xfffff
constant NOTE_REAP (line 1023) | NOTE_REAP = 0x10000000
constant NOTE_RENAME (line 1024) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1025) | NOTE_REVOKE = 0x40
constant NOTE_SECONDS (line 1026) | NOTE_SECONDS = 0x1
constant NOTE_SIGNAL (line 1027) | NOTE_SIGNAL = 0x8000000
constant NOTE_TRACK (line 1028) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1029) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 1030) | NOTE_TRIGGER = 0x1000000
constant NOTE_USECONDS (line 1031) | NOTE_USECONDS = 0x2
constant NOTE_VM_ERROR (line 1032) | NOTE_VM_ERROR = 0x10000000
constant NOTE_VM_PRESSURE (line 1033) | NOTE_VM_PRESSURE = 0x80000000
constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 1034) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000
constant NOTE_VM_PRESSURE_TERMINATE (line 1035) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000
constant NOTE_WRITE (line 1036) | NOTE_WRITE = 0x2
constant OCRNL (line 1037) | OCRNL = 0x10
constant OFDEL (line 1038) | OFDEL = 0x20000
constant OFILL (line 1039) | OFILL = 0x80
constant ONLCR (line 1040) | ONLCR = 0x2
constant ONLRET (line 1041) | ONLRET = 0x40
constant ONOCR (line 1042) | ONOCR = 0x20
constant ONOEOT (line 1043) | ONOEOT = 0x8
constant OPOST (line 1044) | OPOST = 0x1
constant OXTABS (line 1045) | OXTABS = 0x4
constant O_ACCMODE (line 1046) | O_ACCMODE = 0x3
constant O_ALERT (line 1047) | O_ALERT = 0x20000000
constant O_APPEND (line 1048) | O_APPEND = 0x8
constant O_ASYNC (line 1049) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1050) | O_CLOEXEC = 0x1000000
constant O_CREAT (line 1051) | O_CREAT = 0x200
constant O_DIRECTORY (line 1052) | O_DIRECTORY = 0x100000
constant O_DP_GETRAWENCRYPTED (line 1053) | O_DP_GETRAWENCRYPTED = 0x1
constant O_DP_GETRAWUNENCRYPTED (line 1054) | O_DP_GETRAWUNENCRYPTED = 0x2
constant O_DSYNC (line 1055) | O_DSYNC = 0x400000
constant O_EVTONLY (line 1056) | O_EVTONLY = 0x8000
constant O_EXCL (line 1057) | O_EXCL = 0x800
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 = 0x20000
constant O_NOFOLLOW (line 1062) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1063) | O_NONBLOCK = 0x4
constant O_POPUP (line 1064) | O_POPUP = 0x80000000
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_SYMLINK (line 1068) | O_SYMLINK = 0x200000
constant O_SYNC (line 1069) | O_SYNC = 0x80
constant O_TRUNC (line 1070) | O_TRUNC = 0x400
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 PT_ATTACH (line 1083) | PT_ATTACH = 0xa
constant PT_ATTACHEXC (line 1084) | PT_ATTACHEXC = 0xe
constant PT_CONTINUE (line 1085) | PT_CONTINUE = 0x7
constant PT_DENY_ATTACH (line 1086) | PT_DENY_ATTACH = 0x1f
constant PT_DETACH (line 1087) | PT_DETACH = 0xb
constant PT_FIRSTMACH (line 1088) | PT_FIRSTMACH = 0x20
constant PT_FORCEQUOTA (line 1089) | PT_FORCEQUOTA = 0x1e
constant PT_KILL (line 1090) | PT_KILL = 0x8
constant PT_READ_D (line 1091) | PT_READ_D = 0x2
constant PT_READ_I (line 1092) | PT_READ_I = 0x1
constant PT_READ_U (line 1093) | PT_READ_U = 0x3
constant PT_SIGEXC (line 1094) | PT_SIGEXC = 0xc
constant PT_STEP (line 1095) | PT_STEP = 0x9
constant PT_THUPDATE (line 1096) | PT_THUPDATE = 0xd
constant PT_TRACE_ME (line 1097) | PT_TRACE_ME = 0x0
constant PT_WRITE_D (line 1098) | PT_WRITE_D = 0x5
constant PT_WRITE_I (line 1099) | PT_WRITE_I = 0x4
constant PT_WRITE_U (line 1100) | PT_WRITE_U = 0x6
constant RLIMIT_AS (line 1101) | RLIMIT_AS = 0x5
constant RLIMIT_CORE (line 1102) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1103) | RLIMIT_CPU = 0x0
constant RLIMIT_CPU_USAGE_MONITOR (line 1104) | RLIMIT_CPU_USAGE_MONITOR = 0x2
constant RLIMIT_DATA (line 1105) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1106) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1107) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1108) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1109) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1110) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1111) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1112) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1113) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1114) | RTAX_BRD = 0x7
constant RTAX_DST (line 1115) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1116) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1117) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1118) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1119) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1120) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 1121) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1122) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1123) | RTA_BRD = 0x80
constant RTA_DST (line 1124) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1125) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1126) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1127) | RTA_IFA = 0x20
constant RTA_IFP (line 1128) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1129) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1130) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1131) | RTF_BROADCAST = 0x400000
constant RTF_CLONING (line 1132) | RTF_CLONING = 0x100
constant RTF_CONDEMNED (line 1133) | RTF_CONDEMNED = 0x2000000
constant RTF_DELCLONE (line 1134) | RTF_DELCLONE = 0x80
constant RTF_DONE (line 1135) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1136) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1137) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1138) | RTF_HOST = 0x4
constant RTF_IFREF (line 1139) | RTF_IFREF = 0x4000000
constant RTF_IFSCOPE (line 1140) | RTF_IFSCOPE = 0x1000000
constant RTF_LLINFO (line 1141) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1142) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1143) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 1144) | RTF_MULTICAST = 0x800000
constant RTF_NOIFREF (line 1145) | RTF_NOIFREF = 0x2000
constant RTF_PINNED (line 1146) | RTF_PINNED = 0x100000
constant RTF_PRCLONING (line 1147) | RTF_PRCLONING = 0x10000
constant RTF_PROTO1 (line 1148) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1149) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1150) | RTF_PROTO3 = 0x40000
constant RTF_PROXY (line 1151) | RTF_PROXY = 0x8000000
constant RTF_REJECT (line 1152) | RTF_REJECT = 0x8
constant RTF_ROUTER (line 1153) | RTF_ROUTER = 0x10000000
constant RTF_STATIC (line 1154) | RTF_STATIC = 0x800
constant RTF_UP (line 1155) | RTF_UP = 0x1
constant RTF_WASCLONED (line 1156) | RTF_WASCLONED = 0x20000
constant RTF_XRESOLVE (line 1157) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1158) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1159) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1160) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1161) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1162) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1163) | RTM_GET = 0x4
constant RTM_GET2 (line 1164) | RTM_GET2 = 0x14
constant RTM_IFINFO (line 1165) | RTM_IFINFO = 0xe
constant RTM_IFINFO2 (line 1166) | RTM_IFINFO2 = 0x12
constant RTM_LOCK (line 1167) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1168) | RTM_LOSING = 0x5
constant RTM_MISS (line 1169) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1170) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1171) | RTM_NEWMADDR = 0xf
constant RTM_NEWMADDR2 (line 1172) | RTM_NEWMADDR2 = 0x13
constant RTM_OLDADD (line 1173) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1174) | RTM_OLDDEL = 0xa
constant RTM_REDIRECT (line 1175) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1176) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1177) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1178) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1179) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1180) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1181) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1182) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1183) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1184) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1185) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1186) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1187) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1188) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1189) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1190) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1191) | SCM_TIMESTAMP = 0x2
constant SCM_TIMESTAMP_MONOTONIC (line 1192) | SCM_TIMESTAMP_MONOTONIC = 0x4
constant SHUT_RD (line 1193) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1194) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1195) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1196) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1197) | SIOCAIFADDR = 0x8040691a
constant SIOCARPIPLL (line 1198) | SIOCARPIPLL = 0xc0206928
constant SIOCATMARK (line 1199) | SIOCATMARK = 0x40047307
constant SIOCAUTOADDR (line 1200) | SIOCAUTOADDR = 0xc0206926
constant SIOCAUTONETMASK (line 1201) | SIOCAUTONETMASK = 0x80206927
constant SIOCDELMULTI (line 1202) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1203) | SIOCDIFADDR = 0x80206919
constant SIOCDIFPHYADDR (line 1204) | SIOCDIFPHYADDR = 0x80206941
constant SIOCGDRVSPEC (line 1205) | SIOCGDRVSPEC = 0xc01c697b
constant SIOCGETVLAN (line 1206) | SIOCGETVLAN = 0xc020697f
constant SIOCGHIWAT (line 1207) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1208) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFALTMTU (line 1209) | SIOCGIFALTMTU = 0xc0206948
constant SIOCGIFASYNCMAP (line 1210) | SIOCGIFASYNCMAP = 0xc020697c
constant SIOCGIFBOND (line 1211) | SIOCGIFBOND = 0xc0206947
constant SIOCGIFBRDADDR (line 1212) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1213) | SIOCGIFCAP = 0xc020695b
constant SIOCGIFCONF (line 1214) | SIOCGIFCONF = 0xc0086924
constant SIOCGIFDEVMTU (line 1215) | SIOCGIFDEVMTU = 0xc0206944
constant SIOCGIFDSTADDR (line 1216) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1217) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1218) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFKPI (line 1219) | SIOCGIFKPI = 0xc0206987
constant SIOCGIFMAC (line 1220) | SIOCGIFMAC = 0xc0206982
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 = 0xc0206940
constant SIOCGIFPHYS (line 1226) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPSRCADDR (line 1227) | SIOCGIFPSRCADDR = 0xc020693f
constant SIOCGIFSTATUS (line 1228) | SIOCGIFSTATUS = 0xc331693d
constant SIOCGIFVLAN (line 1229) | SIOCGIFVLAN = 0xc020697f
constant SIOCGIFWAKEFLAGS (line 1230) | SIOCGIFWAKEFLAGS = 0xc0206988
constant SIOCGLOWAT (line 1231) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1232) | SIOCGPGRP = 0x40047309
constant SIOCIFCREATE (line 1233) | SIOCIFCREATE = 0xc0206978
constant SIOCIFCREATE2 (line 1234) | SIOCIFCREATE2 = 0xc020697a
constant SIOCIFDESTROY (line 1235) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1236) | SIOCIFGCLONERS = 0xc00c6981
constant SIOCRSLVMULTI (line 1237) | SIOCRSLVMULTI = 0xc008693b
constant SIOCSDRVSPEC (line 1238) | SIOCSDRVSPEC = 0x801c697b
constant SIOCSETVLAN (line 1239) | SIOCSETVLAN = 0x8020697e
constant SIOCSHIWAT (line 1240) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1241) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFALTMTU (line 1242) | SIOCSIFALTMTU = 0x80206945
constant SIOCSIFASYNCMAP (line 1243) | SIOCSIFASYNCMAP = 0x8020697d
constant SIOCSIFBOND (line 1244) | SIOCSIFBOND = 0x80206946
constant SIOCSIFBRDADDR (line 1245) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1246) | SIOCSIFCAP = 0x8020695a
constant SIOCSIFDSTADDR (line 1247) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1248) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1249) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFKPI (line 1250) | SIOCSIFKPI = 0x80206986
constant SIOCSIFLLADDR (line 1251) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMAC (line 1252) | SIOCSIFMAC = 0x80206983
constant SIOCSIFMEDIA (line 1253) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1254) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1255) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNETMASK (line 1256) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1257) | SIOCSIFPHYADDR = 0x8040693e
constant SIOCSIFPHYS (line 1258) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFVLAN (line 1259) | SIOCSIFVLAN = 0x8020697e
constant SIOCSLOWAT (line 1260) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1261) | SIOCSPGRP = 0x80047308
constant SOCK_DGRAM (line 1262) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1263) | SOCK_MAXADDRLEN = 0xff
constant SOCK_RAW (line 1264) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1265) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1266) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1267) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1268) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1269) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1270) | SO_ACCEPTCONN = 0x2
constant SO_BROADCAST (line 1271) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1272) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1273) | SO_DONTROUTE = 0x10
constant SO_DONTTRUNC (line 1274) | SO_DONTTRUNC = 0x2000
constant SO_ERROR (line 1275) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1276) | SO_KEEPALIVE = 0x8
constant SO_LABEL (line 1277) | SO_LABEL = 0x1010
constant SO_LINGER (line 1278) | SO_LINGER = 0x80
constant SO_LINGER_SEC (line 1279) | SO_LINGER_SEC = 0x1080
constant SO_NETSVC_MARKING_LEVEL (line 1280) | SO_NETSVC_MARKING_LEVEL = 0x1119
constant SO_NET_SERVICE_TYPE (line 1281) | SO_NET_SERVICE_TYPE = 0x1116
constant SO_NKE (line 1282) | SO_NKE = 0x1021
constant SO_NOADDRERR (line 1283) | SO_NOADDRERR = 0x1023
constant SO_NOSIGPIPE (line 1284) | SO_NOSIGPIPE = 0x1022
constant SO_NOTIFYCONFLICT (line 1285) | SO_NOTIFYCONFLICT = 0x1026
constant SO_NP_EXTENSIONS (line 1286) | SO_NP_EXTENSIONS = 0x1083
constant SO_NREAD (line 1287) | SO_NREAD = 0x1020
constant SO_NUMRCVPKT (line 1288) | SO_NUMRCVPKT = 0x1112
constant SO_NWRITE (line 1289) | SO_NWRITE = 0x1024
constant SO_OOBINLINE (line 1290) | SO_OOBINLINE = 0x100
constant SO_PEERLABEL (line 1291) | SO_PEERLABEL = 0x1011
constant SO_RANDOMPORT (line 1292) | SO_RANDOMPORT = 0x1082
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_REUSESHAREUID (line 1298) | SO_REUSESHAREUID = 0x1025
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_TIMESTAMP_MONOTONIC (line 1303) | SO_TIMESTAMP_MONOTONIC = 0x800
constant SO_TYPE (line 1304) | SO_TYPE = 0x1008
constant SO_UPCALLCLOSEWAIT (line 1305) | SO_UPCALLCLOSEWAIT = 0x1027
constant SO_USELOOPBACK (line 1306) | SO_USELOOPBACK = 0x40
constant SO_WANTMORE (line 1307) | SO_WANTMORE = 0x4000
constant SO_WANTOOBFLAG (line 1308) | SO_WANTOOBFLAG = 0x8000
constant S_IEXEC (line 1309) | S_IEXEC = 0x40
constant S_IFBLK (line 1310) | S_IFBLK = 0x6000
constant S_IFCHR (line 1311) | S_IFCHR = 0x2000
constant S_IFDIR (line 1312) | S_IFDIR = 0x4000
constant S_IFIFO (line 1313) | S_IFIFO = 0x1000
constant S_IFLNK (line 1314) | S_IFLNK = 0xa000
constant S_IFMT (line 1315) | S_IFMT = 0xf000
constant S_IFREG (line 1316) | S_IFREG = 0x8000
constant S_IFSOCK (line 1317) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1318) | S_IFWHT = 0xe000
constant S_IREAD (line 1319) | S_IREAD = 0x100
constant S_IRGRP (line 1320) | S_IRGRP = 0x20
constant S_IROTH (line 1321) | S_IROTH = 0x4
constant S_IRUSR (line 1322) | S_IRUSR = 0x100
constant S_IRWXG (line 1323) | S_IRWXG = 0x38
constant S_IRWXO (line 1324) | S_IRWXO = 0x7
constant S_IRWXU (line 1325) | S_IRWXU = 0x1c0
constant S_ISGID (line 1326) | S_ISGID = 0x400
constant S_ISTXT (line 1327) | S_ISTXT = 0x200
constant S_ISUID (line 1328) | S_ISUID = 0x800
constant S_ISVTX (line 1329) | S_ISVTX = 0x200
constant S_IWGRP (line 1330) | S_IWGRP = 0x10
constant S_IWOTH (line 1331) | S_IWOTH = 0x2
constant S_IWRITE (line 1332) | S_IWRITE = 0x80
constant S_IWUSR (line 1333) | S_IWUSR = 0x80
constant S_IXGRP (line 1334) | S_IXGRP = 0x8
constant S_IXOTH (line 1335) | S_IXOTH = 0x1
constant S_IXUSR (line 1336) | S_IXUSR = 0x40
constant TAB0 (line 1337) | TAB0 = 0x0
constant TAB1 (line 1338) | TAB1 = 0x400
constant TAB2 (line 1339) | TAB2 = 0x800
constant TAB3 (line 1340) | TAB3 = 0x4
constant TABDLY (line 1341) | TABDLY = 0xc04
constant TCIFLUSH (line 1342) | TCIFLUSH = 0x1
constant TCIOFF (line 1343) | TCIOFF = 0x3
constant TCIOFLUSH (line 1344) | TCIOFLUSH = 0x3
constant TCION (line 1345) | TCION = 0x4
constant TCOFLUSH (line 1346) | TCOFLUSH = 0x2
constant TCOOFF (line 1347) | TCOOFF = 0x1
constant TCOON (line 1348) | TCOON = 0x2
constant TCP_CONNECTIONTIMEOUT (line 1349) | TCP_CONNECTIONTIMEOUT = 0x20
constant TCP_CONNECTION_INFO (line 1350) | TCP_CONNECTION_INFO = 0x106
constant TCP_ENABLE_ECN (line 1351) | TCP_ENABLE_ECN = 0x104
constant TCP_FASTOPEN (line 1352) | TCP_FASTOPEN = 0x105
constant TCP_KEEPALIVE (line 1353) | TCP_KEEPALIVE = 0x10
constant TCP_KEEPCNT (line 1354) | TCP_KEEPCNT = 0x102
constant TCP_KEEPINTVL (line 1355) | TCP_KEEPINTVL = 0x101
constant TCP_MAXHLEN (line 1356) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1357) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1358) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1359) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1360) | TCP_MAX_SACK = 0x4
constant TCP_MAX_WINSHIFT (line 1361) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MINMSS (line 1362) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1363) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1364) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1365) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1366) | TCP_NOPUSH = 0x4
constant TCP_NOTSENT_LOWAT (line 1367) | TCP_NOTSENT_LOWAT = 0x201
constant TCP_RXT_CONNDROPTIME (line 1368) | TCP_RXT_CONNDROPTIME = 0x80
constant TCP_RXT_FINDROP (line 1369) | TCP_RXT_FINDROP = 0x100
constant TCP_SENDMOREACKS (line 1370) | TCP_SENDMOREACKS = 0x103
constant TCSAFLUSH (line 1371) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1372) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1373) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1374) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1375) | TIOCDCDTIMESTAMP = 0x40087458
constant TIOCDRAIN (line 1376) | TIOCDRAIN = 0x2000745e
constant TIOCDSIMICROCODE (line 1377) | TIOCDSIMICROCODE = 0x20007455
constant TIOCEXCL (line 1378) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1379) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1380) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1381) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1382) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1383) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1384) | TIOCGPGRP = 0x40047477
constant TIOCGWINSZ (line 1385) | TIOCGWINSZ = 0x40087468
constant TIOCIXOFF (line 1386) | TIOCIXOFF = 0x20007480
constant TIOCIXON (line 1387) | TIOCIXON = 0x20007481
constant TIOCMBIC (line 1388) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1389) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1390) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1391) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1392) | TIOCMODG = 0x40047403
constant TIOCMODS (line 1393) | TIOCMODS = 0x80047404
constant TIOCMSDTRWAIT (line 1394) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1395) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1396) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1397) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1398) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1399) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1400) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1401) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1402) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1403) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1404) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1405) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1406) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1407) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1408) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1409) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1410) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1411) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1412) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1413) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1414) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1415) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1416) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1417) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1418) | TIOCPKT_STOP = 0x4
constant TIOCPTYGNAME (line 1419) | TIOCPTYGNAME = 0x40807453
constant TIOCPTYGRANT (line 1420) | TIOCPTYGRANT = 0x20007454
constant TIOCPTYUNLK (line 1421) | TIOCPTYUNLK = 0x20007452
constant TIOCREMOTE (line 1422) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1423) | TIOCSBRK = 0x2000747b
constant TIOCSCONS (line 1424) | TIOCSCONS = 0x20007463
constant TIOCSCTTY (line 1425) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1426) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1427) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1428) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1429) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1430) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1431) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1432) | TIOCSIG = 0x2000745f
constant TIOCSPGRP (line 1433) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1434) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1435) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1436) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1437) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1438) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1439) | TIOCTIMESTAMP = 0x40087459
constant TIOCUCNTL (line 1440) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1441) | TOSTOP = 0x400000
constant VDISCARD (line 1442) | VDISCARD = 0xf
constant VDSUSP (line 1443) | VDSUSP = 0xb
constant VEOF (line 1444) | VEOF = 0x0
constant VEOL (line 1445) | VEOL = 0x1
constant VEOL2 (line 1446) | VEOL2 = 0x2
constant VERASE (line 1447) | VERASE = 0x3
constant VINTR (line 1448) | VINTR = 0x8
constant VKILL (line 1449) | VKILL = 0x5
constant VLNEXT (line 1450) | VLNEXT = 0xe
constant VMIN (line 1451) | VMIN = 0x10
constant VM_LOADAVG (line 1452) | VM_LOADAVG = 0x2
constant VM_MACHFACTOR (line 1453) | VM_MACHFACTOR = 0x4
constant VM_MAXID (line 1454) | VM_MAXID = 0x6
constant VM_METER (line 1455) | VM_METER = 0x1
constant VM_SWAPUSAGE (line 1456) | VM_SWAPUSAGE = 0x5
constant VQUIT (line 1457) | VQUIT = 0x9
constant VREPRINT (line 1458) | VREPRINT = 0x6
constant VSTART (line 1459) | VSTART = 0xc
constant VSTATUS (line 1460) | VSTATUS = 0x12
constant VSTOP (line 1461) | VSTOP = 0xd
constant VSUSP (line 1462) | VSUSP = 0xa
constant VT0 (line 1463) | VT0 = 0x0
constant VT1 (line 1464) | VT1 = 0x10000
constant VTDLY (line 1465) | VTDLY = 0x10000
constant VTIME (line 1466) | VTIME = 0x11
constant VWERASE (line 1467) | VWERASE = 0x4
constant WCONTINUED (line 1468) | WCONTINUED = 0x10
constant WCOREFLAG (line 1469) | WCOREFLAG = 0x80
constant WEXITED (line 1470) | WEXITED = 0x4
constant WNOHANG (line 1471) | WNOHANG = 0x1
constant WNOWAIT (line 1472) | WNOWAIT = 0x20
constant WORDSIZE (line 1473) | WORDSIZE = 0x20
constant WSTOPPED (line 1474) | WSTOPPED = 0x8
constant WUNTRACED (line 1475) | WUNTRACED = 0x2
constant XATTR_CREATE (line 1476) | XATTR_CREATE = 0x2
constant XATTR_NODEFAULT (line 1477) | XATTR_NODEFAULT = 0x10
constant XATTR_NOFOLLOW (line 1478) | XATTR_NOFOLLOW = 0x1
constant XATTR_NOSECURITY (line 1479) | XATTR_NOSECURITY = 0x8
constant XATTR_REPLACE (line 1480) | XATTR_REPLACE = 0x4
constant XATTR_SHOWCOMPRESSION (line 1481) | XATTR_SHOWCOMPRESSION = 0x20
constant E2BIG (line 1486) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1487) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1488) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1489) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1490) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1491) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1492) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1493) | EAUTH = syscall.Errno(0x50)
constant EBADARCH (line 1494) | EBADARCH = syscall.Errno(0x56)
constant EBADEXEC (line 1495) | EBADEXEC = syscall.Errno(0x55)
constant EBADF (line 1496) | EBADF = syscall.Errno(0x9)
constant EBADMACHO (line 1497) | EBADMACHO = syscall.Errno(0x58)
constant EBADMSG (line 1498) | EBADMSG = syscall.Errno(0x5e)
constant EBADRPC (line 1499) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1500) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1501) | ECANCELED = syscall.Errno(0x59)
constant ECHILD (line 1502) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1503) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1504) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1505) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1506) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1507) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDEVERR (line 1508) | EDEVERR = syscall.Errno(0x53)
constant EDOM (line 1509) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1510) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1511) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1512) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1513) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1514) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1515) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1516) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1517) | EIDRM = syscall.Errno(0x5a)
constant EILSEQ (line 1518) | EILSEQ = syscall.Errno(0x5c)
constant EINPROGRESS (line 1519) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1520) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1521) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1522) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1523) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1524) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1525) | ELAST = syscall.Errno(0x6a)
constant ELOOP (line 1526) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1527) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1528) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1529) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1530) | EMULTIHOP = syscall.Errno(0x5f)
constant ENAMETOOLONG (line 1531) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1532) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1533) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1534) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1535) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1536) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1537) | ENOATTR = syscall.Errno(0x5d)
constant ENOBUFS (line 1538) | ENOBUFS = syscall.Errno(0x37)
constant ENODATA (line 1539) | ENODATA = syscall.Errno(0x60)
constant ENODEV (line 1540) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1541) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1542) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1543) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1544) | ENOLINK = syscall.Errno(0x61)
constant ENOMEM (line 1545) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1546) | ENOMSG = syscall.Errno(0x5b)
constant ENOPOLICY (line 1547) | ENOPOLICY = syscall.Errno(0x67)
constant ENOPROTOOPT (line 1548) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1549) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1550) | ENOSR = syscall.Errno(0x62)
constant ENOSTR (line 1551) | ENOSTR = syscall.Errno(0x63)
constant ENOSYS (line 1552) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1553) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1554) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1555) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1556) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1557) | ENOTRECOVERABLE = syscall.Errno(0x68)
constant ENOTSOCK (line 1558) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1559) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1560) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1561) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1562) | EOPNOTSUPP = syscall.Errno(0x66)
constant EOVERFLOW (line 1563) | EOVERFLOW = syscall.Errno(0x54)
constant EOWNERDEAD (line 1564) | EOWNERDEAD = syscall.Errno(0x69)
constant EPERM (line 1565) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1566) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1567) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1568) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1569) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1570) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1571) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1572) | EPROTO = syscall.Errno(0x64)
constant EPROTONOSUPPORT (line 1573) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1574) | EPROTOTYPE = syscall.Errno(0x29)
constant EPWROFF (line 1575) | EPWROFF = syscall.Errno(0x52)
constant EQFULL (line 1576) | EQFULL = syscall.Errno(0x6a)
constant ERANGE (line 1577) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1578) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1579) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1580) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHLIBVERS (line 1581) | ESHLIBVERS = syscall.Errno(0x57)
constant ESHUTDOWN (line 1582) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1583) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1584) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1585) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1586) | ESTALE = syscall.Errno(0x46)
constant ETIME (line 1587) | ETIME = syscall.Errno(0x65)
constant ETIMEDOUT (line 1588) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1589) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1590) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1591) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1592) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1593) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1598) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1599) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1600) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1601) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1602) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1603) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1604) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1605) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1606) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1607) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1608) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1609) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1610) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1611) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1612) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1613) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1614) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1615) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1616) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1617) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1618) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1619) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1620) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1621) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1622) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1623) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1624) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1625) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1626) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1627) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1628) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1629) | 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 ATTR_BIT_MAP_COUNT (line 52) | ATTR_BIT_MAP_COUNT = 0x5
constant ATTR_CMN_ACCESSMASK (line 53) | ATTR_CMN_ACCESSMASK = 0x20000
constant ATTR_CMN_ACCTIME (line 54) | ATTR_CMN_ACCTIME = 0x1000
constant ATTR_CMN_ADDEDTIME (line 55) | ATTR_CMN_ADDEDTIME = 0x10000000
constant ATTR_CMN_BKUPTIME (line 56) | ATTR_CMN_BKUPTIME = 0x2000
constant ATTR_CMN_CHGTIME (line 57) | ATTR_CMN_CHGTIME = 0x800
constant ATTR_CMN_CRTIME (line 58) | ATTR_CMN_CRTIME = 0x200
constant ATTR_CMN_DATA_PROTECT_FLAGS (line 59) | ATTR_CMN_DATA_PROTECT_FLAGS = 0x40000000
constant ATTR_CMN_DEVID (line 60) | ATTR_CMN_DEVID = 0x2
constant ATTR_CMN_DOCUMENT_ID (line 61) | ATTR_CMN_DOCUMENT_ID = 0x100000
constant ATTR_CMN_ERROR (line 62) | ATTR_CMN_ERROR = 0x20000000
constant ATTR_CMN_EXTENDED_SECURITY (line 63) | ATTR_CMN_EXTENDED_SECURITY = 0x400000
constant ATTR_CMN_FILEID (line 64) | ATTR_CMN_FILEID = 0x2000000
constant ATTR_CMN_FLAGS (line 65) | ATTR_CMN_FLAGS = 0x40000
constant ATTR_CMN_FNDRINFO (line 66) | ATTR_CMN_FNDRINFO = 0x4000
constant ATTR_CMN_FSID (line 67) | ATTR_CMN_FSID = 0x4
constant ATTR_CMN_FULLPATH (line 68) | ATTR_CMN_FULLPATH = 0x8000000
constant ATTR_CMN_GEN_COUNT (line 69) | ATTR_CMN_GEN_COUNT = 0x80000
constant ATTR_CMN_GRPID (line 70) | ATTR_CMN_GRPID = 0x10000
constant ATTR_CMN_GRPUUID (line 71) | ATTR_CMN_GRPUUID = 0x1000000
constant ATTR_CMN_MODTIME (line 72) | ATTR_CMN_MODTIME = 0x400
constant ATTR_CMN_NAME (line 73) | ATTR_CMN_NAME = 0x1
constant ATTR_CMN_NAMEDATTRCOUNT (line 74) | ATTR_CMN_NAMEDATTRCOUNT = 0x80000
constant ATTR_CMN_NAMEDATTRLIST (line 75) | ATTR_CMN_NAMEDATTRLIST = 0x100000
constant ATTR_CMN_OBJID (line 76) | ATTR_CMN_OBJID = 0x20
constant ATTR_CMN_OBJPERMANENTID (line 77) | ATTR_CMN_OBJPERMANENTID = 0x40
constant ATTR_CMN_OBJTAG (line 78) | ATTR_CMN_OBJTAG = 0x10
constant ATTR_CMN_OBJTYPE (line 79) | ATTR_CMN_OBJTYPE = 0x8
constant ATTR_CMN_OWNERID (line 80) | ATTR_CMN_OWNERID = 0x8000
constant ATTR_CMN_PARENTID (line 81) | ATTR_CMN_PARENTID = 0x4000000
constant ATTR_CMN_PAROBJID (line 82) | ATTR_CMN_PAROBJID = 0x80
constant ATTR_CMN_RETURNED_ATTRS (line 83) | ATTR_CMN_RETURNED_ATTRS = 0x80000000
constant ATTR_CMN_SCRIPT (line 84) | ATTR_CMN_SCRIPT = 0x100
constant ATTR_CMN_SETMASK (line 85) | ATTR_CMN_SETMASK = 0x41c7ff00
constant ATTR_CMN_USERACCESS (line 86) | ATTR_CMN_USERACCESS = 0x200000
constant ATTR_CMN_UUID (line 87) | ATTR_CMN_UUID = 0x800000
constant ATTR_CMN_VALIDMASK (line 88) | ATTR_CMN_VALIDMASK = 0xffffffff
constant ATTR_CMN_VOLSETMASK (line 89) | ATTR_CMN_VOLSETMASK = 0x6700
constant ATTR_FILE_ALLOCSIZE (line 90) | ATTR_FILE_ALLOCSIZE = 0x4
constant ATTR_FILE_CLUMPSIZE (line 91) | ATTR_FILE_CLUMPSIZE = 0x10
constant ATTR_FILE_DATAALLOCSIZE (line 92) | ATTR_FILE_DATAALLOCSIZE = 0x400
constant ATTR_FILE_DATAEXTENTS (line 93) | ATTR_FILE_DATAEXTENTS = 0x800
constant ATTR_FILE_DATALENGTH (line 94) | ATTR_FILE_DATALENGTH = 0x200
constant ATTR_FILE_DEVTYPE (line 95) | ATTR_FILE_DEVTYPE = 0x20
constant ATTR_FILE_FILETYPE (line 96) | ATTR_FILE_FILETYPE = 0x40
constant ATTR_FILE_FORKCOUNT (line 97) | ATTR_FILE_FORKCOUNT = 0x80
constant ATTR_FILE_FORKLIST (line 98) | ATTR_FILE_FORKLIST = 0x100
constant ATTR_FILE_IOBLOCKSIZE (line 99) | ATTR_FILE_IOBLOCKSIZE = 0x8
constant ATTR_FILE_LINKCOUNT (line 100) | ATTR_FILE_LINKCOUNT = 0x1
constant ATTR_FILE_RSRCALLOCSIZE (line 101) | ATTR_FILE_RSRCALLOCSIZE = 0x2000
constant ATTR_FILE_RSRCEXTENTS (line 102) | ATTR_FILE_RSRCEXTENTS = 0x4000
constant ATTR_FILE_RSRCLENGTH (line 103) | ATTR_FILE_RSRCLENGTH = 0x1000
constant ATTR_FILE_SETMASK (line 104) | ATTR_FILE_SETMASK = 0x20
constant ATTR_FILE_TOTALSIZE (line 105) | ATTR_FILE_TOTALSIZE = 0x2
constant ATTR_FILE_VALIDMASK (line 106) | ATTR_FILE_VALIDMASK = 0x37ff
constant ATTR_VOL_ALLOCATIONCLUMP (line 107) | ATTR_VOL_ALLOCATIONCLUMP = 0x40
constant ATTR_VOL_ATTRIBUTES (line 108) | ATTR_VOL_ATTRIBUTES = 0x40000000
constant ATTR_VOL_CAPABILITIES (line 109) | ATTR_VOL_CAPABILITIES = 0x20000
constant ATTR_VOL_DIRCOUNT (line 110) | ATTR_VOL_DIRCOUNT = 0x400
constant ATTR_VOL_ENCODINGSUSED (line 111) | ATTR_VOL_ENCODINGSUSED = 0x10000
constant ATTR_VOL_FILECOUNT (line 112) | ATTR_VOL_FILECOUNT = 0x200
constant ATTR_VOL_FSTYPE (line 113) | ATTR_VOL_FSTYPE = 0x1
constant ATTR_VOL_INFO (line 114) | ATTR_VOL_INFO = 0x80000000
constant ATTR_VOL_IOBLOCKSIZE (line 115) | ATTR_VOL_IOBLOCKSIZE = 0x80
constant ATTR_VOL_MAXOBJCOUNT (line 116) | ATTR_VOL_MAXOBJCOUNT = 0x800
constant ATTR_VOL_MINALLOCATION (line 117) | ATTR_VOL_MINALLOCATION = 0x20
constant ATTR_VOL_MOUNTEDDEVICE (line 118) | ATTR_VOL_MOUNTEDDEVICE = 0x8000
constant ATTR_VOL_MOUNTFLAGS (line 119) | ATTR_VOL_MOUNTFLAGS = 0x4000
constant ATTR_VOL_MOUNTPOINT (line 120) | ATTR_VOL_MOUNTPOINT = 0x1000
constant ATTR_VOL_NAME (line 121) | ATTR_VOL_NAME = 0x2000
constant ATTR_VOL_OBJCOUNT (line 122) | ATTR_VOL_OBJCOUNT = 0x100
constant ATTR_VOL_QUOTA_SIZE (line 123) | ATTR_VOL_QUOTA_SIZE = 0x10000000
constant ATTR_VOL_RESERVED_SIZE (line 124) | ATTR_VOL_RESERVED_SIZE = 0x20000000
constant ATTR_VOL_SETMASK (line 125) | ATTR_VOL_SETMASK = 0x80002000
constant ATTR_VOL_SIGNATURE (line 126) | ATTR_VOL_SIGNATURE = 0x2
constant ATTR_VOL_SIZE (line 127) | ATTR_VOL_SIZE = 0x4
constant ATTR_VOL_SPACEAVAIL (line 128) | ATTR_VOL_SPACEAVAIL = 0x10
constant ATTR_VOL_SPACEFREE (line 129) | ATTR_VOL_SPACEFREE = 0x8
constant ATTR_VOL_UUID (line 130) | ATTR_VOL_UUID = 0x40000
constant ATTR_VOL_VALIDMASK (line 131) | ATTR_VOL_VALIDMASK = 0xf007ffff
constant B0 (line 132) | B0 = 0x0
constant B110 (line 133) | B110 = 0x6e
constant B115200 (line 134) | B115200 = 0x1c200
constant B1200 (line 135) | B1200 = 0x4b0
constant B134 (line 136) | B134 = 0x86
constant B14400 (line 137) | B14400 = 0x3840
constant B150 (line 138) | B150 = 0x96
constant B1800 (line 139) | B1800 = 0x708
constant B19200 (line 140) | B19200 = 0x4b00
constant B200 (line 141) | B200 = 0xc8
constant B230400 (line 142) | B230400 = 0x38400
constant B2400 (line 143) | B2400 = 0x960
constant B28800 (line 144) | B28800 = 0x7080
constant B300 (line 145) | B300 = 0x12c
constant B38400 (line 146) | B38400 = 0x9600
constant B4800 (line 147) | B4800 = 0x12c0
constant B50 (line 148) | B50 = 0x32
constant B57600 (line 149) | B57600 = 0xe100
constant B600 (line 150) | B600 = 0x258
constant B7200 (line 151) | B7200 = 0x1c20
constant B75 (line 152) | B75 = 0x4b
constant B76800 (line 153) | B76800 = 0x12c00
constant B9600 (line 154) | B9600 = 0x2580
constant BIOCFLUSH (line 155) | BIOCFLUSH = 0x20004268
constant BIOCGBLEN (line 156) | BIOCGBLEN = 0x40044266
constant BIOCGDLT (line 157) | BIOCGDLT = 0x4004426a
constant BIOCGDLTLIST (line 158) | BIOCGDLTLIST = 0xc00c4279
constant BIOCGETIF (line 159) | BIOCGETIF = 0x4020426b
constant BIOCGHDRCMPLT (line 160) | BIOCGHDRCMPLT = 0x40044274
constant BIOCGRSIG (line 161) | BIOCGRSIG = 0x40044272
constant BIOCGRTIMEOUT (line 162) | BIOCGRTIMEOUT = 0x4010426e
constant BIOCGSEESENT (line 163) | BIOCGSEESENT = 0x40044276
constant BIOCGSTATS (line 164) | BIOCGSTATS = 0x4008426f
constant BIOCIMMEDIATE (line 165) | BIOCIMMEDIATE = 0x80044270
constant BIOCPROMISC (line 166) | BIOCPROMISC = 0x20004269
constant BIOCSBLEN (line 167) | BIOCSBLEN = 0xc0044266
constant BIOCSDLT (line 168) | BIOCSDLT = 0x80044278
constant BIOCSETF (line 169) | BIOCSETF = 0x80104267
constant BIOCSETFNR (line 170) | BIOCSETFNR = 0x8010427e
constant BIOCSETIF (line 171) | BIOCSETIF = 0x8020426c
constant BIOCSHDRCMPLT (line 172) | BIOCSHDRCMPLT = 0x80044275
constant BIOCSRSIG (line 173) | BIOCSRSIG = 0x80044273
constant BIOCSRTIMEOUT (line 174) | BIOCSRTIMEOUT = 0x8010426d
constant BIOCSSEESENT (line 175) | BIOCSSEESENT = 0x80044277
constant BIOCVERSION (line 176) | BIOCVERSION = 0x40044271
constant BPF_A (line 177) | BPF_A = 0x10
constant BPF_ABS (line 178) | BPF_ABS = 0x20
constant BPF_ADD (line 179) | BPF_ADD = 0x0
constant BPF_ALIGNMENT (line 180) | BPF_ALIGNMENT = 0x4
constant BPF_ALU (line 181) | BPF_ALU = 0x4
constant BPF_AND (line 182) | BPF_AND = 0x50
constant BPF_B (line 183) | BPF_B = 0x10
constant BPF_DIV (line 184) | BPF_DIV = 0x30
constant BPF_H (line 185) | BPF_H = 0x8
constant BPF_IMM (line 186) | BPF_IMM = 0x0
constant BPF_IND (line 187) | BPF_IND = 0x40
constant BPF_JA (line 188) | BPF_JA = 0x0
constant BPF_JEQ (line 189) | BPF_JEQ = 0x10
constant BPF_JGE (line 190) | BPF_JGE = 0x30
constant BPF_JGT (line 191) | BPF_JGT = 0x20
constant BPF_JMP (line 192) | BPF_JMP = 0x5
constant BPF_JSET (line 193) | BPF_JSET = 0x40
constant BPF_K (line 194) | BPF_K = 0x0
constant BPF_LD (line 195) | BPF_LD = 0x0
constant BPF_LDX (line 196) | BPF_LDX = 0x1
constant BPF_LEN (line 197) | BPF_LEN = 0x80
constant BPF_LSH (line 198) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 199) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXBUFSIZE (line 200) | BPF_MAXBUFSIZE = 0x80000
constant BPF_MAXINSNS (line 201) | BPF_MAXINSNS = 0x200
constant BPF_MEM (line 202) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 203) | BPF_MEMWORDS = 0x10
constant BPF_MINBUFSIZE (line 204) | BPF_MINBUFSIZE = 0x20
constant BPF_MINOR_VERSION (line 205) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 206) | BPF_MISC = 0x7
constant BPF_MSH (line 207) | BPF_MSH = 0xa0
constant BPF_MUL (line 208) | BPF_MUL = 0x20
constant BPF_NEG (line 209) | BPF_NEG = 0x80
constant BPF_OR (line 210) | BPF_OR = 0x40
constant BPF_RELEASE (line 211) | BPF_RELEASE = 0x30bb6
constant BPF_RET (line 212) | BPF_RET = 0x6
constant BPF_RSH (line 213) | BPF_RSH = 0x70
constant BPF_ST (line 214) | BPF_ST = 0x2
constant BPF_STX (line 215) | BPF_STX = 0x3
constant BPF_SUB (line 216) | BPF_SUB = 0x10
constant BPF_TAX (line 217) | BPF_TAX = 0x0
constant BPF_TXA (line 218) | BPF_TXA = 0x80
constant BPF_W (line 219) | BPF_W = 0x0
constant BPF_X (line 220) | BPF_X = 0x8
constant BRKINT (line 221) | BRKINT = 0x2
constant BS0 (line 222) | BS0 = 0x0
constant BS1 (line 223) | BS1 = 0x8000
constant BSDLY (line 224) | BSDLY = 0x8000
constant CFLUSH (line 225) | CFLUSH = 0xf
constant CLOCAL (line 226) | CLOCAL = 0x8000
constant CLOCK_MONOTONIC (line 227) | CLOCK_MONOTONIC = 0x6
constant CLOCK_MONOTONIC_RAW (line 228) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_MONOTONIC_RAW_APPROX (line 229) | CLOCK_MONOTONIC_RAW_APPROX = 0x5
constant CLOCK_PROCESS_CPUTIME_ID (line 230) | CLOCK_PROCESS_CPUTIME_ID = 0xc
constant CLOCK_REALTIME (line 231) | CLOCK_REALTIME = 0x0
constant CLOCK_THREAD_CPUTIME_ID (line 232) | CLOCK_THREAD_CPUTIME_ID = 0x10
constant CLOCK_UPTIME_RAW (line 233) | CLOCK_UPTIME_RAW = 0x8
constant CLOCK_UPTIME_RAW_APPROX (line 234) | CLOCK_UPTIME_RAW_APPROX = 0x9
constant CR0 (line 235) | CR0 = 0x0
constant CR1 (line 236) | CR1 = 0x1000
constant CR2 (line 237) | CR2 = 0x2000
constant CR3 (line 238) | CR3 = 0x3000
constant CRDLY (line 239) | CRDLY = 0x3000
constant CREAD (line 240) | CREAD = 0x800
constant CRTSCTS (line 241) | CRTSCTS = 0x30000
constant CS5 (line 242) | CS5 = 0x0
constant CS6 (line 243) | CS6 = 0x100
constant CS7 (line 244) | CS7 = 0x200
constant CS8 (line 245) | CS8 = 0x300
constant CSIZE (line 246) | CSIZE = 0x300
constant CSTART (line 247) | CSTART = 0x11
constant CSTATUS (line 248) | CSTATUS = 0x14
constant CSTOP (line 249) | CSTOP = 0x13
constant CSTOPB (line 250) | CSTOPB = 0x400
constant CSUSP (line 251) | CSUSP = 0x1a
constant CTL_HW (line 252) | CTL_HW = 0x6
constant CTL_KERN (line 253) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 254) | CTL_MAXNAME = 0xc
constant CTL_NET (line 255) | CTL_NET = 0x4
constant DLT_A429 (line 256) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 257) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 258) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 259) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 260) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 261) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 262) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 263) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 264) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 265) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 266) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 267) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 268) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_HCI_H4 (line 269) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 270) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_CAN20B (line 271) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 272) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 273) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 274) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 275) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 276) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 277) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DBUS (line 278) | DLT_DBUS = 0xe7
constant DLT_DECT (line 279) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 280) | DLT_DOCSIS = 0x8f
constant DLT_DVB_CI (line 281) | DLT_DVB_CI = 0xeb
constant DLT_ECONET (line 282) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 283) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 284) | DLT_EN3MB = 0x2
constant DLT_ENC (line 285) | DLT_ENC = 0x6d
constant DLT_ERF (line 286) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 287) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 288) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 289) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 290) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 291) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 292) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 293) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 294) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 295) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 296) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 297) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 298) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 299) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 300) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 301) | DLT_GSMTAP_UM = 0xd9
constant DLT_HHDLC (line 302) | DLT_HHDLC = 0x79
constant DLT_IBM_SN (line 303) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 304) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 305) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 306) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 307) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 308) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 309) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 310) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NOFCS (line 311) | DLT_IEEE802_15_4_NOFCS = 0xe6
constant DLT_IEEE802_15_4_NONASK_PHY (line 312) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 313) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 314) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPFILTER (line 315) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 316) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 317) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPNET (line 318) | DLT_IPNET = 0xe2
constant DLT_IPOIB (line 319) | DLT_IPOIB = 0xf2
constant DLT_IPV4 (line 320) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 321) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 322) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 323) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 324) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_ATM_CEMIC (line 325) | DLT_JUNIPER_ATM_CEMIC = 0xee
constant DLT_JUNIPER_CHDLC (line 326) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 327) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 328) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FIBRECHANNEL (line 329) | DLT_JUNIPER_FIBRECHANNEL = 0xea
constant DLT_JUNIPER_FRELAY (line 330) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 331) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 332) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 333) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 334) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 335) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 336) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 337) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 338) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 339) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 340) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 341) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_SRX_E2E (line 342) | DLT_JUNIPER_SRX_E2E = 0xe9
constant DLT_JUNIPER_ST (line 343) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 344) | DLT_JUNIPER_VP = 0xb7
constant DLT_JUNIPER_VS (line 345) | DLT_JUNIPER_VS = 0xe8
constant DLT_LAPB_WITH_DIR (line 346) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 347) | DLT_LAPD = 0xcb
constant DLT_LIN (line 348) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 349) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 350) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 351) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_PPP_WITHDIRECTION (line 352) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6
constant DLT_LINUX_SLL (line 353) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 354) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 355) | DLT_LTALK = 0x72
constant DLT_MATCHING_MAX (line 356) | DLT_MATCHING_MAX = 0xf5
constant DLT_MATCHING_MIN (line 357) | DLT_MATCHING_MIN = 0x68
constant DLT_MFR (line 358) | DLT_MFR = 0xb6
constant DLT_MOST (line 359) | DLT_MOST = 0xd3
constant DLT_MPEG_2_TS (line 360) | DLT_MPEG_2_TS = 0xf3
constant DLT_MPLS (line 361) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 362) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 363) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 364) | DLT_MTP3 = 0x8d
constant DLT_MUX27010 (line 365) | DLT_MUX27010 = 0xec
constant DLT_NETANALYZER (line 366) | DLT_NETANALYZER = 0xf0
constant DLT_NETANALYZER_TRANSPARENT (line 367) | DLT_NETANALYZER_TRANSPARENT = 0xf1
constant DLT_NFC_LLCP (line 368) | DLT_NFC_LLCP = 0xf5
constant DLT_NFLOG (line 369) | DLT_NFLOG = 0xef
constant DLT_NG40 (line 370) | DLT_NG40 = 0xf4
constant DLT_NULL (line 371) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 372) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 373) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 374) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 375) | DLT_PPI = 0xc0
constant DLT_PPP (line 376) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 377) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 378) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 379) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 380) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 381) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PPP_WITH_DIRECTION (line 382) | DLT_PPP_WITH_DIRECTION = 0xa6
constant DLT_PRISM_HEADER (line 383) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 384) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 385) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 386) | DLT_RAW = 0xc
constant DLT_RIO (line 387) | DLT_RIO = 0x7c
constant DLT_SCCP (line 388) | DLT_SCCP = 0x8e
constant DLT_SITA (line 389) | DLT_SITA = 0xc4
constant DLT_SLIP (line 390) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 391) | DLT_SLIP_BSDOS = 0xf
constant DLT_STANAG_5066_D_PDU (line 392) | DLT_STANAG_5066_D_PDU = 0xed
constant DLT_SUNATM (line 393) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 394) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 395) | DLT_TZSP = 0x80
constant DLT_USB (line 396) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 397) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 398) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_USER0 (line 399) | DLT_USER0 = 0x93
constant DLT_USER1 (line 400) | DLT_USER1 = 0x94
constant DLT_USER10 (line 401) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 402) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 403) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 404) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 405) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 406) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 407) | DLT_USER2 = 0x95
constant DLT_USER3 (line 408) | DLT_USER3 = 0x96
constant DLT_USER4 (line 409) | DLT_USER4 = 0x97
constant DLT_USER5 (line 410) | DLT_USER5 = 0x98
constant DLT_USER6 (line 411) | DLT_USER6 = 0x99
constant DLT_USER7 (line 412) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 413) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 414) | DLT_USER9 = 0x9c
constant DLT_WIHART (line 415) | DLT_WIHART = 0xdf
constant DLT_X2E_SERIAL (line 416) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 417) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 418) | DT_BLK = 0x6
constant DT_CHR (line 419) | DT_CHR = 0x2
constant DT_DIR (line 420) | DT_DIR = 0x4
constant DT_FIFO (line 421) | DT_FIFO = 0x1
constant DT_LNK (line 422) | DT_LNK = 0xa
constant DT_REG (line 423) | DT_REG = 0x8
constant DT_SOCK (line 424) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 425) | DT_UNKNOWN = 0x0
constant DT_WHT (line 426) | DT_WHT = 0xe
constant ECHO (line 427) | ECHO = 0x8
constant ECHOCTL (line 428) | ECHOCTL = 0x40
constant ECHOE (line 429) | ECHOE = 0x2
constant ECHOK (line 430) | ECHOK = 0x4
constant ECHOKE (line 431) | ECHOKE = 0x1
constant ECHONL (line 432) | ECHONL = 0x10
constant ECHOPRT (line 433) | ECHOPRT = 0x20
constant EVFILT_AIO (line 434) | EVFILT_AIO = -0x3
constant EVFILT_EXCEPT (line 435) | EVFILT_EXCEPT = -0xf
constant EVFILT_FS (line 436) | EVFILT_FS = -0x9
constant EVFILT_MACHPORT (line 437) | EVFILT_MACHPORT = -0x8
constant EVFILT_PROC (line 438) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 439) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 440) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 441) | EVFILT_SYSCOUNT = 0xf
constant EVFILT_THREADMARKER (line 442) | EVFILT_THREADMARKER = 0xf
constant EVFILT_TIMER (line 443) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 444) | EVFILT_USER = -0xa
constant EVFILT_VM (line 445) | EVFILT_VM = -0xc
constant EVFILT_VNODE (line 446) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 447) | EVFILT_WRITE = -0x2
constant EV_ADD (line 448) | EV_ADD = 0x1
constant EV_CLEAR (line 449) | EV_CLEAR = 0x20
constant EV_DELETE (line 450) | EV_DELETE = 0x2
constant EV_DISABLE (line 451) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 452) | EV_DISPATCH = 0x80
constant EV_DISPATCH2 (line 453) | EV_DISPATCH2 = 0x180
constant EV_ENABLE (line 454) | EV_ENABLE = 0x4
constant EV_EOF (line 455) | EV_EOF = 0x8000
constant EV_ERROR (line 456) | EV_ERROR = 0x4000
constant EV_FLAG0 (line 457) | EV_FLAG0 = 0x1000
constant EV_FLAG1 (line 458) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 459) | EV_ONESHOT = 0x10
constant EV_OOBAND (line 460) | EV_OOBAND = 0x2000
constant EV_POLL (line 461) | EV_POLL = 0x1000
constant EV_RECEIPT (line 462) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 463) | EV_SYSFLAGS = 0xf000
constant EV_UDATA_SPECIFIC (line 464) | EV_UDATA_SPECIFIC = 0x100
constant EV_VANISHED (line 465) | EV_VANISHED = 0x200
constant EXTA (line 466) | EXTA = 0x4b00
constant EXTB (line 467) | EXTB = 0x9600
constant EXTPROC (line 468) | EXTPROC = 0x800
constant FD_CLOEXEC (line 469) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 470) | FD_SETSIZE = 0x400
constant FF0 (line 471) | FF0 = 0x0
constant FF1 (line 472) | FF1 = 0x4000
constant FFDLY (line 473) | FFDLY = 0x4000
constant FLUSHO (line 474) | FLUSHO = 0x800000
constant FSOPT_ATTR_CMN_EXTENDED (line 475) | FSOPT_ATTR_CMN_EXTENDED = 0x20
constant FSOPT_NOFOLLOW (line 476) | FSOPT_NOFOLLOW = 0x1
constant FSOPT_NOINMEMUPDATE (line 477) | FSOPT_NOINMEMUPDATE = 0x2
constant FSOPT_PACK_INVAL_ATTRS (line 478) | FSOPT_PACK_INVAL_ATTRS = 0x8
constant FSOPT_REPORT_FULLSIZE (line 479) | FSOPT_REPORT_FULLSIZE = 0x4
constant F_ADDFILESIGS (line 480) | F_ADDFILESIGS = 0x3d
constant F_ADDFILESIGS_FOR_DYLD_SIM (line 481) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53
constant F_ADDFILESIGS_RETURN (line 482) | F_ADDFILESIGS_RETURN = 0x61
constant F_ADDSIGS (line 483) | F_ADDSIGS = 0x3b
constant F_ALLOCATEALL (line 484) | F_ALLOCATEALL = 0x4
constant F_ALLOCATECONTIG (line 485) | F_ALLOCATECONTIG = 0x2
constant F_BARRIERFSYNC (line 486) | F_BARRIERFSYNC = 0x55
constant F_CHECK_LV (line 487) | F_CHECK_LV = 0x62
constant F_CHKCLEAN (line 488) | F_CHKCLEAN = 0x29
constant F_DUPFD (line 489) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 490) | F_DUPFD_CLOEXEC = 0x43
constant F_FINDSIGS (line 491) | F_FINDSIGS = 0x4e
constant F_FLUSH_DATA (line 492) | F_FLUSH_DATA = 0x28
constant F_FREEZE_FS (line 493) | F_FREEZE_FS = 0x35
constant F_FULLFSYNC (line 494) | F_FULLFSYNC = 0x33
constant F_GETCODEDIR (line 495) | F_GETCODEDIR = 0x48
constant F_GETFD (line 496) | F_GETFD = 0x1
constant F_GETFL (line 497) | F_GETFL = 0x3
constant F_GETLK (line 498) | F_GETLK = 0x7
constant F_GETLKPID (line 499) | F_GETLKPID = 0x42
constant F_GETNOSIGPIPE (line 500) | F_GETNOSIGPIPE = 0x4a
constant F_GETOWN (line 501) | F_GETOWN = 0x5
constant F_GETPATH (line 502) | F_GETPATH = 0x32
constant F_GETPATH_MTMINFO (line 503) | F_GETPATH_MTMINFO = 0x47
constant F_GETPROTECTIONCLASS (line 504) | F_GETPROTECTIONCLASS = 0x3f
constant F_GETPROTECTIONLEVEL (line 505) | F_GETPROTECTIONLEVEL = 0x4d
constant F_GLOBAL_NOCACHE (line 506) | F_GLOBAL_NOCACHE = 0x37
constant F_LOG2PHYS (line 507) | F_LOG2PHYS = 0x31
constant F_LOG2PHYS_EXT (line 508) | F_LOG2PHYS_EXT = 0x41
constant F_NOCACHE (line 509) | F_NOCACHE = 0x30
constant F_NODIRECT (line 510) | F_NODIRECT = 0x3e
constant F_OK (line 511) | F_OK = 0x0
constant F_PATHPKG_CHECK (line 512) | F_PATHPKG_CHECK = 0x34
constant F_PEOFPOSMODE (line 513) | F_PEOFPOSMODE = 0x3
constant F_PREALLOCATE (line 514) | F_PREALLOCATE = 0x2a
constant F_PUNCHHOLE (line 515) | F_PUNCHHOLE = 0x63
constant F_RDADVISE (line 516) | F_RDADVISE = 0x2c
constant F_RDAHEAD (line 517) | F_RDAHEAD = 0x2d
constant F_RDLCK (line 518) | F_RDLCK = 0x1
constant F_SETBACKINGSTORE (line 519) | F_SETBACKINGSTORE = 0x46
constant F_SETFD (line 520) | F_SETFD = 0x2
constant F_SETFL (line 521) | F_SETFL = 0x4
constant F_SETLK (line 522) | F_SETLK = 0x8
constant F_SETLKW (line 523) | F_SETLKW = 0x9
constant F_SETLKWTIMEOUT (line 524) | F_SETLKWTIMEOUT = 0xa
constant F_SETNOSIGPIPE (line 525) | F_SETNOSIGPIPE = 0x49
constant F_SETOWN (line 526) | F_SETOWN = 0x6
constant F_SETPROTECTIONCLASS (line 527) | F_SETPROTECTIONCLASS = 0x40
constant F_SETSIZE (line 528) | F_SETSIZE = 0x2b
constant F_SINGLE_WRITER (line 529) | F_SINGLE_WRITER = 0x4c
constant F_THAW_FS (line 530) | F_THAW_FS = 0x36
constant F_TRANSCODEKEY (line 531) | F_TRANSCODEKEY = 0x4b
constant F_TRIM_ACTIVE_FILE (line 532) | F_TRIM_ACTIVE_FILE = 0x64
constant F_UNLCK (line 533) | F_UNLCK = 0x2
constant F_VOLPOSMODE (line 534) | F_VOLPOSMODE = 0x4
constant F_WRLCK (line 535) | F_WRLCK = 0x3
constant HUPCL (line 536) | HUPCL = 0x4000
constant HW_MACHINE (line 537) | HW_MACHINE = 0x1
constant ICANON (line 538) | ICANON = 0x100
constant ICMP6_FILTER (line 539) | ICMP6_FILTER = 0x12
constant ICRNL (line 540) | ICRNL = 0x100
constant IEXTEN (line 541) | IEXTEN = 0x400
constant IFF_ALLMULTI (line 542) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 543) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 544) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 545) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 546) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 547) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 548) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 549) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 550) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 551) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 552) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 553) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 554) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 555) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 556) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 557) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 558) | IFF_UP = 0x1
constant IFNAMSIZ (line 559) | IFNAMSIZ = 0x10
constant IFT_1822 (line 560) | IFT_1822 = 0x2
constant IFT_AAL5 (line 561) | IFT_AAL5 = 0x31
constant IFT_ARCNET (line 562) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 563) | IFT_ARCNETPLUS = 0x24
constant IFT_ATM (line 564) | IFT_ATM = 0x25
constant IFT_BRIDGE (line 565) | IFT_BRIDGE = 0xd1
constant IFT_CARP (line 566) | IFT_CARP = 0xf8
constant IFT_CELLULAR (line 567) | IFT_CELLULAR = 0xff
constant IFT_CEPT (line 568) | IFT_CEPT = 0x13
constant IFT_DS3 (line 569) | IFT_DS3 = 0x1e
constant IFT_ENC (line 570) | IFT_ENC = 0xf4
constant IFT_EON (line 571) | IFT_EON = 0x19
constant IFT_ETHER (line 572) | IFT_ETHER = 0x6
constant IFT_FAITH (line 573) | IFT_FAITH = 0x38
constant IFT_FDDI (line 574) | IFT_FDDI = 0xf
constant IFT_FRELAY (line 575) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 576) | IFT_FRELAYDCE = 0x2c
constant IFT_GIF (line 577) | IFT_GIF = 0x37
constant IFT_HDH1822 (line 578) | IFT_HDH1822 = 0x3
constant IFT_HIPPI (line 579) | IFT_HIPPI = 0x2f
constant IFT_HSSI (line 580) | IFT_HSSI = 0x2e
constant IFT_HY (line 581) | IFT_HY = 0xe
constant IFT_IEEE1394 (line 582) | IFT_IEEE1394 = 0x90
constant IFT_IEEE8023ADLAG (line 583) | IFT_IEEE8023ADLAG = 0x88
constant IFT_ISDNBASIC (line 584) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 585) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISO88022LLC (line 586) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 587) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 588) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 589) | IFT_ISO88025 = 0x9
constant IFT_ISO88026 (line 590) | IFT_ISO88026 = 0xa
constant IFT_L2VLAN (line 591) | IFT_L2VLAN = 0x87
constant IFT_LAPB (line 592) | IFT_LAPB = 0x10
constant IFT_LOCALTALK (line 593) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 594) | IFT_LOOP = 0x18
constant IFT_MIOX25 (line 595) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 596) | IFT_MODEM = 0x30
constant IFT_NSIP (line 597) | IFT_NSIP = 0x1b
constant IFT_OTHER (line 598) | IFT_OTHER = 0x1
constant IFT_P10 (line 599) | IFT_P10 = 0xc
constant IFT_P80 (line 600) | IFT_P80 = 0xd
constant IFT_PARA (line 601) | IFT_PARA = 0x22
constant IFT_PDP (line 602) | IFT_PDP = 0xff
constant IFT_PFLOG (line 603) | IFT_PFLOG = 0xf5
constant IFT_PFSYNC (line 604) | IFT_PFSYNC = 0xf6
constant IFT_PKTAP (line 605) | IFT_PKTAP = 0xfe
constant IFT_PPP (line 606) | IFT_PPP = 0x17
constant IFT_PROPMUX (line 607) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 608) | IFT_PROPVIRTUAL = 0x35
constant IFT_PTPSERIAL (line 609) | IFT_PTPSERIAL = 0x16
constant IFT_RS232 (line 610) | IFT_RS232 = 0x21
constant IFT_SDLC (line 611) | IFT_SDLC = 0x11
constant IFT_SIP (line 612) | IFT_SIP = 0x1f
constant IFT_SLIP (line 613) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 614) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 615) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 616) | IFT_SONET = 0x27
constant IFT_SONETPATH (line 617) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 618) | IFT_SONETVT = 0x33
constant IFT_STARLAN (line 619) | IFT_STARLAN = 0xb
constant IFT_STF (line 620) | IFT_STF = 0x39
constant IFT_T1 (line 621) | IFT_T1 = 0x12
constant IFT_ULTRA (line 622) | IFT_ULTRA = 0x1d
constant IFT_V35 (line 623) | IFT_V35 = 0x2d
constant IFT_X25 (line 624) | IFT_X25 = 0x5
constant IFT_X25DDN (line 625) | IFT_X25DDN = 0x4
constant IFT_X25PLE (line 626) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 627) | IFT_XETHER = 0x1a
constant IGNBRK (line 628) | IGNBRK = 0x1
constant IGNCR (line 629) | IGNCR = 0x80
constant IGNPAR (line 630) | IGNPAR = 0x4
constant IMAXBEL (line 631) | IMAXBEL = 0x2000
constant INLCR (line 632) | INLCR = 0x40
constant INPCK (line 633) | INPCK = 0x10
constant IN_CLASSA_HOST (line 634) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 635) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 636) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 637) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 638) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 639) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 640) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 641) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 642) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 643) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 644) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 645) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 646) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 647) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LINKLOCALNETNUM (line 648) | IN_LINKLOCALNETNUM = 0xa9fe0000
constant IN_LOOPBACKNET (line 649) | IN_LOOPBACKNET = 0x7f
constant IPPROTO_3PC (line 650) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 651) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 652) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 653) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 654) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 655) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 656) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 657) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 658) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 659) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CFTP (line 660) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 661) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 662) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 663) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 664) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 665) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 666) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 667) | IPPROTO_DIVERT = 0xfe
constant IPPROTO_DONE (line 668) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 669) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 670) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 671) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 672) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 673) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 674) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 675) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 676) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 677) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 678) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 679) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 680) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HMP (line 681) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 682) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 683) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 684) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 685) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 686) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 687) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 688) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 689) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 690) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 691) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 692) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 693) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 694) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 695) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 696) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 697) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 698) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 699) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 700) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 701) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 702) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 703) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 704) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 705) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 706) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 707) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 708) | IPPROTO_MAXID = 0x34
constant IPPROTO_MEAS (line 709) | IPPROTO_MEAS = 0x13
constant IPPROTO_MHRP (line 710) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 711) | IPPROTO_MICP = 0x5f
constant IPPROTO_MTP (line 712) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 713) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 714) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 715) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 716) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 717) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 718) | IPPROTO_NVPII = 0xb
constant IPPROTO_OSPFIGP (line 719) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PGM (line 720) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 721) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 722) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 723) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 724) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 725) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 726) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 727) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 728) | IPPROTO_RDP = 0x1b
constant IPPROTO_ROUTING (line 729) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 730) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 731) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 732) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 733) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 734) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SCTP (line 735) | IPPROTO_SCTP = 0x84
constant IPPROTO_SDRP (line 736) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEP (line 737) | IPPROTO_SEP = 0x21
constant IPPROTO_SRPC (line 738) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 739) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 740) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 741) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 742) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 743) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 744) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 745) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 746) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 747) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 748) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 749) | IPPROTO_UDP = 0x11
constant IPPROTO_VINES (line 750) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 751) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 752) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 753) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 754) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 755) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 756) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 757) | IPPROTO_XTP = 0x24
constant IPV6_2292DSTOPTS (line 758) | IPV6_2292DSTOPTS = 0x17
constant IPV6_2292HOPLIMIT (line 759) | IPV6_2292HOPLIMIT = 0x14
constant IPV6_2292HOPOPTS (line 760) | IPV6_2292HOPOPTS = 0x16
constant IPV6_2292NEXTHOP (line 761) | IPV6_2292NEXTHOP = 0x15
constant IPV6_2292PKTINFO (line 762) | IPV6_2292PKTINFO = 0x13
constant IPV6_2292PKTOPTIONS (line 763) | IPV6_2292PKTOPTIONS = 0x19
constant IPV6_2292RTHDR (line 764) | IPV6_2292RTHDR = 0x18
constant IPV6_BINDV6ONLY (line 765) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_BOUND_IF (line 766) | IPV6_BOUND_IF = 0x7d
constant IPV6_CHECKSUM (line 767) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 768) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 769) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 770) | IPV6_DEFHLIM = 0x40
constant IPV6_FAITH (line 771) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 772) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 773) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FLOW_ECN_MASK (line 774) | IPV6_FLOW_ECN_MASK = 0x300
constant IPV6_FRAGTTL (line 775) | IPV6_FRAGTTL = 0x3c
constant IPV6_FW_ADD (line 776) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 777) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 778) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 779) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 780) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 781) | IPV6_HLIMDEC = 0x1
constant IPV6_IPSEC_POLICY (line 782) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 783) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 784) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 785) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXOPTHDR (line 786) | IPV6_MAXOPTHDR = 0x800
constant IPV6_MAXPACKET (line 787) | IPV6_MAXPACKET = 0xffff
constant IPV6_MAX_GROUP_SRC_FILTER (line 788) | IPV6_MAX_GROUP_SRC_FILTER = 0x200
constant IPV6_MAX_MEMBERSHIPS (line 789) | IPV6_MAX_MEMBERSHIPS = 0xfff
constant IPV6_MAX_SOCK_SRC_FILTER (line 790) | IPV6_MAX_SOCK_SRC_FILTER = 0x80
constant IPV6_MIN_MEMBERSHIPS (line 791) | IPV6_MIN_MEMBERSHIPS = 0x1f
constant IPV6_MMTU (line 792) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 793) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 794) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 795) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_PORTRANGE (line 796) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 797) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 798) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 799) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVTCLASS (line 800) | IPV6_RECVTCLASS = 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 = 0x24
constant IPV6_UNICAST_HOPS (line 806) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_V6ONLY (line 807) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 808) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 809) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 810) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 811) | IP_ADD_SOURCE_MEMBERSHIP = 0x46
constant IP_BLOCK_SOURCE (line 812) | IP_BLOCK_SOURCE = 0x48
constant IP_BOUND_IF (line 813) | IP_BOUND_IF = 0x19
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_DROP_MEMBERSHIP (line 817) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 818) | IP_DROP_SOURCE_MEMBERSHIP = 0x47
constant IP_DUMMYNET_CONFIGURE (line 819) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 820) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 821) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 822) | IP_DUMMYNET_GET = 0x40
constant IP_FAITH (line 823) | IP_FAITH = 0x16
constant IP_FW_ADD (line 824) | IP_FW_ADD = 0x28
constant IP_FW_DEL (line 825) | IP_FW_DEL = 0x29
constant IP_FW_FLUSH (line 826) | IP_FW_FLUSH = 0x2a
constant IP_FW_GET (line 827) | IP_FW_GET = 0x2c
constant IP_FW_RESETLOG (line 828) | IP_FW_RESETLOG = 0x2d
constant IP_FW_ZERO (line 829) | IP_FW_ZERO = 0x2b
constant IP_HDRINCL (line 830) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 831) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 832) | IP_MAXPACKET = 0xffff
constant IP_MAX_GROUP_SRC_FILTER (line 833) | IP_MAX_GROUP_SRC_FILTER = 0x200
constant IP_MAX_MEMBERSHIPS (line 834) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MAX_SOCK_MUTE_FILTER (line 835) | IP_MAX_SOCK_MUTE_FILTER = 0x80
constant IP_MAX_SOCK_SRC_FILTER (line 836) | IP_MAX_SOCK_SRC_FILTER = 0x80
constant IP_MF (line 837) | IP_MF = 0x2000
constant IP_MIN_MEMBERSHIPS (line 838) | IP_MIN_MEMBERSHIPS = 0x1f
constant IP_MSFILTER (line 839) | IP_MSFILTER = 0x4a
constant IP_MSS (line 840) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 841) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_IFINDEX (line 842) | IP_MULTICAST_IFINDEX = 0x42
constant IP_MULTICAST_LOOP (line 843) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 844) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 845) | IP_MULTICAST_VIF = 0xe
constant IP_NAT__XXX (line 846) | IP_NAT__XXX = 0x37
constant IP_OFFMASK (line 847) | IP_OFFMASK = 0x1fff
constant IP_OLD_FW_ADD (line 848) | IP_OLD_FW_ADD = 0x32
constant IP_OLD_FW_DEL (line 849) | IP_OLD_FW_DEL = 0x33
constant IP_OLD_FW_FLUSH (line 850) | IP_OLD_FW_FLUSH = 0x34
constant IP_OLD_FW_GET (line 851) | IP_OLD_FW_GET = 0x36
constant IP_OLD_FW_RESETLOG (line 852) | IP_OLD_FW_RESETLOG = 0x38
constant IP_OLD_FW_ZERO (line 853) | IP_OLD_FW_ZERO = 0x35
constant IP_OPTIONS (line 854) | IP_OPTIONS = 0x1
constant IP_PKTINFO (line 855) | IP_PKTINFO = 0x1a
constant IP_PORTRANGE (line 856) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 857) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 858) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 859) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 860) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 861) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 862) | IP_RECVOPTS = 0x5
constant IP_RECVPKTINFO (line 863) | IP_RECVPKTINFO = 0x1a
constant IP_RECVRETOPTS (line 864) | IP_RECVRETOPTS = 0x6
constant IP_RECVTOS (line 865) | IP_RECVTOS = 0x1b
constant IP_RECVTTL (line 866) | IP_RECVTTL = 0x18
constant IP_RETOPTS (line 867) | IP_RETOPTS = 0x8
constant IP_RF (line 868) | IP_RF = 0x8000
constant IP_RSVP_OFF (line 869) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 870) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 871) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 872) | IP_RSVP_VIF_ON = 0x11
constant IP_STRIPHDR (line 873) | IP_STRIPHDR = 0x17
constant IP_TOS (line 874) | IP_TOS = 0x3
constant IP_TRAFFIC_MGT_BACKGROUND (line 875) | IP_TRAFFIC_MGT_BACKGROUND = 0x41
constant IP_TTL (line 876) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 877) | IP_UNBLOCK_SOURCE = 0x49
constant ISIG (line 878) | ISIG = 0x80
constant ISTRIP (line 879) | ISTRIP = 0x20
constant IUTF8 (line 880) | IUTF8 = 0x4000
constant IXANY (line 881) | IXANY = 0x800
constant IXOFF (line 882) | IXOFF = 0x400
constant IXON (line 883) | IXON = 0x200
constant KERN_HOSTNAME (line 884) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 885) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 886) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 887) | KERN_VERSION = 0x4
constant LOCK_EX (line 888) | LOCK_EX = 0x2
constant LOCK_NB (line 889) | LOCK_NB = 0x4
constant LOCK_SH (line 890) | LOCK_SH = 0x1
constant LOCK_UN (line 891) | LOCK_UN = 0x8
constant MADV_CAN_REUSE (line 892) | MADV_CAN_REUSE = 0x9
constant MADV_DONTNEED (line 893) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 894) | MADV_FREE = 0x5
constant MADV_FREE_REUSABLE (line 895) | MADV_FREE_REUSABLE = 0x7
constant MADV_FREE_REUSE (line 896) | MADV_FREE_REUSE = 0x8
constant MADV_NORMAL (line 897) | MADV_NORMAL = 0x0
constant MADV_PAGEOUT (line 898) | MADV_PAGEOUT = 0xa
constant MADV_RANDOM (line 899) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 900) | MADV_SEQUENTIAL = 0x2
constant MADV_WILLNEED (line 901) | MADV_WILLNEED = 0x3
constant MADV_ZERO_WIRED_PAGES (line 902) | MADV_ZERO_WIRED_PAGES = 0x6
constant MAP_ANON (line 903) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 904) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 905) | MAP_COPY = 0x2
constant MAP_FILE (line 906) | MAP_FILE = 0x0
constant MAP_FIXED (line 907) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 908) | MAP_HASSEMAPHORE = 0x200
constant MAP_JIT (line 909) | MAP_JIT = 0x800
constant MAP_NOCACHE (line 910) | MAP_NOCACHE = 0x400
constant MAP_NOEXTEND (line 911) | MAP_NOEXTEND = 0x100
constant MAP_NORESERVE (line 912) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 913) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 914) | MAP_RENAME = 0x20
constant MAP_RESERVED0080 (line 915) | MAP_RESERVED0080 = 0x80
constant MAP_RESILIENT_CODESIGN (line 916) | MAP_RESILIENT_CODESIGN = 0x2000
constant MAP_RESILIENT_MEDIA (line 917) | MAP_RESILIENT_MEDIA = 0x4000
constant MAP_SHARED (line 918) | MAP_SHARED = 0x1
constant MCL_CURRENT (line 919) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 920) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 921) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 922) | MNT_AUTOMOUNTED = 0x400000
constant MNT_CMDFLAGS (line 923) | MNT_CMDFLAGS = 0xf0000
constant MNT_CPROTECT (line 924) | MNT_CPROTECT = 0x80
constant MNT_DEFWRITE (line 925) | MNT_DEFWRITE = 0x2000000
constant MNT_DONTBROWSE (line 926) | MNT_DONTBROWSE = 0x100000
constant MNT_DOVOLFS (line 927) | MNT_DOVOLFS = 0x8000
constant MNT_DWAIT (line 928) | MNT_DWAIT = 0x4
constant MNT_EXPORTED (line 929) | MNT_EXPORTED = 0x100
constant MNT_FORCE (line 930) | MNT_FORCE = 0x80000
constant MNT_IGNORE_OWNERSHIP (line 931) | MNT_IGNORE_OWNERSHIP = 0x200000
constant MNT_JOURNALED (line 932) | MNT_JOURNALED = 0x800000
constant MNT_LOCAL (line 933) | MNT_LOCAL = 0x1000
constant MNT_MULTILABEL (line 934) | MNT_MULTILABEL = 0x4000000
constant MNT_NOATIME (line 935) | MNT_NOATIME = 0x10000000
constant MNT_NOBLOCK (line 936) | MNT_NOBLOCK = 0x20000
constant MNT_NODEV (line 937) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 938) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 939) | MNT_NOSUID = 0x8
constant MNT_NOUSERXATTR (line 940) | MNT_NOUSERXATTR = 0x1000000
constant MNT_NOWAIT (line 941) | MNT_NOWAIT = 0x2
constant MNT_QUARANTINE (line 942) | MNT_QUARANTINE = 0x400
constant MNT_QUOTA (line 943) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 944) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 945) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 946) | MNT_ROOTFS = 0x4000
constant MNT_SYNCHRONOUS (line 947) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 948) | MNT_UNION = 0x20
constant MNT_UNKNOWNPERMISSIONS (line 949) | MNT_UNKNOWNPERMISSIONS = 0x200000
constant MNT_UPDATE (line 950) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 951) | MNT_VISFLAGMASK = 0x17f0f5ff
constant MNT_WAIT (line 952) | MNT_WAIT = 0x1
constant MSG_CTRUNC (line 953) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 954) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 955) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 956) | MSG_EOF = 0x100
constant MSG_EOR (line 957) | MSG_EOR = 0x8
constant MSG_FLUSH (line 958) | MSG_FLUSH = 0x400
constant MSG_HAVEMORE (line 959) | MSG_HAVEMORE = 0x2000
constant MSG_HOLD (line 960) | MSG_HOLD = 0x800
constant MSG_NEEDSA (line 961) | MSG_NEEDSA = 0x10000
constant MSG_OOB (line 962) | MSG_OOB = 0x1
constant MSG_PEEK (line 963) | MSG_PEEK = 0x2
constant MSG_RCVMORE (line 964) | MSG_RCVMORE = 0x4000
constant MSG_SEND (line 965) | MSG_SEND = 0x1000
constant MSG_TRUNC (line 966) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 967) | MSG_WAITALL = 0x40
constant MSG_WAITSTREAM (line 968) | MSG_WAITSTREAM = 0x200
constant MS_ASYNC (line 969) | MS_ASYNC = 0x1
constant MS_DEACTIVATE (line 970) | MS_DEACTIVATE = 0x8
constant MS_INVALIDATE (line 971) | MS_INVALIDATE = 0x2
constant MS_KILLPAGES (line 972) | MS_KILLPAGES = 0x4
constant MS_SYNC (line 973) | MS_SYNC = 0x10
constant NAME_MAX (line 974) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 975) | NET_RT_DUMP = 0x1
constant NET_RT_DUMP2 (line 976) | NET_RT_DUMP2 = 0x7
constant NET_RT_FLAGS (line 977) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 978) | NET_RT_IFLIST = 0x3
constant NET_RT_IFLIST2 (line 979) | NET_RT_IFLIST2 = 0x6
constant NET_RT_MAXID (line 980) | NET_RT_MAXID = 0xa
constant NET_RT_STAT (line 981) | NET_RT_STAT = 0x4
constant NET_RT_TRASH (line 982) | NET_RT_TRASH = 0x5
constant NL0 (line 983) | NL0 = 0x0
constant NL1 (line 984) | NL1 = 0x100
constant NL2 (line 985) | NL2 = 0x200
constant NL3 (line 986) | NL3 = 0x300
constant NLDLY (line 987) | NLDLY = 0x300
constant NOFLSH (line 988) | NOFLSH = 0x80000000
constant NOKERNINFO (line 989) | NOKERNINFO = 0x2000000
constant NOTE_ABSOLUTE (line 990) | NOTE_ABSOLUTE = 0x8
constant NOTE_ATTRIB (line 991) | NOTE_ATTRIB = 0x8
constant NOTE_BACKGROUND (line 992) | NOTE_BACKGROUND = 0x40
constant NOTE_CHILD (line 993) | NOTE_CHILD = 0x4
constant NOTE_CRITICAL (line 994) | NOTE_CRITICAL = 0x20
constant NOTE_DELETE (line 995) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 996) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 997) | NOTE_EXIT = 0x80000000
constant NOTE_EXITSTATUS (line 998) | NOTE_EXITSTATUS = 0x4000000
constant NOTE_EXIT_CSERROR (line 999) | NOTE_EXIT_CSERROR = 0x40000
constant NOTE_EXIT_DECRYPTFAIL (line 1000) | NOTE_EXIT_DECRYPTFAIL = 0x10000
constant NOTE_EXIT_DETAIL (line 1001) | NOTE_EXIT_DETAIL = 0x2000000
constant NOTE_EXIT_DETAIL_MASK (line 1002) | NOTE_EXIT_DETAIL_MASK = 0x70000
constant NOTE_EXIT_MEMORY (line 1003) | NOTE_EXIT_MEMORY = 0x20000
constant NOTE_EXIT_REPARENTED (line 1004) | NOTE_EXIT_REPARENTED = 0x80000
constant NOTE_EXTEND (line 1005) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 1006) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 1007) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 1008) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 1009) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 1010) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 1011) | NOTE_FFOR = 0x80000000
constant NOTE_FORK (line 1012) | NOTE_FORK = 0x40000000
constant NOTE_FUNLOCK (line 1013) | NOTE_FUNLOCK = 0x100
constant NOTE_LEEWAY (line 1014) | NOTE_LEEWAY = 0x10
constant NOTE_LINK (line 1015) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1016) | NOTE_LOWAT = 0x1
constant NOTE_MACH_CONTINUOUS_TIME (line 1017) | NOTE_MACH_CONTINUOUS_TIME = 0x80
constant NOTE_NONE (line 1018) | NOTE_NONE = 0x80
constant NOTE_NSECONDS (line 1019) | NOTE_NSECONDS = 0x4
constant NOTE_OOB (line 1020) | NOTE_OOB = 0x2
constant NOTE_PCTRLMASK (line 1021) | NOTE_PCTRLMASK = -0x100000
constant NOTE_PDATAMASK (line 1022) | NOTE_PDATAMASK = 0xfffff
constant NOTE_REAP (line 1023) | NOTE_REAP = 0x10000000
constant NOTE_RENAME (line 1024) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1025) | NOTE_REVOKE = 0x40
constant NOTE_SECONDS (line 1026) | NOTE_SECONDS = 0x1
constant NOTE_SIGNAL (line 1027) | NOTE_SIGNAL = 0x8000000
constant NOTE_TRACK (line 1028) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1029) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 1030) | NOTE_TRIGGER = 0x1000000
constant NOTE_USECONDS (line 1031) | NOTE_USECONDS = 0x2
constant NOTE_VM_ERROR (line 1032) | NOTE_VM_ERROR = 0x10000000
constant NOTE_VM_PRESSURE (line 1033) | NOTE_VM_PRESSURE = 0x80000000
constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 1034) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000
constant NOTE_VM_PRESSURE_TERMINATE (line 1035) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000
constant NOTE_WRITE (line 1036) | NOTE_WRITE = 0x2
constant OCRNL (line 1037) | OCRNL = 0x10
constant OFDEL (line 1038) | OFDEL = 0x20000
constant OFILL (line 1039) | OFILL = 0x80
constant ONLCR (line 1040) | ONLCR = 0x2
constant ONLRET (line 1041) | ONLRET = 0x40
constant ONOCR (line 1042) | ONOCR = 0x20
constant ONOEOT (line 1043) | ONOEOT = 0x8
constant OPOST (line 1044) | OPOST = 0x1
constant OXTABS (line 1045) | OXTABS = 0x4
constant O_ACCMODE (line 1046) | O_ACCMODE = 0x3
constant O_ALERT (line 1047) | O_ALERT = 0x20000000
constant O_APPEND (line 1048) | O_APPEND = 0x8
constant O_ASYNC (line 1049) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1050) | O_CLOEXEC = 0x1000000
constant O_CREAT (line 1051) | O_CREAT = 0x200
constant O_DIRECTORY (line 1052) | O_DIRECTORY = 0x100000
constant O_DP_GETRAWENCRYPTED (line 1053) | O_DP_GETRAWENCRYPTED = 0x1
constant O_DP_GETRAWUNENCRYPTED (line 1054) | O_DP_GETRAWUNENCRYPTED = 0x2
constant O_DSYNC (line 1055) | O_DSYNC = 0x400000
constant O_EVTONLY (line 1056) | O_EVTONLY = 0x8000
constant O_EXCL (line 1057) | O_EXCL = 0x800
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 = 0x20000
constant O_NOFOLLOW (line 1062) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1063) | O_NONBLOCK = 0x4
constant O_POPUP (line 1064) | O_POPUP = 0x80000000
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_SYMLINK (line 1068) | O_SYMLINK = 0x200000
constant O_SYNC (line 1069) | O_SYNC = 0x80
constant O_TRUNC (line 1070) | O_TRUNC = 0x400
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 PT_ATTACH (line 1083) | PT_ATTACH = 0xa
constant PT_ATTACHEXC (line 1084) | PT_ATTACHEXC = 0xe
constant PT_CONTINUE (line 1085) | PT_CONTINUE = 0x7
constant PT_DENY_ATTACH (line 1086) | PT_DENY_ATTACH = 0x1f
constant PT_DETACH (line 1087) | PT_DETACH = 0xb
constant PT_FIRSTMACH (line 1088) | PT_FIRSTMACH = 0x20
constant PT_FORCEQUOTA (line 1089) | PT_FORCEQUOTA = 0x1e
constant PT_KILL (line 1090) | PT_KILL = 0x8
constant PT_READ_D (line 1091) | PT_READ_D = 0x2
constant PT_READ_I (line 1092) | PT_READ_I = 0x1
constant PT_READ_U (line 1093) | PT_READ_U = 0x3
constant PT_SIGEXC (line 1094) | PT_SIGEXC = 0xc
constant PT_STEP (line 1095) | PT_STEP = 0x9
constant PT_THUPDATE (line 1096) | PT_THUPDATE = 0xd
constant PT_TRACE_ME (line 1097) | PT_TRACE_ME = 0x0
constant PT_WRITE_D (line 1098) | PT_WRITE_D = 0x5
constant PT_WRITE_I (line 1099) | PT_WRITE_I = 0x4
constant PT_WRITE_U (line 1100) | PT_WRITE_U = 0x6
constant RLIMIT_AS (line 1101) | RLIMIT_AS = 0x5
constant RLIMIT_CORE (line 1102) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1103) | RLIMIT_CPU = 0x0
constant RLIMIT_CPU_USAGE_MONITOR (line 1104) | RLIMIT_CPU_USAGE_MONITOR = 0x2
constant RLIMIT_DATA (line 1105) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1106) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1107) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1108) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1109) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1110) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1111) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1112) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1113) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1114) | RTAX_BRD = 0x7
constant RTAX_DST (line 1115) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1116) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1117) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1118) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1119) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1120) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 1121) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1122) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1123) | RTA_BRD = 0x80
constant RTA_DST (line 1124) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1125) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1126) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1127) | RTA_IFA = 0x20
constant RTA_IFP (line 1128) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1129) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1130) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1131) | RTF_BROADCAST = 0x400000
constant RTF_CLONING (line 1132) | RTF_CLONING = 0x100
constant RTF_CONDEMNED (line 1133) | RTF_CONDEMNED = 0x2000000
constant RTF_DELCLONE (line 1134) | RTF_DELCLONE = 0x80
constant RTF_DONE (line 1135) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1136) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1137) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1138) | RTF_HOST = 0x4
constant RTF_IFREF (line 1139) | RTF_IFREF = 0x4000000
constant RTF_IFSCOPE (line 1140) | RTF_IFSCOPE = 0x1000000
constant RTF_LLINFO (line 1141) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1142) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1143) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 1144) | RTF_MULTICAST = 0x800000
constant RTF_NOIFREF (line 1145) | RTF_NOIFREF = 0x2000
constant RTF_PINNED (line 1146) | RTF_PINNED = 0x100000
constant RTF_PRCLONING (line 1147) | RTF_PRCLONING = 0x10000
constant RTF_PROTO1 (line 1148) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1149) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1150) | RTF_PROTO3 = 0x40000
constant RTF_PROXY (line 1151) | RTF_PROXY = 0x8000000
constant RTF_REJECT (line 1152) | RTF_REJECT = 0x8
constant RTF_ROUTER (line 1153) | RTF_ROUTER = 0x10000000
constant RTF_STATIC (line 1154) | RTF_STATIC = 0x800
constant RTF_UP (line 1155) | RTF_UP = 0x1
constant RTF_WASCLONED (line 1156) | RTF_WASCLONED = 0x20000
constant RTF_XRESOLVE (line 1157) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1158) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1159) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1160) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1161) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1162) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1163) | RTM_GET = 0x4
constant RTM_GET2 (line 1164) | RTM_GET2 = 0x14
constant RTM_IFINFO (line 1165) | RTM_IFINFO = 0xe
constant RTM_IFINFO2 (line 1166) | RTM_IFINFO2 = 0x12
constant RTM_LOCK (line 1167) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1168) | RTM_LOSING = 0x5
constant RTM_MISS (line 1169) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1170) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1171) | RTM_NEWMADDR = 0xf
constant RTM_NEWMADDR2 (line 1172) | RTM_NEWMADDR2 = 0x13
constant RTM_OLDADD (line 1173) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1174) | RTM_OLDDEL = 0xa
constant RTM_REDIRECT (line 1175) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1176) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1177) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1178) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1179) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1180) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1181) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1182) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1183) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1184) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1185) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1186) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1187) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1188) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1189) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1190) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1191) | SCM_TIMESTAMP = 0x2
constant SCM_TIMESTAMP_MONOTONIC (line 1192) | SCM_TIMESTAMP_MONOTONIC = 0x4
constant SHUT_RD (line 1193) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1194) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1195) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1196) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1197) | SIOCAIFADDR = 0x8040691a
constant SIOCARPIPLL (line 1198) | SIOCARPIPLL = 0xc0206928
constant SIOCATMARK (line 1199) | SIOCATMARK = 0x40047307
constant SIOCAUTOADDR (line 1200) | SIOCAUTOADDR = 0xc0206926
constant SIOCAUTONETMASK (line 1201) | SIOCAUTONETMASK = 0x80206927
constant SIOCDELMULTI (line 1202) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1203) | SIOCDIFADDR = 0x80206919
constant SIOCDIFPHYADDR (line 1204) | SIOCDIFPHYADDR = 0x80206941
constant SIOCGDRVSPEC (line 1205) | SIOCGDRVSPEC = 0xc028697b
constant SIOCGETVLAN (line 1206) | SIOCGETVLAN = 0xc020697f
constant SIOCGHIWAT (line 1207) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1208) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFALTMTU (line 1209) | SIOCGIFALTMTU = 0xc0206948
constant SIOCGIFASYNCMAP (line 1210) | SIOCGIFASYNCMAP = 0xc020697c
constant SIOCGIFBOND (line 1211) | SIOCGIFBOND = 0xc0206947
constant SIOCGIFBRDADDR (line 1212) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1213) | SIOCGIFCAP = 0xc020695b
constant SIOCGIFCONF (line 1214) | SIOCGIFCONF = 0xc00c6924
constant SIOCGIFDEVMTU (line 1215) | SIOCGIFDEVMTU = 0xc0206944
constant SIOCGIFDSTADDR (line 1216) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1217) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1218) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFKPI (line 1219) | SIOCGIFKPI = 0xc0206987
constant SIOCGIFMAC (line 1220) | SIOCGIFMAC = 0xc0206982
constant SIOCGIFMEDIA (line 1221) | SIOCGIFMEDIA = 0xc02c6938
constant SIOCGIFMETRIC (line 1222) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1223) | SIOCGIFMTU = 0xc0206933
constant SIOCGIFNETMASK (line 1224) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1225) | SIOCGIFPDSTADDR = 0xc0206940
constant SIOCGIFPHYS (line 1226) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPSRCADDR (line 1227) | SIOCGIFPSRCADDR = 0xc020693f
constant SIOCGIFSTATUS (line 1228) | SIOCGIFSTATUS = 0xc331693d
constant SIOCGIFVLAN (line 1229) | SIOCGIFVLAN = 0xc020697f
constant SIOCGIFWAKEFLAGS (line 1230) | SIOCGIFWAKEFLAGS = 0xc0206988
constant SIOCGLOWAT (line 1231) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1232) | SIOCGPGRP = 0x40047309
constant SIOCIFCREATE (line 1233) | SIOCIFCREATE = 0xc0206978
constant SIOCIFCREATE2 (line 1234) | SIOCIFCREATE2 = 0xc020697a
constant SIOCIFDESTROY (line 1235) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1236) | SIOCIFGCLONERS = 0xc0106981
constant SIOCRSLVMULTI (line 1237) | SIOCRSLVMULTI = 0xc010693b
constant SIOCSDRVSPEC (line 1238) | SIOCSDRVSPEC = 0x8028697b
constant SIOCSETVLAN (line 1239) | SIOCSETVLAN = 0x8020697e
constant SIOCSHIWAT (line 1240) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1241) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFALTMTU (line 1242) | SIOCSIFALTMTU = 0x80206945
constant SIOCSIFASYNCMAP (line 1243) | SIOCSIFASYNCMAP = 0x8020697d
constant SIOCSIFBOND (line 1244) | SIOCSIFBOND = 0x80206946
constant SIOCSIFBRDADDR (line 1245) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1246) | SIOCSIFCAP = 0x8020695a
constant SIOCSIFDSTADDR (line 1247) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1248) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1249) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFKPI (line 1250) | SIOCSIFKPI = 0x80206986
constant SIOCSIFLLADDR (line 1251) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMAC (line 1252) | SIOCSIFMAC = 0x80206983
constant SIOCSIFMEDIA (line 1253) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1254) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1255) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNETMASK (line 1256) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1257) | SIOCSIFPHYADDR = 0x8040693e
constant SIOCSIFPHYS (line 1258) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFVLAN (line 1259) | SIOCSIFVLAN = 0x8020697e
constant SIOCSLOWAT (line 1260) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1261) | SIOCSPGRP = 0x80047308
constant SOCK_DGRAM (line 1262) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1263) | SOCK_MAXADDRLEN = 0xff
constant SOCK_RAW (line 1264) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1265) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1266) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1267) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1268) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1269) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1270) | SO_ACCEPTCONN = 0x2
constant SO_BROADCAST (line 1271) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1272) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1273) | SO_DONTROUTE = 0x10
constant SO_DONTTRUNC (line 1274) | SO_DONTTRUNC = 0x2000
constant SO_ERROR (line 1275) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1276) | SO_KEEPALIVE = 0x8
constant SO_LABEL (line 1277) | SO_LABEL = 0x1010
constant SO_LINGER (line 1278) | SO_LINGER = 0x80
constant SO_LINGER_SEC (line 1279) | SO_LINGER_SEC = 0x1080
constant SO_NETSVC_MARKING_LEVEL (line 1280) | SO_NETSVC_MARKING_LEVEL = 0x1119
constant SO_NET_SERVICE_TYPE (line 1281) | SO_NET_SERVICE_TYPE = 0x1116
constant SO_NKE (line 1282) | SO_NKE = 0x1021
constant SO_NOADDRERR (line 1283) | SO_NOADDRERR = 0x1023
constant SO_NOSIGPIPE (line 1284) | SO_NOSIGPIPE = 0x1022
constant SO_NOTIFYCONFLICT (line 1285) | SO_NOTIFYCONFLICT = 0x1026
constant SO_NP_EXTENSIONS (line 1286) | SO_NP_EXTENSIONS = 0x1083
constant SO_NREAD (line 1287) | SO_NREAD = 0x1020
constant SO_NUMRCVPKT (line 1288) | SO_NUMRCVPKT = 0x1112
constant SO_NWRITE (line 1289) | SO_NWRITE = 0x1024
constant SO_OOBINLINE (line 1290) | SO_OOBINLINE = 0x100
constant SO_PEERLABEL (line 1291) | SO_PEERLABEL = 0x1011
constant SO_RANDOMPORT (line 1292) | SO_RANDOMPORT = 0x1082
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_REUSESHAREUID (line 1298) | SO_REUSESHAREUID = 0x1025
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_TIMESTAMP_MONOTONIC (line 1303) | SO_TIMESTAMP_MONOTONIC = 0x800
constant SO_TYPE (line 1304) | SO_TYPE = 0x1008
constant SO_UPCALLCLOSEWAIT (line 1305) | SO_UPCALLCLOSEWAIT = 0x1027
constant SO_USELOOPBACK (line 1306) | SO_USELOOPBACK = 0x40
constant SO_WANTMORE (line 1307) | SO_WANTMORE = 0x4000
constant SO_WANTOOBFLAG (line 1308) | SO_WANTOOBFLAG = 0x8000
constant S_IEXEC (line 1309) | S_IEXEC = 0x40
constant S_IFBLK (line 1310) | S_IFBLK = 0x6000
constant S_IFCHR (line 1311) | S_IFCHR = 0x2000
constant S_IFDIR (line 1312) | S_IFDIR = 0x4000
constant S_IFIFO (line 1313) | S_IFIFO = 0x1000
constant S_IFLNK (line 1314) | S_IFLNK = 0xa000
constant S_IFMT (line 1315) | S_IFMT = 0xf000
constant S_IFREG (line 1316) | S_IFREG = 0x8000
constant S_IFSOCK (line 1317) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1318) | S_IFWHT = 0xe000
constant S_IREAD (line 1319) | S_IREAD = 0x100
constant S_IRGRP (line 1320) | S_IRGRP = 0x20
constant S_IROTH (line 1321) | S_IROTH = 0x4
constant S_IRUSR (line 1322) | S_IRUSR = 0x100
constant S_IRWXG (line 1323) | S_IRWXG = 0x38
constant S_IRWXO (line 1324) | S_IRWXO = 0x7
constant S_IRWXU (line 1325) | S_IRWXU = 0x1c0
constant S_ISGID (line 1326) | S_ISGID = 0x400
constant S_ISTXT (line 1327) | S_ISTXT = 0x200
constant S_ISUID (line 1328) | S_ISUID = 0x800
constant S_ISVTX (line 1329) | S_ISVTX = 0x200
constant S_IWGRP (line 1330) | S_IWGRP = 0x10
constant S_IWOTH (line 1331) | S_IWOTH = 0x2
constant S_IWRITE (line 1332) | S_IWRITE = 0x80
constant S_IWUSR (line 1333) | S_IWUSR = 0x80
constant S_IXGRP (line 1334) | S_IXGRP = 0x8
constant S_IXOTH (line 1335) | S_IXOTH = 0x1
constant S_IXUSR (line 1336) | S_IXUSR = 0x40
constant TAB0 (line 1337) | TAB0 = 0x0
constant TAB1 (line 1338) | TAB1 = 0x400
constant TAB2 (line 1339) | TAB2 = 0x800
constant TAB3 (line 1340) | TAB3 = 0x4
constant TABDLY (line 1341) | TABDLY = 0xc04
constant TCIFLUSH (line 1342) | TCIFLUSH = 0x1
constant TCIOFF (line 1343) | TCIOFF = 0x3
constant TCIOFLUSH (line 1344) | TCIOFLUSH = 0x3
constant TCION (line 1345) | TCION = 0x4
constant TCOFLUSH (line 1346) | TCOFLUSH = 0x2
constant TCOOFF (line 1347) | TCOOFF = 0x1
constant TCOON (line 1348) | TCOON = 0x2
constant TCP_CONNECTIONTIMEOUT (line 1349) | TCP_CONNECTIONTIMEOUT = 0x20
constant TCP_CONNECTION_INFO (line 1350) | TCP_CONNECTION_INFO = 0x106
constant TCP_ENABLE_ECN (line 1351) | TCP_ENABLE_ECN = 0x104
constant TCP_FASTOPEN (line 1352) | TCP_FASTOPEN = 0x105
constant TCP_KEEPALIVE (line 1353) | TCP_KEEPALIVE = 0x10
constant TCP_KEEPCNT (line 1354) | TCP_KEEPCNT = 0x102
constant TCP_KEEPINTVL (line 1355) | TCP_KEEPINTVL = 0x101
constant TCP_MAXHLEN (line 1356) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1357) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1358) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1359) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1360) | TCP_MAX_SACK = 0x4
constant TCP_MAX_WINSHIFT (line 1361) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MINMSS (line 1362) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1363) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1364) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1365) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1366) | TCP_NOPUSH = 0x4
constant TCP_NOTSENT_LOWAT (line 1367) | TCP_NOTSENT_LOWAT = 0x201
constant TCP_RXT_CONNDROPTIME (line 1368) | TCP_RXT_CONNDROPTIME = 0x80
constant TCP_RXT_FINDROP (line 1369) | TCP_RXT_FINDROP = 0x100
constant TCP_SENDMOREACKS (line 1370) | TCP_SENDMOREACKS = 0x103
constant TCSAFLUSH (line 1371) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1372) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1373) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1374) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1375) | TIOCDCDTIMESTAMP = 0x40107458
constant TIOCDRAIN (line 1376) | TIOCDRAIN = 0x2000745e
constant TIOCDSIMICROCODE (line 1377) | TIOCDSIMICROCODE = 0x20007455
constant TIOCEXCL (line 1378) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1379) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1380) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1381) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1382) | TIOCGETA = 0x40487413
constant TIOCGETD (line 1383) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1384) | TIOCGPGRP = 0x40047477
constant TIOCGWINSZ (line 1385) | TIOCGWINSZ = 0x40087468
constant TIOCIXOFF (line 1386) | TIOCIXOFF = 0x20007480
constant TIOCIXON (line 1387) | TIOCIXON = 0x20007481
constant TIOCMBIC (line 1388) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1389) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1390) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1391) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1392) | TIOCMODG = 0x40047403
constant TIOCMODS (line 1393) | TIOCMODS = 0x80047404
constant TIOCMSDTRWAIT (line 1394) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1395) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1396) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1397) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1398) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1399) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1400) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1401) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1402) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1403) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1404) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1405) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1406) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1407) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1408) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1409) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1410) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1411) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1412) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1413) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1414) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1415) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1416) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1417) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1418) | TIOCPKT_STOP = 0x4
constant TIOCPTYGNAME (line 1419) | TIOCPTYGNAME = 0x40807453
constant TIOCPTYGRANT (line 1420) | TIOCPTYGRANT = 0x20007454
constant TIOCPTYUNLK (line 1421) | TIOCPTYUNLK = 0x20007452
constant TIOCREMOTE (line 1422) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1423) | TIOCSBRK = 0x2000747b
constant TIOCSCONS (line 1424) | TIOCSCONS = 0x20007463
constant TIOCSCTTY (line 1425) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1426) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1427) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1428) | TIOCSETA = 0x80487414
constant TIOCSETAF (line 1429) | TIOCSETAF = 0x80487416
constant TIOCSETAW (line 1430) | TIOCSETAW = 0x80487415
constant TIOCSETD (line 1431) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1432) | TIOCSIG = 0x2000745f
constant TIOCSPGRP (line 1433) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1434) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1435) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1436) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1437) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1438) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1439) | TIOCTIMESTAMP = 0x40107459
constant TIOCUCNTL (line 1440) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1441) | TOSTOP = 0x400000
constant VDISCARD (line 1442) | VDISCARD = 0xf
constant VDSUSP (line 1443) | VDSUSP = 0xb
constant VEOF (line 1444) | VEOF = 0x0
constant VEOL (line 1445) | VEOL = 0x1
constant VEOL2 (line 1446) | VEOL2 = 0x2
constant VERASE (line 1447) | VERASE = 0x3
constant VINTR (line 1448) | VINTR = 0x8
constant VKILL (line 1449) | VKILL = 0x5
constant VLNEXT (line 1450) | VLNEXT = 0xe
constant VMIN (line 1451) | VMIN = 0x10
constant VM_LOADAVG (line 1452) | VM_LOADAVG = 0x2
constant VM_MACHFACTOR (line 1453) | VM_MACHFACTOR = 0x4
constant VM_MAXID (line 1454) | VM_MAXID = 0x6
constant VM_METER (line 1455) | VM_METER = 0x1
constant VM_SWAPUSAGE (line 1456) | VM_SWAPUSAGE = 0x5
constant VQUIT (line 1457) | VQUIT = 0x9
constant VREPRINT (line 1458) | VREPRINT = 0x6
constant VSTART (line 1459) | VSTART = 0xc
constant VSTATUS (line 1460) | VSTATUS = 0x12
constant VSTOP (line 1461) | VSTOP = 0xd
constant VSUSP (line 1462) | VSUSP = 0xa
constant VT0 (line 1463) | VT0 = 0x0
constant VT1 (line 1464) | VT1 = 0x10000
constant VTDLY (line 1465) | VTDLY = 0x10000
constant VTIME (line 1466) | VTIME = 0x11
constant VWERASE (line 1467) | VWERASE = 0x4
constant WCONTINUED (line 1468) | WCONTINUED = 0x10
constant WCOREFLAG (line 1469) | WCOREFLAG = 0x80
constant WEXITED (line 1470) | WEXITED = 0x4
constant WNOHANG (line 1471) | WNOHANG = 0x1
constant WNOWAIT (line 1472) | WNOWAIT = 0x20
constant WORDSIZE (line 1473) | WORDSIZE = 0x40
constant WSTOPPED (line 1474) | WSTOPPED = 0x8
constant WUNTRACED (line 1475) | WUNTRACED = 0x2
constant XATTR_CREATE (line 1476) | XATTR_CREATE = 0x2
constant XATTR_NODEFAULT (line 1477) | XATTR_NODEFAULT = 0x10
constant XATTR_NOFOLLOW (line 1478) | XATTR_NOFOLLOW = 0x1
constant XATTR_NOSECURITY (line 1479) | XATTR_NOSECURITY = 0x8
constant XATTR_REPLACE (line 1480) | XATTR_REPLACE = 0x4
constant XATTR_SHOWCOMPRESSION (line 1481) | XATTR_SHOWCOMPRESSION = 0x20
constant E2BIG (line 1486) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1487) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1488) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1489) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1490) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1491) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1492) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1493) | EAUTH = syscall.Errno(0x50)
constant EBADARCH (line 1494) | EBADARCH = syscall.Errno(0x56)
constant EBADEXEC (line 1495) | EBADEXEC = syscall.Errno(0x55)
constant EBADF (line 1496) | EBADF = syscall.Errno(0x9)
constant EBADMACHO (line 1497) | EBADMACHO = syscall.Errno(0x58)
constant EBADMSG (line 1498) | EBADMSG = syscall.Errno(0x5e)
constant EBADRPC (line 1499) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1500) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1501) | ECANCELED = syscall.Errno(0x59)
constant ECHILD (line 1502) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1503) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1504) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1505) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1506) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1507) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDEVERR (line 1508) | EDEVERR = syscall.Errno(0x53)
constant EDOM (line 1509) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1510) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1511) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1512) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1513) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1514) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1515) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1516) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1517) | EIDRM = syscall.Errno(0x5a)
constant EILSEQ (line 1518) | EILSEQ = syscall.Errno(0x5c)
constant EINPROGRESS (line 1519) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1520) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1521) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1522) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1523) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1524) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1525) | ELAST = syscall.Errno(0x6a)
constant ELOOP (line 1526) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1527) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1528) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1529) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1530) | EMULTIHOP = syscall.Errno(0x5f)
constant ENAMETOOLONG (line 1531) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1532) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1533) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1534) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1535) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1536) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1537) | ENOATTR = syscall.Errno(0x5d)
constant ENOBUFS (line 1538) | ENOBUFS = syscall.Errno(0x37)
constant ENODATA (line 1539) | ENODATA = syscall.Errno(0x60)
constant ENODEV (line 1540) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1541) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1542) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1543) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1544) | ENOLINK = syscall.Errno(0x61)
constant ENOMEM (line 1545) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1546) | ENOMSG = syscall.Errno(0x5b)
constant ENOPOLICY (line 1547) | ENOPOLICY = syscall.Errno(0x67)
constant ENOPROTOOPT (line 1548) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1549) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1550) | ENOSR = syscall.Errno(0x62)
constant ENOSTR (line 1551) | ENOSTR = syscall.Errno(0x63)
constant ENOSYS (line 1552) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1553) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1554) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1555) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1556) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1557) | ENOTRECOVERABLE = syscall.Errno(0x68)
constant ENOTSOCK (line 1558) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1559) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1560) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1561) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1562) | EOPNOTSUPP = syscall.Errno(0x66)
constant EOVERFLOW (line 1563) | EOVERFLOW = syscall.Errno(0x54)
constant EOWNERDEAD (line 1564) | EOWNERDEAD = syscall.Errno(0x69)
constant EPERM (line 1565) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1566) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1567) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1568) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1569) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1570) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1571) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1572) | EPROTO = syscall.Errno(0x64)
constant EPROTONOSUPPORT (line 1573) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1574) | EPROTOTYPE = syscall.Errno(0x29)
constant EPWROFF (line 1575) | EPWROFF = syscall.Errno(0x52)
constant EQFULL (line 1576) | EQFULL = syscall.Errno(0x6a)
constant ERANGE (line 1577) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1578) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1579) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1580) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHLIBVERS (line 1581) | ESHLIBVERS = syscall.Errno(0x57)
constant ESHUTDOWN (line 1582) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1583) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1584) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1585) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1586) | ESTALE = syscall.Errno(0x46)
constant ETIME (line 1587) | ETIME = syscall.Errno(0x65)
constant ETIMEDOUT (line 1588) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1589) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1590) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1591) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1592) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1593) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1598) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1599) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1600) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1601) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1602) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1603) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1604) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1605) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1606) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1607) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1608) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1609) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1610) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1611) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1612) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1613) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1614) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1615) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1616) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1617) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1618) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1619) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1620) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1621) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1622) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1623) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1624) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1625) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1626) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1627) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1628) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1629) | 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 ATTR_BIT_MAP_COUNT (line 52) | ATTR_BIT_MAP_COUNT = 0x5
constant ATTR_CMN_ACCESSMASK (line 53) | ATTR_CMN_ACCESSMASK = 0x20000
constant ATTR_CMN_ACCTIME (line 54) | ATTR_CMN_ACCTIME = 0x1000
constant ATTR_CMN_ADDEDTIME (line 55) | ATTR_CMN_ADDEDTIME = 0x10000000
constant ATTR_CMN_BKUPTIME (line 56) | ATTR_CMN_BKUPTIME = 0x2000
constant ATTR_CMN_CHGTIME (line 57) | ATTR_CMN_CHGTIME = 0x800
constant ATTR_CMN_CRTIME (line 58) | ATTR_CMN_CRTIME = 0x200
constant ATTR_CMN_DATA_PROTECT_FLAGS (line 59) | ATTR_CMN_DATA_PROTECT_FLAGS = 0x40000000
constant ATTR_CMN_DEVID (line 60) | ATTR_CMN_DEVID = 0x2
constant ATTR_CMN_DOCUMENT_ID (line 61) | ATTR_CMN_DOCUMENT_ID = 0x100000
constant ATTR_CMN_ERROR (line 62) | ATTR_CMN_ERROR = 0x20000000
constant ATTR_CMN_EXTENDED_SECURITY (line 63) | ATTR_CMN_EXTENDED_SECURITY = 0x400000
constant ATTR_CMN_FILEID (line 64) | ATTR_CMN_FILEID = 0x2000000
constant ATTR_CMN_FLAGS (line 65) | ATTR_CMN_FLAGS = 0x40000
constant ATTR_CMN_FNDRINFO (line 66) | ATTR_CMN_FNDRINFO = 0x4000
constant ATTR_CMN_FSID (line 67) | ATTR_CMN_FSID = 0x4
constant ATTR_CMN_FULLPATH (line 68) | ATTR_CMN_FULLPATH = 0x8000000
constant ATTR_CMN_GEN_COUNT (line 69) | ATTR_CMN_GEN_COUNT = 0x80000
constant ATTR_CMN_GRPID (line 70) | ATTR_CMN_GRPID = 0x10000
constant ATTR_CMN_GRPUUID (line 71) | ATTR_CMN_GRPUUID = 0x1000000
constant ATTR_CMN_MODTIME (line 72) | ATTR_CMN_MODTIME = 0x400
constant ATTR_CMN_NAME (line 73) | ATTR_CMN_NAME = 0x1
constant ATTR_CMN_NAMEDATTRCOUNT (line 74) | ATTR_CMN_NAMEDATTRCOUNT = 0x80000
constant ATTR_CMN_NAMEDATTRLIST (line 75) | ATTR_CMN_NAMEDATTRLIST = 0x100000
constant ATTR_CMN_OBJID (line 76) | ATTR_CMN_OBJID = 0x20
constant ATTR_CMN_OBJPERMANENTID (line 77) | ATTR_CMN_OBJPERMANENTID = 0x40
constant ATTR_CMN_OBJTAG (line 78) | ATTR_CMN_OBJTAG = 0x10
constant ATTR_CMN_OBJTYPE (line 79) | ATTR_CMN_OBJTYPE = 0x8
constant ATTR_CMN_OWNERID (line 80) | ATTR_CMN_OWNERID = 0x8000
constant ATTR_CMN_PARENTID (line 81) | ATTR_CMN_PARENTID = 0x4000000
constant ATTR_CMN_PAROBJID (line 82) | ATTR_CMN_PAROBJID = 0x80
constant ATTR_CMN_RETURNED_ATTRS (line 83) | ATTR_CMN_RETURNED_ATTRS = 0x80000000
constant ATTR_CMN_SCRIPT (line 84) | ATTR_CMN_SCRIPT = 0x100
constant ATTR_CMN_SETMASK (line 85) | ATTR_CMN_SETMASK = 0x41c7ff00
constant ATTR_CMN_USERACCESS (line 86) | ATTR_CMN_USERACCESS = 0x200000
constant ATTR_CMN_UUID (line 87) | ATTR_CMN_UUID = 0x800000
constant ATTR_CMN_VALIDMASK (line 88) | ATTR_CMN_VALIDMASK = 0xffffffff
constant ATTR_CMN_VOLSETMASK (line 89) | ATTR_CMN_VOLSETMASK = 0x6700
constant ATTR_FILE_ALLOCSIZE (line 90) | ATTR_FILE_ALLOCSIZE = 0x4
constant ATTR_FILE_CLUMPSIZE (line 91) | ATTR_FILE_CLUMPSIZE = 0x10
constant ATTR_FILE_DATAALLOCSIZE (line 92) | ATTR_FILE_DATAALLOCSIZE = 0x400
constant ATTR_FILE_DATAEXTENTS (line 93) | ATTR_FILE_DATAEXTENTS = 0x800
constant ATTR_FILE_DATALENGTH (line 94) | ATTR_FILE_DATALENGTH = 0x200
constant ATTR_FILE_DEVTYPE (line 95) | ATTR_FILE_DEVTYPE = 0x20
constant ATTR_FILE_FILETYPE (line 96) | ATTR_FILE_FILETYPE = 0x40
constant ATTR_FILE_FORKCOUNT (line 97) | ATTR_FILE_FORKCOUNT = 0x80
constant ATTR_FILE_FORKLIST (line 98) | ATTR_FILE_FORKLIST = 0x100
constant ATTR_FILE_IOBLOCKSIZE (line 99) | ATTR_FILE_IOBLOCKSIZE = 0x8
constant ATTR_FILE_LINKCOUNT (line 100) | ATTR_FILE_LINKCOUNT = 0x1
constant ATTR_FILE_RSRCALLOCSIZE (line 101) | ATTR_FILE_RSRCALLOCSIZE = 0x2000
constant ATTR_FILE_RSRCEXTENTS (line 102) | ATTR_FILE_RSRCEXTENTS = 0x4000
constant ATTR_FILE_RSRCLENGTH (line 103) | ATTR_FILE_RSRCLENGTH = 0x1000
constant ATTR_FILE_SETMASK (line 104) | ATTR_FILE_SETMASK = 0x20
constant ATTR_FILE_TOTALSIZE (line 105) | ATTR_FILE_TOTALSIZE = 0x2
constant ATTR_FILE_VALIDMASK (line 106) | ATTR_FILE_VALIDMASK = 0x37ff
constant ATTR_VOL_ALLOCATIONCLUMP (line 107) | ATTR_VOL_ALLOCATIONCLUMP = 0x40
constant ATTR_VOL_ATTRIBUTES (line 108) | ATTR_VOL_ATTRIBUTES = 0x40000000
constant ATTR_VOL_CAPABILITIES (line 109) | ATTR_VOL_CAPABILITIES = 0x20000
constant ATTR_VOL_DIRCOUNT (line 110) | ATTR_VOL_DIRCOUNT = 0x400
constant ATTR_VOL_ENCODINGSUSED (line 111) | ATTR_VOL_ENCODINGSUSED = 0x10000
constant ATTR_VOL_FILECOUNT (line 112) | ATTR_VOL_FILECOUNT = 0x200
constant ATTR_VOL_FSTYPE (line 113) | ATTR_VOL_FSTYPE = 0x1
constant ATTR_VOL_INFO (line 114) | ATTR_VOL_INFO = 0x80000000
constant ATTR_VOL_IOBLOCKSIZE (line 115) | ATTR_VOL_IOBLOCKSIZE = 0x80
constant ATTR_VOL_MAXOBJCOUNT (line 116) | ATTR_VOL_MAXOBJCOUNT = 0x800
constant ATTR_VOL_MINALLOCATION (line 117) | ATTR_VOL_MINALLOCATION = 0x20
constant ATTR_VOL_MOUNTEDDEVICE (line 118) | ATTR_VOL_MOUNTEDDEVICE = 0x8000
constant ATTR_VOL_MOUNTFLAGS (line 119) | ATTR_VOL_MOUNTFLAGS = 0x4000
constant ATTR_VOL_MOUNTPOINT (line 120) | ATTR_VOL_MOUNTPOINT = 0x1000
constant ATTR_VOL_NAME (line 121) | ATTR_VOL_NAME = 0x2000
constant ATTR_VOL_OBJCOUNT (line 122) | ATTR_VOL_OBJCOUNT = 0x100
constant ATTR_VOL_QUOTA_SIZE (line 123) | ATTR_VOL_QUOTA_SIZE = 0x10000000
constant ATTR_VOL_RESERVED_SIZE (line 124) | ATTR_VOL_RESERVED_SIZE = 0x20000000
constant ATTR_VOL_SETMASK (line 125) | ATTR_VOL_SETMASK = 0x80002000
constant ATTR_VOL_SIGNATURE (line 126) | ATTR_VOL_SIGNATURE = 0x2
constant ATTR_VOL_SIZE (line 127) | ATTR_VOL_SIZE = 0x4
constant ATTR_VOL_SPACEAVAIL (line 128) | ATTR_VOL_SPACEAVAIL = 0x10
constant ATTR_VOL_SPACEFREE (line 129) | ATTR_VOL_SPACEFREE = 0x8
constant ATTR_VOL_UUID (line 130) | ATTR_VOL_UUID = 0x40000
constant ATTR_VOL_VALIDMASK (line 131) | ATTR_VOL_VALIDMASK = 0xf007ffff
constant B0 (line 132) | B0 = 0x0
constant B110 (line 133) | B110 = 0x6e
constant B115200 (line 134) | B115200 = 0x1c200
constant B1200 (line 135) | B1200 = 0x4b0
constant B134 (line 136) | B134 = 0x86
constant B14400 (line 137) | B14400 = 0x3840
constant B150 (line 138) | B150 = 0x96
constant B1800 (line 139) | B1800 = 0x708
constant B19200 (line 140) | B19200 = 0x4b00
constant B200 (line 141) | B200 = 0xc8
constant B230400 (line 142) | B230400 = 0x38400
constant B2400 (line 143) | B2400 = 0x960
constant B28800 (line 144) | B28800 = 0x7080
constant B300 (line 145) | B300 = 0x12c
constant B38400 (line 146) | B38400 = 0x9600
constant B4800 (line 147) | B4800 = 0x12c0
constant B50 (line 148) | B50 = 0x32
constant B57600 (line 149) | B57600 = 0xe100
constant B600 (line 150) | B600 = 0x258
constant B7200 (line 151) | B7200 = 0x1c20
constant B75 (line 152) | B75 = 0x4b
constant B76800 (line 153) | B76800 = 0x12c00
constant B9600 (line 154) | B9600 = 0x2580
constant BIOCFLUSH (line 155) | BIOCFLUSH = 0x20004268
constant BIOCGBLEN (line 156) | BIOCGBLEN = 0x40044266
constant BIOCGDLT (line 157) | BIOCGDLT = 0x4004426a
constant BIOCGDLTLIST (line 158) | BIOCGDLTLIST = 0xc00c4279
constant BIOCGETIF (line 159) | BIOCGETIF = 0x4020426b
constant BIOCGHDRCMPLT (line 160) | BIOCGHDRCMPLT = 0x40044274
constant BIOCGRSIG (line 161) | BIOCGRSIG = 0x40044272
constant BIOCGRTIMEOUT (line 162) | BIOCGRTIMEOUT = 0x4010426e
constant BIOCGSEESENT (line 163) | BIOCGSEESENT = 0x40044276
constant BIOCGSTATS (line 164) | BIOCGSTATS = 0x4008426f
constant BIOCIMMEDIATE (line 165) | BIOCIMMEDIATE = 0x80044270
constant BIOCPROMISC (line 166) | BIOCPROMISC = 0x20004269
constant BIOCSBLEN (line 167) | BIOCSBLEN = 0xc0044266
constant BIOCSDLT (line 168) | BIOCSDLT = 0x80044278
constant BIOCSETF (line 169) | BIOCSETF = 0x80104267
constant BIOCSETFNR (line 170) | BIOCSETFNR = 0x8010427e
constant BIOCSETIF (line 171) | BIOCSETIF = 0x8020426c
constant BIOCSHDRCMPLT (line 172) | BIOCSHDRCMPLT = 0x80044275
constant BIOCSRSIG (line 173) | BIOCSRSIG = 0x80044273
constant BIOCSRTIMEOUT (line 174) | BIOCSRTIMEOUT = 0x8010426d
constant BIOCSSEESENT (line 175) | BIOCSSEESENT = 0x80044277
constant BIOCVERSION (line 176) | BIOCVERSION = 0x40044271
constant BPF_A (line 177) | BPF_A = 0x10
constant BPF_ABS (line 178) | BPF_ABS = 0x20
constant BPF_ADD (line 179) | BPF_ADD = 0x0
constant BPF_ALIGNMENT (line 180) | BPF_ALIGNMENT = 0x4
constant BPF_ALU (line 181) | BPF_ALU = 0x4
constant BPF_AND (line 182) | BPF_AND = 0x50
constant BPF_B (line 183) | BPF_B = 0x10
constant BPF_DIV (line 184) | BPF_DIV = 0x30
constant BPF_H (line 185) | BPF_H = 0x8
constant BPF_IMM (line 186) | BPF_IMM = 0x0
constant BPF_IND (line 187) | BPF_IND = 0x40
constant BPF_JA (line 188) | BPF_JA = 0x0
constant BPF_JEQ (line 189) | BPF_JEQ = 0x10
constant BPF_JGE (line 190) | BPF_JGE = 0x30
constant BPF_JGT (line 191) | BPF_JGT = 0x20
constant BPF_JMP (line 192) | BPF_JMP = 0x5
constant BPF_JSET (line 193) | BPF_JSET = 0x40
constant BPF_K (line 194) | BPF_K = 0x0
constant BPF_LD (line 195) | BPF_LD = 0x0
constant BPF_LDX (line 196) | BPF_LDX = 0x1
constant BPF_LEN (line 197) | BPF_LEN = 0x80
constant BPF_LSH (line 198) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 199) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXBUFSIZE (line 200) | BPF_MAXBUFSIZE = 0x80000
constant BPF_MAXINSNS (line 201) | BPF_MAXINSNS = 0x200
constant BPF_MEM (line 202) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 203) | BPF_MEMWORDS = 0x10
constant BPF_MINBUFSIZE (line 204) | BPF_MINBUFSIZE = 0x20
constant BPF_MINOR_VERSION (line 205) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 206) | BPF_MISC = 0x7
constant BPF_MSH (line 207) | BPF_MSH = 0xa0
constant BPF_MUL (line 208) | BPF_MUL = 0x20
constant BPF_NEG (line 209) | BPF_NEG = 0x80
constant BPF_OR (line 210) | BPF_OR = 0x40
constant BPF_RELEASE (line 211) | BPF_RELEASE = 0x30bb6
constant BPF_RET (line 212) | BPF_RET = 0x6
constant BPF_RSH (line 213) | BPF_RSH = 0x70
constant BPF_ST (line 214) | BPF_ST = 0x2
constant BPF_STX (line 215) | BPF_STX = 0x3
constant BPF_SUB (line 216) | BPF_SUB = 0x10
constant BPF_TAX (line 217) | BPF_TAX = 0x0
constant BPF_TXA (line 218) | BPF_TXA = 0x80
constant BPF_W (line 219) | BPF_W = 0x0
constant BPF_X (line 220) | BPF_X = 0x8
constant BRKINT (line 221) | BRKINT = 0x2
constant BS0 (line 222) | BS0 = 0x0
constant BS1 (line 223) | BS1 = 0x8000
constant BSDLY (line 224) | BSDLY = 0x8000
constant CFLUSH (line 225) | CFLUSH = 0xf
constant CLOCAL (line 226) | CLOCAL = 0x8000
constant CLOCK_MONOTONIC (line 227) | CLOCK_MONOTONIC = 0x6
constant CLOCK_MONOTONIC_RAW (line 228) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_MONOTONIC_RAW_APPROX (line 229) | CLOCK_MONOTONIC_RAW_APPROX = 0x5
constant CLOCK_PROCESS_CPUTIME_ID (line 230) | CLOCK_PROCESS_CPUTIME_ID = 0xc
constant CLOCK_REALTIME (line 231) | CLOCK_REALTIME = 0x0
constant CLOCK_THREAD_CPUTIME_ID (line 232) | CLOCK_THREAD_CPUTIME_ID = 0x10
constant CLOCK_UPTIME_RAW (line 233) | CLOCK_UPTIME_RAW = 0x8
constant CLOCK_UPTIME_RAW_APPROX (line 234) | CLOCK_UPTIME_RAW_APPROX = 0x9
constant CR0 (line 235) | CR0 = 0x0
constant CR1 (line 236) | CR1 = 0x1000
constant CR2 (line 237) | CR2 = 0x2000
constant CR3 (line 238) | CR3 = 0x3000
constant CRDLY (line 239) | CRDLY = 0x3000
constant CREAD (line 240) | CREAD = 0x800
constant CRTSCTS (line 241) | CRTSCTS = 0x30000
constant CS5 (line 242) | CS5 = 0x0
constant CS6 (line 243) | CS6 = 0x100
constant CS7 (line 244) | CS7 = 0x200
constant CS8 (line 245) | CS8 = 0x300
constant CSIZE (line 246) | CSIZE = 0x300
constant CSTART (line 247) | CSTART = 0x11
constant CSTATUS (line 248) | CSTATUS = 0x14
constant CSTOP (line 249) | CSTOP = 0x13
constant CSTOPB (line 250) | CSTOPB = 0x400
constant CSUSP (line 251) | CSUSP = 0x1a
constant CTL_HW (line 252) | CTL_HW = 0x6
constant CTL_KERN (line 253) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 254) | CTL_MAXNAME = 0xc
constant CTL_NET (line 255) | CTL_NET = 0x4
constant DLT_A429 (line 256) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 257) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 258) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 259) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 260) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 261) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 262) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 263) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 264) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 265) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 266) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 267) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 268) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_HCI_H4 (line 269) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 270) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_CAN20B (line 271) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 272) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 273) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 274) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 275) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 276) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 277) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DBUS (line 278) | DLT_DBUS = 0xe7
constant DLT_DECT (line 279) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 280) | DLT_DOCSIS = 0x8f
constant DLT_DVB_CI (line 281) | DLT_DVB_CI = 0xeb
constant DLT_ECONET (line 282) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 283) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 284) | DLT_EN3MB = 0x2
constant DLT_ENC (line 285) | DLT_ENC = 0x6d
constant DLT_ERF (line 286) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 287) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 288) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 289) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 290) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 291) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 292) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 293) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 294) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 295) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 296) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 297) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 298) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 299) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 300) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 301) | DLT_GSMTAP_UM = 0xd9
constant DLT_HHDLC (line 302) | DLT_HHDLC = 0x79
constant DLT_IBM_SN (line 303) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 304) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 305) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 306) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 307) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 308) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 309) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 310) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NOFCS (line 311) | DLT_IEEE802_15_4_NOFCS = 0xe6
constant DLT_IEEE802_15_4_NONASK_PHY (line 312) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 313) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 314) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPFILTER (line 315) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 316) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 317) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPNET (line 318) | DLT_IPNET = 0xe2
constant DLT_IPOIB (line 319) | DLT_IPOIB = 0xf2
constant DLT_IPV4 (line 320) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 321) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 322) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 323) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 324) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_ATM_CEMIC (line 325) | DLT_JUNIPER_ATM_CEMIC = 0xee
constant DLT_JUNIPER_CHDLC (line 326) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 327) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 328) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FIBRECHANNEL (line 329) | DLT_JUNIPER_FIBRECHANNEL = 0xea
constant DLT_JUNIPER_FRELAY (line 330) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 331) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 332) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 333) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 334) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 335) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 336) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 337) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 338) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 339) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 340) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 341) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_SRX_E2E (line 342) | DLT_JUNIPER_SRX_E2E = 0xe9
constant DLT_JUNIPER_ST (line 343) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 344) | DLT_JUNIPER_VP = 0xb7
constant DLT_JUNIPER_VS (line 345) | DLT_JUNIPER_VS = 0xe8
constant DLT_LAPB_WITH_DIR (line 346) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 347) | DLT_LAPD = 0xcb
constant DLT_LIN (line 348) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 349) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 350) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 351) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_PPP_WITHDIRECTION (line 352) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6
constant DLT_LINUX_SLL (line 353) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 354) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 355) | DLT_LTALK = 0x72
constant DLT_MATCHING_MAX (line 356) | DLT_MATCHING_MAX = 0xf5
constant DLT_MATCHING_MIN (line 357) | DLT_MATCHING_MIN = 0x68
constant DLT_MFR (line 358) | DLT_MFR = 0xb6
constant DLT_MOST (line 359) | DLT_MOST = 0xd3
constant DLT_MPEG_2_TS (line 360) | DLT_MPEG_2_TS = 0xf3
constant DLT_MPLS (line 361) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 362) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 363) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 364) | DLT_MTP3 = 0x8d
constant DLT_MUX27010 (line 365) | DLT_MUX27010 = 0xec
constant DLT_NETANALYZER (line 366) | DLT_NETANALYZER = 0xf0
constant DLT_NETANALYZER_TRANSPARENT (line 367) | DLT_NETANALYZER_TRANSPARENT = 0xf1
constant DLT_NFC_LLCP (line 368) | DLT_NFC_LLCP = 0xf5
constant DLT_NFLOG (line 369) | DLT_NFLOG = 0xef
constant DLT_NG40 (line 370) | DLT_NG40 = 0xf4
constant DLT_NULL (line 371) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 372) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 373) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 374) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 375) | DLT_PPI = 0xc0
constant DLT_PPP (line 376) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 377) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 378) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 379) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 380) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 381) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PPP_WITH_DIRECTION (line 382) | DLT_PPP_WITH_DIRECTION = 0xa6
constant DLT_PRISM_HEADER (line 383) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 384) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 385) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 386) | DLT_RAW = 0xc
constant DLT_RIO (line 387) | DLT_RIO = 0x7c
constant DLT_SCCP (line 388) | DLT_SCCP = 0x8e
constant DLT_SITA (line 389) | DLT_SITA = 0xc4
constant DLT_SLIP (line 390) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 391) | DLT_SLIP_BSDOS = 0xf
constant DLT_STANAG_5066_D_PDU (line 392) | DLT_STANAG_5066_D_PDU = 0xed
constant DLT_SUNATM (line 393) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 394) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 395) | DLT_TZSP = 0x80
constant DLT_USB (line 396) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 397) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 398) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_USER0 (line 399) | DLT_USER0 = 0x93
constant DLT_USER1 (line 400) | DLT_USER1 = 0x94
constant DLT_USER10 (line 401) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 402) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 403) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 404) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 405) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 406) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 407) | DLT_USER2 = 0x95
constant DLT_USER3 (line 408) | DLT_USER3 = 0x96
constant DLT_USER4 (line 409) | DLT_USER4 = 0x97
constant DLT_USER5 (line 410) | DLT_USER5 = 0x98
constant DLT_USER6 (line 411) | DLT_USER6 = 0x99
constant DLT_USER7 (line 412) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 413) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 414) | DLT_USER9 = 0x9c
constant DLT_WIHART (line 415) | DLT_WIHART = 0xdf
constant DLT_X2E_SERIAL (line 416) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 417) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 418) | DT_BLK = 0x6
constant DT_CHR (line 419) | DT_CHR = 0x2
constant DT_DIR (line 420) | DT_DIR = 0x4
constant DT_FIFO (line 421) | DT_FIFO = 0x1
constant DT_LNK (line 422) | DT_LNK = 0xa
constant DT_REG (line 423) | DT_REG = 0x8
constant DT_SOCK (line 424) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 425) | DT_UNKNOWN = 0x0
constant DT_WHT (line 426) | DT_WHT = 0xe
constant ECHO (line 427) | ECHO = 0x8
constant ECHOCTL (line 428) | ECHOCTL = 0x40
constant ECHOE (line 429) | ECHOE = 0x2
constant ECHOK (line 430) | ECHOK = 0x4
constant ECHOKE (line 431) | ECHOKE = 0x1
constant ECHONL (line 432) | ECHONL = 0x10
constant ECHOPRT (line 433) | ECHOPRT = 0x20
constant EVFILT_AIO (line 434) | EVFILT_AIO = -0x3
constant EVFILT_EXCEPT (line 435) | EVFILT_EXCEPT = -0xf
constant EVFILT_FS (line 436) | EVFILT_FS = -0x9
constant EVFILT_MACHPORT (line 437) | EVFILT_MACHPORT = -0x8
constant EVFILT_PROC (line 438) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 439) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 440) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 441) | EVFILT_SYSCOUNT = 0xf
constant EVFILT_THREADMARKER (line 442) | EVFILT_THREADMARKER = 0xf
constant EVFILT_TIMER (line 443) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 444) | EVFILT_USER = -0xa
constant EVFILT_VM (line 445) | EVFILT_VM = -0xc
constant EVFILT_VNODE (line 446) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 447) | EVFILT_WRITE = -0x2
constant EV_ADD (line 448) | EV_ADD = 0x1
constant EV_CLEAR (line 449) | EV_CLEAR = 0x20
constant EV_DELETE (line 450) | EV_DELETE = 0x2
constant EV_DISABLE (line 451) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 452) | EV_DISPATCH = 0x80
constant EV_DISPATCH2 (line 453) | EV_DISPATCH2 = 0x180
constant EV_ENABLE (line 454) | EV_ENABLE = 0x4
constant EV_EOF (line 455) | EV_EOF = 0x8000
constant EV_ERROR (line 456) | EV_ERROR = 0x4000
constant EV_FLAG0 (line 457) | EV_FLAG0 = 0x1000
constant EV_FLAG1 (line 458) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 459) | EV_ONESHOT = 0x10
constant EV_OOBAND (line 460) | EV_OOBAND = 0x2000
constant EV_POLL (line 461) | EV_POLL = 0x1000
constant EV_RECEIPT (line 462) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 463) | EV_SYSFLAGS = 0xf000
constant EV_UDATA_SPECIFIC (line 464) | EV_UDATA_SPECIFIC = 0x100
constant EV_VANISHED (line 465) | EV_VANISHED = 0x200
constant EXTA (line 466) | EXTA = 0x4b00
constant EXTB (line 467) | EXTB = 0x9600
constant EXTPROC (line 468) | EXTPROC = 0x800
constant FD_CLOEXEC (line 469) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 470) | FD_SETSIZE = 0x400
constant FF0 (line 471) | FF0 = 0x0
constant FF1 (line 472) | FF1 = 0x4000
constant FFDLY (line 473) | FFDLY = 0x4000
constant FLUSHO (line 474) | FLUSHO = 0x800000
constant FSOPT_ATTR_CMN_EXTENDED (line 475) | FSOPT_ATTR_CMN_EXTENDED = 0x20
constant FSOPT_NOFOLLOW (line 476) | FSOPT_NOFOLLOW = 0x1
constant FSOPT_NOINMEMUPDATE (line 477) | FSOPT_NOINMEMUPDATE = 0x2
constant FSOPT_PACK_INVAL_ATTRS (line 478) | FSOPT_PACK_INVAL_ATTRS = 0x8
constant FSOPT_REPORT_FULLSIZE (line 479) | FSOPT_REPORT_FULLSIZE = 0x4
constant F_ADDFILESIGS (line 480) | F_ADDFILESIGS = 0x3d
constant F_ADDFILESIGS_FOR_DYLD_SIM (line 481) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53
constant F_ADDFILESIGS_RETURN (line 482) | F_ADDFILESIGS_RETURN = 0x61
constant F_ADDSIGS (line 483) | F_ADDSIGS = 0x3b
constant F_ALLOCATEALL (line 484) | F_ALLOCATEALL = 0x4
constant F_ALLOCATECONTIG (line 485) | F_ALLOCATECONTIG = 0x2
constant F_BARRIERFSYNC (line 486) | F_BARRIERFSYNC = 0x55
constant F_CHECK_LV (line 487) | F_CHECK_LV = 0x62
constant F_CHKCLEAN (line 488) | F_CHKCLEAN = 0x29
constant F_DUPFD (line 489) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 490) | F_DUPFD_CLOEXEC = 0x43
constant F_FINDSIGS (line 491) | F_FINDSIGS = 0x4e
constant F_FLUSH_DATA (line 492) | F_FLUSH_DATA = 0x28
constant F_FREEZE_FS (line 493) | F_FREEZE_FS = 0x35
constant F_FULLFSYNC (line 494) | F_FULLFSYNC = 0x33
constant F_GETCODEDIR (line 495) | F_GETCODEDIR = 0x48
constant F_GETFD (line 496) | F_GETFD = 0x1
constant F_GETFL (line 497) | F_GETFL = 0x3
constant F_GETLK (line 498) | F_GETLK = 0x7
constant F_GETLKPID (line 499) | F_GETLKPID = 0x42
constant F_GETNOSIGPIPE (line 500) | F_GETNOSIGPIPE = 0x4a
constant F_GETOWN (line 501) | F_GETOWN = 0x5
constant F_GETPATH (line 502) | F_GETPATH = 0x32
constant F_GETPATH_MTMINFO (line 503) | F_GETPATH_MTMINFO = 0x47
constant F_GETPROTECTIONCLASS (line 504) | F_GETPROTECTIONCLASS = 0x3f
constant F_GETPROTECTIONLEVEL (line 505) | F_GETPROTECTIONLEVEL = 0x4d
constant F_GLOBAL_NOCACHE (line 506) | F_GLOBAL_NOCACHE = 0x37
constant F_LOG2PHYS (line 507) | F_LOG2PHYS = 0x31
constant F_LOG2PHYS_EXT (line 508) | F_LOG2PHYS_EXT = 0x41
constant F_NOCACHE (line 509) | F_NOCACHE = 0x30
constant F_NODIRECT (line 510) | F_NODIRECT = 0x3e
constant F_OK (line 511) | F_OK = 0x0
constant F_PATHPKG_CHECK (line 512) | F_PATHPKG_CHECK = 0x34
constant F_PEOFPOSMODE (line 513) | F_PEOFPOSMODE = 0x3
constant F_PREALLOCATE (line 514) | F_PREALLOCATE = 0x2a
constant F_PUNCHHOLE (line 515) | F_PUNCHHOLE = 0x63
constant F_RDADVISE (line 516) | F_RDADVISE = 0x2c
constant F_RDAHEAD (line 517) | F_RDAHEAD = 0x2d
constant F_RDLCK (line 518) | F_RDLCK = 0x1
constant F_SETBACKINGSTORE (line 519) | F_SETBACKINGSTORE = 0x46
constant F_SETFD (line 520) | F_SETFD = 0x2
constant F_SETFL (line 521) | F_SETFL = 0x4
constant F_SETLK (line 522) | F_SETLK = 0x8
constant F_SETLKW (line 523) | F_SETLKW = 0x9
constant F_SETLKWTIMEOUT (line 524) | F_SETLKWTIMEOUT = 0xa
constant F_SETNOSIGPIPE (line 525) | F_SETNOSIGPIPE = 0x49
constant F_SETOWN (line 526) | F_SETOWN = 0x6
constant F_SETPROTECTIONCLASS (line 527) | F_SETPROTECTIONCLASS = 0x40
constant F_SETSIZE (line 528) | F_SETSIZE = 0x2b
constant F_SINGLE_WRITER (line 529) | F_SINGLE_WRITER = 0x4c
constant F_THAW_FS (line 530) | F_THAW_FS = 0x36
constant F_TRANSCODEKEY (line 531) | F_TRANSCODEKEY = 0x4b
constant F_TRIM_ACTIVE_FILE (line 532) | F_TRIM_ACTIVE_FILE = 0x64
constant F_UNLCK (line 533) | F_UNLCK = 0x2
constant F_VOLPOSMODE (line 534) | F_VOLPOSMODE = 0x4
constant F_WRLCK (line 535) | F_WRLCK = 0x3
constant HUPCL (line 536) | HUPCL = 0x4000
constant HW_MACHINE (line 537) | HW_MACHINE = 0x1
constant ICANON (line 538) | ICANON = 0x100
constant ICMP6_FILTER (line 539) | ICMP6_FILTER = 0x12
constant ICRNL (line 540) | ICRNL = 0x100
constant IEXTEN (line 541) | IEXTEN = 0x400
constant IFF_ALLMULTI (line 542) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 543) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 544) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 545) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 546) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 547) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 548) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 549) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 550) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 551) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 552) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 553) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 554) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 555) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 556) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 557) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 558) | IFF_UP = 0x1
constant IFNAMSIZ (line 559) | IFNAMSIZ = 0x10
constant IFT_1822 (line 560) | IFT_1822 = 0x2
constant IFT_AAL5 (line 561) | IFT_AAL5 = 0x31
constant IFT_ARCNET (line 562) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 563) | IFT_ARCNETPLUS = 0x24
constant IFT_ATM (line 564) | IFT_ATM = 0x25
constant IFT_BRIDGE (line 565) | IFT_BRIDGE = 0xd1
constant IFT_CARP (line 566) | IFT_CARP = 0xf8
constant IFT_CELLULAR (line 567) | IFT_CELLULAR = 0xff
constant IFT_CEPT (line 568) | IFT_CEPT = 0x13
constant IFT_DS3 (line 569) | IFT_DS3 = 0x1e
constant IFT_ENC (line 570) | IFT_ENC = 0xf4
constant IFT_EON (line 571) | IFT_EON = 0x19
constant IFT_ETHER (line 572) | IFT_ETHER = 0x6
constant IFT_FAITH (line 573) | IFT_FAITH = 0x38
constant IFT_FDDI (line 574) | IFT_FDDI = 0xf
constant IFT_FRELAY (line 575) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 576) | IFT_FRELAYDCE = 0x2c
constant IFT_GIF (line 577) | IFT_GIF = 0x37
constant IFT_HDH1822 (line 578) | IFT_HDH1822 = 0x3
constant IFT_HIPPI (line 579) | IFT_HIPPI = 0x2f
constant IFT_HSSI (line 580) | IFT_HSSI = 0x2e
constant IFT_HY (line 581) | IFT_HY = 0xe
constant IFT_IEEE1394 (line 582) | IFT_IEEE1394 = 0x90
constant IFT_IEEE8023ADLAG (line 583) | IFT_IEEE8023ADLAG = 0x88
constant IFT_ISDNBASIC (line 584) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 585) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISO88022LLC (line 586) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 587) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 588) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 589) | IFT_ISO88025 = 0x9
constant IFT_ISO88026 (line 590) | IFT_ISO88026 = 0xa
constant IFT_L2VLAN (line 591) | IFT_L2VLAN = 0x87
constant IFT_LAPB (line 592) | IFT_LAPB = 0x10
constant IFT_LOCALTALK (line 593) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 594) | IFT_LOOP = 0x18
constant IFT_MIOX25 (line 595) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 596) | IFT_MODEM = 0x30
constant IFT_NSIP (line 597) | IFT_NSIP = 0x1b
constant IFT_OTHER (line 598) | IFT_OTHER = 0x1
constant IFT_P10 (line 599) | IFT_P10 = 0xc
constant IFT_P80 (line 600) | IFT_P80 = 0xd
constant IFT_PARA (line 601) | IFT_PARA = 0x22
constant IFT_PDP (line 602) | IFT_PDP = 0xff
constant IFT_PFLOG (line 603) | IFT_PFLOG = 0xf5
constant IFT_PFSYNC (line 604) | IFT_PFSYNC = 0xf6
constant IFT_PKTAP (line 605) | IFT_PKTAP = 0xfe
constant IFT_PPP (line 606) | IFT_PPP = 0x17
constant IFT_PROPMUX (line 607) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 608) | IFT_PROPVIRTUAL = 0x35
constant IFT_PTPSERIAL (line 609) | IFT_PTPSERIAL = 0x16
constant IFT_RS232 (line 610) | IFT_RS232 = 0x21
constant IFT_SDLC (line 611) | IFT_SDLC = 0x11
constant IFT_SIP (line 612) | IFT_SIP = 0x1f
constant IFT_SLIP (line 613) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 614) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 615) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 616) | IFT_SONET = 0x27
constant IFT_SONETPATH (line 617) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 618) | IFT_SONETVT = 0x33
constant IFT_STARLAN (line 619) | IFT_STARLAN = 0xb
constant IFT_STF (line 620) | IFT_STF = 0x39
constant IFT_T1 (line 621) | IFT_T1 = 0x12
constant IFT_ULTRA (line 622) | IFT_ULTRA = 0x1d
constant IFT_V35 (line 623) | IFT_V35 = 0x2d
constant IFT_X25 (line 624) | IFT_X25 = 0x5
constant IFT_X25DDN (line 625) | IFT_X25DDN = 0x4
constant IFT_X25PLE (line 626) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 627) | IFT_XETHER = 0x1a
constant IGNBRK (line 628) | IGNBRK = 0x1
constant IGNCR (line 629) | IGNCR = 0x80
constant IGNPAR (line 630) | IGNPAR = 0x4
constant IMAXBEL (line 631) | IMAXBEL = 0x2000
constant INLCR (line 632) | INLCR = 0x40
constant INPCK (line 633) | INPCK = 0x10
constant IN_CLASSA_HOST (line 634) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 635) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 636) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 637) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 638) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 639) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 640) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 641) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 642) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 643) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 644) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 645) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 646) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 647) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LINKLOCALNETNUM (line 648) | IN_LINKLOCALNETNUM = 0xa9fe0000
constant IN_LOOPBACKNET (line 649) | IN_LOOPBACKNET = 0x7f
constant IPPROTO_3PC (line 650) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 651) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 652) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 653) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 654) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 655) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 656) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 657) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 658) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 659) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CFTP (line 660) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 661) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 662) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 663) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 664) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 665) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 666) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 667) | IPPROTO_DIVERT = 0xfe
constant IPPROTO_DONE (line 668) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 669) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 670) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 671) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 672) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 673) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 674) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 675) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 676) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 677) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 678) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 679) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 680) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HMP (line 681) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 682) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 683) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 684) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 685) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 686) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 687) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 688) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 689) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 690) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 691) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 692) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 693) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 694) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 695) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 696) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 697) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 698) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 699) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 700) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 701) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 702) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 703) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 704) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 705) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 706) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 707) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 708) | IPPROTO_MAXID = 0x34
constant IPPROTO_MEAS (line 709) | IPPROTO_MEAS = 0x13
constant IPPROTO_MHRP (line 710) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 711) | IPPROTO_MICP = 0x5f
constant IPPROTO_MTP (line 712) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 713) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 714) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 715) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 716) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 717) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 718) | IPPROTO_NVPII = 0xb
constant IPPROTO_OSPFIGP (line 719) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PGM (line 720) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 721) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 722) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 723) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 724) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 725) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 726) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 727) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 728) | IPPROTO_RDP = 0x1b
constant IPPROTO_ROUTING (line 729) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 730) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 731) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 732) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 733) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 734) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SCTP (line 735) | IPPROTO_SCTP = 0x84
constant IPPROTO_SDRP (line 736) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEP (line 737) | IPPROTO_SEP = 0x21
constant IPPROTO_SRPC (line 738) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 739) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 740) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 741) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 742) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 743) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 744) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 745) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 746) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 747) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 748) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 749) | IPPROTO_UDP = 0x11
constant IPPROTO_VINES (line 750) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 751) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 752) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 753) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 754) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 755) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 756) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 757) | IPPROTO_XTP = 0x24
constant IPV6_2292DSTOPTS (line 758) | IPV6_2292DSTOPTS = 0x17
constant IPV6_2292HOPLIMIT (line 759) | IPV6_2292HOPLIMIT = 0x14
constant IPV6_2292HOPOPTS (line 760) | IPV6_2292HOPOPTS = 0x16
constant IPV6_2292NEXTHOP (line 761) | IPV6_2292NEXTHOP = 0x15
constant IPV6_2292PKTINFO (line 762) | IPV6_2292PKTINFO = 0x13
constant IPV6_2292PKTOPTIONS (line 763) | IPV6_2292PKTOPTIONS = 0x19
constant IPV6_2292RTHDR (line 764) | IPV6_2292RTHDR = 0x18
constant IPV6_BINDV6ONLY (line 765) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_BOUND_IF (line 766) | IPV6_BOUND_IF = 0x7d
constant IPV6_CHECKSUM (line 767) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 768) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 769) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 770) | IPV6_DEFHLIM = 0x40
constant IPV6_FAITH (line 771) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 772) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 773) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FLOW_ECN_MASK (line 774) | IPV6_FLOW_ECN_MASK = 0x300
constant IPV6_FRAGTTL (line 775) | IPV6_FRAGTTL = 0x3c
constant IPV6_FW_ADD (line 776) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 777) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 778) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 779) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 780) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 781) | IPV6_HLIMDEC = 0x1
constant IPV6_IPSEC_POLICY (line 782) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 783) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 784) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 785) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXOPTHDR (line 786) | IPV6_MAXOPTHDR = 0x800
constant IPV6_MAXPACKET (line 787) | IPV6_MAXPACKET = 0xffff
constant IPV6_MAX_GROUP_SRC_FILTER (line 788) | IPV6_MAX_GROUP_SRC_FILTER = 0x200
constant IPV6_MAX_MEMBERSHIPS (line 789) | IPV6_MAX_MEMBERSHIPS = 0xfff
constant IPV6_MAX_SOCK_SRC_FILTER (line 790) | IPV6_MAX_SOCK_SRC_FILTER = 0x80
constant IPV6_MIN_MEMBERSHIPS (line 791) | IPV6_MIN_MEMBERSHIPS = 0x1f
constant IPV6_MMTU (line 792) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 793) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 794) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 795) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_PORTRANGE (line 796) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 797) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 798) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 799) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVTCLASS (line 800) | IPV6_RECVTCLASS = 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 = 0x24
constant IPV6_UNICAST_HOPS (line 806) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_V6ONLY (line 807) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 808) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 809) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 810) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 811) | IP_ADD_SOURCE_MEMBERSHIP = 0x46
constant IP_BLOCK_SOURCE (line 812) | IP_BLOCK_SOURCE = 0x48
constant IP_BOUND_IF (line 813) | IP_BOUND_IF = 0x19
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_DROP_MEMBERSHIP (line 817) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 818) | IP_DROP_SOURCE_MEMBERSHIP = 0x47
constant IP_DUMMYNET_CONFIGURE (line 819) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 820) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 821) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 822) | IP_DUMMYNET_GET = 0x40
constant IP_FAITH (line 823) | IP_FAITH = 0x16
constant IP_FW_ADD (line 824) | IP_FW_ADD = 0x28
constant IP_FW_DEL (line 825) | IP_FW_DEL = 0x29
constant IP_FW_FLUSH (line 826) | IP_FW_FLUSH = 0x2a
constant IP_FW_GET (line 827) | IP_FW_GET = 0x2c
constant IP_FW_RESETLOG (line 828) | IP_FW_RESETLOG = 0x2d
constant IP_FW_ZERO (line 829) | IP_FW_ZERO = 0x2b
constant IP_HDRINCL (line 830) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 831) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 832) | IP_MAXPACKET = 0xffff
constant IP_MAX_GROUP_SRC_FILTER (line 833) | IP_MAX_GROUP_SRC_FILTER = 0x200
constant IP_MAX_MEMBERSHIPS (line 834) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MAX_SOCK_MUTE_FILTER (line 835) | IP_MAX_SOCK_MUTE_FILTER = 0x80
constant IP_MAX_SOCK_SRC_FILTER (line 836) | IP_MAX_SOCK_SRC_FILTER = 0x80
constant IP_MF (line 837) | IP_MF = 0x2000
constant IP_MIN_MEMBERSHIPS (line 838) | IP_MIN_MEMBERSHIPS = 0x1f
constant IP_MSFILTER (line 839) | IP_MSFILTER = 0x4a
constant IP_MSS (line 840) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 841) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_IFINDEX (line 842) | IP_MULTICAST_IFINDEX = 0x42
constant IP_MULTICAST_LOOP (line 843) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 844) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 845) | IP_MULTICAST_VIF = 0xe
constant IP_NAT__XXX (line 846) | IP_NAT__XXX = 0x37
constant IP_OFFMASK (line 847) | IP_OFFMASK = 0x1fff
constant IP_OLD_FW_ADD (line 848) | IP_OLD_FW_ADD = 0x32
constant IP_OLD_FW_DEL (line 849) | IP_OLD_FW_DEL = 0x33
constant IP_OLD_FW_FLUSH (line 850) | IP_OLD_FW_FLUSH = 0x34
constant IP_OLD_FW_GET (line 851) | IP_OLD_FW_GET = 0x36
constant IP_OLD_FW_RESETLOG (line 852) | IP_OLD_FW_RESETLOG = 0x38
constant IP_OLD_FW_ZERO (line 853) | IP_OLD_FW_ZERO = 0x35
constant IP_OPTIONS (line 854) | IP_OPTIONS = 0x1
constant IP_PKTINFO (line 855) | IP_PKTINFO = 0x1a
constant IP_PORTRANGE (line 856) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 857) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 858) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 859) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 860) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 861) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 862) | IP_RECVOPTS = 0x5
constant IP_RECVPKTINFO (line 863) | IP_RECVPKTINFO = 0x1a
constant IP_RECVRETOPTS (line 864) | IP_RECVRETOPTS = 0x6
constant IP_RECVTOS (line 865) | IP_RECVTOS = 0x1b
constant IP_RECVTTL (line 866) | IP_RECVTTL = 0x18
constant IP_RETOPTS (line 867) | IP_RETOPTS = 0x8
constant IP_RF (line 868) | IP_RF = 0x8000
constant IP_RSVP_OFF (line 869) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 870) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 871) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 872) | IP_RSVP_VIF_ON = 0x11
constant IP_STRIPHDR (line 873) | IP_STRIPHDR = 0x17
constant IP_TOS (line 874) | IP_TOS = 0x3
constant IP_TRAFFIC_MGT_BACKGROUND (line 875) | IP_TRAFFIC_MGT_BACKGROUND = 0x41
constant IP_TTL (line 876) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 877) | IP_UNBLOCK_SOURCE = 0x49
constant ISIG (line 878) | ISIG = 0x80
constant ISTRIP (line 879) | ISTRIP = 0x20
constant IUTF8 (line 880) | IUTF8 = 0x4000
constant IXANY (line 881) | IXANY = 0x800
constant IXOFF (line 882) | IXOFF = 0x400
constant IXON (line 883) | IXON = 0x200
constant KERN_HOSTNAME (line 884) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 885) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 886) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 887) | KERN_VERSION = 0x4
constant LOCK_EX (line 888) | LOCK_EX = 0x2
constant LOCK_NB (line 889) | LOCK_NB = 0x4
constant LOCK_SH (line 890) | LOCK_SH = 0x1
constant LOCK_UN (line 891) | LOCK_UN = 0x8
constant MADV_CAN_REUSE (line 892) | MADV_CAN_REUSE = 0x9
constant MADV_DONTNEED (line 893) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 894) | MADV_FREE = 0x5
constant MADV_FREE_REUSABLE (line 895) | MADV_FREE_REUSABLE = 0x7
constant MADV_FREE_REUSE (line 896) | MADV_FREE_REUSE = 0x8
constant MADV_NORMAL (line 897) | MADV_NORMAL = 0x0
constant MADV_PAGEOUT (line 898) | MADV_PAGEOUT = 0xa
constant MADV_RANDOM (line 899) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 900) | MADV_SEQUENTIAL = 0x2
constant MADV_WILLNEED (line 901) | MADV_WILLNEED = 0x3
constant MADV_ZERO_WIRED_PAGES (line 902) | MADV_ZERO_WIRED_PAGES = 0x6
constant MAP_ANON (line 903) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 904) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 905) | MAP_COPY = 0x2
constant MAP_FILE (line 906) | MAP_FILE = 0x0
constant MAP_FIXED (line 907) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 908) | MAP_HASSEMAPHORE = 0x200
constant MAP_JIT (line 909) | MAP_JIT = 0x800
constant MAP_NOCACHE (line 910) | MAP_NOCACHE = 0x400
constant MAP_NOEXTEND (line 911) | MAP_NOEXTEND = 0x100
constant MAP_NORESERVE (line 912) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 913) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 914) | MAP_RENAME = 0x20
constant MAP_RESERVED0080 (line 915) | MAP_RESERVED0080 = 0x80
constant MAP_RESILIENT_CODESIGN (line 916) | MAP_RESILIENT_CODESIGN = 0x2000
constant MAP_RESILIENT_MEDIA (line 917) | MAP_RESILIENT_MEDIA = 0x4000
constant MAP_SHARED (line 918) | MAP_SHARED = 0x1
constant MCL_CURRENT (line 919) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 920) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 921) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 922) | MNT_AUTOMOUNTED = 0x400000
constant MNT_CMDFLAGS (line 923) | MNT_CMDFLAGS = 0xf0000
constant MNT_CPROTECT (line 924) | MNT_CPROTECT = 0x80
constant MNT_DEFWRITE (line 925) | MNT_DEFWRITE = 0x2000000
constant MNT_DONTBROWSE (line 926) | MNT_DONTBROWSE = 0x100000
constant MNT_DOVOLFS (line 927) | MNT_DOVOLFS = 0x8000
constant MNT_DWAIT (line 928) | MNT_DWAIT = 0x4
constant MNT_EXPORTED (line 929) | MNT_EXPORTED = 0x100
constant MNT_FORCE (line 930) | MNT_FORCE = 0x80000
constant MNT_IGNORE_OWNERSHIP (line 931) | MNT_IGNORE_OWNERSHIP = 0x200000
constant MNT_JOURNALED (line 932) | MNT_JOURNALED = 0x800000
constant MNT_LOCAL (line 933) | MNT_LOCAL = 0x1000
constant MNT_MULTILABEL (line 934) | MNT_MULTILABEL = 0x4000000
constant MNT_NOATIME (line 935) | MNT_NOATIME = 0x10000000
constant MNT_NOBLOCK (line 936) | MNT_NOBLOCK = 0x20000
constant MNT_NODEV (line 937) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 938) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 939) | MNT_NOSUID = 0x8
constant MNT_NOUSERXATTR (line 940) | MNT_NOUSERXATTR = 0x1000000
constant MNT_NOWAIT (line 941) | MNT_NOWAIT = 0x2
constant MNT_QUARANTINE (line 942) | MNT_QUARANTINE = 0x400
constant MNT_QUOTA (line 943) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 944) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 945) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 946) | MNT_ROOTFS = 0x4000
constant MNT_SYNCHRONOUS (line 947) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 948) | MNT_UNION = 0x20
constant MNT_UNKNOWNPERMISSIONS (line 949) | MNT_UNKNOWNPERMISSIONS = 0x200000
constant MNT_UPDATE (line 950) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 951) | MNT_VISFLAGMASK = 0x17f0f5ff
constant MNT_WAIT (line 952) | MNT_WAIT = 0x1
constant MSG_CTRUNC (line 953) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 954) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 955) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 956) | MSG_EOF = 0x100
constant MSG_EOR (line 957) | MSG_EOR = 0x8
constant MSG_FLUSH (line 958) | MSG_FLUSH = 0x400
constant MSG_HAVEMORE (line 959) | MSG_HAVEMORE = 0x2000
constant MSG_HOLD (line 960) | MSG_HOLD = 0x800
constant MSG_NEEDSA (line 961) | MSG_NEEDSA = 0x10000
constant MSG_OOB (line 962) | MSG_OOB = 0x1
constant MSG_PEEK (line 963) | MSG_PEEK = 0x2
constant MSG_RCVMORE (line 964) | MSG_RCVMORE = 0x4000
constant MSG_SEND (line 965) | MSG_SEND = 0x1000
constant MSG_TRUNC (line 966) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 967) | MSG_WAITALL = 0x40
constant MSG_WAITSTREAM (line 968) | MSG_WAITSTREAM = 0x200
constant MS_ASYNC (line 969) | MS_ASYNC = 0x1
constant MS_DEACTIVATE (line 970) | MS_DEACTIVATE = 0x8
constant MS_INVALIDATE (line 971) | MS_INVALIDATE = 0x2
constant MS_KILLPAGES (line 972) | MS_KILLPAGES = 0x4
constant MS_SYNC (line 973) | MS_SYNC = 0x10
constant NAME_MAX (line 974) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 975) | NET_RT_DUMP = 0x1
constant NET_RT_DUMP2 (line 976) | NET_RT_DUMP2 = 0x7
constant NET_RT_FLAGS (line 977) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 978) | NET_RT_IFLIST = 0x3
constant NET_RT_IFLIST2 (line 979) | NET_RT_IFLIST2 = 0x6
constant NET_RT_MAXID (line 980) | NET_RT_MAXID = 0xa
constant NET_RT_STAT (line 981) | NET_RT_STAT = 0x4
constant NET_RT_TRASH (line 982) | NET_RT_TRASH = 0x5
constant NL0 (line 983) | NL0 = 0x0
constant NL1 (line 984) | NL1 = 0x100
constant NL2 (line 985) | NL2 = 0x200
constant NL3 (line 986) | NL3 = 0x300
constant NLDLY (line 987) | NLDLY = 0x300
constant NOFLSH (line 988) | NOFLSH = 0x80000000
constant NOKERNINFO (line 989) | NOKERNINFO = 0x2000000
constant NOTE_ABSOLUTE (line 990) | NOTE_ABSOLUTE = 0x8
constant NOTE_ATTRIB (line 991) | NOTE_ATTRIB = 0x8
constant NOTE_BACKGROUND (line 992) | NOTE_BACKGROUND = 0x40
constant NOTE_CHILD (line 993) | NOTE_CHILD = 0x4
constant NOTE_CRITICAL (line 994) | NOTE_CRITICAL = 0x20
constant NOTE_DELETE (line 995) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 996) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 997) | NOTE_EXIT = 0x80000000
constant NOTE_EXITSTATUS (line 998) | NOTE_EXITSTATUS = 0x4000000
constant NOTE_EXIT_CSERROR (line 999) | NOTE_EXIT_CSERROR = 0x40000
constant NOTE_EXIT_DECRYPTFAIL (line 1000) | NOTE_EXIT_DECRYPTFAIL = 0x10000
constant NOTE_EXIT_DETAIL (line 1001) | NOTE_EXIT_DETAIL = 0x2000000
constant NOTE_EXIT_DETAIL_MASK (line 1002) | NOTE_EXIT_DETAIL_MASK = 0x70000
constant NOTE_EXIT_MEMORY (line 1003) | NOTE_EXIT_MEMORY = 0x20000
constant NOTE_EXIT_REPARENTED (line 1004) | NOTE_EXIT_REPARENTED = 0x80000
constant NOTE_EXTEND (line 1005) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 1006) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 1007) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 1008) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 1009) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 1010) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 1011) | NOTE_FFOR = 0x80000000
constant NOTE_FORK (line 1012) | NOTE_FORK = 0x40000000
constant NOTE_FUNLOCK (line 1013) | NOTE_FUNLOCK = 0x100
constant NOTE_LEEWAY (line 1014) | NOTE_LEEWAY = 0x10
constant NOTE_LINK (line 1015) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1016) | NOTE_LOWAT = 0x1
constant NOTE_MACH_CONTINUOUS_TIME (line 1017) | NOTE_MACH_CONTINUOUS_TIME = 0x80
constant NOTE_NONE (line 1018) | NOTE_NONE = 0x80
constant NOTE_NSECONDS (line 1019) | NOTE_NSECONDS = 0x4
constant NOTE_OOB (line 1020) | NOTE_OOB = 0x2
constant NOTE_PCTRLMASK (line 1021) | NOTE_PCTRLMASK = -0x100000
constant NOTE_PDATAMASK (line 1022) | NOTE_PDATAMASK = 0xfffff
constant NOTE_REAP (line 1023) | NOTE_REAP = 0x10000000
constant NOTE_RENAME (line 1024) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1025) | NOTE_REVOKE = 0x40
constant NOTE_SECONDS (line 1026) | NOTE_SECONDS = 0x1
constant NOTE_SIGNAL (line 1027) | NOTE_SIGNAL = 0x8000000
constant NOTE_TRACK (line 1028) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1029) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 1030) | NOTE_TRIGGER = 0x1000000
constant NOTE_USECONDS (line 1031) | NOTE_USECONDS = 0x2
constant NOTE_VM_ERROR (line 1032) | NOTE_VM_ERROR = 0x10000000
constant NOTE_VM_PRESSURE (line 1033) | NOTE_VM_PRESSURE = 0x80000000
constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 1034) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000
constant NOTE_VM_PRESSURE_TERMINATE (line 1035) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000
constant NOTE_WRITE (line 1036) | NOTE_WRITE = 0x2
constant OCRNL (line 1037) | OCRNL = 0x10
constant OFDEL (line 1038) | OFDEL = 0x20000
constant OFILL (line 1039) | OFILL = 0x80
constant ONLCR (line 1040) | ONLCR = 0x2
constant ONLRET (line 1041) | ONLRET = 0x40
constant ONOCR (line 1042) | ONOCR = 0x20
constant ONOEOT (line 1043) | ONOEOT = 0x8
constant OPOST (line 1044) | OPOST = 0x1
constant OXTABS (line 1045) | OXTABS = 0x4
constant O_ACCMODE (line 1046) | O_ACCMODE = 0x3
constant O_ALERT (line 1047) | O_ALERT = 0x20000000
constant O_APPEND (line 1048) | O_APPEND = 0x8
constant O_ASYNC (line 1049) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1050) | O_CLOEXEC = 0x1000000
constant O_CREAT (line 1051) | O_CREAT = 0x200
constant O_DIRECTORY (line 1052) | O_DIRECTORY = 0x100000
constant O_DP_GETRAWENCRYPTED (line 1053) | O_DP_GETRAWENCRYPTED = 0x1
constant O_DP_GETRAWUNENCRYPTED (line 1054) | O_DP_GETRAWUNENCRYPTED = 0x2
constant O_DSYNC (line 1055) | O_DSYNC = 0x400000
constant O_EVTONLY (line 1056) | O_EVTONLY = 0x8000
constant O_EXCL (line 1057) | O_EXCL = 0x800
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 = 0x20000
constant O_NOFOLLOW (line 1062) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1063) | O_NONBLOCK = 0x4
constant O_POPUP (line 1064) | O_POPUP = 0x80000000
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_SYMLINK (line 1068) | O_SYMLINK = 0x200000
constant O_SYNC (line 1069) | O_SYNC = 0x80
constant O_TRUNC (line 1070) | O_TRUNC = 0x400
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 PT_ATTACH (line 1083) | PT_ATTACH = 0xa
constant PT_ATTACHEXC (line 1084) | PT_ATTACHEXC = 0xe
constant PT_CONTINUE (line 1085) | PT_CONTINUE = 0x7
constant PT_DENY_ATTACH (line 1086) | PT_DENY_ATTACH = 0x1f
constant PT_DETACH (line 1087) | PT_DETACH = 0xb
constant PT_FIRSTMACH (line 1088) | PT_FIRSTMACH = 0x20
constant PT_FORCEQUOTA (line 1089) | PT_FORCEQUOTA = 0x1e
constant PT_KILL (line 1090) | PT_KILL = 0x8
constant PT_READ_D (line 1091) | PT_READ_D = 0x2
constant PT_READ_I (line 1092) | PT_READ_I = 0x1
constant PT_READ_U (line 1093) | PT_READ_U = 0x3
constant PT_SIGEXC (line 1094) | PT_SIGEXC = 0xc
constant PT_STEP (line 1095) | PT_STEP = 0x9
constant PT_THUPDATE (line 1096) | PT_THUPDATE = 0xd
constant PT_TRACE_ME (line 1097) | PT_TRACE_ME = 0x0
constant PT_WRITE_D (line 1098) | PT_WRITE_D = 0x5
constant PT_WRITE_I (line 1099) | PT_WRITE_I = 0x4
constant PT_WRITE_U (line 1100) | PT_WRITE_U = 0x6
constant RLIMIT_AS (line 1101) | RLIMIT_AS = 0x5
constant RLIMIT_CORE (line 1102) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1103) | RLIMIT_CPU = 0x0
constant RLIMIT_CPU_USAGE_MONITOR (line 1104) | RLIMIT_CPU_USAGE_MONITOR = 0x2
constant RLIMIT_DATA (line 1105) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1106) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1107) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1108) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1109) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1110) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1111) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1112) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1113) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1114) | RTAX_BRD = 0x7
constant RTAX_DST (line 1115) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1116) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1117) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1118) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1119) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1120) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 1121) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1122) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1123) | RTA_BRD = 0x80
constant RTA_DST (line 1124) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1125) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1126) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1127) | RTA_IFA = 0x20
constant RTA_IFP (line 1128) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1129) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1130) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1131) | RTF_BROADCAST = 0x400000
constant RTF_CLONING (line 1132) | RTF_CLONING = 0x100
constant RTF_CONDEMNED (line 1133) | RTF_CONDEMNED = 0x2000000
constant RTF_DELCLONE (line 1134) | RTF_DELCLONE = 0x80
constant RTF_DONE (line 1135) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1136) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1137) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1138) | RTF_HOST = 0x4
constant RTF_IFREF (line 1139) | RTF_IFREF = 0x4000000
constant RTF_IFSCOPE (line 1140) | RTF_IFSCOPE = 0x1000000
constant RTF_LLINFO (line 1141) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1142) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1143) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 1144) | RTF_MULTICAST = 0x800000
constant RTF_NOIFREF (line 1145) | RTF_NOIFREF = 0x2000
constant RTF_PINNED (line 1146) | RTF_PINNED = 0x100000
constant RTF_PRCLONING (line 1147) | RTF_PRCLONING = 0x10000
constant RTF_PROTO1 (line 1148) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1149) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1150) | RTF_PROTO3 = 0x40000
constant RTF_PROXY (line 1151) | RTF_PROXY = 0x8000000
constant RTF_REJECT (line 1152) | RTF_REJECT = 0x8
constant RTF_ROUTER (line 1153) | RTF_ROUTER = 0x10000000
constant RTF_STATIC (line 1154) | RTF_STATIC = 0x800
constant RTF_UP (line 1155) | RTF_UP = 0x1
constant RTF_WASCLONED (line 1156) | RTF_WASCLONED = 0x20000
constant RTF_XRESOLVE (line 1157) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1158) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1159) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1160) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1161) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1162) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1163) | RTM_GET = 0x4
constant RTM_GET2 (line 1164) | RTM_GET2 = 0x14
constant RTM_IFINFO (line 1165) | RTM_IFINFO = 0xe
constant RTM_IFINFO2 (line 1166) | RTM_IFINFO2 = 0x12
constant RTM_LOCK (line 1167) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1168) | RTM_LOSING = 0x5
constant RTM_MISS (line 1169) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1170) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1171) | RTM_NEWMADDR = 0xf
constant RTM_NEWMADDR2 (line 1172) | RTM_NEWMADDR2 = 0x13
constant RTM_OLDADD (line 1173) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1174) | RTM_OLDDEL = 0xa
constant RTM_REDIRECT (line 1175) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1176) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1177) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1178) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1179) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1180) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1181) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1182) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1183) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1184) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1185) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1186) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1187) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1188) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1189) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1190) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1191) | SCM_TIMESTAMP = 0x2
constant SCM_TIMESTAMP_MONOTONIC (line 1192) | SCM_TIMESTAMP_MONOTONIC = 0x4
constant SHUT_RD (line 1193) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1194) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1195) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1196) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1197) | SIOCAIFADDR = 0x8040691a
constant SIOCARPIPLL (line 1198) | SIOCARPIPLL = 0xc0206928
constant SIOCATMARK (line 1199) | SIOCATMARK = 0x40047307
constant SIOCAUTOADDR (line 1200) | SIOCAUTOADDR = 0xc0206926
constant SIOCAUTONETMASK (line 1201) | SIOCAUTONETMASK = 0x80206927
constant SIOCDELMULTI (line 1202) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1203) | SIOCDIFADDR = 0x80206919
constant SIOCDIFPHYADDR (line 1204) | SIOCDIFPHYADDR = 0x80206941
constant SIOCGDRVSPEC (line 1205) | SIOCGDRVSPEC = 0xc028697b
constant SIOCGETVLAN (line 1206) | SIOCGETVLAN = 0xc020697f
constant SIOCGHIWAT (line 1207) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1208) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFALTMTU (line 1209) | SIOCGIFALTMTU = 0xc0206948
constant SIOCGIFASYNCMAP (line 1210) | SIOCGIFASYNCMAP = 0xc020697c
constant SIOCGIFBOND (line 1211) | SIOCGIFBOND = 0xc0206947
constant SIOCGIFBRDADDR (line 1212) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1213) | SIOCGIFCAP = 0xc020695b
constant SIOCGIFCONF (line 1214) | SIOCGIFCONF = 0xc00c6924
constant SIOCGIFDEVMTU (line 1215) | SIOCGIFDEVMTU = 0xc0206944
constant SIOCGIFDSTADDR (line 1216) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1217) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1218) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFKPI (line 1219) | SIOCGIFKPI = 0xc0206987
constant SIOCGIFMAC (line 1220) | SIOCGIFMAC = 0xc0206982
constant SIOCGIFMEDIA (line 1221) | SIOCGIFMEDIA = 0xc02c6938
constant SIOCGIFMETRIC (line 1222) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1223) | SIOCGIFMTU = 0xc0206933
constant SIOCGIFNETMASK (line 1224) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1225) | SIOCGIFPDSTADDR = 0xc0206940
constant SIOCGIFPHYS (line 1226) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPSRCADDR (line 1227) | SIOCGIFPSRCADDR = 0xc020693f
constant SIOCGIFSTATUS (line 1228) | SIOCGIFSTATUS = 0xc331693d
constant SIOCGIFVLAN (line 1229) | SIOCGIFVLAN = 0xc020697f
constant SIOCGIFWAKEFLAGS (line 1230) | SIOCGIFWAKEFLAGS = 0xc0206988
constant SIOCGLOWAT (line 1231) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1232) | SIOCGPGRP = 0x40047309
constant SIOCIFCREATE (line 1233) | SIOCIFCREATE = 0xc0206978
constant SIOCIFCREATE2 (line 1234) | SIOCIFCREATE2 = 0xc020697a
constant SIOCIFDESTROY (line 1235) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1236) | SIOCIFGCLONERS = 0xc0106981
constant SIOCRSLVMULTI (line 1237) | SIOCRSLVMULTI = 0xc010693b
constant SIOCSDRVSPEC (line 1238) | SIOCSDRVSPEC = 0x8028697b
constant SIOCSETVLAN (line 1239) | SIOCSETVLAN = 0x8020697e
constant SIOCSHIWAT (line 1240) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1241) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFALTMTU (line 1242) | SIOCSIFALTMTU = 0x80206945
constant SIOCSIFASYNCMAP (line 1243) | SIOCSIFASYNCMAP = 0x8020697d
constant SIOCSIFBOND (line 1244) | SIOCSIFBOND = 0x80206946
constant SIOCSIFBRDADDR (line 1245) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1246) | SIOCSIFCAP = 0x8020695a
constant SIOCSIFDSTADDR (line 1247) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1248) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1249) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFKPI (line 1250) | SIOCSIFKPI = 0x80206986
constant SIOCSIFLLADDR (line 1251) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMAC (line 1252) | SIOCSIFMAC = 0x80206983
constant SIOCSIFMEDIA (line 1253) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1254) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1255) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNETMASK (line 1256) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1257) | SIOCSIFPHYADDR = 0x8040693e
constant SIOCSIFPHYS (line 1258) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFVLAN (line 1259) | SIOCSIFVLAN = 0x8020697e
constant SIOCSLOWAT (line 1260) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1261) | SIOCSPGRP = 0x80047308
constant SOCK_DGRAM (line 1262) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1263) | SOCK_MAXADDRLEN = 0xff
constant SOCK_RAW (line 1264) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1265) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1266) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1267) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1268) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1269) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1270) | SO_ACCEPTCONN = 0x2
constant SO_BROADCAST (line 1271) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1272) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1273) | SO_DONTROUTE = 0x10
constant SO_DONTTRUNC (line 1274) | SO_DONTTRUNC = 0x2000
constant SO_ERROR (line 1275) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1276) | SO_KEEPALIVE = 0x8
constant SO_LABEL (line 1277) | SO_LABEL = 0x1010
constant SO_LINGER (line 1278) | SO_LINGER = 0x80
constant SO_LINGER_SEC (line 1279) | SO_LINGER_SEC = 0x1080
constant SO_NETSVC_MARKING_LEVEL (line 1280) | SO_NETSVC_MARKING_LEVEL = 0x1119
constant SO_NET_SERVICE_TYPE (line 1281) | SO_NET_SERVICE_TYPE = 0x1116
constant SO_NKE (line 1282) | SO_NKE = 0x1021
constant SO_NOADDRERR (line 1283) | SO_NOADDRERR = 0x1023
constant SO_NOSIGPIPE (line 1284) | SO_NOSIGPIPE = 0x1022
constant SO_NOTIFYCONFLICT (line 1285) | SO_NOTIFYCONFLICT = 0x1026
constant SO_NP_EXTENSIONS (line 1286) | SO_NP_EXTENSIONS = 0x1083
constant SO_NREAD (line 1287) | SO_NREAD = 0x1020
constant SO_NUMRCVPKT (line 1288) | SO_NUMRCVPKT = 0x1112
constant SO_NWRITE (line 1289) | SO_NWRITE = 0x1024
constant SO_OOBINLINE (line 1290) | SO_OOBINLINE = 0x100
constant SO_PEERLABEL (line 1291) | SO_PEERLABEL = 0x1011
constant SO_RANDOMPORT (line 1292) | SO_RANDOMPORT = 0x1082
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_REUSESHAREUID (line 1298) | SO_REUSESHAREUID = 0x1025
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_TIMESTAMP_MONOTONIC (line 1303) | SO_TIMESTAMP_MONOTONIC = 0x800
constant SO_TYPE (line 1304) | SO_TYPE = 0x1008
constant SO_UPCALLCLOSEWAIT (line 1305) | SO_UPCALLCLOSEWAIT = 0x1027
constant SO_USELOOPBACK (line 1306) | SO_USELOOPBACK = 0x40
constant SO_WANTMORE (line 1307) | SO_WANTMORE = 0x4000
constant SO_WANTOOBFLAG (line 1308) | SO_WANTOOBFLAG = 0x8000
constant S_IEXEC (line 1309) | S_IEXEC = 0x40
constant S_IFBLK (line 1310) | S_IFBLK = 0x6000
constant S_IFCHR (line 1311) | S_IFCHR = 0x2000
constant S_IFDIR (line 1312) | S_IFDIR = 0x4000
constant S_IFIFO (line 1313) | S_IFIFO = 0x1000
constant S_IFLNK (line 1314) | S_IFLNK = 0xa000
constant S_IFMT (line 1315) | S_IFMT = 0xf000
constant S_IFREG (line 1316) | S_IFREG = 0x8000
constant S_IFSOCK (line 1317) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1318) | S_IFWHT = 0xe000
constant S_IREAD (line 1319) | S_IREAD = 0x100
constant S_IRGRP (line 1320) | S_IRGRP = 0x20
constant S_IROTH (line 1321) | S_IROTH = 0x4
constant S_IRUSR (line 1322) | S_IRUSR = 0x100
constant S_IRWXG (line 1323) | S_IRWXG = 0x38
constant S_IRWXO (line 1324) | S_IRWXO = 0x7
constant S_IRWXU (line 1325) | S_IRWXU = 0x1c0
constant S_ISGID (line 1326) | S_ISGID = 0x400
constant S_ISTXT (line 1327) | S_ISTXT = 0x200
constant S_ISUID (line 1328) | S_ISUID = 0x800
constant S_ISVTX (line 1329) | S_ISVTX = 0x200
constant S_IWGRP (line 1330) | S_IWGRP = 0x10
constant S_IWOTH (line 1331) | S_IWOTH = 0x2
constant S_IWRITE (line 1332) | S_IWRITE = 0x80
constant S_IWUSR (line 1333) | S_IWUSR = 0x80
constant S_IXGRP (line 1334) | S_IXGRP = 0x8
constant S_IXOTH (line 1335) | S_IXOTH = 0x1
constant S_IXUSR (line 1336) | S_IXUSR = 0x40
constant TAB0 (line 1337) | TAB0 = 0x0
constant TAB1 (line 1338) | TAB1 = 0x400
constant TAB2 (line 1339) | TAB2 = 0x800
constant TAB3 (line 1340) | TAB3 = 0x4
constant TABDLY (line 1341) | TABDLY = 0xc04
constant TCIFLUSH (line 1342) | TCIFLUSH = 0x1
constant TCIOFF (line 1343) | TCIOFF = 0x3
constant TCIOFLUSH (line 1344) | TCIOFLUSH = 0x3
constant TCION (line 1345) | TCION = 0x4
constant TCOFLUSH (line 1346) | TCOFLUSH = 0x2
constant TCOOFF (line 1347) | TCOOFF = 0x1
constant TCOON (line 1348) | TCOON = 0x2
constant TCP_CONNECTIONTIMEOUT (line 1349) | TCP_CONNECTIONTIMEOUT = 0x20
constant TCP_CONNECTION_INFO (line 1350) | TCP_CONNECTION_INFO = 0x106
constant TCP_ENABLE_ECN (line 1351) | TCP_ENABLE_ECN = 0x104
constant TCP_FASTOPEN (line 1352) | TCP_FASTOPEN = 0x105
constant TCP_KEEPALIVE (line 1353) | TCP_KEEPALIVE = 0x10
constant TCP_KEEPCNT (line 1354) | TCP_KEEPCNT = 0x102
constant TCP_KEEPINTVL (line 1355) | TCP_KEEPINTVL = 0x101
constant TCP_MAXHLEN (line 1356) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1357) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1358) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1359) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1360) | TCP_MAX_SACK = 0x4
constant TCP_MAX_WINSHIFT (line 1361) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MINMSS (line 1362) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1363) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1364) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1365) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1366) | TCP_NOPUSH = 0x4
constant TCP_NOTSENT_LOWAT (line 1367) | TCP_NOTSENT_LOWAT = 0x201
constant TCP_RXT_CONNDROPTIME (line 1368) | TCP_RXT_CONNDROPTIME = 0x80
constant TCP_RXT_FINDROP (line 1369) | TCP_RXT_FINDROP = 0x100
constant TCP_SENDMOREACKS (line 1370) | TCP_SENDMOREACKS = 0x103
constant TCSAFLUSH (line 1371) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1372) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1373) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1374) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1375) | TIOCDCDTIMESTAMP = 0x40107458
constant TIOCDRAIN (line 1376) | TIOCDRAIN = 0x2000745e
constant TIOCDSIMICROCODE (line 1377) | TIOCDSIMICROCODE = 0x20007455
constant TIOCEXCL (line 1378) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1379) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1380) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1381) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1382) | TIOCGETA = 0x40487413
constant TIOCGETD (line 1383) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1384) | TIOCGPGRP = 0x40047477
constant TIOCGWINSZ (line 1385) | TIOCGWINSZ = 0x40087468
constant TIOCIXOFF (line 1386) | TIOCIXOFF = 0x20007480
constant TIOCIXON (line 1387) | TIOCIXON = 0x20007481
constant TIOCMBIC (line 1388) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1389) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1390) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1391) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1392) | TIOCMODG = 0x40047403
constant TIOCMODS (line 1393) | TIOCMODS = 0x80047404
constant TIOCMSDTRWAIT (line 1394) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1395) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1396) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1397) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1398) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1399) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1400) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1401) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1402) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1403) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1404) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1405) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1406) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1407) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1408) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1409) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1410) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1411) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1412) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1413) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1414) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1415) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1416) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1417) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1418) | TIOCPKT_STOP = 0x4
constant TIOCPTYGNAME (line 1419) | TIOCPTYGNAME = 0x40807453
constant TIOCPTYGRANT (line 1420) | TIOCPTYGRANT = 0x20007454
constant TIOCPTYUNLK (line 1421) | TIOCPTYUNLK = 0x20007452
constant TIOCREMOTE (line 1422) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1423) | TIOCSBRK = 0x2000747b
constant TIOCSCONS (line 1424) | TIOCSCONS = 0x20007463
constant TIOCSCTTY (line 1425) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1426) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1427) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1428) | TIOCSETA = 0x80487414
constant TIOCSETAF (line 1429) | TIOCSETAF = 0x80487416
constant TIOCSETAW (line 1430) | TIOCSETAW = 0x80487415
constant TIOCSETD (line 1431) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1432) | TIOCSIG = 0x2000745f
constant TIOCSPGRP (line 1433) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1434) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1435) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1436) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1437) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1438) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1439) | TIOCTIMESTAMP = 0x40107459
constant TIOCUCNTL (line 1440) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1441) | TOSTOP = 0x400000
constant VDISCARD (line 1442) | VDISCARD = 0xf
constant VDSUSP (line 1443) | VDSUSP = 0xb
constant VEOF (line 1444) | VEOF = 0x0
constant VEOL (line 1445) | VEOL = 0x1
constant VEOL2 (line 1446) | VEOL2 = 0x2
constant VERASE (line 1447) | VERASE = 0x3
constant VINTR (line 1448) | VINTR = 0x8
constant VKILL (line 1449) | VKILL = 0x5
constant VLNEXT (line 1450) | VLNEXT = 0xe
constant VMIN (line 1451) | VMIN = 0x10
constant VM_LOADAVG (line 1452) | VM_LOADAVG = 0x2
constant VM_MACHFACTOR (line 1453) | VM_MACHFACTOR = 0x4
constant VM_MAXID (line 1454) | VM_MAXID = 0x6
constant VM_METER (line 1455) | VM_METER = 0x1
constant VM_SWAPUSAGE (line 1456) | VM_SWAPUSAGE = 0x5
constant VQUIT (line 1457) | VQUIT = 0x9
constant VREPRINT (line 1458) | VREPRINT = 0x6
constant VSTART (line 1459) | VSTART = 0xc
constant VSTATUS (line 1460) | VSTATUS = 0x12
constant VSTOP (line 1461) | VSTOP = 0xd
constant VSUSP (line 1462) | VSUSP = 0xa
constant VT0 (line 1463) | VT0 = 0x0
constant VT1 (line 1464) | VT1 = 0x10000
constant VTDLY (line 1465) | VTDLY = 0x10000
constant VTIME (line 1466) | VTIME = 0x11
constant VWERASE (line 1467) | VWERASE = 0x4
constant WCONTINUED (line 1468) | WCONTINUED = 0x10
constant WCOREFLAG (line 1469) | WCOREFLAG = 0x80
constant WEXITED (line 1470) | WEXITED = 0x4
constant WNOHANG (line 1471) | WNOHANG = 0x1
constant WNOWAIT (line 1472) | WNOWAIT = 0x20
constant WORDSIZE (line 1473) | WORDSIZE = 0x40
constant WSTOPPED (line 1474) | WSTOPPED = 0x8
constant WUNTRACED (line 1475) | WUNTRACED = 0x2
constant XATTR_CREATE (line 1476) | XATTR_CREATE = 0x2
constant XATTR_NODEFAULT (line 1477) | XATTR_NODEFAULT = 0x10
constant XATTR_NOFOLLOW (line 1478) | XATTR_NOFOLLOW = 0x1
constant XATTR_NOSECURITY (line 1479) | XATTR_NOSECURITY = 0x8
constant XATTR_REPLACE (line 1480) | XATTR_REPLACE = 0x4
constant XATTR_SHOWCOMPRESSION (line 1481) | XATTR_SHOWCOMPRESSION = 0x20
constant E2BIG (line 1486) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1487) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1488) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1489) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1490) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1491) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1492) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1493) | EAUTH = syscall.Errno(0x50)
constant EBADARCH (line 1494) | EBADARCH = syscall.Errno(0x56)
constant EBADEXEC (line 1495) | EBADEXEC = syscall.Errno(0x55)
constant EBADF (line 1496) | EBADF = syscall.Errno(0x9)
constant EBADMACHO (line 1497) | EBADMACHO = syscall.Errno(0x58)
constant EBADMSG (line 1498) | EBADMSG = syscall.Errno(0x5e)
constant EBADRPC (line 1499) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1500) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1501) | ECANCELED = syscall.Errno(0x59)
constant ECHILD (line 1502) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1503) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1504) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1505) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1506) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1507) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDEVERR (line 1508) | EDEVERR = syscall.Errno(0x53)
constant EDOM (line 1509) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1510) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1511) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1512) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1513) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1514) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1515) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1516) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1517) | EIDRM = syscall.Errno(0x5a)
constant EILSEQ (line 1518) | EILSEQ = syscall.Errno(0x5c)
constant EINPROGRESS (line 1519) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1520) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1521) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1522) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1523) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1524) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1525) | ELAST = syscall.Errno(0x6a)
constant ELOOP (line 1526) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1527) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1528) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1529) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1530) | EMULTIHOP = syscall.Errno(0x5f)
constant ENAMETOOLONG (line 1531) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1532) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1533) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1534) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1535) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1536) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1537) | ENOATTR = syscall.Errno(0x5d)
constant ENOBUFS (line 1538) | ENOBUFS = syscall.Errno(0x37)
constant ENODATA (line 1539) | ENODATA = syscall.Errno(0x60)
constant ENODEV (line 1540) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1541) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1542) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1543) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1544) | ENOLINK = syscall.Errno(0x61)
constant ENOMEM (line 1545) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1546) | ENOMSG = syscall.Errno(0x5b)
constant ENOPOLICY (line 1547) | ENOPOLICY = syscall.Errno(0x67)
constant ENOPROTOOPT (line 1548) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1549) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1550) | ENOSR = syscall.Errno(0x62)
constant ENOSTR (line 1551) | ENOSTR = syscall.Errno(0x63)
constant ENOSYS (line 1552) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1553) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1554) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1555) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1556) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1557) | ENOTRECOVERABLE = syscall.Errno(0x68)
constant ENOTSOCK (line 1558) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1559) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1560) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1561) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1562) | EOPNOTSUPP = syscall.Errno(0x66)
constant EOVERFLOW (line 1563) | EOVERFLOW = syscall.Errno(0x54)
constant EOWNERDEAD (line 1564) | EOWNERDEAD = syscall.Errno(0x69)
constant EPERM (line 1565) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1566) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1567) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1568) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1569) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1570) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1571) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1572) | EPROTO = syscall.Errno(0x64)
constant EPROTONOSUPPORT (line 1573) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1574) | EPROTOTYPE = syscall.Errno(0x29)
constant EPWROFF (line 1575) | EPWROFF = syscall.Errno(0x52)
constant EQFULL (line 1576) | EQFULL = syscall.Errno(0x6a)
constant ERANGE (line 1577) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1578) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1579) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1580) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHLIBVERS (line 1581) | ESHLIBVERS = syscall.Errno(0x57)
constant ESHUTDOWN (line 1582) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1583) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1584) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1585) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1586) | ESTALE = syscall.Errno(0x46)
constant ETIME (line 1587) | ETIME = syscall.Errno(0x65)
constant ETIMEDOUT (line 1588) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1589) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1590) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1591) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1592) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1593) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1598) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1599) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1600) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1601) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1602) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1603) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1604) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1605) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1606) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1607) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1608) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1609) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1610) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1611) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1612) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1613) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1614) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1615) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1616) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1617) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1618) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1619) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1620) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1621) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1622) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1623) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1624) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1625) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1626) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1627) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1628) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1629) | 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 ATTR_BIT_MAP_COUNT (line 52) | ATTR_BIT_MAP_COUNT = 0x5
constant ATTR_CMN_ACCESSMASK (line 53) | ATTR_CMN_ACCESSMASK = 0x20000
constant ATTR_CMN_ACCTIME (line 54) | ATTR_CMN_ACCTIME = 0x1000
constant ATTR_CMN_ADDEDTIME (line 55) | ATTR_CMN_ADDEDTIME = 0x10000000
constant ATTR_CMN_BKUPTIME (line 56) | ATTR_CMN_BKUPTIME = 0x2000
constant ATTR_CMN_CHGTIME (line 57) | ATTR_CMN_CHGTIME = 0x800
constant ATTR_CMN_CRTIME (line 58) | ATTR_CMN_CRTIME = 0x200
constant ATTR_CMN_DATA_PROTECT_FLAGS (line 59) | ATTR_CMN_DATA_PROTECT_FLAGS = 0x40000000
constant ATTR_CMN_DEVID (line 60) | ATTR_CMN_DEVID = 0x2
constant ATTR_CMN_DOCUMENT_ID (line 61) | ATTR_CMN_DOCUMENT_ID = 0x100000
constant ATTR_CMN_ERROR (line 62) | ATTR_CMN_ERROR = 0x20000000
constant ATTR_CMN_EXTENDED_SECURITY (line 63) | ATTR_CMN_EXTENDED_SECURITY = 0x400000
constant ATTR_CMN_FILEID (line 64) | ATTR_CMN_FILEID = 0x2000000
constant ATTR_CMN_FLAGS (line 65) | ATTR_CMN_FLAGS = 0x40000
constant ATTR_CMN_FNDRINFO (line 66) | ATTR_CMN_FNDRINFO = 0x4000
constant ATTR_CMN_FSID (line 67) | ATTR_CMN_FSID = 0x4
constant ATTR_CMN_FULLPATH (line 68) | ATTR_CMN_FULLPATH = 0x8000000
constant ATTR_CMN_GEN_COUNT (line 69) | ATTR_CMN_GEN_COUNT = 0x80000
constant ATTR_CMN_GRPID (line 70) | ATTR_CMN_GRPID = 0x10000
constant ATTR_CMN_GRPUUID (line 71) | ATTR_CMN_GRPUUID = 0x1000000
constant ATTR_CMN_MODTIME (line 72) | ATTR_CMN_MODTIME = 0x400
constant ATTR_CMN_NAME (line 73) | ATTR_CMN_NAME = 0x1
constant ATTR_CMN_NAMEDATTRCOUNT (line 74) | ATTR_CMN_NAMEDATTRCOUNT = 0x80000
constant ATTR_CMN_NAMEDATTRLIST (line 75) | ATTR_CMN_NAMEDATTRLIST = 0x100000
constant ATTR_CMN_OBJID (line 76) | ATTR_CMN_OBJID = 0x20
constant ATTR_CMN_OBJPERMANENTID (line 77) | ATTR_CMN_OBJPERMANENTID = 0x40
constant ATTR_CMN_OBJTAG (line 78) | ATTR_CMN_OBJTAG = 0x10
constant ATTR_CMN_OBJTYPE (line 79) | ATTR_CMN_OBJTYPE = 0x8
constant ATTR_CMN_OWNERID (line 80) | ATTR_CMN_OWNERID = 0x8000
constant ATTR_CMN_PARENTID (line 81) | ATTR_CMN_PARENTID = 0x4000000
constant ATTR_CMN_PAROBJID (line 82) | ATTR_CMN_PAROBJID = 0x80
constant ATTR_CMN_RETURNED_ATTRS (line 83) | ATTR_CMN_RETURNED_ATTRS = 0x80000000
constant ATTR_CMN_SCRIPT (line 84) | ATTR_CMN_SCRIPT = 0x100
constant ATTR_CMN_SETMASK (line 85) | ATTR_CMN_SETMASK = 0x41c7ff00
constant ATTR_CMN_USERACCESS (line 86) | ATTR_CMN_USERACCESS = 0x200000
constant ATTR_CMN_UUID (line 87) | ATTR_CMN_UUID = 0x800000
constant ATTR_CMN_VALIDMASK (line 88) | ATTR_CMN_VALIDMASK = 0xffffffff
constant ATTR_CMN_VOLSETMASK (line 89) | ATTR_CMN_VOLSETMASK = 0x6700
constant ATTR_FILE_ALLOCSIZE (line 90) | ATTR_FILE_ALLOCSIZE = 0x4
constant ATTR_FILE_CLUMPSIZE (line 91) | ATTR_FILE_CLUMPSIZE = 0x10
constant ATTR_FILE_DATAALLOCSIZE (line 92) | ATTR_FILE_DATAALLOCSIZE = 0x400
constant ATTR_FILE_DATAEXTENTS (line 93) | ATTR_FILE_DATAEXTENTS = 0x800
constant ATTR_FILE_DATALENGTH (line 94) | ATTR_FILE_DATALENGTH = 0x200
constant ATTR_FILE_DEVTYPE (line 95) | ATTR_FILE_DEVTYPE = 0x20
constant ATTR_FILE_FILETYPE (line 96) | ATTR_FILE_FILETYPE = 0x40
constant ATTR_FILE_FORKCOUNT (line 97) | ATTR_FILE_FORKCOUNT = 0x80
constant ATTR_FILE_FORKLIST (line 98) | ATTR_FILE_FORKLIST = 0x100
constant ATTR_FILE_IOBLOCKSIZE (line 99) | ATTR_FILE_IOBLOCKSIZE = 0x8
constant ATTR_FILE_LINKCOUNT (line 100) | ATTR_FILE_LINKCOUNT = 0x1
constant ATTR_FILE_RSRCALLOCSIZE (line 101) | ATTR_FILE_RSRCALLOCSIZE = 0x2000
constant ATTR_FILE_RSRCEXTENTS (line 102) | ATTR_FILE_RSRCEXTENTS = 0x4000
constant ATTR_FILE_RSRCLENGTH (line 103) | ATTR_FILE_RSRCLENGTH = 0x1000
constant ATTR_FILE_SETMASK (line 104) | ATTR_FILE_SETMASK = 0x20
constant ATTR_FILE_TOTALSIZE (line 105) | ATTR_FILE_TOTALSIZE = 0x2
constant ATTR_FILE_VALIDMASK (line 106) | ATTR_FILE_VALIDMASK = 0x37ff
constant ATTR_VOL_ALLOCATIONCLUMP (line 107) | ATTR_VOL_ALLOCATIONCLUMP = 0x40
constant ATTR_VOL_ATTRIBUTES (line 108) | ATTR_VOL_ATTRIBUTES = 0x40000000
constant ATTR_VOL_CAPABILITIES (line 109) | ATTR_VOL_CAPABILITIES = 0x20000
constant ATTR_VOL_DIRCOUNT (line 110) | ATTR_VOL_DIRCOUNT = 0x400
constant ATTR_VOL_ENCODINGSUSED (line 111) | ATTR_VOL_ENCODINGSUSED = 0x10000
constant ATTR_VOL_FILECOUNT (line 112) | ATTR_VOL_FILECOUNT = 0x200
constant ATTR_VOL_FSTYPE (line 113) | ATTR_VOL_FSTYPE = 0x1
constant ATTR_VOL_INFO (line 114) | ATTR_VOL_INFO = 0x80000000
constant ATTR_VOL_IOBLOCKSIZE (line 115) | ATTR_VOL_IOBLOCKSIZE = 0x80
constant ATTR_VOL_MAXOBJCOUNT (line 116) | ATTR_VOL_MAXOBJCOUNT = 0x800
constant ATTR_VOL_MINALLOCATION (line 117) | ATTR_VOL_MINALLOCATION = 0x20
constant ATTR_VOL_MOUNTEDDEVICE (line 118) | ATTR_VOL_MOUNTEDDEVICE = 0x8000
constant ATTR_VOL_MOUNTFLAGS (line 119) | ATTR_VOL_MOUNTFLAGS = 0x4000
constant ATTR_VOL_MOUNTPOINT (line 120) | ATTR_VOL_MOUNTPOINT = 0x1000
constant ATTR_VOL_NAME (line 121) | ATTR_VOL_NAME = 0x2000
constant ATTR_VOL_OBJCOUNT (line 122) | ATTR_VOL_OBJCOUNT = 0x100
constant ATTR_VOL_QUOTA_SIZE (line 123) | ATTR_VOL_QUOTA_SIZE = 0x10000000
constant ATTR_VOL_RESERVED_SIZE (line 124) | ATTR_VOL_RESERVED_SIZE = 0x20000000
constant ATTR_VOL_SETMASK (line 125) | ATTR_VOL_SETMASK = 0x80002000
constant ATTR_VOL_SIGNATURE (line 126) | ATTR_VOL_SIGNATURE = 0x2
constant ATTR_VOL_SIZE (line 127) | ATTR_VOL_SIZE = 0x4
constant ATTR_VOL_SPACEAVAIL (line 128) | ATTR_VOL_SPACEAVAIL = 0x10
constant ATTR_VOL_SPACEFREE (line 129) | ATTR_VOL_SPACEFREE = 0x8
constant ATTR_VOL_UUID (line 130) | ATTR_VOL_UUID = 0x40000
constant ATTR_VOL_VALIDMASK (line 131) | ATTR_VOL_VALIDMASK = 0xf007ffff
constant B0 (line 132) | B0 = 0x0
constant B110 (line 133) | B110 = 0x6e
constant B115200 (line 134) | B115200 = 0x1c200
constant B1200 (line 135) | B1200 = 0x4b0
constant B134 (line 136) | B134 = 0x86
constant B14400 (line 137) | B14400 = 0x3840
constant B150 (line 138) | B150 = 0x96
constant B1800 (line 139) | B1800 = 0x708
constant B19200 (line 140) | B19200 = 0x4b00
constant B200 (line 141) | B200 = 0xc8
constant B230400 (line 142) | B230400 = 0x38400
constant B2400 (line 143) | B2400 = 0x960
constant B28800 (line 144) | B28800 = 0x7080
constant B300 (line 145) | B300 = 0x12c
constant B38400 (line 146) | B38400 = 0x9600
constant B4800 (line 147) | B4800 = 0x12c0
constant B50 (line 148) | B50 = 0x32
constant B57600 (line 149) | B57600 = 0xe100
constant B600 (line 150) | B600 = 0x258
constant B7200 (line 151) | B7200 = 0x1c20
constant B75 (line 152) | B75 = 0x4b
constant B76800 (line 153) | B76800 = 0x12c00
constant B9600 (line 154) | B9600 = 0x2580
constant BIOCFLUSH (line 155) | BIOCFLUSH = 0x20004268
constant BIOCGBLEN (line 156) | BIOCGBLEN = 0x40044266
constant BIOCGDLT (line 157) | BIOCGDLT = 0x4004426a
constant BIOCGDLTLIST (line 158) | BIOCGDLTLIST = 0xc00c4279
constant BIOCGETIF (line 159) | BIOCGETIF = 0x4020426b
constant BIOCGHDRCMPLT (line 160) | BIOCGHDRCMPLT = 0x40044274
constant BIOCGRSIG (line 161) | BIOCGRSIG = 0x40044272
constant BIOCGRTIMEOUT (line 162) | BIOCGRTIMEOUT = 0x4010426e
constant BIOCGSEESENT (line 163) | BIOCGSEESENT = 0x40044276
constant BIOCGSTATS (line 164) | BIOCGSTATS = 0x4008426f
constant BIOCIMMEDIATE (line 165) | BIOCIMMEDIATE = 0x80044270
constant BIOCPROMISC (line 166) | BIOCPROMISC = 0x20004269
constant BIOCSBLEN (line 167) | BIOCSBLEN = 0xc0044266
constant BIOCSDLT (line 168) | BIOCSDLT = 0x80044278
constant BIOCSETF (line 169) | BIOCSETF = 0x80104267
constant BIOCSETFNR (line 170) | BIOCSETFNR = 0x8010427e
constant BIOCSETIF (line 171) | BIOCSETIF = 0x8020426c
constant BIOCSHDRCMPLT (line 172) | BIOCSHDRCMPLT = 0x80044275
constant BIOCSRSIG (line 173) | BIOCSRSIG = 0x80044273
constant BIOCSRTIMEOUT (line 174) | BIOCSRTIMEOUT = 0x8010426d
constant BIOCSSEESENT (line 175) | BIOCSSEESENT = 0x80044277
constant BIOCVERSION (line 176) | BIOCVERSION = 0x40044271
constant BPF_A (line 177) | BPF_A = 0x10
constant BPF_ABS (line 178) | BPF_ABS = 0x20
constant BPF_ADD (line 179) | BPF_ADD = 0x0
constant BPF_ALIGNMENT (line 180) | BPF_ALIGNMENT = 0x4
constant BPF_ALU (line 181) | BPF_ALU = 0x4
constant BPF_AND (line 182) | BPF_AND = 0x50
constant BPF_B (line 183) | BPF_B = 0x10
constant BPF_DIV (line 184) | BPF_DIV = 0x30
constant BPF_H (line 185) | BPF_H = 0x8
constant BPF_IMM (line 186) | BPF_IMM = 0x0
constant BPF_IND (line 187) | BPF_IND = 0x40
constant BPF_JA (line 188) | BPF_JA = 0x0
constant BPF_JEQ (line 189) | BPF_JEQ = 0x10
constant BPF_JGE (line 190) | BPF_JGE = 0x30
constant BPF_JGT (line 191) | BPF_JGT = 0x20
constant BPF_JMP (line 192) | BPF_JMP = 0x5
constant BPF_JSET (line 193) | BPF_JSET = 0x40
constant BPF_K (line 194) | BPF_K = 0x0
constant BPF_LD (line 195) | BPF_LD = 0x0
constant BPF_LDX (line 196) | BPF_LDX = 0x1
constant BPF_LEN (line 197) | BPF_LEN = 0x80
constant BPF_LSH (line 198) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 199) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXBUFSIZE (line 200) | BPF_MAXBUFSIZE = 0x80000
constant BPF_MAXINSNS (line 201) | BPF_MAXINSNS = 0x200
constant BPF_MEM (line 202) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 203) | BPF_MEMWORDS = 0x10
constant BPF_MINBUFSIZE (line 204) | BPF_MINBUFSIZE = 0x20
constant BPF_MINOR_VERSION (line 205) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 206) | BPF_MISC = 0x7
constant BPF_MSH (line 207) | BPF_MSH = 0xa0
constant BPF_MUL (line 208) | BPF_MUL = 0x20
constant BPF_NEG (line 209) | BPF_NEG = 0x80
constant BPF_OR (line 210) | BPF_OR = 0x40
constant BPF_RELEASE (line 211) | BPF_RELEASE = 0x30bb6
constant BPF_RET (line 212) | BPF_RET = 0x6
constant BPF_RSH (line 213) | BPF_RSH = 0x70
constant BPF_ST (line 214) | BPF_ST = 0x2
constant BPF_STX (line 215) | BPF_STX = 0x3
constant BPF_SUB (line 216) | BPF_SUB = 0x10
constant BPF_TAX (line 217) | BPF_TAX = 0x0
constant BPF_TXA (line 218) | BPF_TXA = 0x80
constant BPF_W (line 219) | BPF_W = 0x0
constant BPF_X (line 220) | BPF_X = 0x8
constant BRKINT (line 221) | BRKINT = 0x2
constant BS0 (line 222) | BS0 = 0x0
constant BS1 (line 223) | BS1 = 0x8000
constant BSDLY (line 224) | BSDLY = 0x8000
constant CFLUSH (line 225) | CFLUSH = 0xf
constant CLOCAL (line 226) | CLOCAL = 0x8000
constant CLOCK_MONOTONIC (line 227) | CLOCK_MONOTONIC = 0x6
constant CLOCK_MONOTONIC_RAW (line 228) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_MONOTONIC_RAW_APPROX (line 229) | CLOCK_MONOTONIC_RAW_APPROX = 0x5
constant CLOCK_PROCESS_CPUTIME_ID (line 230) | CLOCK_PROCESS_CPUTIME_ID = 0xc
constant CLOCK_REALTIME (line 231) | CLOCK_REALTIME = 0x0
constant CLOCK_THREAD_CPUTIME_ID (line 232) | CLOCK_THREAD_CPUTIME_ID = 0x10
constant CLOCK_UPTIME_RAW (line 233) | CLOCK_UPTIME_RAW = 0x8
constant CLOCK_UPTIME_RAW_APPROX (line 234) | CLOCK_UPTIME_RAW_APPROX = 0x9
constant CR0 (line 235) | CR0 = 0x0
constant CR1 (line 236) | CR1 = 0x1000
constant CR2 (line 237) | CR2 = 0x2000
constant CR3 (line 238) | CR3 = 0x3000
constant CRDLY (line 239) | CRDLY = 0x3000
constant CREAD (line 240) | CREAD = 0x800
constant CRTSCTS (line 241) | CRTSCTS = 0x30000
constant CS5 (line 242) | CS5 = 0x0
constant CS6 (line 243) | CS6 = 0x100
constant CS7 (line 244) | CS7 = 0x200
constant CS8 (line 245) | CS8 = 0x300
constant CSIZE (line 246) | CSIZE = 0x300
constant CSTART (line 247) | CSTART = 0x11
constant CSTATUS (line 248) | CSTATUS = 0x14
constant CSTOP (line 249) | CSTOP = 0x13
constant CSTOPB (line 250) | CSTOPB = 0x400
constant CSUSP (line 251) | CSUSP = 0x1a
constant CTL_HW (line 252) | CTL_HW = 0x6
constant CTL_KERN (line 253) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 254) | CTL_MAXNAME = 0xc
constant CTL_NET (line 255) | CTL_NET = 0x4
constant DLT_A429 (line 256) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 257) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 258) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 259) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 260) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 261) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 262) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 263) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 264) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 265) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 266) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 267) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 268) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_HCI_H4 (line 269) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 270) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_CAN20B (line 271) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 272) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 273) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 274) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 275) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 276) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 277) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DBUS (line 278) | DLT_DBUS = 0xe7
constant DLT_DECT (line 279) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 280) | DLT_DOCSIS = 0x8f
constant DLT_DVB_CI (line 281) | DLT_DVB_CI = 0xeb
constant DLT_ECONET (line 282) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 283) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 284) | DLT_EN3MB = 0x2
constant DLT_ENC (line 285) | DLT_ENC = 0x6d
constant DLT_ERF (line 286) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 287) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 288) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 289) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 290) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 291) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 292) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 293) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 294) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 295) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 296) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 297) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 298) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 299) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 300) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 301) | DLT_GSMTAP_UM = 0xd9
constant DLT_HHDLC (line 302) | DLT_HHDLC = 0x79
constant DLT_IBM_SN (line 303) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 304) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 305) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 306) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 307) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 308) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 309) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 310) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NOFCS (line 311) | DLT_IEEE802_15_4_NOFCS = 0xe6
constant DLT_IEEE802_15_4_NONASK_PHY (line 312) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 313) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 314) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPFILTER (line 315) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 316) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 317) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPNET (line 318) | DLT_IPNET = 0xe2
constant DLT_IPOIB (line 319) | DLT_IPOIB = 0xf2
constant DLT_IPV4 (line 320) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 321) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 322) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 323) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 324) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_ATM_CEMIC (line 325) | DLT_JUNIPER_ATM_CEMIC = 0xee
constant DLT_JUNIPER_CHDLC (line 326) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 327) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 328) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FIBRECHANNEL (line 329) | DLT_JUNIPER_FIBRECHANNEL = 0xea
constant DLT_JUNIPER_FRELAY (line 330) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 331) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 332) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 333) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 334) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 335) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 336) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 337) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 338) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 339) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 340) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 341) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_SRX_E2E (line 342) | DLT_JUNIPER_SRX_E2E = 0xe9
constant DLT_JUNIPER_ST (line 343) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 344) | DLT_JUNIPER_VP = 0xb7
constant DLT_JUNIPER_VS (line 345) | DLT_JUNIPER_VS = 0xe8
constant DLT_LAPB_WITH_DIR (line 346) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 347) | DLT_LAPD = 0xcb
constant DLT_LIN (line 348) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 349) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 350) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 351) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_PPP_WITHDIRECTION (line 352) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6
constant DLT_LINUX_SLL (line 353) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 354) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 355) | DLT_LTALK = 0x72
constant DLT_MATCHING_MAX (line 356) | DLT_MATCHING_MAX = 0xf5
constant DLT_MATCHING_MIN (line 357) | DLT_MATCHING_MIN = 0x68
constant DLT_MFR (line 358) | DLT_MFR = 0xb6
constant DLT_MOST (line 359) | DLT_MOST = 0xd3
constant DLT_MPEG_2_TS (line 360) | DLT_MPEG_2_TS = 0xf3
constant DLT_MPLS (line 361) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 362) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 363) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 364) | DLT_MTP3 = 0x8d
constant DLT_MUX27010 (line 365) | DLT_MUX27010 = 0xec
constant DLT_NETANALYZER (line 366) | DLT_NETANALYZER = 0xf0
constant DLT_NETANALYZER_TRANSPARENT (line 367) | DLT_NETANALYZER_TRANSPARENT = 0xf1
constant DLT_NFC_LLCP (line 368) | DLT_NFC_LLCP = 0xf5
constant DLT_NFLOG (line 369) | DLT_NFLOG = 0xef
constant DLT_NG40 (line 370) | DLT_NG40 = 0xf4
constant DLT_NULL (line 371) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 372) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 373) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 374) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 375) | DLT_PPI = 0xc0
constant DLT_PPP (line 376) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 377) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 378) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 379) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 380) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 381) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PPP_WITH_DIRECTION (line 382) | DLT_PPP_WITH_DIRECTION = 0xa6
constant DLT_PRISM_HEADER (line 383) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 384) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 385) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 386) | DLT_RAW = 0xc
constant DLT_RIO (line 387) | DLT_RIO = 0x7c
constant DLT_SCCP (line 388) | DLT_SCCP = 0x8e
constant DLT_SITA (line 389) | DLT_SITA = 0xc4
constant DLT_SLIP (line 390) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 391) | DLT_SLIP_BSDOS = 0xf
constant DLT_STANAG_5066_D_PDU (line 392) | DLT_STANAG_5066_D_PDU = 0xed
constant DLT_SUNATM (line 393) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 394) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 395) | DLT_TZSP = 0x80
constant DLT_USB (line 396) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 397) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 398) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_USER0 (line 399) | DLT_USER0 = 0x93
constant DLT_USER1 (line 400) | DLT_USER1 = 0x94
constant DLT_USER10 (line 401) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 402) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 403) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 404) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 405) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 406) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 407) | DLT_USER2 = 0x95
constant DLT_USER3 (line 408) | DLT_USER3 = 0x96
constant DLT_USER4 (line 409) | DLT_USER4 = 0x97
constant DLT_USER5 (line 410) | DLT_USER5 = 0x98
constant DLT_USER6 (line 411) | DLT_USER6 = 0x99
constant DLT_USER7 (line 412) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 413) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 414) | DLT_USER9 = 0x9c
constant DLT_WIHART (line 415) | DLT_WIHART = 0xdf
constant DLT_X2E_SERIAL (line 416) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 417) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 418) | DT_BLK = 0x6
constant DT_CHR (line 419) | DT_CHR = 0x2
constant DT_DIR (line 420) | DT_DIR = 0x4
constant DT_FIFO (line 421) | DT_FIFO = 0x1
constant DT_LNK (line 422) | DT_LNK = 0xa
constant DT_REG (line 423) | DT_REG = 0x8
constant DT_SOCK (line 424) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 425) | DT_UNKNOWN = 0x0
constant DT_WHT (line 426) | DT_WHT = 0xe
constant ECHO (line 427) | ECHO = 0x8
constant ECHOCTL (line 428) | ECHOCTL = 0x40
constant ECHOE (line 429) | ECHOE = 0x2
constant ECHOK (line 430) | ECHOK = 0x4
constant ECHOKE (line 431) | ECHOKE = 0x1
constant ECHONL (line 432) | ECHONL = 0x10
constant ECHOPRT (line 433) | ECHOPRT = 0x20
constant EVFILT_AIO (line 434) | EVFILT_AIO = -0x3
constant EVFILT_EXCEPT (line 435) | EVFILT_EXCEPT = -0xf
constant EVFILT_FS (line 436) | EVFILT_FS = -0x9
constant EVFILT_MACHPORT (line 437) | EVFILT_MACHPORT = -0x8
constant EVFILT_PROC (line 438) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 439) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 440) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 441) | EVFILT_SYSCOUNT = 0xf
constant EVFILT_THREADMARKER (line 442) | EVFILT_THREADMARKER = 0xf
constant EVFILT_TIMER (line 443) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 444) | EVFILT_USER = -0xa
constant EVFILT_VM (line 445) | EVFILT_VM = -0xc
constant EVFILT_VNODE (line 446) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 447) | EVFILT_WRITE = -0x2
constant EV_ADD (line 448) | EV_ADD = 0x1
constant EV_CLEAR (line 449) | EV_CLEAR = 0x20
constant EV_DELETE (line 450) | EV_DELETE = 0x2
constant EV_DISABLE (line 451) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 452) | EV_DISPATCH = 0x80
constant EV_DISPATCH2 (line 453) | EV_DISPATCH2 = 0x180
constant EV_ENABLE (line 454) | EV_ENABLE = 0x4
constant EV_EOF (line 455) | EV_EOF = 0x8000
constant EV_ERROR (line 456) | EV_ERROR = 0x4000
constant EV_FLAG0 (line 457) | EV_FLAG0 = 0x1000
constant EV_FLAG1 (line 458) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 459) | EV_ONESHOT = 0x10
constant EV_OOBAND (line 460) | EV_OOBAND = 0x2000
constant EV_POLL (line 461) | EV_POLL = 0x1000
constant EV_RECEIPT (line 462) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 463) | EV_SYSFLAGS = 0xf000
constant EV_UDATA_SPECIFIC (line 464) | EV_UDATA_SPECIFIC = 0x100
constant EV_VANISHED (line 465) | EV_VANISHED = 0x200
constant EXTA (line 466) | EXTA = 0x4b00
constant EXTB (line 467) | EXTB = 0x9600
constant EXTPROC (line 468) | EXTPROC = 0x800
constant FD_CLOEXEC (line 469) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 470) | FD_SETSIZE = 0x400
constant FF0 (line 471) | FF0 = 0x0
constant FF1 (line 472) | FF1 = 0x4000
constant FFDLY (line 473) | FFDLY = 0x4000
constant FLUSHO (line 474) | FLUSHO = 0x800000
constant FSOPT_ATTR_CMN_EXTENDED (line 475) | FSOPT_ATTR_CMN_EXTENDED = 0x20
constant FSOPT_NOFOLLOW (line 476) | FSOPT_NOFOLLOW = 0x1
constant FSOPT_NOINMEMUPDATE (line 477) | FSOPT_NOINMEMUPDATE = 0x2
constant FSOPT_PACK_INVAL_ATTRS (line 478) | FSOPT_PACK_INVAL_ATTRS = 0x8
constant FSOPT_REPORT_FULLSIZE (line 479) | FSOPT_REPORT_FULLSIZE = 0x4
constant F_ADDFILESIGS (line 480) | F_ADDFILESIGS = 0x3d
constant F_ADDFILESIGS_FOR_DYLD_SIM (line 481) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53
constant F_ADDFILESIGS_RETURN (line 482) | F_ADDFILESIGS_RETURN = 0x61
constant F_ADDSIGS (line 483) | F_ADDSIGS = 0x3b
constant F_ALLOCATEALL (line 484) | F_ALLOCATEALL = 0x4
constant F_ALLOCATECONTIG (line 485) | F_ALLOCATECONTIG = 0x2
constant F_BARRIERFSYNC (line 486) | F_BARRIERFSYNC = 0x55
constant F_CHECK_LV (line 487) | F_CHECK_LV = 0x62
constant F_CHKCLEAN (line 488) | F_CHKCLEAN = 0x29
constant F_DUPFD (line 489) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 490) | F_DUPFD_CLOEXEC = 0x43
constant F_FINDSIGS (line 491) | F_FINDSIGS = 0x4e
constant F_FLUSH_DATA (line 492) | F_FLUSH_DATA = 0x28
constant F_FREEZE_FS (line 493) | F_FREEZE_FS = 0x35
constant F_FULLFSYNC (line 494) | F_FULLFSYNC = 0x33
constant F_GETCODEDIR (line 495) | F_GETCODEDIR = 0x48
constant F_GETFD (line 496) | F_GETFD = 0x1
constant F_GETFL (line 497) | F_GETFL = 0x3
constant F_GETLK (line 498) | F_GETLK = 0x7
constant F_GETLKPID (line 499) | F_GETLKPID = 0x42
constant F_GETNOSIGPIPE (line 500) | F_GETNOSIGPIPE = 0x4a
constant F_GETOWN (line 501) | F_GETOWN = 0x5
constant F_GETPATH (line 502) | F_GETPATH = 0x32
constant F_GETPATH_MTMINFO (line 503) | F_GETPATH_MTMINFO = 0x47
constant F_GETPROTECTIONCLASS (line 504) | F_GETPROTECTIONCLASS = 0x3f
constant F_GETPROTECTIONLEVEL (line 505) | F_GETPROTECTIONLEVEL = 0x4d
constant F_GLOBAL_NOCACHE (line 506) | F_GLOBAL_NOCACHE = 0x37
constant F_LOG2PHYS (line 507) | F_LOG2PHYS = 0x31
constant F_LOG2PHYS_EXT (line 508) | F_LOG2PHYS_EXT = 0x41
constant F_NOCACHE (line 509) | F_NOCACHE = 0x30
constant F_NODIRECT (line 510) | F_NODIRECT = 0x3e
constant F_OK (line 511) | F_OK = 0x0
constant F_PATHPKG_CHECK (line 512) | F_PATHPKG_CHECK = 0x34
constant F_PEOFPOSMODE (line 513) | F_PEOFPOSMODE = 0x3
constant F_PREALLOCATE (line 514) | F_PREALLOCATE = 0x2a
constant F_PUNCHHOLE (line 515) | F_PUNCHHOLE = 0x63
constant F_RDADVISE (line 516) | F_RDADVISE = 0x2c
constant F_RDAHEAD (line 517) | F_RDAHEAD = 0x2d
constant F_RDLCK (line 518) | F_RDLCK = 0x1
constant F_SETBACKINGSTORE (line 519) | F_SETBACKINGSTORE = 0x46
constant F_SETFD (line 520) | F_SETFD = 0x2
constant F_SETFL (line 521) | F_SETFL = 0x4
constant F_SETLK (line 522) | F_SETLK = 0x8
constant F_SETLKW (line 523) | F_SETLKW = 0x9
constant F_SETLKWTIMEOUT (line 524) | F_SETLKWTIMEOUT = 0xa
constant F_SETNOSIGPIPE (line 525) | F_SETNOSIGPIPE = 0x49
constant F_SETOWN (line 526) | F_SETOWN = 0x6
constant F_SETPROTECTIONCLASS (line 527) | F_SETPROTECTIONCLASS = 0x40
constant F_SETSIZE (line 528) | F_SETSIZE = 0x2b
constant F_SINGLE_WRITER (line 529) | F_SINGLE_WRITER = 0x4c
constant F_THAW_FS (line 530) | F_THAW_FS = 0x36
constant F_TRANSCODEKEY (line 531) | F_TRANSCODEKEY = 0x4b
constant F_TRIM_ACTIVE_FILE (line 532) | F_TRIM_ACTIVE_FILE = 0x64
constant F_UNLCK (line 533) | F_UNLCK = 0x2
constant F_VOLPOSMODE (line 534) | F_VOLPOSMODE = 0x4
constant F_WRLCK (line 535) | F_WRLCK = 0x3
constant HUPCL (line 536) | HUPCL = 0x4000
constant HW_MACHINE (line 537) | HW_MACHINE = 0x1
constant ICANON (line 538) | ICANON = 0x100
constant ICMP6_FILTER (line 539) | ICMP6_FILTER = 0x12
constant ICRNL (line 540) | ICRNL = 0x100
constant IEXTEN (line 541) | IEXTEN = 0x400
constant IFF_ALLMULTI (line 542) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 543) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 544) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 545) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 546) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 547) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 548) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 549) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 550) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 551) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 552) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 553) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 554) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 555) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 556) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 557) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 558) | IFF_UP = 0x1
constant IFNAMSIZ (line 559) | IFNAMSIZ = 0x10
constant IFT_1822 (line 560) | IFT_1822 = 0x2
constant IFT_AAL5 (line 561) | IFT_AAL5 = 0x31
constant IFT_ARCNET (line 562) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 563) | IFT_ARCNETPLUS = 0x24
constant IFT_ATM (line 564) | IFT_ATM = 0x25
constant IFT_BRIDGE (line 565) | IFT_BRIDGE = 0xd1
constant IFT_CARP (line 566) | IFT_CARP = 0xf8
constant IFT_CELLULAR (line 567) | IFT_CELLULAR = 0xff
constant IFT_CEPT (line 568) | IFT_CEPT = 0x13
constant IFT_DS3 (line 569) | IFT_DS3 = 0x1e
constant IFT_ENC (line 570) | IFT_ENC = 0xf4
constant IFT_EON (line 571) | IFT_EON = 0x19
constant IFT_ETHER (line 572) | IFT_ETHER = 0x6
constant IFT_FAITH (line 573) | IFT_FAITH = 0x38
constant IFT_FDDI (line 574) | IFT_FDDI = 0xf
constant IFT_FRELAY (line 575) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 576) | IFT_FRELAYDCE = 0x2c
constant IFT_GIF (line 577) | IFT_GIF = 0x37
constant IFT_HDH1822 (line 578) | IFT_HDH1822 = 0x3
constant IFT_HIPPI (line 579) | IFT_HIPPI = 0x2f
constant IFT_HSSI (line 580) | IFT_HSSI = 0x2e
constant IFT_HY (line 581) | IFT_HY = 0xe
constant IFT_IEEE1394 (line 582) | IFT_IEEE1394 = 0x90
constant IFT_IEEE8023ADLAG (line 583) | IFT_IEEE8023ADLAG = 0x88
constant IFT_ISDNBASIC (line 584) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 585) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISO88022LLC (line 586) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 587) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 588) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 589) | IFT_ISO88025 = 0x9
constant IFT_ISO88026 (line 590) | IFT_ISO88026 = 0xa
constant IFT_L2VLAN (line 591) | IFT_L2VLAN = 0x87
constant IFT_LAPB (line 592) | IFT_LAPB = 0x10
constant IFT_LOCALTALK (line 593) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 594) | IFT_LOOP = 0x18
constant IFT_MIOX25 (line 595) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 596) | IFT_MODEM = 0x30
constant IFT_NSIP (line 597) | IFT_NSIP = 0x1b
constant IFT_OTHER (line 598) | IFT_OTHER = 0x1
constant IFT_P10 (line 599) | IFT_P10 = 0xc
constant IFT_P80 (line 600) | IFT_P80 = 0xd
constant IFT_PARA (line 601) | IFT_PARA = 0x22
constant IFT_PDP (line 602) | IFT_PDP = 0xff
constant IFT_PFLOG (line 603) | IFT_PFLOG = 0xf5
constant IFT_PFSYNC (line 604) | IFT_PFSYNC = 0xf6
constant IFT_PKTAP (line 605) | IFT_PKTAP = 0xfe
constant IFT_PPP (line 606) | IFT_PPP = 0x17
constant IFT_PROPMUX (line 607) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 608) | IFT_PROPVIRTUAL = 0x35
constant IFT_PTPSERIAL (line 609) | IFT_PTPSERIAL = 0x16
constant IFT_RS232 (line 610) | IFT_RS232 = 0x21
constant IFT_SDLC (line 611) | IFT_SDLC = 0x11
constant IFT_SIP (line 612) | IFT_SIP = 0x1f
constant IFT_SLIP (line 613) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 614) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 615) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 616) | IFT_SONET = 0x27
constant IFT_SONETPATH (line 617) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 618) | IFT_SONETVT = 0x33
constant IFT_STARLAN (line 619) | IFT_STARLAN = 0xb
constant IFT_STF (line 620) | IFT_STF = 0x39
constant IFT_T1 (line 621) | IFT_T1 = 0x12
constant IFT_ULTRA (line 622) | IFT_ULTRA = 0x1d
constant IFT_V35 (line 623) | IFT_V35 = 0x2d
constant IFT_X25 (line 624) | IFT_X25 = 0x5
constant IFT_X25DDN (line 625) | IFT_X25DDN = 0x4
constant IFT_X25PLE (line 626) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 627) | IFT_XETHER = 0x1a
constant IGNBRK (line 628) | IGNBRK = 0x1
constant IGNCR (line 629) | IGNCR = 0x80
constant IGNPAR (line 630) | IGNPAR = 0x4
constant IMAXBEL (line 631) | IMAXBEL = 0x2000
constant INLCR (line 632) | INLCR = 0x40
constant INPCK (line 633) | INPCK = 0x10
constant IN_CLASSA_HOST (line 634) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 635) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 636) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 637) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 638) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 639) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 640) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 641) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 642) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 643) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 644) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 645) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 646) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 647) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LINKLOCALNETNUM (line 648) | IN_LINKLOCALNETNUM = 0xa9fe0000
constant IN_LOOPBACKNET (line 649) | IN_LOOPBACKNET = 0x7f
constant IPPROTO_3PC (line 650) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 651) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 652) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 653) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 654) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 655) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 656) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 657) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 658) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 659) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CFTP (line 660) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 661) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 662) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 663) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 664) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 665) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 666) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 667) | IPPROTO_DIVERT = 0xfe
constant IPPROTO_DONE (line 668) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 669) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 670) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 671) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 672) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 673) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 674) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 675) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 676) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 677) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 678) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 679) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 680) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HMP (line 681) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 682) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 683) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 684) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 685) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 686) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 687) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 688) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 689) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 690) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 691) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 692) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 693) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 694) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 695) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 696) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 697) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 698) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 699) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 700) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 701) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 702) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 703) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 704) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 705) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 706) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 707) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 708) | IPPROTO_MAXID = 0x34
constant IPPROTO_MEAS (line 709) | IPPROTO_MEAS = 0x13
constant IPPROTO_MHRP (line 710) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 711) | IPPROTO_MICP = 0x5f
constant IPPROTO_MTP (line 712) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 713) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 714) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 715) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 716) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 717) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 718) | IPPROTO_NVPII = 0xb
constant IPPROTO_OSPFIGP (line 719) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PGM (line 720) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 721) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 722) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 723) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 724) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 725) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 726) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 727) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 728) | IPPROTO_RDP = 0x1b
constant IPPROTO_ROUTING (line 729) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 730) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 731) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 732) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 733) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 734) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SCTP (line 735) | IPPROTO_SCTP = 0x84
constant IPPROTO_SDRP (line 736) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEP (line 737) | IPPROTO_SEP = 0x21
constant IPPROTO_SRPC (line 738) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 739) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 740) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 741) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 742) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 743) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 744) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 745) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 746) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 747) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 748) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 749) | IPPROTO_UDP = 0x11
constant IPPROTO_VINES (line 750) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 751) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 752) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 753) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 754) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 755) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 756) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 757) | IPPROTO_XTP = 0x24
constant IPV6_2292DSTOPTS (line 758) | IPV6_2292DSTOPTS = 0x17
constant IPV6_2292HOPLIMIT (line 759) | IPV6_2292HOPLIMIT = 0x14
constant IPV6_2292HOPOPTS (line 760) | IPV6_2292HOPOPTS = 0x16
constant IPV6_2292NEXTHOP (line 761) | IPV6_2292NEXTHOP = 0x15
constant IPV6_2292PKTINFO (line 762) | IPV6_2292PKTINFO = 0x13
constant IPV6_2292PKTOPTIONS (line 763) | IPV6_2292PKTOPTIONS = 0x19
constant IPV6_2292RTHDR (line 764) | IPV6_2292RTHDR = 0x18
constant IPV6_BINDV6ONLY (line 765) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_BOUND_IF (line 766) | IPV6_BOUND_IF = 0x7d
constant IPV6_CHECKSUM (line 767) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 768) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 769) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 770) | IPV6_DEFHLIM = 0x40
constant IPV6_FAITH (line 771) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 772) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 773) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FLOW_ECN_MASK (line 774) | IPV6_FLOW_ECN_MASK = 0x300
constant IPV6_FRAGTTL (line 775) | IPV6_FRAGTTL = 0x3c
constant IPV6_FW_ADD (line 776) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 777) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 778) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 779) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 780) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 781) | IPV6_HLIMDEC = 0x1
constant IPV6_IPSEC_POLICY (line 782) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 783) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 784) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 785) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXOPTHDR (line 786) | IPV6_MAXOPTHDR = 0x800
constant IPV6_MAXPACKET (line 787) | IPV6_MAXPACKET = 0xffff
constant IPV6_MAX_GROUP_SRC_FILTER (line 788) | IPV6_MAX_GROUP_SRC_FILTER = 0x200
constant IPV6_MAX_MEMBERSHIPS (line 789) | IPV6_MAX_MEMBERSHIPS = 0xfff
constant IPV6_MAX_SOCK_SRC_FILTER (line 790) | IPV6_MAX_SOCK_SRC_FILTER = 0x80
constant IPV6_MIN_MEMBERSHIPS (line 791) | IPV6_MIN_MEMBERSHIPS = 0x1f
constant IPV6_MMTU (line 792) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 793) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 794) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 795) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_PORTRANGE (line 796) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 797) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 798) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 799) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVTCLASS (line 800) | IPV6_RECVTCLASS = 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 = 0x24
constant IPV6_UNICAST_HOPS (line 806) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_V6ONLY (line 807) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 808) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 809) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 810) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 811) | IP_ADD_SOURCE_MEMBERSHIP = 0x46
constant IP_BLOCK_SOURCE (line 812) | IP_BLOCK_SOURCE = 0x48
constant IP_BOUND_IF (line 813) | IP_BOUND_IF = 0x19
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_DROP_MEMBERSHIP (line 817) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 818) | IP_DROP_SOURCE_MEMBERSHIP = 0x47
constant IP_DUMMYNET_CONFIGURE (line 819) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 820) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 821) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 822) | IP_DUMMYNET_GET = 0x40
constant IP_FAITH (line 823) | IP_FAITH = 0x16
constant IP_FW_ADD (line 824) | IP_FW_ADD = 0x28
constant IP_FW_DEL (line 825) | IP_FW_DEL = 0x29
constant IP_FW_FLUSH (line 826) | IP_FW_FLUSH = 0x2a
constant IP_FW_GET (line 827) | IP_FW_GET = 0x2c
constant IP_FW_RESETLOG (line 828) | IP_FW_RESETLOG = 0x2d
constant IP_FW_ZERO (line 829) | IP_FW_ZERO = 0x2b
constant IP_HDRINCL (line 830) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 831) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 832) | IP_MAXPACKET = 0xffff
constant IP_MAX_GROUP_SRC_FILTER (line 833) | IP_MAX_GROUP_SRC_FILTER = 0x200
constant IP_MAX_MEMBERSHIPS (line 834) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MAX_SOCK_MUTE_FILTER (line 835) | IP_MAX_SOCK_MUTE_FILTER = 0x80
constant IP_MAX_SOCK_SRC_FILTER (line 836) | IP_MAX_SOCK_SRC_FILTER = 0x80
constant IP_MF (line 837) | IP_MF = 0x2000
constant IP_MIN_MEMBERSHIPS (line 838) | IP_MIN_MEMBERSHIPS = 0x1f
constant IP_MSFILTER (line 839) | IP_MSFILTER = 0x4a
constant IP_MSS (line 840) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 841) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_IFINDEX (line 842) | IP_MULTICAST_IFINDEX = 0x42
constant IP_MULTICAST_LOOP (line 843) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 844) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 845) | IP_MULTICAST_VIF = 0xe
constant IP_NAT__XXX (line 846) | IP_NAT__XXX = 0x37
constant IP_OFFMASK (line 847) | IP_OFFMASK = 0x1fff
constant IP_OLD_FW_ADD (line 848) | IP_OLD_FW_ADD = 0x32
constant IP_OLD_FW_DEL (line 849) | IP_OLD_FW_DEL = 0x33
constant IP_OLD_FW_FLUSH (line 850) | IP_OLD_FW_FLUSH = 0x34
constant IP_OLD_FW_GET (line 851) | IP_OLD_FW_GET = 0x36
constant IP_OLD_FW_RESETLOG (line 852) | IP_OLD_FW_RESETLOG = 0x38
constant IP_OLD_FW_ZERO (line 853) | IP_OLD_FW_ZERO = 0x35
constant IP_OPTIONS (line 854) | IP_OPTIONS = 0x1
constant IP_PKTINFO (line 855) | IP_PKTINFO = 0x1a
constant IP_PORTRANGE (line 856) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 857) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 858) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 859) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 860) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 861) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 862) | IP_RECVOPTS = 0x5
constant IP_RECVPKTINFO (line 863) | IP_RECVPKTINFO = 0x1a
constant IP_RECVRETOPTS (line 864) | IP_RECVRETOPTS = 0x6
constant IP_RECVTOS (line 865) | IP_RECVTOS = 0x1b
constant IP_RECVTTL (line 866) | IP_RECVTTL = 0x18
constant IP_RETOPTS (line 867) | IP_RETOPTS = 0x8
constant IP_RF (line 868) | IP_RF = 0x8000
constant IP_RSVP_OFF (line 869) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 870) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 871) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 872) | IP_RSVP_VIF_ON = 0x11
constant IP_STRIPHDR (line 873) | IP_STRIPHDR = 0x17
constant IP_TOS (line 874) | IP_TOS = 0x3
constant IP_TRAFFIC_MGT_BACKGROUND (line 875) | IP_TRAFFIC_MGT_BACKGROUND = 0x41
constant IP_TTL (line 876) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 877) | IP_UNBLOCK_SOURCE = 0x49
constant ISIG (line 878) | ISIG = 0x80
constant ISTRIP (line 879) | ISTRIP = 0x20
constant IUTF8 (line 880) | IUTF8 = 0x4000
constant IXANY (line 881) | IXANY = 0x800
constant IXOFF (line 882) | IXOFF = 0x400
constant IXON (line 883) | IXON = 0x200
constant KERN_HOSTNAME (line 884) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 885) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 886) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 887) | KERN_VERSION = 0x4
constant LOCK_EX (line 888) | LOCK_EX = 0x2
constant LOCK_NB (line 889) | LOCK_NB = 0x4
constant LOCK_SH (line 890) | LOCK_SH = 0x1
constant LOCK_UN (line 891) | LOCK_UN = 0x8
constant MADV_CAN_REUSE (line 892) | MADV_CAN_REUSE = 0x9
constant MADV_DONTNEED (line 893) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 894) | MADV_FREE = 0x5
constant MADV_FREE_REUSABLE (line 895) | MADV_FREE_REUSABLE = 0x7
constant MADV_FREE_REUSE (line 896) | MADV_FREE_REUSE = 0x8
constant MADV_NORMAL (line 897) | MADV_NORMAL = 0x0
constant MADV_PAGEOUT (line 898) | MADV_PAGEOUT = 0xa
constant MADV_RANDOM (line 899) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 900) | MADV_SEQUENTIAL = 0x2
constant MADV_WILLNEED (line 901) | MADV_WILLNEED = 0x3
constant MADV_ZERO_WIRED_PAGES (line 902) | MADV_ZERO_WIRED_PAGES = 0x6
constant MAP_ANON (line 903) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 904) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 905) | MAP_COPY = 0x2
constant MAP_FILE (line 906) | MAP_FILE = 0x0
constant MAP_FIXED (line 907) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 908) | MAP_HASSEMAPHORE = 0x200
constant MAP_JIT (line 909) | MAP_JIT = 0x800
constant MAP_NOCACHE (line 910) | MAP_NOCACHE = 0x400
constant MAP_NOEXTEND (line 911) | MAP_NOEXTEND = 0x100
constant MAP_NORESERVE (line 912) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 913) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 914) | MAP_RENAME = 0x20
constant MAP_RESERVED0080 (line 915) | MAP_RESERVED0080 = 0x80
constant MAP_RESILIENT_CODESIGN (line 916) | MAP_RESILIENT_CODESIGN = 0x2000
constant MAP_RESILIENT_MEDIA (line 917) | MAP_RESILIENT_MEDIA = 0x4000
constant MAP_SHARED (line 918) | MAP_SHARED = 0x1
constant MCL_CURRENT (line 919) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 920) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 921) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 922) | MNT_AUTOMOUNTED = 0x400000
constant MNT_CMDFLAGS (line 923) | MNT_CMDFLAGS = 0xf0000
constant MNT_CPROTECT (line 924) | MNT_CPROTECT = 0x80
constant MNT_DEFWRITE (line 925) | MNT_DEFWRITE = 0x2000000
constant MNT_DONTBROWSE (line 926) | MNT_DONTBROWSE = 0x100000
constant MNT_DOVOLFS (line 927) | MNT_DOVOLFS = 0x8000
constant MNT_DWAIT (line 928) | MNT_DWAIT = 0x4
constant MNT_EXPORTED (line 929) | MNT_EXPORTED = 0x100
constant MNT_FORCE (line 930) | MNT_FORCE = 0x80000
constant MNT_IGNORE_OWNERSHIP (line 931) | MNT_IGNORE_OWNERSHIP = 0x200000
constant MNT_JOURNALED (line 932) | MNT_JOURNALED = 0x800000
constant MNT_LOCAL (line 933) | MNT_LOCAL = 0x1000
constant MNT_MULTILABEL (line 934) | MNT_MULTILABEL = 0x4000000
constant MNT_NOATIME (line 935) | MNT_NOATIME = 0x10000000
constant MNT_NOBLOCK (line 936) | MNT_NOBLOCK = 0x20000
constant MNT_NODEV (line 937) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 938) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 939) | MNT_NOSUID = 0x8
constant MNT_NOUSERXATTR (line 940) | MNT_NOUSERXATTR = 0x1000000
constant MNT_NOWAIT (line 941) | MNT_NOWAIT = 0x2
constant MNT_QUARANTINE (line 942) | MNT_QUARANTINE = 0x400
constant MNT_QUOTA (line 943) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 944) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 945) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 946) | MNT_ROOTFS = 0x4000
constant MNT_SYNCHRONOUS (line 947) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 948) | MNT_UNION = 0x20
constant MNT_UNKNOWNPERMISSIONS (line 949) | MNT_UNKNOWNPERMISSIONS = 0x200000
constant MNT_UPDATE (line 950) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 951) | MNT_VISFLAGMASK = 0x17f0f5ff
constant MNT_WAIT (line 952) | MNT_WAIT = 0x1
constant MSG_CTRUNC (line 953) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 954) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 955) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 956) | MSG_EOF = 0x100
constant MSG_EOR (line 957) | MSG_EOR = 0x8
constant MSG_FLUSH (line 958) | MSG_FLUSH = 0x400
constant MSG_HAVEMORE (line 959) | MSG_HAVEMORE = 0x2000
constant MSG_HOLD (line 960) | MSG_HOLD = 0x800
constant MSG_NEEDSA (line 961) | MSG_NEEDSA = 0x10000
constant MSG_OOB (line 962) | MSG_OOB = 0x1
constant MSG_PEEK (line 963) | MSG_PEEK = 0x2
constant MSG_RCVMORE (line 964) | MSG_RCVMORE = 0x4000
constant MSG_SEND (line 965) | MSG_SEND = 0x1000
constant MSG_TRUNC (line 966) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 967) | MSG_WAITALL = 0x40
constant MSG_WAITSTREAM (line 968) | MSG_WAITSTREAM = 0x200
constant MS_ASYNC (line 969) | MS_ASYNC = 0x1
constant MS_DEACTIVATE (line 970) | MS_DEACTIVATE = 0x8
constant MS_INVALIDATE (line 971) | MS_INVALIDATE = 0x2
constant MS_KILLPAGES (line 972) | MS_KILLPAGES = 0x4
constant MS_SYNC (line 973) | MS_SYNC = 0x10
constant NAME_MAX (line 974) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 975) | NET_RT_DUMP = 0x1
constant NET_RT_DUMP2 (line 976) | NET_RT_DUMP2 = 0x7
constant NET_RT_FLAGS (line 977) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 978) | NET_RT_IFLIST = 0x3
constant NET_RT_IFLIST2 (line 979) | NET_RT_IFLIST2 = 0x6
constant NET_RT_MAXID (line 980) | NET_RT_MAXID = 0xa
constant NET_RT_STAT (line 981) | NET_RT_STAT = 0x4
constant NET_RT_TRASH (line 982) | NET_RT_TRASH = 0x5
constant NL0 (line 983) | NL0 = 0x0
constant NL1 (line 984) | NL1 = 0x100
constant NL2 (line 985) | NL2 = 0x200
constant NL3 (line 986) | NL3 = 0x300
constant NLDLY (line 987) | NLDLY = 0x300
constant NOFLSH (line 988) | NOFLSH = 0x80000000
constant NOKERNINFO (line 989) | NOKERNINFO = 0x2000000
constant NOTE_ABSOLUTE (line 990) | NOTE_ABSOLUTE = 0x8
constant NOTE_ATTRIB (line 991) | NOTE_ATTRIB = 0x8
constant NOTE_BACKGROUND (line 992) | NOTE_BACKGROUND = 0x40
constant NOTE_CHILD (line 993) | NOTE_CHILD = 0x4
constant NOTE_CRITICAL (line 994) | NOTE_CRITICAL = 0x20
constant NOTE_DELETE (line 995) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 996) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 997) | NOTE_EXIT = 0x80000000
constant NOTE_EXITSTATUS (line 998) | NOTE_EXITSTATUS = 0x4000000
constant NOTE_EXIT_CSERROR (line 999) | NOTE_EXIT_CSERROR = 0x40000
constant NOTE_EXIT_DECRYPTFAIL (line 1000) | NOTE_EXIT_DECRYPTFAIL = 0x10000
constant NOTE_EXIT_DETAIL (line 1001) | NOTE_EXIT_DETAIL = 0x2000000
constant NOTE_EXIT_DETAIL_MASK (line 1002) | NOTE_EXIT_DETAIL_MASK = 0x70000
constant NOTE_EXIT_MEMORY (line 1003) | NOTE_EXIT_MEMORY = 0x20000
constant NOTE_EXIT_REPARENTED (line 1004) | NOTE_EXIT_REPARENTED = 0x80000
constant NOTE_EXTEND (line 1005) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 1006) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 1007) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 1008) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 1009) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 1010) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 1011) | NOTE_FFOR = 0x80000000
constant NOTE_FORK (line 1012) | NOTE_FORK = 0x40000000
constant NOTE_FUNLOCK (line 1013) | NOTE_FUNLOCK = 0x100
constant NOTE_LEEWAY (line 1014) | NOTE_LEEWAY = 0x10
constant NOTE_LINK (line 1015) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1016) | NOTE_LOWAT = 0x1
constant NOTE_MACH_CONTINUOUS_TIME (line 1017) | NOTE_MACH_CONTINUOUS_TIME = 0x80
constant NOTE_NONE (line 1018) | NOTE_NONE = 0x80
constant NOTE_NSECONDS (line 1019) | NOTE_NSECONDS = 0x4
constant NOTE_OOB (line 1020) | NOTE_OOB = 0x2
constant NOTE_PCTRLMASK (line 1021) | NOTE_PCTRLMASK = -0x100000
constant NOTE_PDATAMASK (line 1022) | NOTE_PDATAMASK = 0xfffff
constant NOTE_REAP (line 1023) | NOTE_REAP = 0x10000000
constant NOTE_RENAME (line 1024) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1025) | NOTE_REVOKE = 0x40
constant NOTE_SECONDS (line 1026) | NOTE_SECONDS = 0x1
constant NOTE_SIGNAL (line 1027) | NOTE_SIGNAL = 0x8000000
constant NOTE_TRACK (line 1028) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1029) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 1030) | NOTE_TRIGGER = 0x1000000
constant NOTE_USECONDS (line 1031) | NOTE_USECONDS = 0x2
constant NOTE_VM_ERROR (line 1032) | NOTE_VM_ERROR = 0x10000000
constant NOTE_VM_PRESSURE (line 1033) | NOTE_VM_PRESSURE = 0x80000000
constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 1034) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000
constant NOTE_VM_PRESSURE_TERMINATE (line 1035) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000
constant NOTE_WRITE (line 1036) | NOTE_WRITE = 0x2
constant OCRNL (line 1037) | OCRNL = 0x10
constant OFDEL (line 1038) | OFDEL = 0x20000
constant OFILL (line 1039) | OFILL = 0x80
constant ONLCR (line 1040) | ONLCR = 0x2
constant ONLRET (line 1041) | ONLRET = 0x40
constant ONOCR (line 1042) | ONOCR = 0x20
constant ONOEOT (line 1043) | ONOEOT = 0x8
constant OPOST (line 1044) | OPOST = 0x1
constant OXTABS (line 1045) | OXTABS = 0x4
constant O_ACCMODE (line 1046) | O_ACCMODE = 0x3
constant O_ALERT (line 1047) | O_ALERT = 0x20000000
constant O_APPEND (line 1048) | O_APPEND = 0x8
constant O_ASYNC (line 1049) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1050) | O_CLOEXEC = 0x1000000
constant O_CREAT (line 1051) | O_CREAT = 0x200
constant O_DIRECTORY (line 1052) | O_DIRECTORY = 0x100000
constant O_DP_GETRAWENCRYPTED (line 1053) | O_DP_GETRAWENCRYPTED = 0x1
constant O_DP_GETRAWUNENCRYPTED (line 1054) | O_DP_GETRAWUNENCRYPTED = 0x2
constant O_DSYNC (line 1055) | O_DSYNC = 0x400000
constant O_EVTONLY (line 1056) | O_EVTONLY = 0x8000
constant O_EXCL (line 1057) | O_EXCL = 0x800
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 = 0x20000
constant O_NOFOLLOW (line 1062) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1063) | O_NONBLOCK = 0x4
constant O_POPUP (line 1064) | O_POPUP = 0x80000000
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_SYMLINK (line 1068) | O_SYMLINK = 0x200000
constant O_SYNC (line 1069) | O_SYNC = 0x80
constant O_TRUNC (line 1070) | O_TRUNC = 0x400
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 PT_ATTACH (line 1083) | PT_ATTACH = 0xa
constant PT_ATTACHEXC (line 1084) | PT_ATTACHEXC = 0xe
constant PT_CONTINUE (line 1085) | PT_CONTINUE = 0x7
constant PT_DENY_ATTACH (line 1086) | PT_DENY_ATTACH = 0x1f
constant PT_DETACH (line 1087) | PT_DETACH = 0xb
constant PT_FIRSTMACH (line 1088) | PT_FIRSTMACH = 0x20
constant PT_FORCEQUOTA (line 1089) | PT_FORCEQUOTA = 0x1e
constant PT_KILL (line 1090) | PT_KILL = 0x8
constant PT_READ_D (line 1091) | PT_READ_D = 0x2
constant PT_READ_I (line 1092) | PT_READ_I = 0x1
constant PT_READ_U (line 1093) | PT_READ_U = 0x3
constant PT_SIGEXC (line 1094) | PT_SIGEXC = 0xc
constant PT_STEP (line 1095) | PT_STEP = 0x9
constant PT_THUPDATE (line 1096) | PT_THUPDATE = 0xd
constant PT_TRACE_ME (line 1097) | PT_TRACE_ME = 0x0
constant PT_WRITE_D (line 1098) | PT_WRITE_D = 0x5
constant PT_WRITE_I (line 1099) | PT_WRITE_I = 0x4
constant PT_WRITE_U (line 1100) | PT_WRITE_U = 0x6
constant RLIMIT_AS (line 1101) | RLIMIT_AS = 0x5
constant RLIMIT_CORE (line 1102) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1103) | RLIMIT_CPU = 0x0
constant RLIMIT_CPU_USAGE_MONITOR (line 1104) | RLIMIT_CPU_USAGE_MONITOR = 0x2
constant RLIMIT_DATA (line 1105) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1106) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1107) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1108) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1109) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1110) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1111) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1112) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1113) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1114) | RTAX_BRD = 0x7
constant RTAX_DST (line 1115) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1116) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1117) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1118) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1119) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1120) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 1121) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1122) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1123) | RTA_BRD = 0x80
constant RTA_DST (line 1124) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1125) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1126) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1127) | RTA_IFA = 0x20
constant RTA_IFP (line 1128) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1129) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1130) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1131) | RTF_BROADCAST = 0x400000
constant RTF_CLONING (line 1132) | RTF_CLONING = 0x100
constant RTF_CONDEMNED (line 1133) | RTF_CONDEMNED = 0x2000000
constant RTF_DELCLONE (line 1134) | RTF_DELCLONE = 0x80
constant RTF_DONE (line 1135) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1136) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1137) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1138) | RTF_HOST = 0x4
constant RTF_IFREF (line 1139) | RTF_IFREF = 0x4000000
constant RTF_IFSCOPE (line 1140) | RTF_IFSCOPE = 0x1000000
constant RTF_LLINFO (line 1141) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1142) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1143) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 1144) | RTF_MULTICAST = 0x800000
constant RTF_NOIFREF (line 1145) | RTF_NOIFREF = 0x2000
constant RTF_PINNED (line 1146) | RTF_PINNED = 0x100000
constant RTF_PRCLONING (line 1147) | RTF_PRCLONING = 0x10000
constant RTF_PROTO1 (line 1148) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1149) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1150) | RTF_PROTO3 = 0x40000
constant RTF_PROXY (line 1151) | RTF_PROXY = 0x8000000
constant RTF_REJECT (line 1152) | RTF_REJECT = 0x8
constant RTF_ROUTER (line 1153) | RTF_ROUTER = 0x10000000
constant RTF_STATIC (line 1154) | RTF_STATIC = 0x800
constant RTF_UP (line 1155) | RTF_UP = 0x1
constant RTF_WASCLONED (line 1156) | RTF_WASCLONED = 0x20000
constant RTF_XRESOLVE (line 1157) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1158) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1159) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1160) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1161) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1162) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1163) | RTM_GET = 0x4
constant RTM_GET2 (line 1164) | RTM_GET2 = 0x14
constant RTM_IFINFO (line 1165) | RTM_IFINFO = 0xe
constant RTM_IFINFO2 (line 1166) | RTM_IFINFO2 = 0x12
constant RTM_LOCK (line 1167) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1168) | RTM_LOSING = 0x5
constant RTM_MISS (line 1169) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1170) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1171) | RTM_NEWMADDR = 0xf
constant RTM_NEWMADDR2 (line 1172) | RTM_NEWMADDR2 = 0x13
constant RTM_OLDADD (line 1173) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1174) | RTM_OLDDEL = 0xa
constant RTM_REDIRECT (line 1175) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1176) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1177) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1178) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1179) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1180) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1181) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1182) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1183) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1184) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1185) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1186) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1187) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1188) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1189) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1190) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1191) | SCM_TIMESTAMP = 0x2
constant SCM_TIMESTAMP_MONOTONIC (line 1192) | SCM_TIMESTAMP_MONOTONIC = 0x4
constant SHUT_RD (line 1193) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1194) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1195) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1196) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1197) | SIOCAIFADDR = 0x8040691a
constant SIOCARPIPLL (line 1198) | SIOCARPIPLL = 0xc0206928
constant SIOCATMARK (line 1199) | SIOCATMARK = 0x40047307
constant SIOCAUTOADDR (line 1200) | SIOCAUTOADDR = 0xc0206926
constant SIOCAUTONETMASK (line 1201) | SIOCAUTONETMASK = 0x80206927
constant SIOCDELMULTI (line 1202) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1203) | SIOCDIFADDR = 0x80206919
constant SIOCDIFPHYADDR (line 1204) | SIOCDIFPHYADDR = 0x80206941
constant SIOCGDRVSPEC (line 1205) | SIOCGDRVSPEC = 0xc028697b
constant SIOCGETVLAN (line 1206) | SIOCGETVLAN = 0xc020697f
constant SIOCGHIWAT (line 1207) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1208) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFALTMTU (line 1209) | SIOCGIFALTMTU = 0xc0206948
constant SIOCGIFASYNCMAP (line 1210) | SIOCGIFASYNCMAP = 0xc020697c
constant SIOCGIFBOND (line 1211) | SIOCGIFBOND = 0xc0206947
constant SIOCGIFBRDADDR (line 1212) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1213) | SIOCGIFCAP = 0xc020695b
constant SIOCGIFCONF (line 1214) | SIOCGIFCONF = 0xc00c6924
constant SIOCGIFDEVMTU (line 1215) | SIOCGIFDEVMTU = 0xc0206944
constant SIOCGIFDSTADDR (line 1216) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1217) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1218) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFKPI (line 1219) | SIOCGIFKPI = 0xc0206987
constant SIOCGIFMAC (line 1220) | SIOCGIFMAC = 0xc0206982
constant SIOCGIFMEDIA (line 1221) | SIOCGIFMEDIA = 0xc02c6938
constant SIOCGIFMETRIC (line 1222) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1223) | SIOCGIFMTU = 0xc0206933
constant SIOCGIFNETMASK (line 1224) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1225) | SIOCGIFPDSTADDR = 0xc0206940
constant SIOCGIFPHYS (line 1226) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPSRCADDR (line 1227) | SIOCGIFPSRCADDR = 0xc020693f
constant SIOCGIFSTATUS (line 1228) | SIOCGIFSTATUS = 0xc331693d
constant SIOCGIFVLAN (line 1229) | SIOCGIFVLAN = 0xc020697f
constant SIOCGIFWAKEFLAGS (line 1230) | SIOCGIFWAKEFLAGS = 0xc0206988
constant SIOCGLOWAT (line 1231) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1232) | SIOCGPGRP = 0x40047309
constant SIOCIFCREATE (line 1233) | SIOCIFCREATE = 0xc0206978
constant SIOCIFCREATE2 (line 1234) | SIOCIFCREATE2 = 0xc020697a
constant SIOCIFDESTROY (line 1235) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1236) | SIOCIFGCLONERS = 0xc0106981
constant SIOCRSLVMULTI (line 1237) | SIOCRSLVMULTI = 0xc010693b
constant SIOCSDRVSPEC (line 1238) | SIOCSDRVSPEC = 0x8028697b
constant SIOCSETVLAN (line 1239) | SIOCSETVLAN = 0x8020697e
constant SIOCSHIWAT (line 1240) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1241) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFALTMTU (line 1242) | SIOCSIFALTMTU = 0x80206945
constant SIOCSIFASYNCMAP (line 1243) | SIOCSIFASYNCMAP = 0x8020697d
constant SIOCSIFBOND (line 1244) | SIOCSIFBOND = 0x80206946
constant SIOCSIFBRDADDR (line 1245) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1246) | SIOCSIFCAP = 0x8020695a
constant SIOCSIFDSTADDR (line 1247) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1248) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1249) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFKPI (line 1250) | SIOCSIFKPI = 0x80206986
constant SIOCSIFLLADDR (line 1251) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMAC (line 1252) | SIOCSIFMAC = 0x80206983
constant SIOCSIFMEDIA (line 1253) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1254) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1255) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNETMASK (line 1256) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1257) | SIOCSIFPHYADDR = 0x8040693e
constant SIOCSIFPHYS (line 1258) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFVLAN (line 1259) | SIOCSIFVLAN = 0x8020697e
constant SIOCSLOWAT (line 1260) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1261) | SIOCSPGRP = 0x80047308
constant SOCK_DGRAM (line 1262) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1263) | SOCK_MAXADDRLEN = 0xff
constant SOCK_RAW (line 1264) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1265) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1266) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1267) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1268) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1269) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1270) | SO_ACCEPTCONN = 0x2
constant SO_BROADCAST (line 1271) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1272) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1273) | SO_DONTROUTE = 0x10
constant SO_DONTTRUNC (line 1274) | SO_DONTTRUNC = 0x2000
constant SO_ERROR (line 1275) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1276) | SO_KEEPALIVE = 0x8
constant SO_LABEL (line 1277) | SO_LABEL = 0x1010
constant SO_LINGER (line 1278) | SO_LINGER = 0x80
constant SO_LINGER_SEC (line 1279) | SO_LINGER_SEC = 0x1080
constant SO_NETSVC_MARKING_LEVEL (line 1280) | SO_NETSVC_MARKING_LEVEL = 0x1119
constant SO_NET_SERVICE_TYPE (line 1281) | SO_NET_SERVICE_TYPE = 0x1116
constant SO_NKE (line 1282) | SO_NKE = 0x1021
constant SO_NOADDRERR (line 1283) | SO_NOADDRERR = 0x1023
constant SO_NOSIGPIPE (line 1284) | SO_NOSIGPIPE = 0x1022
constant SO_NOTIFYCONFLICT (line 1285) | SO_NOTIFYCONFLICT = 0x1026
constant SO_NP_EXTENSIONS (line 1286) | SO_NP_EXTENSIONS = 0x1083
constant SO_NREAD (line 1287) | SO_NREAD = 0x1020
constant SO_NUMRCVPKT (line 1288) | SO_NUMRCVPKT = 0x1112
constant SO_NWRITE (line 1289) | SO_NWRITE = 0x1024
constant SO_OOBINLINE (line 1290) | SO_OOBINLINE = 0x100
constant SO_PEERLABEL (line 1291) | SO_PEERLABEL = 0x1011
constant SO_RANDOMPORT (line 1292) | SO_RANDOMPORT = 0x1082
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_REUSESHAREUID (line 1298) | SO_REUSESHAREUID = 0x1025
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_TIMESTAMP_MONOTONIC (line 1303) | SO_TIMESTAMP_MONOTONIC = 0x800
constant SO_TYPE (line 1304) | SO_TYPE = 0x1008
constant SO_UPCALLCLOSEWAIT (line 1305) | SO_UPCALLCLOSEWAIT = 0x1027
constant SO_USELOOPBACK (line 1306) | SO_USELOOPBACK = 0x40
constant SO_WANTMORE (line 1307) | SO_WANTMORE = 0x4000
constant SO_WANTOOBFLAG (line 1308) | SO_WANTOOBFLAG = 0x8000
constant S_IEXEC (line 1309) | S_IEXEC = 0x40
constant S_IFBLK (line 1310) | S_IFBLK = 0x6000
constant S_IFCHR (line 1311) | S_IFCHR = 0x2000
constant S_IFDIR (line 1312) | S_IFDIR = 0x4000
constant S_IFIFO (line 1313) | S_IFIFO = 0x1000
constant S_IFLNK (line 1314) | S_IFLNK = 0xa000
constant S_IFMT (line 1315) | S_IFMT = 0xf000
constant S_IFREG (line 1316) | S_IFREG = 0x8000
constant S_IFSOCK (line 1317) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1318) | S_IFWHT = 0xe000
constant S_IREAD (line 1319) | S_IREAD = 0x100
constant S_IRGRP (line 1320) | S_IRGRP = 0x20
constant S_IROTH (line 1321) | S_IROTH = 0x4
constant S_IRUSR (line 1322) | S_IRUSR = 0x100
constant S_IRWXG (line 1323) | S_IRWXG = 0x38
constant S_IRWXO (line 1324) | S_IRWXO = 0x7
constant S_IRWXU (line 1325) | S_IRWXU = 0x1c0
constant S_ISGID (line 1326) | S_ISGID = 0x400
constant S_ISTXT (line 1327) | S_ISTXT = 0x200
constant S_ISUID (line 1328) | S_ISUID = 0x800
constant S_ISVTX (line 1329) | S_ISVTX = 0x200
constant S_IWGRP (line 1330) | S_IWGRP = 0x10
constant S_IWOTH (line 1331) | S_IWOTH = 0x2
constant S_IWRITE (line 1332) | S_IWRITE = 0x80
constant S_IWUSR (line 1333) | S_IWUSR = 0x80
constant S_IXGRP (line 1334) | S_IXGRP = 0x8
constant S_IXOTH (line 1335) | S_IXOTH = 0x1
constant S_IXUSR (line 1336) | S_IXUSR = 0x40
constant TAB0 (line 1337) | TAB0 = 0x0
constant TAB1 (line 1338) | TAB1 = 0x400
constant TAB2 (line 1339) | TAB2 = 0x800
constant TAB3 (line 1340) | TAB3 = 0x4
constant TABDLY (line 1341) | TABDLY = 0xc04
constant TCIFLUSH (line 1342) | TCIFLUSH = 0x1
constant TCIOFF (line 1343) | TCIOFF = 0x3
constant TCIOFLUSH (line 1344) | TCIOFLUSH = 0x3
constant TCION (line 1345) | TCION = 0x4
constant TCOFLUSH (line 1346) | TCOFLUSH = 0x2
constant TCOOFF (line 1347) | TCOOFF = 0x1
constant TCOON (line 1348) | TCOON = 0x2
constant TCP_CONNECTIONTIMEOUT (line 1349) | TCP_CONNECTIONTIMEOUT = 0x20
constant TCP_CONNECTION_INFO (line 1350) | TCP_CONNECTION_INFO = 0x106
constant TCP_ENABLE_ECN (line 1351) | TCP_ENABLE_ECN = 0x104
constant TCP_FASTOPEN (line 1352) | TCP_FASTOPEN = 0x105
constant TCP_KEEPALIVE (line 1353) | TCP_KEEPALIVE = 0x10
constant TCP_KEEPCNT (line 1354) | TCP_KEEPCNT = 0x102
constant TCP_KEEPINTVL (line 1355) | TCP_KEEPINTVL = 0x101
constant TCP_MAXHLEN (line 1356) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1357) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1358) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1359) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1360) | TCP_MAX_SACK = 0x4
constant TCP_MAX_WINSHIFT (line 1361) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MINMSS (line 1362) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1363) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1364) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1365) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1366) | TCP_NOPUSH = 0x4
constant TCP_NOTSENT_LOWAT (line 1367) | TCP_NOTSENT_LOWAT = 0x201
constant TCP_RXT_CONNDROPTIME (line 1368) | TCP_RXT_CONNDROPTIME = 0x80
constant TCP_RXT_FINDROP (line 1369) | TCP_RXT_FINDROP = 0x100
constant TCP_SENDMOREACKS (line 1370) | TCP_SENDMOREACKS = 0x103
constant TCSAFLUSH (line 1371) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1372) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1373) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1374) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1375) | TIOCDCDTIMESTAMP = 0x40107458
constant TIOCDRAIN (line 1376) | TIOCDRAIN = 0x2000745e
constant TIOCDSIMICROCODE (line 1377) | TIOCDSIMICROCODE = 0x20007455
constant TIOCEXCL (line 1378) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1379) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1380) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1381) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1382) | TIOCGETA = 0x40487413
constant TIOCGETD (line 1383) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1384) | TIOCGPGRP = 0x40047477
constant TIOCGWINSZ (line 1385) | TIOCGWINSZ = 0x40087468
constant TIOCIXOFF (line 1386) | TIOCIXOFF = 0x20007480
constant TIOCIXON (line 1387) | TIOCIXON = 0x20007481
constant TIOCMBIC (line 1388) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1389) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1390) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1391) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1392) | TIOCMODG = 0x40047403
constant TIOCMODS (line 1393) | TIOCMODS = 0x80047404
constant TIOCMSDTRWAIT (line 1394) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1395) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1396) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1397) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1398) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1399) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1400) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1401) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1402) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1403) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1404) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1405) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1406) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1407) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1408) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1409) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1410) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1411) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1412) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1413) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1414) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1415) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1416) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1417) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1418) | TIOCPKT_STOP = 0x4
constant TIOCPTYGNAME (line 1419) | TIOCPTYGNAME = 0x40807453
constant TIOCPTYGRANT (line 1420) | TIOCPTYGRANT = 0x20007454
constant TIOCPTYUNLK (line 1421) | TIOCPTYUNLK = 0x20007452
constant TIOCREMOTE (line 1422) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1423) | TIOCSBRK = 0x2000747b
constant TIOCSCONS (line 1424) | TIOCSCONS = 0x20007463
constant TIOCSCTTY (line 1425) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1426) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1427) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1428) | TIOCSETA = 0x80487414
constant TIOCSETAF (line 1429) | TIOCSETAF = 0x80487416
constant TIOCSETAW (line 1430) | TIOCSETAW = 0x80487415
constant TIOCSETD (line 1431) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1432) | TIOCSIG = 0x2000745f
constant TIOCSPGRP (line 1433) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1434) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1435) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1436) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1437) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1438) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1439) | TIOCTIMESTAMP = 0x40107459
constant TIOCUCNTL (line 1440) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1441) | TOSTOP = 0x400000
constant VDISCARD (line 1442) | VDISCARD = 0xf
constant VDSUSP (line 1443) | VDSUSP = 0xb
constant VEOF (line 1444) | VEOF = 0x0
constant VEOL (line 1445) | VEOL = 0x1
constant VEOL2 (line 1446) | VEOL2 = 0x2
constant VERASE (line 1447) | VERASE = 0x3
constant VINTR (line 1448) | VINTR = 0x8
constant VKILL (line 1449) | VKILL = 0x5
constant VLNEXT (line 1450) | VLNEXT = 0xe
constant VMIN (line 1451) | VMIN = 0x10
constant VM_LOADAVG (line 1452) | VM_LOADAVG = 0x2
constant VM_MACHFACTOR (line 1453) | VM_MACHFACTOR = 0x4
constant VM_MAXID (line 1454) | VM_MAXID = 0x6
constant VM_METER (line 1455) | VM_METER = 0x1
constant VM_SWAPUSAGE (line 1456) | VM_SWAPUSAGE = 0x5
constant VQUIT (line 1457) | VQUIT = 0x9
constant VREPRINT (line 1458) | VREPRINT = 0x6
constant VSTART (line 1459) | VSTART = 0xc
constant VSTATUS (line 1460) | VSTATUS = 0x12
constant VSTOP (line 1461) | VSTOP = 0xd
constant VSUSP (line 1462) | VSUSP = 0xa
constant VT0 (line 1463) | VT0 = 0x0
constant VT1 (line 1464) | VT1 = 0x10000
constant VTDLY (line 1465) | VTDLY = 0x10000
constant VTIME (line 1466) | VTIME = 0x11
constant VWERASE (line 1467) | VWERASE = 0x4
constant WCONTINUED (line 1468) | WCONTINUED = 0x10
constant WCOREFLAG (line 1469) | WCOREFLAG = 0x80
constant WEXITED (line 1470) | WEXITED = 0x4
constant WNOHANG (line 1471) | WNOHANG = 0x1
constant WNOWAIT (line 1472) | WNOWAIT = 0x20
constant WORDSIZE (line 1473) | WORDSIZE = 0x40
constant WSTOPPED (line 1474) | WSTOPPED = 0x8
constant WUNTRACED (line 1475) | WUNTRACED = 0x2
constant XATTR_CREATE (line 1476) | XATTR_CREATE = 0x2
constant XATTR_NODEFAULT (line 1477) | XATTR_NODEFAULT = 0x10
constant XATTR_NOFOLLOW (line 1478) | XATTR_NOFOLLOW = 0x1
constant XATTR_NOSECURITY (line 1479) | XATTR_NOSECURITY = 0x8
constant XATTR_REPLACE (line 1480) | XATTR_REPLACE = 0x4
constant XATTR_SHOWCOMPRESSION (line 1481) | XATTR_SHOWCOMPRESSION = 0x20
constant E2BIG (line 1486) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1487) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1488) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1489) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1490) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1491) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1492) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1493) | EAUTH = syscall.Errno(0x50)
constant EBADARCH (line 1494) | EBADARCH = syscall.Errno(0x56)
constant EBADEXEC (line 1495) | EBADEXEC = syscall.Errno(0x55)
constant EBADF (line 1496) | EBADF = syscall.Errno(0x9)
constant EBADMACHO (line 1497) | EBADMACHO = syscall.Errno(0x58)
constant EBADMSG (line 1498) | EBADMSG = syscall.Errno(0x5e)
constant EBADRPC (line 1499) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1500) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1501) | ECANCELED = syscall.Errno(0x59)
constant ECHILD (line 1502) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1503) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1504) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1505) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1506) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1507) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDEVERR (line 1508) | EDEVERR = syscall.Errno(0x53)
constant EDOM (line 1509) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1510) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1511) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1512) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1513) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1514) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1515) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1516) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1517) | EIDRM = syscall.Errno(0x5a)
constant EILSEQ (line 1518) | EILSEQ = syscall.Errno(0x5c)
constant EINPROGRESS (line 1519) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1520) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1521) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1522) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1523) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1524) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1525) | ELAST = syscall.Errno(0x6a)
constant ELOOP (line 1526) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1527) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1528) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1529) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1530) | EMULTIHOP = syscall.Errno(0x5f)
constant ENAMETOOLONG (line 1531) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1532) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1533) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1534) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1535) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1536) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1537) | ENOATTR = syscall.Errno(0x5d)
constant ENOBUFS (line 1538) | ENOBUFS = syscall.Errno(0x37)
constant ENODATA (line 1539) | ENODATA = syscall.Errno(0x60)
constant ENODEV (line 1540) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1541) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1542) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1543) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1544) | ENOLINK = syscall.Errno(0x61)
constant ENOMEM (line 1545) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1546) | ENOMSG = syscall.Errno(0x5b)
constant ENOPOLICY (line 1547) | ENOPOLICY = syscall.Errno(0x67)
constant ENOPROTOOPT (line 1548) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1549) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1550) | ENOSR = syscall.Errno(0x62)
constant ENOSTR (line 1551) | ENOSTR = syscall.Errno(0x63)
constant ENOSYS (line 1552) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1553) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1554) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1555) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1556) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1557) | ENOTRECOVERABLE = syscall.Errno(0x68)
constant ENOTSOCK (line 1558) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1559) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1560) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1561) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1562) | EOPNOTSUPP = syscall.Errno(0x66)
constant EOVERFLOW (line 1563) | EOVERFLOW = syscall.Errno(0x54)
constant EOWNERDEAD (line 1564) | EOWNERDEAD = syscall.Errno(0x69)
constant EPERM (line 1565) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1566) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1567) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1568) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1569) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1570) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1571) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1572) | EPROTO = syscall.Errno(0x64)
constant EPROTONOSUPPORT (line 1573) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1574) | EPROTOTYPE = syscall.Errno(0x29)
constant EPWROFF (line 1575) | EPWROFF = syscall.Errno(0x52)
constant EQFULL (line 1576) | EQFULL = syscall.Errno(0x6a)
constant ERANGE (line 1577) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1578) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1579) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1580) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHLIBVERS (line 1581) | ESHLIBVERS = syscall.Errno(0x57)
constant ESHUTDOWN (line 1582) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1583) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1584) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1585) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1586) | ESTALE = syscall.Errno(0x46)
constant ETIME (line 1587) | ETIME = syscall.Errno(0x65)
constant ETIMEDOUT (line 1588) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1589) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1590) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1591) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1592) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1593) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1598) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1599) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1600) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1601) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1602) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1603) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1604) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1605) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1606) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1607) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1608) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1609) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1610) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1611) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1612) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1613) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1614) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1615) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1616) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1617) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1618) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1619) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1620) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1621) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1622) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1623) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1624) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1625) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1626) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1627) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1628) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1629) | 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_HW (line 171) | CTL_HW = 0x6
constant CTL_KERN (line 172) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 173) | CTL_MAXNAME = 0xc
constant CTL_NET (line 174) | CTL_NET = 0x4
constant DLT_A429 (line 175) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 176) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 177) | DLT_AIRONET_HEADER = 0x78
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_CHAOS (line 190) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 191) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 192) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 193) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 194) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DOCSIS (line 195) | DLT_DOCSIS = 0x8f
constant DLT_ECONET (line 196) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 197) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 198) | DLT_EN3MB = 0x2
constant DLT_ENC (line 199) | DLT_ENC = 0x6d
constant DLT_ERF (line 200) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 201) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 202) | DLT_ERF_POS = 0xb0
constant DLT_FDDI (line 203) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 204) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 205) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 206) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 207) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 208) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 209) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 210) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 211) | DLT_GPRS_LLC = 0xa9
constant DLT_HHDLC (line 212) | DLT_HHDLC = 0x79
constant DLT_IBM_SN (line 213) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 214) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 215) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 216) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 217) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 218) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 219) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 220) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NONASK_PHY (line 221) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 222) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 223) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPFILTER (line 224) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 225) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 226) | DLT_IPMB_LINUX = 0xd1
constant DLT_IP_OVER_FC (line 227) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 228) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 229) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_CHDLC (line 230) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 231) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 232) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FRELAY (line 233) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 234) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 235) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 236) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 237) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 238) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 239) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 240) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 241) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 242) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 243) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 244) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_ST (line 245) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 246) | DLT_JUNIPER_VP = 0xb7
constant DLT_LAPB_WITH_DIR (line 247) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 248) | DLT_LAPD = 0xcb
constant DLT_LIN (line 249) | DLT_LIN = 0xd4
constant DLT_LINUX_IRDA (line 250) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 251) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_SLL (line 252) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 253) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 254) | DLT_LTALK = 0x72
constant DLT_MFR (line 255) | DLT_MFR = 0xb6
constant DLT_MOST (line 256) | DLT_MOST = 0xd3
constant DLT_MTP2 (line 257) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 258) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 259) | DLT_MTP3 = 0x8d
constant DLT_NULL (line 260) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 261) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 262) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 263) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 264) | DLT_PPI = 0xc0
constant DLT_PPP (line 265) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 266) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 267) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 268) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 269) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 270) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PRISM_HEADER (line 271) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 272) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 273) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 274) | DLT_RAW = 0xc
constant DLT_REDBACK_SMARTEDGE (line 275) | DLT_REDBACK_SMARTEDGE = 0x20
constant DLT_RIO (line 276) | DLT_RIO = 0x7c
constant DLT_SCCP (line 277) | DLT_SCCP = 0x8e
constant DLT_SITA (line 278) | DLT_SITA = 0xc4
constant DLT_SLIP (line 279) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 280) | DLT_SLIP_BSDOS = 0xf
constant DLT_SUNATM (line 281) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 282) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 283) | DLT_TZSP = 0x80
constant DLT_USB (line 284) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 285) | DLT_USB_LINUX = 0xbd
constant DLT_X2E_SERIAL (line 286) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 287) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 288) | DT_BLK = 0x6
constant DT_CHR (line 289) | DT_CHR = 0x2
constant DT_DBF (line 290) | DT_DBF = 0xf
constant DT_DIR (line 291) | DT_DIR = 0x4
constant DT_FIFO (line 292) | DT_FIFO = 0x1
constant DT_LNK (line 293) | DT_LNK = 0xa
constant DT_REG (line 294) | DT_REG = 0x8
constant DT_SOCK (line 295) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 296) | DT_UNKNOWN = 0x0
constant DT_WHT (line 297) | DT_WHT = 0xe
constant ECHO (line 298) | ECHO = 0x8
constant ECHOCTL (line 299) | ECHOCTL = 0x40
constant ECHOE (line 300) | ECHOE = 0x2
constant ECHOK (line 301) | ECHOK = 0x4
constant ECHOKE (line 302) | ECHOKE = 0x1
constant ECHONL (line 303) | ECHONL = 0x10
constant ECHOPRT (line 304) | ECHOPRT = 0x20
constant EVFILT_AIO (line 305) | EVFILT_AIO = -0x3
constant EVFILT_EXCEPT (line 306) | EVFILT_EXCEPT = -0x8
constant EVFILT_FS (line 307) | EVFILT_FS = -0xa
constant EVFILT_MARKER (line 308) | EVFILT_MARKER = 0xf
constant EVFILT_PROC (line 309) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 310) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 311) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 312) | EVFILT_SYSCOUNT = 0xa
constant EVFILT_TIMER (line 313) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 314) | EVFILT_USER = -0x9
constant EVFILT_VNODE (line 315) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 316) | EVFILT_WRITE = -0x2
constant EV_ADD (line 317) | EV_ADD = 0x1
constant EV_CLEAR (line 318) | EV_CLEAR = 0x20
constant EV_DELETE (line 319) | EV_DELETE = 0x2
constant EV_DISABLE (line 320) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 321) | EV_DISPATCH = 0x80
constant EV_ENABLE (line 322) | EV_ENABLE = 0x4
constant EV_EOF (line 323) | EV_EOF = 0x8000
constant EV_ERROR (line 324) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 325) | EV_FLAG1 = 0x2000
constant EV_NODATA (line 326) | EV_NODATA = 0x1000
constant EV_ONESHOT (line 327) | EV_ONESHOT = 0x10
constant EV_RECEIPT (line 328) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 329) | EV_SYSFLAGS = 0xf000
constant EXTA (line 330) | EXTA = 0x4b00
constant EXTB (line 331) | EXTB = 0x9600
constant EXTEXIT_LWP (line 332) | EXTEXIT_LWP = 0x10000
constant EXTEXIT_PROC (line 333) | EXTEXIT_PROC = 0x0
constant EXTEXIT_SETINT (line 334) | EXTEXIT_SETINT = 0x1
constant EXTEXIT_SIMPLE (line 335) | EXTEXIT_SIMPLE = 0x0
constant EXTPROC (line 336) | EXTPROC = 0x800
constant FD_CLOEXEC (line 337) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 338) | FD_SETSIZE = 0x400
constant FLUSHO (line 339) | FLUSHO = 0x800000
constant F_DUP2FD (line 340) | F_DUP2FD = 0xa
constant F_DUP2FD_CLOEXEC (line 341) | F_DUP2FD_CLOEXEC = 0x12
constant F_DUPFD (line 342) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 343) | F_DUPFD_CLOEXEC = 0x11
constant F_GETFD (line 344) | F_GETFD = 0x1
constant F_GETFL (line 345) | F_GETFL = 0x3
constant F_GETLK (line 346) | F_GETLK = 0x7
constant F_GETOWN (line 347) | F_GETOWN = 0x5
constant F_OK (line 348) | F_OK = 0x0
constant F_RDLCK (line 349) | F_RDLCK = 0x1
constant F_SETFD (line 350) | F_SETFD = 0x2
constant F_SETFL (line 351) | F_SETFL = 0x4
constant F_SETLK (line 352) | F_SETLK = 0x8
constant F_SETLKW (line 353) | F_SETLKW = 0x9
constant F_SETOWN (line 354) | F_SETOWN = 0x6
constant F_UNLCK (line 355) | F_UNLCK = 0x2
constant F_WRLCK (line 356) | F_WRLCK = 0x3
constant HUPCL (line 357) | HUPCL = 0x4000
constant HW_MACHINE (line 358) | HW_MACHINE = 0x1
constant ICANON (line 359) | ICANON = 0x100
constant ICMP6_FILTER (line 360) | ICMP6_FILTER = 0x12
constant ICRNL (line 361) | ICRNL = 0x100
constant IEXTEN (line 362) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 363) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 364) | IFAN_DEPARTURE = 0x1
constant IFF_ALLMULTI (line 365) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 366) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 367) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 368) | IFF_CANTCHANGE = 0x118e72
constant IFF_DEBUG (line 369) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 370) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 371) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 372) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 373) | IFF_LOOPBACK = 0x8
constant IFF_MONITOR (line 374) | IFF_MONITOR = 0x40000
constant IFF_MULTICAST (line 375) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 376) | IFF_NOARP = 0x80
constant IFF_NPOLLING (line 377) | IFF_NPOLLING = 0x100000
constant IFF_OACTIVE (line 378) | IFF_OACTIVE = 0x400
constant IFF_OACTIVE_COMPAT (line 379) | IFF_OACTIVE_COMPAT = 0x400
constant IFF_POINTOPOINT (line 380) | IFF_POINTOPOINT = 0x10
constant IFF_POLLING (line 381) | IFF_POLLING = 0x10000
constant IFF_POLLING_COMPAT (line 382) | IFF_POLLING_COMPAT = 0x10000
constant IFF_PPROMISC (line 383) | IFF_PPROMISC = 0x20000
constant IFF_PROMISC (line 384) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 385) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 386) | IFF_SIMPLEX = 0x800
constant IFF_SMART (line 387) | IFF_SMART = 0x20
constant IFF_STATICARP (line 388) | IFF_STATICARP = 0x80000
constant IFF_UP (line 389) | IFF_UP = 0x1
constant IFNAMSIZ (line 390) | IFNAMSIZ = 0x10
constant IFT_1822 (line 391) | IFT_1822 = 0x2
constant IFT_A12MPPSWITCH (line 392) | IFT_A12MPPSWITCH = 0x82
constant IFT_AAL2 (line 393) | IFT_AAL2 = 0xbb
constant IFT_AAL5 (line 394) | IFT_AAL5 = 0x31
constant IFT_ADSL (line 395) | IFT_ADSL = 0x5e
constant IFT_AFLANE8023 (line 396) | IFT_AFLANE8023 = 0x3b
constant IFT_AFLANE8025 (line 397) | IFT_AFLANE8025 = 0x3c
constant IFT_ARAP (line 398) | IFT_ARAP = 0x58
constant IFT_ARCNET (line 399) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 400) | IFT_ARCNETPLUS = 0x24
constant IFT_ASYNC (line 401) | IFT_ASYNC = 0x54
constant IFT_ATM (line 402) | IFT_ATM = 0x25
constant IFT_ATMDXI (line 403) | IFT_ATMDXI = 0x69
constant IFT_ATMFUNI (line 404) | IFT_ATMFUNI = 0x6a
constant IFT_ATMIMA (line 405) | IFT_ATMIMA = 0x6b
constant IFT_ATMLOGICAL (line 406) | IFT_ATMLOGICAL = 0x50
constant IFT_ATMRADIO (line 407) | IFT_ATMRADIO = 0xbd
constant IFT_ATMSUBINTERFACE (line 408) | IFT_ATMSUBINTERFACE = 0x86
constant IFT_ATMVCIENDPT (line 409) | IFT_ATMVCIENDPT = 0xc2
constant IFT_ATMVIRTUAL (line 410) | IFT_ATMVIRTUAL = 0x95
constant IFT_BGPPOLICYACCOUNTING (line 411) | IFT_BGPPOLICYACCOUNTING = 0xa2
constant IFT_BRIDGE (line 412) | IFT_BRIDGE = 0xd1
constant IFT_BSC (line 413) | IFT_BSC = 0x53
constant IFT_CARP (line 414) | IFT_CARP = 0xf8
constant IFT_CCTEMUL (line 415) | IFT_CCTEMUL = 0x3d
constant IFT_CEPT (line 416) | IFT_CEPT = 0x13
constant IFT_CES (line 417) | IFT_CES = 0x85
constant IFT_CHANNEL (line 418) | IFT_CHANNEL = 0x46
constant IFT_CNR (line 419) | IFT_CNR = 0x55
constant IFT_COFFEE (line 420) | IFT_COFFEE = 0x84
constant IFT_COMPOSITELINK (line 421) | IFT_COMPOSITELINK = 0x9b
constant IFT_DCN (line 422) | IFT_DCN = 0x8d
constant IFT_DIGITALPOWERLINE (line 423) | IFT_DIGITALPOWERLINE = 0x8a
constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 424) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
constant IFT_DLSW (line 425) | IFT_DLSW = 0x4a
constant IFT_DOCSCABLEDOWNSTREAM (line 426) | IFT_DOCSCABLEDOWNSTREAM = 0x80
constant IFT_DOCSCABLEMACLAYER (line 427) | IFT_DOCSCABLEMACLAYER = 0x7f
constant IFT_DOCSCABLEUPSTREAM (line 428) | IFT_DOCSCABLEUPSTREAM = 0x81
constant IFT_DS0 (line 429) | IFT_DS0 = 0x51
constant IFT_DS0BUNDLE (line 430) | IFT_DS0BUNDLE = 0x52
constant IFT_DS1FDL (line 431) | IFT_DS1FDL = 0xaa
constant IFT_DS3 (line 432) | IFT_DS3 = 0x1e
constant IFT_DTM (line 433) | IFT_DTM = 0x8c
constant IFT_DVBASILN (line 434) | IFT_DVBASILN = 0xac
constant IFT_DVBASIOUT (line 435) | IFT_DVBASIOUT = 0xad
constant IFT_DVBRCCDOWNSTREAM (line 436) | IFT_DVBRCCDOWNSTREAM = 0x93
constant IFT_DVBRCCMACLAYER (line 437) | IFT_DVBRCCMACLAYER = 0x92
constant IFT_DVBRCCUPSTREAM (line 438) | IFT_DVBRCCUPSTREAM = 0x94
constant IFT_ENC (line 439) | IFT_ENC = 0xf4
constant IFT_EON (line 440) | IFT_EON = 0x19
constant IFT_EPLRS (line 441) | IFT_EPLRS = 0x57
constant IFT_ESCON (line 442) | IFT_ESCON = 0x49
constant IFT_ETHER (line 443) | IFT_ETHER = 0x6
constant IFT_FAITH (line 444) | IFT_FAITH = 0xf2
constant IFT_FAST (line 445) | IFT_FAST = 0x7d
constant IFT_FASTETHER (line 446) | IFT_FASTETHER = 0x3e
constant IFT_FASTETHERFX (line 447) | IFT_FASTETHERFX = 0x45
constant IFT_FDDI (line 448) | IFT_FDDI = 0xf
constant IFT_FIBRECHANNEL (line 449) | IFT_FIBRECHANNEL = 0x38
constant IFT_FRAMERELAYINTERCONNECT (line 450) | IFT_FRAMERELAYINTERCONNECT = 0x3a
constant IFT_FRAMERELAYMPI (line 451) | IFT_FRAMERELAYMPI = 0x5c
constant IFT_FRDLCIENDPT (line 452) | IFT_FRDLCIENDPT = 0xc1
constant IFT_FRELAY (line 453) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 454) | IFT_FRELAYDCE = 0x2c
constant IFT_FRF16MFRBUNDLE (line 455) | IFT_FRF16MFRBUNDLE = 0xa3
constant IFT_FRFORWARD (line 456) | IFT_FRFORWARD = 0x9e
constant IFT_G703AT2MB (line 457) | IFT_G703AT2MB = 0x43
constant IFT_G703AT64K (line 458) | IFT_G703AT64K = 0x42
constant IFT_GIF (line 459) | IFT_GIF = 0xf0
constant IFT_GIGABITETHERNET (line 460) | IFT_GIGABITETHERNET = 0x75
constant IFT_GR303IDT (line 461) | IFT_GR303IDT = 0xb2
constant IFT_GR303RDT (line 462) | IFT_GR303RDT = 0xb1
constant IFT_H323GATEKEEPER (line 463) | IFT_H323GATEKEEPER = 0xa4
constant IFT_H323PROXY (line 464) | IFT_H323PROXY = 0xa5
constant IFT_HDH1822 (line 465) | IFT_HDH1822 = 0x3
constant IFT_HDLC (line 466) | IFT_HDLC = 0x76
constant IFT_HDSL2 (line 467) | IFT_HDSL2 = 0xa8
constant IFT_HIPERLAN2 (line 468) | IFT_HIPERLAN2 = 0xb7
constant IFT_HIPPI (line 469) | IFT_HIPPI = 0x2f
constant IFT_HIPPIINTERFACE (line 470) | IFT_HIPPIINTERFACE = 0x39
constant IFT_HOSTPAD (line 471) | IFT_HOSTPAD = 0x5a
constant IFT_HSSI (line 472) | IFT_HSSI = 0x2e
constant IFT_HY (line 473) | IFT_HY = 0xe
constant IFT_IBM370PARCHAN (line 474) | IFT_IBM370PARCHAN = 0x48
constant IFT_IDSL (line 475) | IFT_IDSL = 0x9a
constant IFT_IEEE1394 (line 476) | IFT_IEEE1394 = 0x90
constant IFT_IEEE80211 (line 477) | IFT_IEEE80211 = 0x47
constant IFT_IEEE80212 (line 478) | IFT_IEEE80212 = 0x37
constant IFT_IEEE8023ADLAG (line 479) | IFT_IEEE8023ADLAG = 0xa1
constant IFT_IFGSN (line 480) | IFT_IFGSN = 0x91
constant IFT_IMT (line 481) | IFT_IMT = 0xbe
constant IFT_INTERLEAVE (line 482) | IFT_INTERLEAVE = 0x7c
constant IFT_IP (line 483) | IFT_IP = 0x7e
constant IFT_IPFORWARD (line 484) | IFT_IPFORWARD = 0x8e
constant IFT_IPOVERATM (line 485) | IFT_IPOVERATM = 0x72
constant IFT_IPOVERCDLC (line 486) | IFT_IPOVERCDLC = 0x6d
constant IFT_IPOVERCLAW (line 487) | IFT_IPOVERCLAW = 0x6e
constant IFT_IPSWITCH (line 488) | IFT_IPSWITCH = 0x4e
constant IFT_ISDN (line 489) | IFT_ISDN = 0x3f
constant IFT_ISDNBASIC (line 490) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 491) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISDNS (line 492) | IFT_ISDNS = 0x4b
constant IFT_ISDNU (line 493) | IFT_ISDNU = 0x4c
constant IFT_ISO88022LLC (line 494) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 495) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 496) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 497) | IFT_ISO88025 = 0x9
constant IFT_ISO88025CRFPINT (line 498) | IFT_ISO88025CRFPINT = 0x62
constant IFT_ISO88025DTR (line 499) | IFT_ISO88025DTR = 0x56
constant IFT_ISO88025FIBER (line 500) | IFT_ISO88025FIBER = 0x73
constant IFT_ISO88026 (line 501) | IFT_ISO88026 = 0xa
constant IFT_ISUP (line 502) | IFT_ISUP = 0xb3
constant IFT_L2VLAN (line 503) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 504) | IFT_L3IPVLAN = 0x88
constant IFT_L3IPXVLAN (line 505) | IFT_L3IPXVLAN = 0x89
constant IFT_LAPB (line 506) | IFT_LAPB = 0x10
constant IFT_LAPD (line 507) | IFT_LAPD = 0x4d
constant IFT_LAPF (line 508) | IFT_LAPF = 0x77
constant IFT_LOCALTALK (line 509) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 510) | IFT_LOOP = 0x18
constant IFT_MEDIAMAILOVERIP (line 511) | IFT_MEDIAMAILOVERIP = 0x8b
constant IFT_MFSIGLINK (line 512) | IFT_MFSIGLINK = 0xa7
constant IFT_MIOX25 (line 513) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 514) | IFT_MODEM = 0x30
constant IFT_MPC (line 515) | IFT_MPC = 0x71
constant IFT_MPLS (line 516) | IFT_MPLS = 0xa6
constant IFT_MPLSTUNNEL (line 517) | IFT_MPLSTUNNEL = 0x96
constant IFT_MSDSL (line 518) | IFT_MSDSL = 0x8f
constant IFT_MVL (line 519) | IFT_MVL = 0xbf
constant IFT_MYRINET (line 520) | IFT_MYRINET = 0x63
constant IFT_NFAS (line 521) | IFT_NFAS = 0xaf
constant IFT_NSIP (line 522) | IFT_NSIP = 0x1b
constant IFT_OPTICALCHANNEL (line 523) | IFT_OPTICALCHANNEL = 0xc3
constant IFT_OPTICALTRANSPORT (line 524) | IFT_OPTICALTRANSPORT = 0xc4
constant IFT_OTHER (line 525) | IFT_OTHER = 0x1
constant IFT_P10 (line 526) | IFT_P10 = 0xc
constant IFT_P80 (line 527) | IFT_P80 = 0xd
constant IFT_PARA (line 528) | IFT_PARA = 0x22
constant IFT_PFLOG (line 529) | IFT_PFLOG = 0xf5
constant IFT_PFSYNC (line 530) | IFT_PFSYNC = 0xf6
constant IFT_PLC (line 531) | IFT_PLC = 0xae
constant IFT_POS (line 532) | IFT_POS = 0xab
constant IFT_PPP (line 533) | IFT_PPP = 0x17
constant IFT_PPPMULTILINKBUNDLE (line 534) | IFT_PPPMULTILINKBUNDLE = 0x6c
constant IFT_PROPBWAP2MP (line 535) | IFT_PROPBWAP2MP = 0xb8
constant IFT_PROPCNLS (line 536) | IFT_PROPCNLS = 0x59
constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 537) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5
constant IFT_PROPDOCSWIRELESSMACLAYER (line 538) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4
constant IFT_PROPDOCSWIRELESSUPSTREAM (line 539) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6
constant IFT_PROPMUX (line 540) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 541) | IFT_PROPVIRTUAL = 0x35
constant IFT_PROPWIRELESSP2P (line 542) | IFT_PROPWIRELESSP2P = 0x9d
constant IFT_PTPSERIAL (line 543) | IFT_PTPSERIAL = 0x16
constant IFT_PVC (line 544) | IFT_PVC = 0xf1
constant IFT_QLLC (line 545) | IFT_QLLC = 0x44
constant IFT_RADIOMAC (line 546) | IFT_RADIOMAC = 0xbc
constant IFT_RADSL (line 547) | IFT_RADSL = 0x5f
constant IFT_REACHDSL (line 548) | IFT_REACHDSL = 0xc0
constant IFT_RFC1483 (line 549) | IFT_RFC1483 = 0x9f
constant IFT_RS232 (line 550) | IFT_RS232 = 0x21
constant IFT_RSRB (line 551) | IFT_RSRB = 0x4f
constant IFT_SDLC (line 552) | IFT_SDLC = 0x11
constant IFT_SDSL (line 553) | IFT_SDSL = 0x60
constant IFT_SHDSL (line 554) | IFT_SHDSL = 0xa9
constant IFT_SIP (line 555) | IFT_SIP = 0x1f
constant IFT_SLIP (line 556) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 557) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 558) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 559) | IFT_SONET = 0x27
constant IFT_SONETOVERHEADCHANNEL (line 560) | IFT_SONETOVERHEADCHANNEL = 0xb9
constant IFT_SONETPATH (line 561) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 562) | IFT_SONETVT = 0x33
constant IFT_SRP (line 563) | IFT_SRP = 0x97
constant IFT_SS7SIGLINK (line 564) | IFT_SS7SIGLINK = 0x9c
constant IFT_STACKTOSTACK (line 565) | IFT_STACKTOSTACK = 0x6f
constant IFT_STARLAN (line 566) | IFT_STARLAN = 0xb
constant IFT_STF (line 567) | IFT_STF = 0xf3
constant IFT_T1 (line 568) | IFT_T1 = 0x12
constant IFT_TDLC (line 569) | IFT_TDLC = 0x74
constant IFT_TERMPAD (line 570) | IFT_TERMPAD = 0x5b
constant IFT_TR008 (line 571) | IFT_TR008 = 0xb0
constant IFT_TRANSPHDLC (line 572) | IFT_TRANSPHDLC = 0x7b
constant IFT_TUNNEL (line 573) | IFT_TUNNEL = 0x83
constant IFT_ULTRA (line 574) | IFT_ULTRA = 0x1d
constant IFT_USB (line 575) | IFT_USB = 0xa0
constant IFT_V11 (line 576) | IFT_V11 = 0x40
constant IFT_V35 (line 577) | IFT_V35 = 0x2d
constant IFT_V36 (line 578) | IFT_V36 = 0x41
constant IFT_V37 (line 579) | IFT_V37 = 0x78
constant IFT_VDSL (line 580) | IFT_VDSL = 0x61
constant IFT_VIRTUALIPADDRESS (line 581) | IFT_VIRTUALIPADDRESS = 0x70
constant IFT_VOICEEM (line 582) | IFT_VOICEEM = 0x64
constant IFT_VOICEENCAP (line 583) | IFT_VOICEENCAP = 0x67
constant IFT_VOICEFXO (line 584) | IFT_VOICEFXO = 0x65
constant IFT_VOICEFXS (line 585) | IFT_VOICEFXS = 0x66
constant IFT_VOICEOVERATM (line 586) | IFT_VOICEOVERATM = 0x98
constant IFT_VOICEOVERFRAMERELAY (line 587) | IFT_VOICEOVERFRAMERELAY = 0x99
constant IFT_VOICEOVERIP (line 588) | IFT_VOICEOVERIP = 0x68
constant IFT_X213 (line 589) | IFT_X213 = 0x5d
constant IFT_X25 (line 590) | IFT_X25 = 0x5
constant IFT_X25DDN (line 591) | IFT_X25DDN = 0x4
constant IFT_X25HUNTGROUP (line 592) | IFT_X25HUNTGROUP = 0x7a
constant IFT_X25MLP (line 593) | IFT_X25MLP = 0x79
constant IFT_X25PLE (line 594) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 595) | IFT_XETHER = 0x1a
constant IGNBRK (line 596) | IGNBRK = 0x1
constant IGNCR (line 597) | IGNCR = 0x80
constant IGNPAR (line 598) | IGNPAR = 0x4
constant IMAXBEL (line 599) | IMAXBEL = 0x2000
constant INLCR (line 600) | INLCR = 0x40
constant INPCK (line 601) | INPCK = 0x10
constant IN_CLASSA_HOST (line 602) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 603) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 604) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 605) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 606) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 607) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 608) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 609) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 610) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 611) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 612) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 613) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 614) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 615) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 616) | IN_LOOPBACKNET = 0x7f
constant IPPROTO_3PC (line 617) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 618) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 619) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 620) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 621) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 622) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 623) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 624) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 625) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 626) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CARP (line 627) | IPPROTO_CARP = 0x70
constant IPPROTO_CFTP (line 628) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 629) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 630) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 631) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 632) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 633) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 634) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 635) | IPPROTO_DIVERT = 0xfe
constant IPPROTO_DONE (line 636) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 637) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 638) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 639) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 640) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 641) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 642) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 643) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 644) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 645) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 646) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 647) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 648) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HMP (line 649) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 650) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 651) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 652) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 653) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 654) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 655) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 656) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 657) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 658) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 659) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 660) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 661) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 662) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 663) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 664) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 665) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 666) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 667) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 668) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 669) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 670) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 671) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 672) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 673) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 674) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 675) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 676) | IPPROTO_MAXID = 0x34
constant IPPROTO_MEAS (line 677) | IPPROTO_MEAS = 0x13
constant IPPROTO_MHRP (line 678) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 679) | IPPROTO_MICP = 0x5f
constant IPPROTO_MOBILE (line 680) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MTP (line 681) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 682) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 683) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 684) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 685) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 686) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 687) | IPPROTO_NVPII = 0xb
constant IPPROTO_OSPFIGP (line 688) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PFSYNC (line 689) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PGM (line 690) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 691) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 692) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 693) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 694) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 695) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 696) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 697) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 698) | IPPROTO_RDP = 0x1b
constant IPPROTO_ROUTING (line 699) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 700) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 701) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 702) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 703) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 704) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SDRP (line 705) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEP (line 706) | IPPROTO_SEP = 0x21
constant IPPROTO_SKIP (line 707) | IPPROTO_SKIP = 0x39
constant IPPROTO_SRPC (line 708) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 709) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 710) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 711) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 712) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 713) | IPPROTO_TCP = 0x6
constant IPPROTO_TLSP (line 714) | IPPROTO_TLSP = 0x38
constant IPPROTO_TP (line 715) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 716) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 717) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 718) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 719) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 720) | IPPROTO_UDP = 0x11
constant IPPROTO_UNKNOWN (line 721) | IPPROTO_UNKNOWN = 0x102
constant IPPROTO_VINES (line 722) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 723) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 724) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 725) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 726) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 727) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 728) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 729) | IPPROTO_XTP = 0x24
constant IPV6_AUTOFLOWLABEL (line 730) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_BINDV6ONLY (line 731) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_CHECKSUM (line 732) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 733) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 734) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 735) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 736) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 737) | IPV6_DSTOPTS = 0x32
constant IPV6_FAITH (line 738) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 739) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 740) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FRAGTTL (line 741) | IPV6_FRAGTTL = 0x78
constant IPV6_FW_ADD (line 742) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 743) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 744) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 745) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 746) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 747) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 748) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 749) | IPV6_HOPOPTS = 0x31
constant IPV6_IPSEC_POLICY (line 750) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 751) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 752) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 753) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXPACKET (line 754) | IPV6_MAXPACKET = 0xffff
constant IPV6_MINHLIM (line 755) | IPV6_MINHLIM = 0x28
constant IPV6_MMTU (line 756) | IPV6_MMTU = 0x500
constant IPV6_MSFILTER (line 757) | IPV6_MSFILTER = 0x4a
constant IPV6_MULTICAST_HOPS (line 758) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 759) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 760) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 761) | IPV6_NEXTHOP = 0x30
constant IPV6_PATHMTU (line 762) | IPV6_PATHMTU = 0x2c
constant IPV6_PKTINFO (line 763) | IPV6_PKTINFO = 0x2e
constant IPV6_PKTOPTIONS (line 764) | IPV6_PKTOPTIONS = 0x34
constant IPV6_PORTRANGE (line 765) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 766) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 767) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 768) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_PREFER_TEMPADDR (line 769) | IPV6_PREFER_TEMPADDR = 0x3f
constant IPV6_RECVDSTOPTS (line 770) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVHOPLIMIT (line 771) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 772) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 773) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 774) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRTHDR (line 775) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 776) | IPV6_RECVTCLASS = 0x39
constant IPV6_RTHDR (line 777) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 778) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 779) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 780) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 781) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 782) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 783) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 784) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 785) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 786) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 787) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 788) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 789) | IP_ADD_MEMBERSHIP = 0xc
constant IP_DEFAULT_MULTICAST_LOOP (line 790) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 791) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 792) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 793) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DUMMYNET_CONFIGURE (line 794) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 795) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 796) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 797) | IP_DUMMYNET_GET = 0x40
constant IP_FAITH (line 798) | IP_FAITH = 0x16
constant IP_FW_ADD (line 799) | IP_FW_ADD = 0x32
constant IP_FW_DEL (line 800) | IP_FW_DEL = 0x33
constant IP_FW_FLUSH (line 801) | IP_FW_FLUSH = 0x34
constant IP_FW_GET (line 802) | IP_FW_GET = 0x36
constant IP_FW_RESETLOG (line 803) | IP_FW_RESETLOG = 0x37
constant IP_FW_X (line 804) | IP_FW_X = 0x31
constant IP_FW_ZERO (line 805) | IP_FW_ZERO = 0x35
constant IP_HDRINCL (line 806) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 807) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 808) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 809) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 810) | IP_MF = 0x2000
constant IP_MINTTL (line 811) | IP_MINTTL = 0x42
constant IP_MSS (line 812) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 813) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 814) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 815) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 816) | IP_MULTICAST_VIF = 0xe
constant IP_OFFMASK (line 817) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 818) | IP_OPTIONS = 0x1
constant IP_PORTRANGE (line 819) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 820) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 821) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 822) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 823) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 824) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 825) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 826) | IP_RECVRETOPTS = 0x6
constant IP_RECVTTL (line 827) | IP_RECVTTL = 0x41
constant IP_RETOPTS (line 828) | IP_RETOPTS = 0x8
constant IP_RF (line 829) | IP_RF = 0x8000
constant IP_RSVP_OFF (line 830) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 831) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 832) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 833) | IP_RSVP_VIF_ON = 0x11
constant IP_TOS (line 834) | IP_TOS = 0x3
constant IP_TTL (line 835) | IP_TTL = 0x4
constant ISIG (line 836) | ISIG = 0x80
constant ISTRIP (line 837) | ISTRIP = 0x20
constant IXANY (line 838) | IXANY = 0x800
constant IXOFF (line 839) | IXOFF = 0x400
constant IXON (line 840) | IXON = 0x200
constant KERN_HOSTNAME (line 841) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 842) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 843) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 844) | KERN_VERSION = 0x4
constant LOCK_EX (line 845) | LOCK_EX = 0x2
constant LOCK_NB (line 846) | LOCK_NB = 0x4
constant LOCK_SH (line 847) | LOCK_SH = 0x1
constant LOCK_UN (line 848) | LOCK_UN = 0x8
constant MADV_AUTOSYNC (line 849) | MADV_AUTOSYNC = 0x7
constant MADV_CONTROL_END (line 850) | MADV_CONTROL_END = 0xb
constant MADV_CONTROL_START (line 851) | MADV_CONTROL_START = 0xa
constant MADV_CORE (line 852) | MADV_CORE = 0x9
constant MADV_DONTNEED (line 853) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 854) | MADV_FREE = 0x5
constant MADV_INVAL (line 855) | MADV_INVAL = 0xa
constant MADV_NOCORE (line 856) | MADV_NOCORE = 0x8
constant MADV_NORMAL (line 857) | MADV_NORMAL = 0x0
constant MADV_NOSYNC (line 858) | MADV_NOSYNC = 0x6
constant MADV_RANDOM (line 859) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 860) | MADV_SEQUENTIAL = 0x2
constant MADV_SETMAP (line 861) | MADV_SETMAP = 0xb
constant MADV_WILLNEED (line 862) | MADV_WILLNEED = 0x3
constant MAP_ANON (line 863) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 864) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 865) | MAP_COPY = 0x2
constant MAP_FILE (line 866) | MAP_FILE = 0x0
constant MAP_FIXED (line 867) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 868) | MAP_HASSEMAPHORE = 0x200
constant MAP_INHERIT (line 869) | MAP_INHERIT = 0x80
constant MAP_NOCORE (line 870) | MAP_NOCORE = 0x20000
constant MAP_NOEXTEND (line 871) | MAP_NOEXTEND = 0x100
constant MAP_NORESERVE (line 872) | MAP_NORESERVE = 0x40
constant MAP_NOSYNC (line 873) | MAP_NOSYNC = 0x800
constant MAP_PRIVATE (line 874) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 875) | MAP_RENAME = 0x20
constant MAP_SHARED (line 876) | MAP_SHARED = 0x1
constant MAP_SIZEALIGN (line 877) | MAP_SIZEALIGN = 0x40000
constant MAP_STACK (line 878) | MAP_STACK = 0x400
constant MAP_TRYFIXED (line 879) | MAP_TRYFIXED = 0x10000
constant MAP_VPAGETABLE (line 880) | MAP_VPAGETABLE = 0x2000
constant MCL_CURRENT (line 881) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 882) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 883) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 884) | MNT_AUTOMOUNTED = 0x20
constant MNT_CMDFLAGS (line 885) | MNT_CMDFLAGS = 0xf0000
constant MNT_DEFEXPORTED (line 886) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 887) | MNT_DELEXPORT = 0x20000
constant MNT_EXKERB (line 888) | MNT_EXKERB = 0x800
constant MNT_EXPORTANON (line 889) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 890) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 891) | MNT_EXPUBLIC = 0x20000000
constant MNT_EXRDONLY (line 892) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 893) | MNT_FORCE = 0x80000
constant MNT_IGNORE (line 894) | MNT_IGNORE = 0x800000
constant MNT_LAZY (line 895) | MNT_LAZY = 0x4
constant MNT_LOCAL (line 896) | MNT_LOCAL = 0x1000
constant MNT_NOATIME (line 897) | MNT_NOATIME = 0x10000000
constant MNT_NOCLUSTERR (line 898) | MNT_NOCLUSTERR = 0x40000000
constant MNT_NOCLUSTERW (line 899) | MNT_NOCLUSTERW = 0x80000000
constant MNT_NODEV (line 900) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 901) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 902) | MNT_NOSUID = 0x8
constant MNT_NOSYMFOLLOW (line 903) | MNT_NOSYMFOLLOW = 0x400000
constant MNT_NOWAIT (line 904) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 905) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 906) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 907) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 908) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 909) | MNT_SOFTDEP = 0x200000
constant MNT_SUIDDIR (line 910) | MNT_SUIDDIR = 0x100000
constant MNT_SYNCHRONOUS (line 911) | MNT_SYNCHRONOUS = 0x2
constant MNT_TRIM (line 912) | MNT_TRIM = 0x1000000
constant MNT_UPDATE (line 913) | MNT_UPDATE = 0x10000
constant MNT_USER (line 914) | MNT_USER = 0x8000
constant MNT_VISFLAGMASK (line 915) | MNT_VISFLAGMASK = 0xf1f0ffff
constant MNT_WAIT (line 916) | MNT_WAIT = 0x1
constant MSG_CMSG_CLOEXEC (line 917) | MSG_CMSG_CLOEXEC = 0x1000
constant MSG_CTRUNC (line 918) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 919) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 920) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 921) | MSG_EOF = 0x100
constant MSG_EOR (line 922) | MSG_EOR = 0x8
constant MSG_FBLOCKING (line 923) | MSG_FBLOCKING = 0x10000
constant MSG_FMASK (line 924) | MSG_FMASK = 0xffff0000
constant MSG_FNONBLOCKING (line 925) | MSG_FNONBLOCKING = 0x20000
constant MSG_NOSIGNAL (line 926) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 927) | MSG_OOB = 0x1
constant MSG_PEEK (line 928) | MSG_PEEK = 0x2
constant MSG_SYNC (line 929) | MSG_SYNC = 0x800
constant MSG_TRUNC (line 930) | MSG_TRUNC = 0x10
constant MSG_UNUSED09 (line 931) | MSG_UNUSED09 = 0x200
constant MSG_WAITALL (line 932) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 933) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 934) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 935) | MS_SYNC = 0x0
constant NAME_MAX (line 936) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 937) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 938) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 939) | NET_RT_IFLIST = 0x3
constant NET_RT_MAXID (line 940) | NET_RT_MAXID = 0x4
constant NOFLSH (line 941) | NOFLSH = 0x80000000
constant NOKERNINFO (line 942) | NOKERNINFO = 0x2000000
constant NOTE_ATTRIB (line 943) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 944) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 945) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 946) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 947) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 948) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 949) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 950) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 951) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 952) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 953) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 954) | NOTE_FFOR = 0x80000000
constant NOTE_FORK (line 955) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 956) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 957) | NOTE_LOWAT = 0x1
constant NOTE_OOB (line 958) | NOTE_OOB = 0x2
constant NOTE_PCTRLMASK (line 959) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 960) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 961) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 962) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 963) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 964) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 965) | NOTE_TRIGGER = 0x1000000
constant NOTE_WRITE (line 966) | NOTE_WRITE = 0x2
constant OCRNL (line 967) | OCRNL = 0x10
constant ONLCR (line 968) | ONLCR = 0x2
constant ONLRET (line 969) | ONLRET = 0x40
constant ONOCR (line 970) | ONOCR = 0x20
constant ONOEOT (line 971) | ONOEOT = 0x8
constant OPOST (line 972) | OPOST = 0x1
constant OXTABS (line 973) | OXTABS = 0x4
constant O_ACCMODE (line 974) | O_ACCMODE = 0x3
constant O_APPEND (line 975) | O_APPEND = 0x8
constant O_ASYNC (line 976) | O_ASYNC = 0x40
constant O_CLOEXEC (line 977) | O_CLOEXEC = 0x20000
constant O_CREAT (line 978) | O_CREAT = 0x200
constant O_DIRECT (line 979) | O_DIRECT = 0x10000
constant O_DIRECTORY (line 980) | O_DIRECTORY = 0x8000000
constant O_EXCL (line 981) | O_EXCL = 0x800
constant O_EXLOCK (line 982) | O_EXLOCK = 0x20
constant O_FAPPEND (line 983) | O_FAPPEND = 0x100000
constant O_FASYNCWRITE (line 984) | O_FASYNCWRITE = 0x800000
constant O_FBLOCKING (line 985) | O_FBLOCKING = 0x40000
constant O_FMASK (line 986) | O_FMASK = 0xfc0000
constant O_FNONBLOCKING (line 987) | O_FNONBLOCKING = 0x80000
constant O_FOFFSET (line 988) | O_FOFFSET = 0x200000
constant O_FSYNC (line 989) | O_FSYNC = 0x80
constant O_FSYNCWRITE (line 990) | O_FSYNCWRITE = 0x400000
constant O_NDELAY (line 991) | O_NDELAY = 0x4
constant O_NOCTTY (line 992) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 993) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 994) | O_NONBLOCK = 0x4
constant O_RDONLY (line 995) | O_RDONLY = 0x0
constant O_RDWR (line 996) | O_RDWR = 0x2
constant O_SHLOCK (line 997) | O_SHLOCK = 0x10
constant O_SYNC (line 998) | O_SYNC = 0x80
constant O_TRUNC (line 999) | O_TRUNC = 0x400
constant O_WRONLY (line 1000) | O_WRONLY = 0x1
constant PARENB (line 1001) | PARENB = 0x1000
constant PARMRK (line 1002) | PARMRK = 0x8
constant PARODD (line 1003) | PARODD = 0x2000
constant PENDIN (line 1004) | PENDIN = 0x20000000
constant PRIO_PGRP (line 1005) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1006) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1007) | PRIO_USER = 0x2
constant PROT_EXEC (line 1008) | PROT_EXEC = 0x4
constant PROT_NONE (line 1009) | PROT_NONE = 0x0
constant PROT_READ (line 1010) | PROT_READ = 0x1
constant PROT_WRITE (line 1011) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 1012) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1013) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1014) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1015) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1016) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1017) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1018) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1019) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1020) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1021) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1022) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1023) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1024) | RTAX_BRD = 0x7
constant RTAX_DST (line 1025) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1026) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1027) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1028) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1029) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1030) | RTAX_MAX = 0xb
constant RTAX_MPLS1 (line 1031) | RTAX_MPLS1 = 0x8
constant RTAX_MPLS2 (line 1032) | RTAX_MPLS2 = 0x9
constant RTAX_MPLS3 (line 1033) | RTAX_MPLS3 = 0xa
constant RTAX_NETMASK (line 1034) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1035) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1036) | RTA_BRD = 0x80
constant RTA_DST (line 1037) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1038) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1039) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1040) | RTA_IFA = 0x20
constant RTA_IFP (line 1041) | RTA_IFP = 0x10
constant RTA_MPLS1 (line 1042) | RTA_MPLS1 = 0x100
constant RTA_MPLS2 (line 1043) | RTA_MPLS2 = 0x200
constant RTA_MPLS3 (line 1044) | RTA_MPLS3 = 0x400
constant RTA_NETMASK (line 1045) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1046) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1047) | RTF_BROADCAST = 0x400000
constant RTF_CLONING (line 1048) | RTF_CLONING = 0x100
constant RTF_DONE (line 1049) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1050) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1051) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1052) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1053) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1054) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1055) | RTF_MODIFIED = 0x20
constant RTF_MPLSOPS (line 1056) | RTF_MPLSOPS = 0x1000000
constant RTF_MULTICAST (line 1057) | RTF_MULTICAST = 0x800000
constant RTF_PINNED (line 1058) | RTF_PINNED = 0x100000
constant RTF_PRCLONING (line 1059) | RTF_PRCLONING = 0x10000
constant RTF_PROTO1 (line 1060) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1061) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1062) | RTF_PROTO3 = 0x40000
constant RTF_REJECT (line 1063) | RTF_REJECT = 0x8
constant RTF_STATIC (line 1064) | RTF_STATIC = 0x800
constant RTF_UP (line 1065) | RTF_UP = 0x1
constant RTF_WASCLONED (line 1066) | RTF_WASCLONED = 0x20000
constant RTF_XRESOLVE (line 1067) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1068) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1069) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1070) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1071) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1072) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1073) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1074) | RTM_IEEE80211 = 0x12
constant RTM_IFANNOUNCE (line 1075) | RTM_IFANNOUNCE = 0x11
constant RTM_IFINFO (line 1076) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 1077) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1078) | RTM_LOSING = 0x5
constant RTM_MISS (line 1079) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1080) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1081) | RTM_NEWMADDR = 0xf
constant RTM_OLDADD (line 1082) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1083) | RTM_OLDDEL = 0xa
constant RTM_REDIRECT (line 1084) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1085) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1086) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1087) | RTM_VERSION = 0x6
constant RTV_EXPIRE (line 1088) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1089) | RTV_HOPCOUNT = 0x2
constant RTV_IWCAPSEGS (line 1090) | RTV_IWCAPSEGS = 0x400
constant RTV_IWMAXSEGS (line 1091) | RTV_IWMAXSEGS = 0x200
constant RTV_MSL (line 1092) | RTV_MSL = 0x100
constant RTV_MTU (line 1093) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1094) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1095) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1096) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1097) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1098) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1099) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1100) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1101) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1102) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1103) | SCM_TIMESTAMP = 0x2
constant SHUT_RD (line 1104) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1105) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1106) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1107) | SIOCADDMULTI = 0x80206931
constant SIOCADDRT (line 1108) | SIOCADDRT = 0x8040720a
constant SIOCAIFADDR (line 1109) | SIOCAIFADDR = 0x8040691a
constant SIOCALIFADDR (line 1110) | SIOCALIFADDR = 0x8118691b
constant SIOCATMARK (line 1111) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1112) | SIOCDELMULTI = 0x80206932
constant SIOCDELRT (line 1113) | SIOCDELRT = 0x8040720b
constant SIOCDIFADDR (line 1114) | SIOCDIFADDR = 0x80206919
constant SIOCDIFPHYADDR (line 1115) | SIOCDIFPHYADDR = 0x80206949
constant SIOCDLIFADDR (line 1116) | SIOCDLIFADDR = 0x8118691d
constant SIOCGDRVSPEC (line 1117) | SIOCGDRVSPEC = 0xc028697b
constant SIOCGETSGCNT (line 1118) | SIOCGETSGCNT = 0xc0207210
constant SIOCGETVIFCNT (line 1119) | SIOCGETVIFCNT = 0xc028720f
constant SIOCGHIWAT (line 1120) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1121) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFBRDADDR (line 1122) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1123) | SIOCGIFCAP = 0xc020691f
constant SIOCGIFCONF (line 1124) | SIOCGIFCONF = 0xc0106924
constant SIOCGIFDATA (line 1125) | SIOCGIFDATA = 0xc0206926
constant SIOCGIFDSTADDR (line 1126) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1127) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1128) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGMEMB (line 1129) | SIOCGIFGMEMB = 0xc028698a
constant SIOCGIFINDEX (line 1130) | SIOCGIFINDEX = 0xc0206920
constant SIOCGIFMEDIA (line 1131) | SIOCGIFMEDIA = 0xc0306938
constant SIOCGIFMETRIC (line 1132) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1133) | SIOCGIFMTU = 0xc0206933
constant SIOCGIFNETMASK (line 1134) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1135) | SIOCGIFPDSTADDR = 0xc0206948
constant SIOCGIFPHYS (line 1136) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPOLLCPU (line 1137) | SIOCGIFPOLLCPU = 0xc020697e
constant SIOCGIFPSRCADDR (line 1138) | SIOCGIFPSRCADDR = 0xc0206947
constant SIOCGIFSTATUS (line 1139) | SIOCGIFSTATUS = 0xc331693b
constant SIOCGIFTSOLEN (line 1140) | SIOCGIFTSOLEN = 0xc0206980
constant SIOCGLIFADDR (line 1141) | SIOCGLIFADDR = 0xc118691c
constant SIOCGLIFPHYADDR (line 1142) | SIOCGLIFPHYADDR = 0xc118694b
constant SIOCGLOWAT (line 1143) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1144) | SIOCGPGRP = 0x40047309
constant SIOCGPRIVATE_0 (line 1145) | SIOCGPRIVATE_0 = 0xc0206950
constant SIOCGPRIVATE_1 (line 1146) | SIOCGPRIVATE_1 = 0xc0206951
constant SIOCIFCREATE (line 1147) | SIOCIFCREATE = 0xc020697a
constant SIOCIFCREATE2 (line 1148) | SIOCIFCREATE2 = 0xc020697c
constant SIOCIFDESTROY (line 1149) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1150) | SIOCIFGCLONERS = 0xc0106978
constant SIOCSDRVSPEC (line 1151) | SIOCSDRVSPEC = 0x8028697b
constant SIOCSHIWAT (line 1152) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1153) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFBRDADDR (line 1154) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1155) | SIOCSIFCAP = 0x8020691e
constant SIOCSIFDSTADDR (line 1156) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1157) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1158) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1159) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMEDIA (line 1160) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1161) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1162) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNAME (line 1163) | SIOCSIFNAME = 0x80206928
constant SIOCSIFNETMASK (line 1164) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1165) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSIFPHYS (line 1166) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFPOLLCPU (line 1167) | SIOCSIFPOLLCPU = 0x8020697d
constant SIOCSIFTSOLEN (line 1168) | SIOCSIFTSOLEN = 0x8020697f
constant SIOCSLIFPHYADDR (line 1169) | SIOCSLIFPHYADDR = 0x8118694a
constant SIOCSLOWAT (line 1170) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1171) | SIOCSPGRP = 0x80047308
constant SOCK_CLOEXEC (line 1172) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1173) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1174) | SOCK_MAXADDRLEN = 0xff
constant SOCK_NONBLOCK (line 1175) | SOCK_NONBLOCK = 0x20000000
constant SOCK_RAW (line 1176) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1177) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1178) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1179) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1180) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1181) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1182) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1183) | SO_ACCEPTFILTER = 0x1000
constant SO_BROADCAST (line 1184) | SO_BROADCAST = 0x20
constant SO_CPUHINT (line 1185) | SO_CPUHINT = 0x1030
constant SO_DEBUG (line 1186) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1187) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1188) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1189) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1190) | SO_LINGER = 0x80
constant SO_NOSIGPIPE (line 1191) | SO_NOSIGPIPE = 0x800
constant SO_OOBINLINE (line 1192) | SO_OOBINLINE = 0x100
constant SO_RCVBUF (line 1193) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1194) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1195) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1196) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1197) | SO_REUSEPORT = 0x200
constant SO_SNDBUF (line 1198) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1199) | SO_SNDLOWAT = 0x1003
constant SO_SNDSPACE (line 1200) | SO_SNDSPACE = 0x100a
constant SO_SNDTIMEO (line 1201) | SO_SNDTIMEO = 0x1005
constant SO_TIMESTAMP (line 1202) | SO_TIMESTAMP = 0x400
constant SO_TYPE (line 1203) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1204) | SO_USELOOPBACK = 0x40
constant S_BLKSIZE (line 1205) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1206) | S_IEXEC = 0x40
constant S_IFBLK (line 1207) | S_IFBLK = 0x6000
constant S_IFCHR (line 1208) | S_IFCHR = 0x2000
constant S_IFDB (line 1209) | S_IFDB = 0x9000
constant S_IFDIR (line 1210) | S_IFDIR = 0x4000
constant S_IFIFO (line 1211) | S_IFIFO = 0x1000
constant S_IFLNK (line 1212) | S_IFLNK = 0xa000
constant S_IFMT (line 1213) | S_IFMT = 0xf000
constant S_IFREG (line 1214) | S_IFREG = 0x8000
constant S_IFSOCK (line 1215) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1216) | S_IFWHT = 0xe000
constant S_IREAD (line 1217) | S_IREAD = 0x100
constant S_IRGRP (line 1218) | S_IRGRP = 0x20
constant S_IROTH (line 1219) | S_IROTH = 0x4
constant S_IRUSR (line 1220) | S_IRUSR = 0x100
constant S_IRWXG (line 1221) | S_IRWXG = 0x38
constant S_IRWXO (line 1222) | S_IRWXO = 0x7
constant S_IRWXU (line 1223) | S_IRWXU = 0x1c0
constant S_ISGID (line 1224) | S_ISGID = 0x400
constant S_ISTXT (line 1225) | S_ISTXT = 0x200
constant S_ISUID (line 1226) | S_ISUID = 0x800
constant S_ISVTX (line 1227) | S_ISVTX = 0x200
constant S_IWGRP (line 1228) | S_IWGRP = 0x10
constant S_IWOTH (line 1229) | S_IWOTH = 0x2
constant S_IWRITE (line 1230) | S_IWRITE = 0x80
constant S_IWUSR (line 1231) | S_IWUSR = 0x80
constant S_IXGRP (line 1232) | S_IXGRP = 0x8
constant S_IXOTH (line 1233) | S_IXOTH = 0x1
constant S_IXUSR (line 1234) | S_IXUSR = 0x40
constant TCIFLUSH (line 1235) | TCIFLUSH = 0x1
constant TCIOFF (line 1236) | TCIOFF = 0x3
constant TCIOFLUSH (line 1237) | TCIOFLUSH = 0x3
constant TCION (line 1238) | TCION = 0x4
constant TCOFLUSH (line 1239) | TCOFLUSH = 0x2
constant TCOOFF (line 1240) | TCOOFF = 0x1
constant TCOON (line 1241) | TCOON = 0x2
constant TCP_FASTKEEP (line 1242) | TCP_FASTKEEP = 0x80
constant TCP_KEEPCNT (line 1243) | TCP_KEEPCNT = 0x400
constant TCP_KEEPIDLE (line 1244) | TCP_KEEPIDLE = 0x100
constant TCP_KEEPINIT (line 1245) | TCP_KEEPINIT = 0x20
constant TCP_KEEPINTVL (line 1246) | TCP_KEEPINTVL = 0x200
constant TCP_MAXBURST (line 1247) | TCP_MAXBURST = 0x4
constant TCP_MAXHLEN (line 1248) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1249) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1250) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1251) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 1252) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MINMSS (line 1253) | TCP_MINMSS = 0x100
constant TCP_MIN_WINSHIFT (line 1254) | TCP_MIN_WINSHIFT = 0x5
constant TCP_MSS (line 1255) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1256) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1257) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1258) | TCP_NOPUSH = 0x4
constant TCP_SIGNATURE_ENABLE (line 1259) | TCP_SIGNATURE_ENABLE = 0x10
constant TCSAFLUSH (line 1260) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1261) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1262) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1263) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1264) | TIOCDCDTIMESTAMP = 0x40107458
constant TIOCDRAIN (line 1265) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1266) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1267) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1268) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1269) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1270) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1271) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1272) | TIOCGPGRP = 0x40047477
constant TIOCGSID (line 1273) | TIOCGSID = 0x40047463
constant TIOCGSIZE (line 1274) | TIOCGSIZE = 0x40087468
constant TIOCGWINSZ (line 1275) | TIOCGWINSZ = 0x40087468
constant TIOCISPTMASTER (line 1276) | TIOCISPTMASTER = 0x20007455
constant TIOCMBIC (line 1277) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1278) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1279) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1280) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1281) | TIOCMODG = 0x40047403
constant TIOCMODS (line 1282) | TIOCMODS = 0x80047404
constant TIOCMSDTRWAIT (line 1283) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1284) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1285) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1286) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1287) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1288) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1289) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1290) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1291) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1292) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1293) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1294) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1295) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1296) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1297) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1298) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1299) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1300) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1301) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1302) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1303) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1304) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1305) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1306) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1307) | TIOCPKT_STOP = 0x4
constant TIOCREMOTE (line 1308) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1309) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1310) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1311) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1312) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1313) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1314) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1315) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1316) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1317) | TIOCSIG = 0x2000745f
constant TIOCSPGRP (line 1318) | TIOCSPGRP = 0x80047476
constant TIOCSSIZE (line 1319) | TIOCSSIZE = 0x80087467
constant TIOCSTART (line 1320) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1321) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1322) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1323) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1324) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1325) | TIOCTIMESTAMP = 0x40107459
constant TIOCUCNTL (line 1326) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1327) | TOSTOP = 0x400000
constant VCHECKPT (line 1328) | VCHECKPT = 0x13
constant VDISCARD (line 1329) | VDISCARD = 0xf
constant VDSUSP (line 1330) | VDSUSP = 0xb
constant VEOF (line 1331) | VEOF = 0x0
constant VEOL (line 1332) | VEOL = 0x1
constant VEOL2 (line 1333) | VEOL2 = 0x2
constant VERASE (line 1334) | VERASE = 0x3
constant VERASE2 (line 1335) | VERASE2 = 0x7
constant VINTR (line 1336) | VINTR = 0x8
constant VKILL (line 1337) | VKILL = 0x5
constant VLNEXT (line 1338) | VLNEXT = 0xe
constant VMIN (line 1339) | VMIN = 0x10
constant VM_BCACHE_SIZE_MAX (line 1340) | VM_BCACHE_SIZE_MAX = 0x0
constant VM_SWZONE_SIZE_MAX (line 1341) | VM_SWZONE_SIZE_MAX = 0x4000000000
constant VQUIT (line 1342) | VQUIT = 0x9
constant VREPRINT (line 1343) | VREPRINT = 0x6
constant VSTART (line 1344) | VSTART = 0xc
constant VSTATUS (line 1345) | VSTATUS = 0x12
constant VSTOP (line 1346) | VSTOP = 0xd
constant VSUSP (line 1347) | VSUSP = 0xa
constant VTIME (line 1348) | VTIME = 0x11
constant VWERASE (line 1349) | VWERASE = 0x4
constant WCONTINUED (line 1350) | WCONTINUED = 0x4
constant WCOREFLAG (line 1351) | WCOREFLAG = 0x80
constant WLINUXCLONE (line 1352) | WLINUXCLONE = 0x80000000
constant WNOHANG (line 1353) | WNOHANG = 0x1
constant WSTOPPED (line 1354) | WSTOPPED = 0x7f
constant WUNTRACED (line 1355) | WUNTRACED = 0x2
constant E2BIG (line 1360) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1361) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1362) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1363) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1364) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1365) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1366) | EALREADY = syscall.Errno(0x25)
constant EASYNC (line 1367) | EASYNC = syscall.Errno(0x63)
constant EAUTH (line 1368) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1369) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1370) | EBADMSG = syscall.Errno(0x59)
constant EBADRPC (line 1371) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1372) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1373) | ECANCELED = syscall.Errno(0x55)
constant ECHILD (line 1374) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1375) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1376) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1377) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1378) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1379) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1380) | EDOM = syscall.Errno(0x21)
constant EDOOFUS (line 1381) | EDOOFUS = syscall.Errno(0x58)
constant EDQUOT (line 1382) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1383) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1384) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1385) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1386) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1387) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1388) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1389) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1390) | EILSEQ = syscall.Errno(0x56)
constant EINPROGRESS (line 1391) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1392) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1393) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1394) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1395) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1396) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1397) | ELAST = syscall.Errno(0x63)
constant ELOOP (line 1398) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1399) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1400) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1401) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1402) | EMULTIHOP = syscall.Errno(0x5a)
constant ENAMETOOLONG (line 1403) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1404) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1405) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1406) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1407) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1408) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1409) | ENOATTR = syscall.Errno(0x57)
constant ENOBUFS (line 1410) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1411) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1412) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1413) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1414) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1415) | ENOLINK = syscall.Errno(0x5b)
constant ENOMEDIUM (line 1416) | ENOMEDIUM = syscall.Errno(0x5d)
constant ENOMEM (line 1417) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1418) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1419) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1420) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1421) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1422) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1423) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1424) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1425) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTSOCK (line 1426) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1427) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1428) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1429) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1430) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1431) | EOVERFLOW = syscall.Errno(0x54)
constant EPERM (line 1432) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1433) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1434) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1435) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1436) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1437) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1438) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1439) | EPROTO = syscall.Errno(0x5c)
constant EPROTONOSUPPORT (line 1440) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1441) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1442) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1443) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1444) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1445) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1446) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1447) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1448) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1449) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1450) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1451) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1452) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1453) | ETXTBSY = syscall.Errno(0x1a)
constant EUNUSED94 (line 1454) | EUNUSED94 = syscall.Errno(0x5e)
constant EUNUSED95 (line 1455) | EUNUSED95 = syscall.Errno(0x5f)
constant EUNUSED96 (line 1456) | EUNUSED96 = syscall.Errno(0x60)
constant EUNUSED97 (line 1457) | EUNUSED97 = syscall.Errno(0x61)
constant EUNUSED98 (line 1458) | EUNUSED98 = syscall.Errno(0x62)
constant EUSERS (line 1459) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1460) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1461) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1466) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1467) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1468) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1469) | SIGCHLD = syscall.Signal(0x14)
constant SIGCKPT (line 1470) | SIGCKPT = syscall.Signal(0x21)
constant SIGCKPTEXIT (line 1471) | SIGCKPTEXIT = syscall.Signal(0x22)
constant SIGCONT (line 1472) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1473) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1474) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1475) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1476) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1477) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1478) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1479) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1480) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1481) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1482) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1483) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1484) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1485) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1486) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1487) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1488) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1489) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1490) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1491) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1492) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1493) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1494) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1495) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1496) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1497) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1498) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1499) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1500) | 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_HW (line 354) | CTL_HW = 0x6
constant CTL_KERN (line 355) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 356) | CTL_MAXNAME = 0x18
constant CTL_NET (line 357) | CTL_NET = 0x4
constant DLT_A429 (line 358) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 359) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 360) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 361) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 362) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 363) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 364) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 365) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 366) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 367) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 368) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 369) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 370) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_BREDR_BB (line 371) | DLT_BLUETOOTH_BREDR_BB = 0xff
constant DLT_BLUETOOTH_HCI_H4 (line 372) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 373) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_BLUETOOTH_LE_LL (line 374) | DLT_BLUETOOTH_LE_LL = 0xfb
constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 375) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100
constant DLT_BLUETOOTH_LINUX_MONITOR (line 376) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe
constant DLT_CAN20B (line 377) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 378) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 379) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 380) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 381) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 382) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 383) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DBUS (line 384) | DLT_DBUS = 0xe7
constant DLT_DECT (line 385) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 386) | DLT_DOCSIS = 0x8f
constant DLT_DVB_CI (line 387) | DLT_DVB_CI = 0xeb
constant DLT_ECONET (line 388) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 389) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 390) | DLT_EN3MB = 0x2
constant DLT_ENC (line 391) | DLT_ENC = 0x6d
constant DLT_EPON (line 392) | DLT_EPON = 0x103
constant DLT_ERF (line 393) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 394) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 395) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 396) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 397) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 398) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 399) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 400) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 401) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 402) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 403) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 404) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 405) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 406) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 407) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 408) | DLT_GSMTAP_UM = 0xd9
constant DLT_HHDLC (line 409) | DLT_HHDLC = 0x79
constant DLT_IBM_SN (line 410) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 411) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 412) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 413) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 414) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 415) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 416) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 417) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NOFCS (line 418) | DLT_IEEE802_15_4_NOFCS = 0xe6
constant DLT_IEEE802_15_4_NONASK_PHY (line 419) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 420) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 421) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_INFINIBAND (line 422) | DLT_INFINIBAND = 0xf7
constant DLT_IPFILTER (line 423) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 424) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 425) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPMI_HPM_2 (line 426) | DLT_IPMI_HPM_2 = 0x104
constant DLT_IPNET (line 427) | DLT_IPNET = 0xe2
constant DLT_IPOIB (line 428) | DLT_IPOIB = 0xf2
constant DLT_IPV4 (line 429) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 430) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 431) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 432) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 433) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_ATM_CEMIC (line 434) | DLT_JUNIPER_ATM_CEMIC = 0xee
constant DLT_JUNIPER_CHDLC (line 435) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 436) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 437) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FIBRECHANNEL (line 438) | DLT_JUNIPER_FIBRECHANNEL = 0xea
constant DLT_JUNIPER_FRELAY (line 439) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 440) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 441) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 442) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 443) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 444) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 445) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 446) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 447) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 448) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 449) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 450) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_SRX_E2E (line 451) | DLT_JUNIPER_SRX_E2E = 0xe9
constant DLT_JUNIPER_ST (line 452) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 453) | DLT_JUNIPER_VP = 0xb7
constant DLT_JUNIPER_VS (line 454) | DLT_JUNIPER_VS = 0xe8
constant DLT_LAPB_WITH_DIR (line 455) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 456) | DLT_LAPD = 0xcb
constant DLT_LIN (line 457) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 458) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 459) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 460) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_PPP_WITHDIRECTION (line 461) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6
constant DLT_LINUX_SLL (line 462) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 463) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 464) | DLT_LTALK = 0x72
constant DLT_MATCHING_MAX (line 465) | DLT_MATCHING_MAX = 0x104
constant DLT_MATCHING_MIN (line 466) | DLT_MATCHING_MIN = 0x68
constant DLT_MFR (line 467) | DLT_MFR = 0xb6
constant DLT_MOST (line 468) | DLT_MOST = 0xd3
constant DLT_MPEG_2_TS (line 469) | DLT_MPEG_2_TS = 0xf3
constant DLT_MPLS (line 470) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 471) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 472) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 473) | DLT_MTP3 = 0x8d
constant DLT_MUX27010 (line 474) | DLT_MUX27010 = 0xec
constant DLT_NETANALYZER (line 475) | DLT_NETANALYZER = 0xf0
constant DLT_NETANALYZER_TRANSPARENT (line 476) | DLT_NETANALYZER_TRANSPARENT = 0xf1
constant DLT_NETLINK (line 477) | DLT_NETLINK = 0xfd
constant DLT_NFC_LLCP (line 478) | DLT_NFC_LLCP = 0xf5
constant DLT_NFLOG (line 479) | DLT_NFLOG = 0xef
constant DLT_NG40 (line 480) | DLT_NG40 = 0xf4
constant DLT_NULL (line 481) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 482) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 483) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 484) | DLT_PFSYNC = 0x79
constant DLT_PKTAP (line 485) | DLT_PKTAP = 0x102
constant DLT_PPI (line 486) | DLT_PPI = 0xc0
constant DLT_PPP (line 487) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 488) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 489) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 490) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 491) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 492) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PPP_WITH_DIRECTION (line 493) | DLT_PPP_WITH_DIRECTION = 0xa6
constant DLT_PRISM_HEADER (line 494) | DLT_PRISM_HEADER = 0x77
constant DLT_PROFIBUS_DL (line 495) | DLT_PROFIBUS_DL = 0x101
constant DLT_PRONET (line 496) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 497) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 498) | DLT_RAW = 0xc
constant DLT_RIO (line 499) | DLT_RIO = 0x7c
constant DLT_RTAC_SERIAL (line 500) | DLT_RTAC_SERIAL = 0xfa
constant DLT_SCCP (line 501) | DLT_SCCP = 0x8e
constant DLT_SCTP (line 502) | DLT_SCTP = 0xf8
constant DLT_SITA (line 503) | DLT_SITA = 0xc4
constant DLT_SLIP (line 504) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 505) | DLT_SLIP_BSDOS = 0xf
constant DLT_STANAG_5066_D_PDU (line 506) | DLT_STANAG_5066_D_PDU = 0xed
constant DLT_SUNATM (line 507) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 508) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 509) | DLT_TZSP = 0x80
constant DLT_USB (line 510) | DLT_USB = 0xba
constant DLT_USBPCAP (line 511) | DLT_USBPCAP = 0xf9
constant DLT_USB_LINUX (line 512) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 513) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_USER0 (line 514) | DLT_USER0 = 0x93
constant DLT_USER1 (line 515) | DLT_USER1 = 0x94
constant DLT_USER10 (line 516) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 517) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 518) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 519) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 520) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 521) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 522) | DLT_USER2 = 0x95
constant DLT_USER3 (line 523) | DLT_USER3 = 0x96
constant DLT_USER4 (line 524) | DLT_USER4 = 0x97
constant DLT_USER5 (line 525) | DLT_USER5 = 0x98
constant DLT_USER6 (line 526) | DLT_USER6 = 0x99
constant DLT_USER7 (line 527) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 528) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 529) | DLT_USER9 = 0x9c
constant DLT_WIHART (line 530) | DLT_WIHART = 0xdf
constant DLT_WIRESHARK_UPPER_PDU (line 531) | DLT_WIRESHARK_UPPER_PDU = 0xfc
constant DLT_X2E_SERIAL (line 532) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 533) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 534) | DT_BLK = 0x6
constant DT_CHR (line 535) | DT_CHR = 0x2
constant DT_DIR (line 536) | DT_DIR = 0x4
constant DT_FIFO (line 537) | DT_FIFO = 0x1
constant DT_LNK (line 538) | DT_LNK = 0xa
constant DT_REG (line 539) | DT_REG = 0x8
constant DT_SOCK (line 540) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 541) | DT_UNKNOWN = 0x0
constant DT_WHT (line 542) | DT_WHT = 0xe
constant ECHO (line 543) | ECHO = 0x8
constant ECHOCTL (line 544) | ECHOCTL = 0x40
constant ECHOE (line 545) | ECHOE = 0x2
constant ECHOK (line 546) | ECHOK = 0x4
constant ECHOKE (line 547) | ECHOKE = 0x1
constant ECHONL (line 548) | ECHONL = 0x10
constant ECHOPRT (line 549) | ECHOPRT = 0x20
constant EVFILT_AIO (line 550) | EVFILT_AIO = -0x3
constant EVFILT_FS (line 551) | EVFILT_FS = -0x9
constant EVFILT_LIO (line 552) | EVFILT_LIO = -0xa
constant EVFILT_PROC (line 553) | EVFILT_PROC = -0x5
constant EVFILT_PROCDESC (line 554) | EVFILT_PROCDESC = -0x8
constant EVFILT_READ (line 555) | EVFILT_READ = -0x1
constant EVFILT_SENDFILE (line 556) | EVFILT_SENDFILE = -0xc
constant EVFILT_SIGNAL (line 557) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 558) | EVFILT_SYSCOUNT = 0xc
constant EVFILT_TIMER (line 559) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 560) | EVFILT_USER = -0xb
constant EVFILT_VNODE (line 561) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 562) | EVFILT_WRITE = -0x2
constant EV_ADD (line 563) | EV_ADD = 0x1
constant EV_CLEAR (line 564) | EV_CLEAR = 0x20
constant EV_DELETE (line 565) | EV_DELETE = 0x2
constant EV_DISABLE (line 566) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 567) | EV_DISPATCH = 0x80
constant EV_DROP (line 568) | EV_DROP = 0x1000
constant EV_ENABLE (line 569) | EV_ENABLE = 0x4
constant EV_EOF (line 570) | EV_EOF = 0x8000
constant EV_ERROR (line 571) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 572) | EV_FLAG1 = 0x2000
constant EV_FLAG2 (line 573) | EV_FLAG2 = 0x4000
constant EV_FORCEONESHOT (line 574) | EV_FORCEONESHOT = 0x100
constant EV_ONESHOT (line 575) | EV_ONESHOT = 0x10
constant EV_RECEIPT (line 576) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 577) | EV_SYSFLAGS = 0xf000
constant EXTA (line 578) | EXTA = 0x4b00
constant EXTATTR_NAMESPACE_EMPTY (line 579) | EXTATTR_NAMESPACE_EMPTY = 0x0
constant EXTATTR_NAMESPACE_SYSTEM (line 580) | EXTATTR_NAMESPACE_SYSTEM = 0x2
constant EXTATTR_NAMESPACE_USER (line 581) | EXTATTR_NAMESPACE_USER = 0x1
constant EXTB (line 582) | EXTB = 0x9600
constant EXTPROC (line 583) | EXTPROC = 0x800
constant FD_CLOEXEC (line 584) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 585) | FD_SETSIZE = 0x400
constant FLUSHO (line 586) | FLUSHO = 0x800000
constant F_CANCEL (line 587) | F_CANCEL = 0x5
constant F_DUP2FD (line 588) | F_DUP2FD = 0xa
constant F_DUP2FD_CLOEXEC (line 589) | F_DUP2FD_CLOEXEC = 0x12
constant F_DUPFD (line 590) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 591) | F_DUPFD_CLOEXEC = 0x11
constant F_GETFD (line 592) | F_GETFD = 0x1
constant F_GETFL (line 593) | F_GETFL = 0x3
constant F_GETLK (line 594) | F_GETLK = 0xb
constant F_GETOWN (line 595) | F_GETOWN = 0x5
constant F_OGETLK (line 596) | F_OGETLK = 0x7
constant F_OK (line 597) | F_OK = 0x0
constant F_OSETLK (line 598) | F_OSETLK = 0x8
constant F_OSETLKW (line 599) | F_OSETLKW = 0x9
constant F_RDAHEAD (line 600) | F_RDAHEAD = 0x10
constant F_RDLCK (line 601) | F_RDLCK = 0x1
constant F_READAHEAD (line 602) | F_READAHEAD = 0xf
constant F_SETFD (line 603) | F_SETFD = 0x2
constant F_SETFL (line 604) | F_SETFL = 0x4
constant F_SETLK (line 605) | F_SETLK = 0xc
constant F_SETLKW (line 606) | F_SETLKW = 0xd
constant F_SETLK_REMOTE (line 607) | F_SETLK_REMOTE = 0xe
constant F_SETOWN (line 608) | F_SETOWN = 0x6
constant F_UNLCK (line 609) | F_UNLCK = 0x2
constant F_UNLCKSYS (line 610) | F_UNLCKSYS = 0x4
constant F_WRLCK (line 611) | F_WRLCK = 0x3
constant HUPCL (line 612) | HUPCL = 0x4000
constant HW_MACHINE (line 613) | HW_MACHINE = 0x1
constant ICANON (line 614) | ICANON = 0x100
constant ICMP6_FILTER (line 615) | ICMP6_FILTER = 0x12
constant ICRNL (line 616) | ICRNL = 0x100
constant IEXTEN (line 617) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 618) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 619) | IFAN_DEPARTURE = 0x1
constant IFF_ALLMULTI (line 620) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 621) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 622) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 623) | IFF_CANTCHANGE = 0x218f52
constant IFF_CANTCONFIG (line 624) | IFF_CANTCONFIG = 0x10000
constant IFF_DEBUG (line 625) | IFF_DEBUG = 0x4
constant IFF_DRV_OACTIVE (line 626) | IFF_DRV_OACTIVE = 0x400
constant IFF_DRV_RUNNING (line 627) | IFF_DRV_RUNNING = 0x40
constant IFF_DYING (line 628) | IFF_DYING = 0x200000
constant IFF_LINK0 (line 629) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 630) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 631) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 632) | IFF_LOOPBACK = 0x8
constant IFF_MONITOR (line 633) | IFF_MONITOR = 0x40000
constant IFF_MULTICAST (line 634) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 635) | IFF_NOARP = 0x80
constant IFF_OACTIVE (line 636) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 637) | IFF_POINTOPOINT = 0x10
constant IFF_PPROMISC (line 638) | IFF_PPROMISC = 0x20000
constant IFF_PROMISC (line 639) | IFF_PROMISC = 0x100
constant IFF_RENAMING (line 640) | IFF_RENAMING = 0x400000
constant IFF_RUNNING (line 641) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 642) | IFF_SIMPLEX = 0x800
constant IFF_STATICARP (line 643) | IFF_STATICARP = 0x80000
constant IFF_UP (line 644) | IFF_UP = 0x1
constant IFNAMSIZ (line 645) | IFNAMSIZ = 0x10
constant IFT_BRIDGE (line 646) | IFT_BRIDGE = 0xd1
constant IFT_CARP (line 647) | IFT_CARP = 0xf8
constant IFT_IEEE1394 (line 648) | IFT_IEEE1394 = 0x90
constant IFT_INFINIBAND (line 649) | IFT_INFINIBAND = 0xc7
constant IFT_L2VLAN (line 650) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 651) | IFT_L3IPVLAN = 0x88
constant IFT_PPP (line 652) | IFT_PPP = 0x17
constant IFT_PROPVIRTUAL (line 653) | IFT_PROPVIRTUAL = 0x35
constant IGNBRK (line 654) | IGNBRK = 0x1
constant IGNCR (line 655) | IGNCR = 0x80
constant IGNPAR (line 656) | IGNPAR = 0x4
constant IMAXBEL (line 657) | IMAXBEL = 0x2000
constant INLCR (line 658) | INLCR = 0x40
constant INPCK (line 659) | INPCK = 0x10
constant IN_CLASSA_HOST (line 660) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 661) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 662) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 663) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 664) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 665) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 666) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 667) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 668) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 669) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 670) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 671) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 672) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 673) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 674) | IN_LOOPBACKNET = 0x7f
constant IN_RFC3021_MASK (line 675) | IN_RFC3021_MASK = 0xfffffffe
constant IPPROTO_3PC (line 676) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 677) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 678) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 679) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 680) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 681) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 682) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 683) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 684) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 685) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CARP (line 686) | IPPROTO_CARP = 0x70
constant IPPROTO_CFTP (line 687) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 688) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 689) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 690) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 691) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 692) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 693) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 694) | IPPROTO_DIVERT = 0x102
constant IPPROTO_DONE (line 695) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 696) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 697) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 698) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 699) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 700) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 701) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 702) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 703) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 704) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 705) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 706) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 707) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HIP (line 708) | IPPROTO_HIP = 0x8b
constant IPPROTO_HMP (line 709) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 710) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 711) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 712) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 713) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 714) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 715) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 716) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 717) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 718) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 719) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 720) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 721) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 722) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 723) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 724) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 725) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 726) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 727) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 728) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 729) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 730) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 731) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 732) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 733) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 734) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 735) | IPPROTO_MAX = 0x100
constant IPPROTO_MEAS (line 736) | IPPROTO_MEAS = 0x13
constant IPPROTO_MH (line 737) | IPPROTO_MH = 0x87
constant IPPROTO_MHRP (line 738) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 739) | IPPROTO_MICP = 0x5f
constant IPPROTO_MOBILE (line 740) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MPLS (line 741) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 742) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 743) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 744) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 745) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 746) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 747) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 748) | IPPROTO_NVPII = 0xb
constant IPPROTO_OLD_DIVERT (line 749) | IPPROTO_OLD_DIVERT = 0xfe
constant IPPROTO_OSPFIGP (line 750) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PFSYNC (line 751) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PGM (line 752) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 753) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 754) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 755) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 756) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 757) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 758) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 759) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 760) | IPPROTO_RDP = 0x1b
constant IPPROTO_RESERVED_253 (line 761) | IPPROTO_RESERVED_253 = 0xfd
constant IPPROTO_RESERVED_254 (line 762) | IPPROTO_RESERVED_254 = 0xfe
constant IPPROTO_ROUTING (line 763) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 764) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 765) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 766) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 767) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 768) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SCTP (line 769) | IPPROTO_SCTP = 0x84
constant IPPROTO_SDRP (line 770) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEND (line 771) | IPPROTO_SEND = 0x103
constant IPPROTO_SEP (line 772) | IPPROTO_SEP = 0x21
constant IPPROTO_SHIM6 (line 773) | IPPROTO_SHIM6 = 0x8c
constant IPPROTO_SKIP (line 774) | IPPROTO_SKIP = 0x39
constant IPPROTO_SPACER (line 775) | IPPROTO_SPACER = 0x7fff
constant IPPROTO_SRPC (line 776) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 777) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 778) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 779) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 780) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 781) | IPPROTO_TCP = 0x6
constant IPPROTO_TLSP (line 782) | IPPROTO_TLSP = 0x38
constant IPPROTO_TP (line 783) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 784) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 785) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 786) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 787) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 788) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 789) | IPPROTO_UDPLITE = 0x88
constant IPPROTO_VINES (line 790) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 791) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 792) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 793) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 794) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 795) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 796) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 797) | IPPROTO_XTP = 0x24
constant IPV6_AUTOFLOWLABEL (line 798) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_BINDANY (line 799) | IPV6_BINDANY = 0x40
constant IPV6_BINDMULTI (line 800) | IPV6_BINDMULTI = 0x41
constant IPV6_BINDV6ONLY (line 801) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_CHECKSUM (line 802) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 803) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 804) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 805) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 806) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 807) | IPV6_DSTOPTS = 0x32
constant IPV6_FLOWID (line 808) | IPV6_FLOWID = 0x43
constant IPV6_FLOWINFO_MASK (line 809) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 810) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FLOWTYPE (line 811) | IPV6_FLOWTYPE = 0x44
constant IPV6_FRAGTTL (line 812) | IPV6_FRAGTTL = 0x78
constant IPV6_FW_ADD (line 813) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 814) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 815) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 816) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 817) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 818) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 819) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 820) | IPV6_HOPOPTS = 0x31
constant IPV6_IPSEC_POLICY (line 821) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 822) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 823) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 824) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXOPTHDR (line 825) | IPV6_MAXOPTHDR = 0x800
constant IPV6_MAXPACKET (line 826) | IPV6_MAXPACKET = 0xffff
constant IPV6_MAX_GROUP_SRC_FILTER (line 827) | IPV6_MAX_GROUP_SRC_FILTER = 0x200
constant IPV6_MAX_MEMBERSHIPS (line 828) | IPV6_MAX_MEMBERSHIPS = 0xfff
constant IPV6_MAX_SOCK_SRC_FILTER (line 829) | IPV6_MAX_SOCK_SRC_FILTER = 0x80
constant IPV6_MIN_MEMBERSHIPS (line 830) | IPV6_MIN_MEMBERSHIPS = 0x1f
constant IPV6_MMTU (line 831) | IPV6_MMTU = 0x500
constant IPV6_MSFILTER (line 832) | IPV6_MSFILTER = 0x4a
constant IPV6_MULTICAST_HOPS (line 833) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 834) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 835) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 836) | IPV6_NEXTHOP = 0x30
constant IPV6_PATHMTU (line 837) | IPV6_PATHMTU = 0x2c
constant IPV6_PKTINFO (line 838) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 839) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 840) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 841) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 842) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_PREFER_TEMPADDR (line 843) | IPV6_PREFER_TEMPADDR = 0x3f
constant IPV6_RECVDSTOPTS (line 844) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVFLOWID (line 845) | IPV6_RECVFLOWID = 0x46
constant IPV6_RECVHOPLIMIT (line 846) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 847) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 848) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 849) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRSSBUCKETID (line 850) | IPV6_RECVRSSBUCKETID = 0x47
constant IPV6_RECVRTHDR (line 851) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 852) | IPV6_RECVTCLASS = 0x39
constant IPV6_RSSBUCKETID (line 853) | IPV6_RSSBUCKETID = 0x45
constant IPV6_RSS_LISTEN_BUCKET (line 854) | IPV6_RSS_LISTEN_BUCKET = 0x42
constant IPV6_RTHDR (line 855) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 856) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 857) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 858) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 859) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 860) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 861) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 862) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 863) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 864) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 865) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 866) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 867) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 868) | IP_ADD_SOURCE_MEMBERSHIP = 0x46
constant IP_BINDANY (line 869) | IP_BINDANY = 0x18
constant IP_BINDMULTI (line 870) | IP_BINDMULTI = 0x19
constant IP_BLOCK_SOURCE (line 871) | IP_BLOCK_SOURCE = 0x48
constant IP_DEFAULT_MULTICAST_LOOP (line 872) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 873) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 874) | IP_DF = 0x4000
constant IP_DONTFRAG (line 875) | IP_DONTFRAG = 0x43
constant IP_DROP_MEMBERSHIP (line 876) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 877) | IP_DROP_SOURCE_MEMBERSHIP = 0x47
constant IP_DUMMYNET3 (line 878) | IP_DUMMYNET3 = 0x31
constant IP_DUMMYNET_CONFIGURE (line 879) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 880) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 881) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 882) | IP_DUMMYNET_GET = 0x40
constant IP_FLOWID (line 883) | IP_FLOWID = 0x5a
constant IP_FLOWTYPE (line 884) | IP_FLOWTYPE = 0x5b
constant IP_FW3 (line 885) | IP_FW3 = 0x30
constant IP_FW_ADD (line 886) | IP_FW_ADD = 0x32
constant IP_FW_DEL (line 887) | IP_FW_DEL = 0x33
constant IP_FW_FLUSH (line 888) | IP_FW_FLUSH = 0x34
constant IP_FW_GET (line 889) | IP_FW_GET = 0x36
constant IP_FW_NAT_CFG (line 890) | IP_FW_NAT_CFG = 0x38
constant IP_FW_NAT_DEL (line 891) | IP_FW_NAT_DEL = 0x39
constant IP_FW_NAT_GET_CONFIG (line 892) | IP_FW_NAT_GET_CONFIG = 0x3a
constant IP_FW_NAT_GET_LOG (line 893) | IP_FW_NAT_GET_LOG = 0x3b
constant IP_FW_RESETLOG (line 894) | IP_FW_RESETLOG = 0x37
constant IP_FW_TABLE_ADD (line 895) | IP_FW_TABLE_ADD = 0x28
constant IP_FW_TABLE_DEL (line 896) | IP_FW_TABLE_DEL = 0x29
constant IP_FW_TABLE_FLUSH (line 897) | IP_FW_TABLE_FLUSH = 0x2a
constant IP_FW_TABLE_GETSIZE (line 898) | IP_FW_TABLE_GETSIZE = 0x2b
constant IP_FW_TABLE_LIST (line 899) | IP_FW_TABLE_LIST = 0x2c
constant IP_FW_ZERO (line 900) | IP_FW_ZERO = 0x35
constant IP_HDRINCL (line 901) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 902) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 903) | IP_MAXPACKET = 0xffff
constant IP_MAX_GROUP_SRC_FILTER (line 904) | IP_MAX_GROUP_SRC_FILTER = 0x200
constant IP_MAX_MEMBERSHIPS (line 905) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MAX_SOCK_MUTE_FILTER (line 906) | IP_MAX_SOCK_MUTE_FILTER = 0x80
constant IP_MAX_SOCK_SRC_FILTER (line 907) | IP_MAX_SOCK_SRC_FILTER = 0x80
constant IP_MAX_SOURCE_FILTER (line 908) | IP_MAX_SOURCE_FILTER = 0x400
constant IP_MF (line 909) | IP_MF = 0x2000
constant IP_MINTTL (line 910) | IP_MINTTL = 0x42
constant IP_MIN_MEMBERSHIPS (line 911) | IP_MIN_MEMBERSHIPS = 0x1f
constant IP_MSFILTER (line 912) | IP_MSFILTER = 0x4a
constant IP_MSS (line 913) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 914) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 915) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 916) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 917) | IP_MULTICAST_VIF = 0xe
constant IP_OFFMASK (line 918) | IP_OFFMASK = 0x1fff
constant IP_ONESBCAST (line 919) | IP_ONESBCAST = 0x17
constant IP_OPTIONS (line 920) | IP_OPTIONS = 0x1
constant IP_PORTRANGE (line 921) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 922) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 923) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 924) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 925) | IP_RECVDSTADDR = 0x7
constant IP_RECVFLOWID (line 926) | IP_RECVFLOWID = 0x5d
constant IP_RECVIF (line 927) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 928) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 929) | IP_RECVRETOPTS = 0x6
constant IP_RECVRSSBUCKETID (line 930) | IP_RECVRSSBUCKETID = 0x5e
constant IP_RECVTOS (line 931) | IP_RECVTOS = 0x44
constant IP_RECVTTL (line 932) | IP_RECVTTL = 0x41
constant IP_RETOPTS (line 933) | IP_RETOPTS = 0x8
constant IP_RF (line 934) | IP_RF = 0x8000
constant IP_RSSBUCKETID (line 935) | IP_RSSBUCKETID = 0x5c
constant IP_RSS_LISTEN_BUCKET (line 936) | IP_RSS_LISTEN_BUCKET = 0x1a
constant IP_RSVP_OFF (line 937) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 938) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 939) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 940) | IP_RSVP_VIF_ON = 0x11
constant IP_SENDSRCADDR (line 941) | IP_SENDSRCADDR = 0x7
constant IP_TOS (line 942) | IP_TOS = 0x3
constant IP_TTL (line 943) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 944) | IP_UNBLOCK_SOURCE = 0x49
constant ISIG (line 945) | ISIG = 0x80
constant ISTRIP (line 946) | ISTRIP = 0x20
constant IXANY (line 947) | IXANY = 0x800
constant IXOFF (line 948) | IXOFF = 0x400
constant IXON (line 949) | IXON = 0x200
constant KERN_HOSTNAME (line 950) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 951) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 952) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 953) | KERN_VERSION = 0x4
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_HASSEMAPHORE (line 978) | MAP_HASSEMAPHORE = 0x200
constant MAP_NOCORE (line 979) | MAP_NOCORE = 0x20000
constant MAP_NOSYNC (line 980) | MAP_NOSYNC = 0x800
constant MAP_PREFAULT_READ (line 981) | MAP_PREFAULT_READ = 0x40000
constant MAP_PRIVATE (line 982) | MAP_PRIVATE = 0x2
constant MAP_RESERVED0020 (line 983) | MAP_RESERVED0020 = 0x20
constant MAP_RESERVED0040 (line 984) | MAP_RESERVED0040 = 0x40
constant MAP_RESERVED0080 (line 985) | MAP_RESERVED0080 = 0x80
constant MAP_RESERVED0100 (line 986) | MAP_RESERVED0100 = 0x100
constant MAP_SHARED (line 987) | MAP_SHARED = 0x1
constant MAP_STACK (line 988) | MAP_STACK = 0x400
constant MCL_CURRENT (line 989) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 990) | MCL_FUTURE = 0x2
constant MNT_ACLS (line 991) | MNT_ACLS = 0x8000000
constant MNT_ASYNC (line 992) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 993) | MNT_AUTOMOUNTED = 0x200000000
constant MNT_BYFSID (line 994) | MNT_BYFSID = 0x8000000
constant MNT_CMDFLAGS (line 995) | MNT_CMDFLAGS = 0xd0f0000
constant MNT_DEFEXPORTED (line 996) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 997) | MNT_DELEXPORT = 0x20000
constant MNT_EXKERB (line 998) | MNT_EXKERB = 0x800
constant MNT_EXPORTANON (line 999) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 1000) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 1001) | MNT_EXPUBLIC = 0x20000000
constant MNT_EXRDONLY (line 1002) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 1003) | MNT_FORCE = 0x80000
constant MNT_GJOURNAL (line 1004) | MNT_GJOURNAL = 0x2000000
constant MNT_IGNORE (line 1005) | MNT_IGNORE = 0x800000
constant MNT_LAZY (line 1006) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 1007) | MNT_LOCAL = 0x1000
constant MNT_MULTILABEL (line 1008) | MNT_MULTILABEL = 0x4000000
constant MNT_NFS4ACLS (line 1009) | MNT_NFS4ACLS = 0x10
constant MNT_NOATIME (line 1010) | MNT_NOATIME = 0x10000000
constant MNT_NOCLUSTERR (line 1011) | MNT_NOCLUSTERR = 0x40000000
constant MNT_NOCLUSTERW (line 1012) | MNT_NOCLUSTERW = 0x80000000
constant MNT_NOEXEC (line 1013) | MNT_NOEXEC = 0x4
constant MNT_NONBUSY (line 1014) | MNT_NONBUSY = 0x4000000
constant MNT_NOSUID (line 1015) | MNT_NOSUID = 0x8
constant MNT_NOSYMFOLLOW (line 1016) | MNT_NOSYMFOLLOW = 0x400000
constant MNT_NOWAIT (line 1017) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 1018) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 1019) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 1020) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 1021) | MNT_ROOTFS = 0x4000
constant MNT_SNAPSHOT (line 1022) | MNT_SNAPSHOT = 0x1000000
constant MNT_SOFTDEP (line 1023) | MNT_SOFTDEP = 0x200000
constant MNT_SUIDDIR (line 1024) | MNT_SUIDDIR = 0x100000
constant MNT_SUJ (line 1025) | MNT_SUJ = 0x100000000
constant MNT_SUSPEND (line 1026) | MNT_SUSPEND = 0x4
constant MNT_SYNCHRONOUS (line 1027) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 1028) | MNT_UNION = 0x20
constant MNT_UPDATE (line 1029) | MNT_UPDATE = 0x10000
constant MNT_UPDATEMASK (line 1030) | MNT_UPDATEMASK = 0x2d8d0807e
constant MNT_USER (line 1031) | MNT_USER = 0x8000
constant MNT_VISFLAGMASK (line 1032) | MNT_VISFLAGMASK = 0x3fef0ffff
constant MNT_WAIT (line 1033) | MNT_WAIT = 0x1
constant MSG_CMSG_CLOEXEC (line 1034) | MSG_CMSG_CLOEXEC = 0x40000
constant MSG_COMPAT (line 1035) | MSG_COMPAT = 0x8000
constant MSG_CTRUNC (line 1036) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 1037) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1038) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 1039) | MSG_EOF = 0x100
constant MSG_EOR (line 1040) | MSG_EOR = 0x8
constant MSG_NBIO (line 1041) | MSG_NBIO = 0x4000
constant MSG_NOSIGNAL (line 1042) | MSG_NOSIGNAL = 0x20000
constant MSG_NOTIFICATION (line 1043) | MSG_NOTIFICATION = 0x2000
constant MSG_OOB (line 1044) | MSG_OOB = 0x1
constant MSG_PEEK (line 1045) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 1046) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 1047) | MSG_WAITALL = 0x40
constant MSG_WAITFORONE (line 1048) | MSG_WAITFORONE = 0x80000
constant MS_ASYNC (line 1049) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 1050) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 1051) | MS_SYNC = 0x0
constant NAME_MAX (line 1052) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 1053) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 1054) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 1055) | NET_RT_IFLIST = 0x3
constant NET_RT_IFLISTL (line 1056) | NET_RT_IFLISTL = 0x5
constant NET_RT_IFMALIST (line 1057) | NET_RT_IFMALIST = 0x4
constant NOFLSH (line 1058) | NOFLSH = 0x80000000
constant NOKERNINFO (line 1059) | NOKERNINFO = 0x2000000
constant NOTE_ATTRIB (line 1060) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 1061) | NOTE_CHILD = 0x4
constant NOTE_CLOSE (line 1062) | NOTE_CLOSE = 0x100
constant NOTE_CLOSE_WRITE (line 1063) | NOTE_CLOSE_WRITE = 0x200
constant NOTE_DELETE (line 1064) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 1065) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1066) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1067) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 1068) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 1069) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 1070) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 1071) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 1072) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 1073) | NOTE_FFOR = 0x80000000
constant NOTE_FILE_POLL (line 1074) | NOTE_FILE_POLL = 0x2
constant NOTE_FORK (line 1075) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1076) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1077) | NOTE_LOWAT = 0x1
constant NOTE_MSECONDS (line 1078) | NOTE_MSECONDS = 0x2
constant NOTE_NSECONDS (line 1079) | NOTE_NSECONDS = 0x8
constant NOTE_OPEN (line 1080) | NOTE_OPEN = 0x80
constant NOTE_PCTRLMASK (line 1081) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1082) | NOTE_PDATAMASK = 0xfffff
constant NOTE_READ (line 1083) | NOTE_READ = 0x400
constant NOTE_RENAME (line 1084) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1085) | NOTE_REVOKE = 0x40
constant NOTE_SECONDS (line 1086) | NOTE_SECONDS = 0x1
constant NOTE_TRACK (line 1087) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1088) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 1089) | NOTE_TRIGGER = 0x1000000
constant NOTE_USECONDS (line 1090) | NOTE_USECONDS = 0x4
constant NOTE_WRITE (line 1091) | NOTE_WRITE = 0x2
constant OCRNL (line 1092) | OCRNL = 0x10
constant ONLCR (line 1093) | ONLCR = 0x2
constant ONLRET (line 1094) | ONLRET = 0x40
constant ONOCR (line 1095) | ONOCR = 0x20
constant ONOEOT (line 1096) | ONOEOT = 0x8
constant OPOST (line 1097) | OPOST = 0x1
constant OXTABS (line 1098) | OXTABS = 0x4
constant O_ACCMODE (line 1099) | O_ACCMODE = 0x3
constant O_APPEND (line 1100) | O_APPEND = 0x8
constant O_ASYNC (line 1101) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1102) | O_CLOEXEC = 0x100000
constant O_CREAT (line 1103) | O_CREAT = 0x200
constant O_DIRECT (line 1104) | O_DIRECT = 0x10000
constant O_DIRECTORY (line 1105) | O_DIRECTORY = 0x20000
constant O_EXCL (line 1106) | O_EXCL = 0x800
constant O_EXEC (line 1107) | O_EXEC = 0x40000
constant O_EXLOCK (line 1108) | O_EXLOCK = 0x20
constant O_FSYNC (line 1109) | O_FSYNC = 0x80
constant O_NDELAY (line 1110) | O_NDELAY = 0x4
constant O_NOCTTY (line 1111) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1112) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1113) | O_NONBLOCK = 0x4
constant O_RDONLY (line 1114) | O_RDONLY = 0x0
constant O_RDWR (line 1115) | O_RDWR = 0x2
constant O_SHLOCK (line 1116) | O_SHLOCK = 0x10
constant O_SYNC (line 1117) | O_SYNC = 0x80
constant O_TRUNC (line 1118) | O_TRUNC = 0x400
constant O_TTY_INIT (line 1119) | O_TTY_INIT = 0x80000
constant O_VERIFY (line 1120) | O_VERIFY = 0x200000
constant O_WRONLY (line 1121) | O_WRONLY = 0x1
constant PARENB (line 1122) | PARENB = 0x1000
constant PARMRK (line 1123) | PARMRK = 0x8
constant PARODD (line 1124) | PARODD = 0x2000
constant PENDIN (line 1125) | PENDIN = 0x20000000
constant PRIO_PGRP (line 1126) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1127) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1128) | PRIO_USER = 0x2
constant PROT_EXEC (line 1129) | PROT_EXEC = 0x4
constant PROT_NONE (line 1130) | PROT_NONE = 0x0
constant PROT_READ (line 1131) | PROT_READ = 0x1
constant PROT_WRITE (line 1132) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 1133) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1134) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1135) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1136) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1137) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1138) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1139) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1140) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1141) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1142) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1143) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1144) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1145) | RTAX_BRD = 0x7
constant RTAX_DST (line 1146) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1147) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1148) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1149) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1150) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1151) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 1152) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1153) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1154) | RTA_BRD = 0x80
constant RTA_DST (line 1155) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1156) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1157) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1158) | RTA_IFA = 0x20
constant RTA_IFP (line 1159) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1160) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1161) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1162) | RTF_BROADCAST = 0x400000
constant RTF_DONE (line 1163) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1164) | RTF_DYNAMIC = 0x10
constant RTF_FIXEDMTU (line 1165) | RTF_FIXEDMTU = 0x80000
constant RTF_FMASK (line 1166) | RTF_FMASK = 0x1004d808
constant RTF_GATEWAY (line 1167) | RTF_GATEWAY = 0x2
constant RTF_GWFLAG_COMPAT (line 1168) | RTF_GWFLAG_COMPAT = 0x80000000
constant RTF_HOST (line 1169) | RTF_HOST = 0x4
constant RTF_LLDATA (line 1170) | RTF_LLDATA = 0x400
constant RTF_LLINFO (line 1171) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1172) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1173) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 1174) | RTF_MULTICAST = 0x800000
constant RTF_PINNED (line 1175) | RTF_PINNED = 0x100000
constant RTF_PROTO1 (line 1176) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1177) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1178) | RTF_PROTO3 = 0x40000
constant RTF_REJECT (line 1179) | RTF_REJECT = 0x8
constant RTF_RNH_LOCKED (line 1180) | RTF_RNH_LOCKED = 0x40000000
constant RTF_STATIC (line 1181) | RTF_STATIC = 0x800
constant RTF_STICKY (line 1182) | RTF_STICKY = 0x10000000
constant RTF_UP (line 1183) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 1184) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1185) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1186) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1187) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1188) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1189) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1190) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1191) | RTM_IEEE80211 = 0x12
constant RTM_IFANNOUNCE (line 1192) | RTM_IFANNOUNCE = 0x11
constant RTM_IFINFO (line 1193) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 1194) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1195) | RTM_LOSING = 0x5
constant RTM_MISS (line 1196) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1197) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1198) | RTM_NEWMADDR = 0xf
constant RTM_REDIRECT (line 1199) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1200) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1201) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1202) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1203) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1204) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1205) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1206) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1207) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1208) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1209) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1210) | RTV_SSTHRESH = 0x20
constant RTV_WEIGHT (line 1211) | RTV_WEIGHT = 0x100
constant RT_ALL_FIBS (line 1212) | RT_ALL_FIBS = -0x1
constant RT_BLACKHOLE (line 1213) | RT_BLACKHOLE = 0x40
constant RT_CACHING_CONTEXT (line 1214) | RT_CACHING_CONTEXT = 0x1
constant RT_DEFAULT_FIB (line 1215) | RT_DEFAULT_FIB = 0x0
constant RT_HAS_GW (line 1216) | RT_HAS_GW = 0x80
constant RT_HAS_HEADER (line 1217) | RT_HAS_HEADER = 0x10
constant RT_HAS_HEADER_BIT (line 1218) | RT_HAS_HEADER_BIT = 0x4
constant RT_L2_ME (line 1219) | RT_L2_ME = 0x4
constant RT_L2_ME_BIT (line 1220) | RT_L2_ME_BIT = 0x2
constant RT_LLE_CACHE (line 1221) | RT_LLE_CACHE = 0x100
constant RT_MAY_LOOP (line 1222) | RT_MAY_LOOP = 0x8
constant RT_MAY_LOOP_BIT (line 1223) | RT_MAY_LOOP_BIT = 0x3
constant RT_NORTREF (line 1224) | RT_NORTREF = 0x2
constant RT_REJECT (line 1225) | RT_REJECT = 0x20
constant RUSAGE_CHILDREN (line 1226) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1227) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1228) | RUSAGE_THREAD = 0x1
constant SCM_BINTIME (line 1229) | SCM_BINTIME = 0x4
constant SCM_CREDS (line 1230) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1231) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1232) | SCM_TIMESTAMP = 0x2
constant SHUT_RD (line 1233) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1234) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1235) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1236) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1237) | SIOCAIFADDR = 0x8040691a
constant SIOCAIFGROUP (line 1238) | SIOCAIFGROUP = 0x80246987
constant SIOCATMARK (line 1239) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1240) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1241) | SIOCDIFADDR = 0x80206919
constant SIOCDIFGROUP (line 1242) | SIOCDIFGROUP = 0x80246989
constant SIOCDIFPHYADDR (line 1243) | SIOCDIFPHYADDR = 0x80206949
constant SIOCGDRVSPEC (line 1244) | SIOCGDRVSPEC = 0xc01c697b
constant SIOCGETSGCNT (line 1245) | SIOCGETSGCNT = 0xc0147210
constant SIOCGETVIFCNT (line 1246) | SIOCGETVIFCNT = 0xc014720f
constant SIOCGHIWAT (line 1247) | SIOCGHIWAT = 0x40047301
constant SIOCGI2C (line 1248) | SIOCGI2C = 0xc020693d
constant SIOCGIFADDR (line 1249) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFBRDADDR (line 1250) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1251) | SIOCGIFCAP = 0xc020691f
constant SIOCGIFCONF (line 1252) | SIOCGIFCONF = 0xc0086924
constant SIOCGIFDESCR (line 1253) | SIOCGIFDESCR = 0xc020692a
constant SIOCGIFDSTADDR (line 1254) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFIB (line 1255) | SIOCGIFFIB = 0xc020695c
constant SIOCGIFFLAGS (line 1256) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1257) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGMEMB (line 1258) | SIOCGIFGMEMB = 0xc024698a
constant SIOCGIFGROUP (line 1259) | SIOCGIFGROUP = 0xc0246988
constant SIOCGIFINDEX (line 1260) | SIOCGIFINDEX = 0xc0206920
constant SIOCGIFMAC (line 1261) | SIOCGIFMAC = 0xc0206926
constant SIOCGIFMEDIA (line 1262) | SIOCGIFMEDIA = 0xc0286938
constant SIOCGIFMETRIC (line 1263) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1264) | SIOCGIFMTU = 0xc0206933
constant SIOCGIFNETMASK (line 1265) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1266) | SIOCGIFPDSTADDR = 0xc0206948
constant SIOCGIFPHYS (line 1267) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPSRCADDR (line 1268) | SIOCGIFPSRCADDR = 0xc0206947
constant SIOCGIFSTATUS (line 1269) | SIOCGIFSTATUS = 0xc331693b
constant SIOCGIFXMEDIA (line 1270) | SIOCGIFXMEDIA = 0xc028698b
constant SIOCGLOWAT (line 1271) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1272) | SIOCGPGRP = 0x40047309
constant SIOCGPRIVATE_0 (line 1273) | SIOCGPRIVATE_0 = 0xc0206950
constant SIOCGPRIVATE_1 (line 1274) | SIOCGPRIVATE_1 = 0xc0206951
constant SIOCGTUNFIB (line 1275) | SIOCGTUNFIB = 0xc020695e
constant SIOCIFCREATE (line 1276) | SIOCIFCREATE = 0xc020697a
constant SIOCIFCREATE2 (line 1277) | SIOCIFCREATE2 = 0xc020697c
constant SIOCIFDESTROY (line 1278) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1279) | SIOCIFGCLONERS = 0xc00c6978
constant SIOCSDRVSPEC (line 1280) | SIOCSDRVSPEC = 0x801c697b
constant SIOCSHIWAT (line 1281) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1282) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFBRDADDR (line 1283) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1284) | SIOCSIFCAP = 0x8020691e
constant SIOCSIFDESCR (line 1285) | SIOCSIFDESCR = 0x80206929
constant SIOCSIFDSTADDR (line 1286) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFIB (line 1287) | SIOCSIFFIB = 0x8020695d
constant SIOCSIFFLAGS (line 1288) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1289) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1290) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMAC (line 1291) | SIOCSIFMAC = 0x80206927
constant SIOCSIFMEDIA (line 1292) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1293) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1294) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNAME (line 1295) | SIOCSIFNAME = 0x80206928
constant SIOCSIFNETMASK (line 1296) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1297) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSIFPHYS (line 1298) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFRVNET (line 1299) | SIOCSIFRVNET = 0xc020695b
constant SIOCSIFVNET (line 1300) | SIOCSIFVNET = 0xc020695a
constant SIOCSLOWAT (line 1301) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1302) | SIOCSPGRP = 0x80047308
constant SIOCSTUNFIB (line 1303) | SIOCSTUNFIB = 0x8020695f
constant SOCK_CLOEXEC (line 1304) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1305) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1306) | SOCK_MAXADDRLEN = 0xff
constant SOCK_NONBLOCK (line 1307) | SOCK_NONBLOCK = 0x20000000
constant SOCK_RAW (line 1308) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1309) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1310) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1311) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1312) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1313) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1314) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1315) | SO_ACCEPTFILTER = 0x1000
constant SO_BINTIME (line 1316) | SO_BINTIME = 0x2000
constant SO_BROADCAST (line 1317) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1318) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1319) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1320) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1321) | SO_KEEPALIVE = 0x8
constant SO_LABEL (line 1322) | SO_LABEL = 0x1009
constant SO_LINGER (line 1323) | SO_LINGER = 0x80
constant SO_LISTENINCQLEN (line 1324) | SO_LISTENINCQLEN = 0x1013
constant SO_LISTENQLEN (line 1325) | SO_LISTENQLEN = 0x1012
constant SO_LISTENQLIMIT (line 1326) | SO_LISTENQLIMIT = 0x1011
constant SO_NOSIGPIPE (line 1327) | SO_NOSIGPIPE = 0x800
constant SO_NO_DDP (line 1328) | SO_NO_DDP = 0x8000
constant SO_NO_OFFLOAD (line 1329) | SO_NO_OFFLOAD = 0x4000
constant SO_OOBINLINE (line 1330) | SO_OOBINLINE = 0x100
constant SO_PEERLABEL (line 1331) | SO_PEERLABEL = 0x1010
constant SO_PROTOCOL (line 1332) | SO_PROTOCOL = 0x1016
constant SO_PROTOTYPE (line 1333) | SO_PROTOTYPE = 0x1016
constant SO_RCVBUF (line 1334) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1335) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1336) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1337) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1338) | SO_REUSEPORT = 0x200
constant SO_SETFIB (line 1339) | SO_SETFIB = 0x1014
constant SO_SNDBUF (line 1340) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1341) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1342) | SO_SNDTIMEO = 0x1005
constant SO_TIMESTAMP (line 1343) | SO_TIMESTAMP = 0x400
constant SO_TYPE (line 1344) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1345) | SO_USELOOPBACK = 0x40
constant SO_USER_COOKIE (line 1346) | SO_USER_COOKIE = 0x1015
constant SO_VENDOR (line 1347) | SO_VENDOR = 0x80000000
constant S_BLKSIZE (line 1348) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1349) | S_IEXEC = 0x40
constant S_IFBLK (line 1350) | S_IFBLK = 0x6000
constant S_IFCHR (line 1351) | S_IFCHR = 0x2000
constant S_IFDIR (line 1352) | S_IFDIR = 0x4000
constant S_IFIFO (line 1353) | S_IFIFO = 0x1000
constant S_IFLNK (line 1354) | S_IFLNK = 0xa000
constant S_IFMT (line 1355) | S_IFMT = 0xf000
constant S_IFREG (line 1356) | S_IFREG = 0x8000
constant S_IFSOCK (line 1357) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1358) | S_IFWHT = 0xe000
constant S_IREAD (line 1359) | S_IREAD = 0x100
constant S_IRGRP (line 1360) | S_IRGRP = 0x20
constant S_IROTH (line 1361) | S_IROTH = 0x4
constant S_IRUSR (line 1362) | S_IRUSR = 0x100
constant S_IRWXG (line 1363) | S_IRWXG = 0x38
constant S_IRWXO (line 1364) | S_IRWXO = 0x7
constant S_IRWXU (line 1365) | S_IRWXU = 0x1c0
constant S_ISGID (line 1366) | S_ISGID = 0x400
constant S_ISTXT (line 1367) | S_ISTXT = 0x200
constant S_ISUID (line 1368) | S_ISUID = 0x800
constant S_ISVTX (line 1369) | S_ISVTX = 0x200
constant S_IWGRP (line 1370) | S_IWGRP = 0x10
constant S_IWOTH (line 1371) | S_IWOTH = 0x2
constant S_IWRITE (line 1372) | S_IWRITE = 0x80
constant S_IWUSR (line 1373) | S_IWUSR = 0x80
constant S_IXGRP (line 1374) | S_IXGRP = 0x8
constant S_IXOTH (line 1375) | S_IXOTH = 0x1
constant S_IXUSR (line 1376) | S_IXUSR = 0x40
constant TAB0 (line 1377) | TAB0 = 0x0
constant TAB3 (line 1378) | TAB3 = 0x4
constant TABDLY (line 1379) | TABDLY = 0x4
constant TCIFLUSH (line 1380) | TCIFLUSH = 0x1
constant TCIOFF (line 1381) | TCIOFF = 0x3
constant TCIOFLUSH (line 1382) | TCIOFLUSH = 0x3
constant TCION (line 1383) | TCION = 0x4
constant TCOFLUSH (line 1384) | TCOFLUSH = 0x2
constant TCOOFF (line 1385) | TCOOFF = 0x1
constant TCOON (line 1386) | TCOON = 0x2
constant TCP_CA_NAME_MAX (line 1387) | TCP_CA_NAME_MAX = 0x10
constant TCP_CCALGOOPT (line 1388) | TCP_CCALGOOPT = 0x41
constant TCP_CONGESTION (line 1389) | TCP_CONGESTION = 0x40
constant TCP_FASTOPEN (line 1390) | TCP_FASTOPEN = 0x401
constant TCP_FUNCTION_BLK (line 1391) | TCP_FUNCTION_BLK = 0x2000
constant TCP_FUNCTION_NAME_LEN_MAX (line 1392) | TCP_FUNCTION_NAME_LEN_MAX = 0x20
constant TCP_INFO (line 1393) | TCP_INFO = 0x20
constant TCP_KEEPCNT (line 1394) | TCP_KEEPCNT = 0x400
constant TCP_KEEPIDLE (line 1395) | TCP_KEEPIDLE = 0x100
constant TCP_KEEPINIT (line 1396) | TCP_KEEPINIT = 0x80
constant TCP_KEEPINTVL (line 1397) | TCP_KEEPINTVL = 0x200
constant TCP_MAXBURST (line 1398) | TCP_MAXBURST = 0x4
constant TCP_MAXHLEN (line 1399) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1400) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1401) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1402) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1403) | TCP_MAX_SACK = 0x4
constant TCP_MAX_WINSHIFT (line 1404) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1405) | TCP_MD5SIG = 0x10
constant TCP_MINMSS (line 1406) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1407) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1408) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1409) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1410) | TCP_NOPUSH = 0x4
constant TCP_PCAP_IN (line 1411) | TCP_PCAP_IN = 0x1000
constant TCP_PCAP_OUT (line 1412) | TCP_PCAP_OUT = 0x800
constant TCP_VENDOR (line 1413) | TCP_VENDOR = 0x80000000
constant TCSAFLUSH (line 1414) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1415) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1416) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1417) | TIOCCONS = 0x80047462
constant TIOCDRAIN (line 1418) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1419) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1420) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1421) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1422) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1423) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1424) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1425) | TIOCGPGRP = 0x40047477
constant TIOCGPTN (line 1426) | TIOCGPTN = 0x4004740f
constant TIOCGSID (line 1427) | TIOCGSID = 0x40047463
constant TIOCGWINSZ (line 1428) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1429) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1430) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1431) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1432) | TIOCMGET = 0x4004746a
constant TIOCMSDTRWAIT (line 1433) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1434) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1435) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1436) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1437) | TIOCM_CTS = 0x20
constant TIOCM_DCD (line 1438) | TIOCM_DCD = 0x40
constant TIOCM_DSR (line 1439) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1440) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1441) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1442) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1443) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1444) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1445) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1446) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1447) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1448) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1449) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1450) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1451) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1452) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1453) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1454) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1455) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1456) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1457) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1458) | TIOCPKT_STOP = 0x4
constant TIOCPTMASTER (line 1459) | TIOCPTMASTER = 0x2000741c
constant TIOCSBRK (line 1460) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1461) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1462) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1463) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1464) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1465) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1466) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1467) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1468) | TIOCSIG = 0x2004745f
constant TIOCSPGRP (line 1469) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1470) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1471) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1472) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1473) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1474) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1475) | TIOCTIMESTAMP = 0x40087459
constant TIOCUCNTL (line 1476) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1477) | TOSTOP = 0x400000
constant VDISCARD (line 1478) | VDISCARD = 0xf
constant VDSUSP (line 1479) | VDSUSP = 0xb
constant VEOF (line 1480) | VEOF = 0x0
constant VEOL (line 1481) | VEOL = 0x1
constant VEOL2 (line 1482) | VEOL2 = 0x2
constant VERASE (line 1483) | VERASE = 0x3
constant VERASE2 (line 1484) | VERASE2 = 0x7
constant VINTR (line 1485) | VINTR = 0x8
constant VKILL (line 1486) | VKILL = 0x5
constant VLNEXT (line 1487) | VLNEXT = 0xe
constant VMIN (line 1488) | VMIN = 0x10
constant VQUIT (line 1489) | VQUIT = 0x9
constant VREPRINT (line 1490) | VREPRINT = 0x6
constant VSTART (line 1491) | VSTART = 0xc
constant VSTATUS (line 1492) | VSTATUS = 0x12
constant VSTOP (line 1493) | VSTOP = 0xd
constant VSUSP (line 1494) | VSUSP = 0xa
constant VTIME (line 1495) | VTIME = 0x11
constant VWERASE (line 1496) | VWERASE = 0x4
constant WCONTINUED (line 1497) | WCONTINUED = 0x4
constant WCOREFLAG (line 1498) | WCOREFLAG = 0x80
constant WEXITED (line 1499) | WEXITED = 0x10
constant WLINUXCLONE (line 1500) | WLINUXCLONE = 0x80000000
constant WNOHANG (line 1501) | WNOHANG = 0x1
constant WNOWAIT (line 1502) | WNOWAIT = 0x8
constant WSTOPPED (line 1503) | WSTOPPED = 0x2
constant WTRAPPED (line 1504) | WTRAPPED = 0x20
constant WUNTRACED (line 1505) | WUNTRACED = 0x2
constant E2BIG (line 1510) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1511) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1512) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1513) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1514) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1515) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1516) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1517) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1518) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1519) | EBADMSG = syscall.Errno(0x59)
constant EBADRPC (line 1520) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1521) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1522) | ECANCELED = syscall.Errno(0x55)
constant ECAPMODE (line 1523) | ECAPMODE = syscall.Errno(0x5e)
constant ECHILD (line 1524) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1525) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1526) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1527) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1528) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1529) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1530) | EDOM = syscall.Errno(0x21)
constant EDOOFUS (line 1531) | EDOOFUS = syscall.Errno(0x58)
constant EDQUOT (line 1532) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1533) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1534) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1535) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1536) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1537) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1538) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1539) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1540) | EILSEQ = syscall.Errno(0x56)
constant EINPROGRESS (line 1541) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1542) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1543) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1544) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1545) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1546) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1547) | ELAST = syscall.Errno(0x60)
constant ELOOP (line 1548) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1549) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1550) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1551) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1552) | EMULTIHOP = syscall.Errno(0x5a)
constant ENAMETOOLONG (line 1553) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1554) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1555) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1556) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1557) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1558) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1559) | ENOATTR = syscall.Errno(0x57)
constant ENOBUFS (line 1560) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1561) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1562) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1563) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1564) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1565) | ENOLINK = syscall.Errno(0x5b)
constant ENOMEM (line 1566) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1567) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1568) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1569) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1570) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1571) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCAPABLE (line 1572) | ENOTCAPABLE = syscall.Errno(0x5d)
constant ENOTCONN (line 1573) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1574) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1575) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1576) | ENOTRECOVERABLE = syscall.Errno(0x5f)
constant ENOTSOCK (line 1577) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1578) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1579) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1580) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1581) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1582) | EOVERFLOW = syscall.Errno(0x54)
constant EOWNERDEAD (line 1583) | EOWNERDEAD = syscall.Errno(0x60)
constant EPERM (line 1584) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1585) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1586) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1587) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1588) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1589) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1590) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1591) | EPROTO = syscall.Errno(0x5c)
constant EPROTONOSUPPORT (line 1592) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1593) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1594) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1595) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1596) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1597) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1598) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1599) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1600) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1601) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1602) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1603) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1604) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1605) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1606) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1607) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1608) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1613) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1614) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1615) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1616) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1617) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1618) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1619) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1620) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1621) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1622) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1623) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1624) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1625) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1626) | SIGKILL = syscall.Signal(0x9)
constant SIGLIBRT (line 1627) | SIGLIBRT = syscall.Signal(0x21)
constant SIGLWP (line 1628) | SIGLWP = syscall.Signal(0x20)
constant SIGPIPE (line 1629) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1630) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1631) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1632) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1633) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1634) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1635) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1636) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1637) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1638) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1639) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1640) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1641) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1642) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1643) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1644) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1645) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1646) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1647) | 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_HW (line 354) | CTL_HW = 0x6
constant CTL_KERN (line 355) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 356) | CTL_MAXNAME = 0x18
constant CTL_NET (line 357) | CTL_NET = 0x4
constant DLT_A429 (line 358) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 359) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 360) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 361) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 362) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 363) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 364) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 365) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 366) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 367) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 368) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 369) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 370) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_BREDR_BB (line 371) | DLT_BLUETOOTH_BREDR_BB = 0xff
constant DLT_BLUETOOTH_HCI_H4 (line 372) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 373) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_BLUETOOTH_LE_LL (line 374) | DLT_BLUETOOTH_LE_LL = 0xfb
constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 375) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100
constant DLT_BLUETOOTH_LINUX_MONITOR (line 376) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe
constant DLT_CAN20B (line 377) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 378) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 379) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 380) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 381) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 382) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 383) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DBUS (line 384) | DLT_DBUS = 0xe7
constant DLT_DECT (line 385) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 386) | DLT_DOCSIS = 0x8f
constant DLT_DVB_CI (line 387) | DLT_DVB_CI = 0xeb
constant DLT_ECONET (line 388) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 389) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 390) | DLT_EN3MB = 0x2
constant DLT_ENC (line 391) | DLT_ENC = 0x6d
constant DLT_EPON (line 392) | DLT_EPON = 0x103
constant DLT_ERF (line 393) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 394) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 395) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 396) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 397) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 398) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 399) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 400) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 401) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 402) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 403) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 404) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 405) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 406) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 407) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 408) | DLT_GSMTAP_UM = 0xd9
constant DLT_HHDLC (line 409) | DLT_HHDLC = 0x79
constant DLT_IBM_SN (line 410) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 411) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 412) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 413) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 414) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 415) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 416) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 417) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NOFCS (line 418) | DLT_IEEE802_15_4_NOFCS = 0xe6
constant DLT_IEEE802_15_4_NONASK_PHY (line 419) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 420) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 421) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_INFINIBAND (line 422) | DLT_INFINIBAND = 0xf7
constant DLT_IPFILTER (line 423) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 424) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 425) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPMI_HPM_2 (line 426) | DLT_IPMI_HPM_2 = 0x104
constant DLT_IPNET (line 427) | DLT_IPNET = 0xe2
constant DLT_IPOIB (line 428) | DLT_IPOIB = 0xf2
constant DLT_IPV4 (line 429) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 430) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 431) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 432) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 433) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_ATM_CEMIC (line 434) | DLT_JUNIPER_ATM_CEMIC = 0xee
constant DLT_JUNIPER_CHDLC (line 435) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 436) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 437) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FIBRECHANNEL (line 438) | DLT_JUNIPER_FIBRECHANNEL = 0xea
constant DLT_JUNIPER_FRELAY (line 439) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 440) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 441) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 442) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 443) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 444) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 445) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 446) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 447) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 448) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 449) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 450) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_SRX_E2E (line 451) | DLT_JUNIPER_SRX_E2E = 0xe9
constant DLT_JUNIPER_ST (line 452) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 453) | DLT_JUNIPER_VP = 0xb7
constant DLT_JUNIPER_VS (line 454) | DLT_JUNIPER_VS = 0xe8
constant DLT_LAPB_WITH_DIR (line 455) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 456) | DLT_LAPD = 0xcb
constant DLT_LIN (line 457) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 458) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 459) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 460) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_PPP_WITHDIRECTION (line 461) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6
constant DLT_LINUX_SLL (line 462) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 463) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 464) | DLT_LTALK = 0x72
constant DLT_MATCHING_MAX (line 465) | DLT_MATCHING_MAX = 0x104
constant DLT_MATCHING_MIN (line 466) | DLT_MATCHING_MIN = 0x68
constant DLT_MFR (line 467) | DLT_MFR = 0xb6
constant DLT_MOST (line 468) | DLT_MOST = 0xd3
constant DLT_MPEG_2_TS (line 469) | DLT_MPEG_2_TS = 0xf3
constant DLT_MPLS (line 470) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 471) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 472) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 473) | DLT_MTP3 = 0x8d
constant DLT_MUX27010 (line 474) | DLT_MUX27010 = 0xec
constant DLT_NETANALYZER (line 475) | DLT_NETANALYZER = 0xf0
constant DLT_NETANALYZER_TRANSPARENT (line 476) | DLT_NETANALYZER_TRANSPARENT = 0xf1
constant DLT_NETLINK (line 477) | DLT_NETLINK = 0xfd
constant DLT_NFC_LLCP (line 478) | DLT_NFC_LLCP = 0xf5
constant DLT_NFLOG (line 479) | DLT_NFLOG = 0xef
constant DLT_NG40 (line 480) | DLT_NG40 = 0xf4
constant DLT_NULL (line 481) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 482) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 483) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 484) | DLT_PFSYNC = 0x79
constant DLT_PKTAP (line 485) | DLT_PKTAP = 0x102
constant DLT_PPI (line 486) | DLT_PPI = 0xc0
constant DLT_PPP (line 487) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 488) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 489) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 490) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 491) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 492) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PPP_WITH_DIRECTION (line 493) | DLT_PPP_WITH_DIRECTION = 0xa6
constant DLT_PRISM_HEADER (line 494) | DLT_PRISM_HEADER = 0x77
constant DLT_PROFIBUS_DL (line 495) | DLT_PROFIBUS_DL = 0x101
constant DLT_PRONET (line 496) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 497) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 498) | DLT_RAW = 0xc
constant DLT_RIO (line 499) | DLT_RIO = 0x7c
constant DLT_RTAC_SERIAL (line 500) | DLT_RTAC_SERIAL = 0xfa
constant DLT_SCCP (line 501) | DLT_SCCP = 0x8e
constant DLT_SCTP (line 502) | DLT_SCTP = 0xf8
constant DLT_SITA (line 503) | DLT_SITA = 0xc4
constant DLT_SLIP (line 504) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 505) | DLT_SLIP_BSDOS = 0xf
constant DLT_STANAG_5066_D_PDU (line 506) | DLT_STANAG_5066_D_PDU = 0xed
constant DLT_SUNATM (line 507) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 508) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 509) | DLT_TZSP = 0x80
constant DLT_USB (line 510) | DLT_USB = 0xba
constant DLT_USBPCAP (line 511) | DLT_USBPCAP = 0xf9
constant DLT_USB_LINUX (line 512) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 513) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_USER0 (line 514) | DLT_USER0 = 0x93
constant DLT_USER1 (line 515) | DLT_USER1 = 0x94
constant DLT_USER10 (line 516) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 517) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 518) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 519) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 520) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 521) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 522) | DLT_USER2 = 0x95
constant DLT_USER3 (line 523) | DLT_USER3 = 0x96
constant DLT_USER4 (line 524) | DLT_USER4 = 0x97
constant DLT_USER5 (line 525) | DLT_USER5 = 0x98
constant DLT_USER6 (line 526) | DLT_USER6 = 0x99
constant DLT_USER7 (line 527) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 528) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 529) | DLT_USER9 = 0x9c
constant DLT_WIHART (line 530) | DLT_WIHART = 0xdf
constant DLT_WIRESHARK_UPPER_PDU (line 531) | DLT_WIRESHARK_UPPER_PDU = 0xfc
constant DLT_X2E_SERIAL (line 532) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 533) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 534) | DT_BLK = 0x6
constant DT_CHR (line 535) | DT_CHR = 0x2
constant DT_DIR (line 536) | DT_DIR = 0x4
constant DT_FIFO (line 537) | DT_FIFO = 0x1
constant DT_LNK (line 538) | DT_LNK = 0xa
constant DT_REG (line 539) | DT_REG = 0x8
constant DT_SOCK (line 540) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 541) | DT_UNKNOWN = 0x0
constant DT_WHT (line 542) | DT_WHT = 0xe
constant ECHO (line 543) | ECHO = 0x8
constant ECHOCTL (line 544) | ECHOCTL = 0x40
constant ECHOE (line 545) | ECHOE = 0x2
constant ECHOK (line 546) | ECHOK = 0x4
constant ECHOKE (line 547) | ECHOKE = 0x1
constant ECHONL (line 548) | ECHONL = 0x10
constant ECHOPRT (line 549) | ECHOPRT = 0x20
constant EVFILT_AIO (line 550) | EVFILT_AIO = -0x3
constant EVFILT_FS (line 551) | EVFILT_FS = -0x9
constant EVFILT_LIO (line 552) | EVFILT_LIO = -0xa
constant EVFILT_PROC (line 553) | EVFILT_PROC = -0x5
constant EVFILT_PROCDESC (line 554) | EVFILT_PROCDESC = -0x8
constant EVFILT_READ (line 555) | EVFILT_READ = -0x1
constant EVFILT_SENDFILE (line 556) | EVFILT_SENDFILE = -0xc
constant EVFILT_SIGNAL (line 557) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 558) | EVFILT_SYSCOUNT = 0xc
constant EVFILT_TIMER (line 559) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 560) | EVFILT_USER = -0xb
constant EVFILT_VNODE (line 561) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 562) | EVFILT_WRITE = -0x2
constant EV_ADD (line 563) | EV_ADD = 0x1
constant EV_CLEAR (line 564) | EV_CLEAR = 0x20
constant EV_DELETE (line 565) | EV_DELETE = 0x2
constant EV_DISABLE (line 566) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 567) | EV_DISPATCH = 0x80
constant EV_DROP (line 568) | EV_DROP = 0x1000
constant EV_ENABLE (line 569) | EV_ENABLE = 0x4
constant EV_EOF (line 570) | EV_EOF = 0x8000
constant EV_ERROR (line 571) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 572) | EV_FLAG1 = 0x2000
constant EV_FLAG2 (line 573) | EV_FLAG2 = 0x4000
constant EV_FORCEONESHOT (line 574) | EV_FORCEONESHOT = 0x100
constant EV_ONESHOT (line 575) | EV_ONESHOT = 0x10
constant EV_RECEIPT (line 576) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 577) | EV_SYSFLAGS = 0xf000
constant EXTA (line 578) | EXTA = 0x4b00
constant EXTATTR_NAMESPACE_EMPTY (line 579) | EXTATTR_NAMESPACE_EMPTY = 0x0
constant EXTATTR_NAMESPACE_SYSTEM (line 580) | EXTATTR_NAMESPACE_SYSTEM = 0x2
constant EXTATTR_NAMESPACE_USER (line 581) | EXTATTR_NAMESPACE_USER = 0x1
constant EXTB (line 582) | EXTB = 0x9600
constant EXTPROC (line 583) | EXTPROC = 0x800
constant FD_CLOEXEC (line 584) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 585) | FD_SETSIZE = 0x400
constant FLUSHO (line 586) | FLUSHO = 0x800000
constant F_CANCEL (line 587) | F_CANCEL = 0x5
constant F_DUP2FD (line 588) | F_DUP2FD = 0xa
constant F_DUP2FD_CLOEXEC (line 589) | F_DUP2FD_CLOEXEC = 0x12
constant F_DUPFD (line 590) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 591) | F_DUPFD_CLOEXEC = 0x11
constant F_GETFD (line 592) | F_GETFD = 0x1
constant F_GETFL (line 593) | F_GETFL = 0x3
constant F_GETLK (line 594) | F_GETLK = 0xb
constant F_GETOWN (line 595) | F_GETOWN = 0x5
constant F_OGETLK (line 596) | F_OGETLK = 0x7
constant F_OK (line 597) | F_OK = 0x0
constant F_OSETLK (line 598) | F_OSETLK = 0x8
constant F_OSETLKW (line 599) | F_OSETLKW = 0x9
constant F_RDAHEAD (line 600) | F_RDAHEAD = 0x10
constant F_RDLCK (line 601) | F_RDLCK = 0x1
constant F_READAHEAD (line 602) | F_READAHEAD = 0xf
constant F_SETFD (line 603) | F_SETFD = 0x2
constant F_SETFL (line 604) | F_SETFL = 0x4
constant F_SETLK (line 605) | F_SETLK = 0xc
constant F_SETLKW (line 606) | F_SETLKW = 0xd
constant F_SETLK_REMOTE (line 607) | F_SETLK_REMOTE = 0xe
constant F_SETOWN (line 608) | F_SETOWN = 0x6
constant F_UNLCK (line 609) | F_UNLCK = 0x2
constant F_UNLCKSYS (line 610) | F_UNLCKSYS = 0x4
constant F_WRLCK (line 611) | F_WRLCK = 0x3
constant HUPCL (line 612) | HUPCL = 0x4000
constant HW_MACHINE (line 613) | HW_MACHINE = 0x1
constant ICANON (line 614) | ICANON = 0x100
constant ICMP6_FILTER (line 615) | ICMP6_FILTER = 0x12
constant ICRNL (line 616) | ICRNL = 0x100
constant IEXTEN (line 617) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 618) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 619) | IFAN_DEPARTURE = 0x1
constant IFF_ALLMULTI (line 620) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 621) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 622) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 623) | IFF_CANTCHANGE = 0x218f52
constant IFF_CANTCONFIG (line 624) | IFF_CANTCONFIG = 0x10000
constant IFF_DEBUG (line 625) | IFF_DEBUG = 0x4
constant IFF_DRV_OACTIVE (line 626) | IFF_DRV_OACTIVE = 0x400
constant IFF_DRV_RUNNING (line 627) | IFF_DRV_RUNNING = 0x40
constant IFF_DYING (line 628) | IFF_DYING = 0x200000
constant IFF_LINK0 (line 629) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 630) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 631) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 632) | IFF_LOOPBACK = 0x8
constant IFF_MONITOR (line 633) | IFF_MONITOR = 0x40000
constant IFF_MULTICAST (line 634) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 635) | IFF_NOARP = 0x80
constant IFF_OACTIVE (line 636) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 637) | IFF_POINTOPOINT = 0x10
constant IFF_PPROMISC (line 638) | IFF_PPROMISC = 0x20000
constant IFF_PROMISC (line 639) | IFF_PROMISC = 0x100
constant IFF_RENAMING (line 640) | IFF_RENAMING = 0x400000
constant IFF_RUNNING (line 641) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 642) | IFF_SIMPLEX = 0x800
constant IFF_STATICARP (line 643) | IFF_STATICARP = 0x80000
constant IFF_UP (line 644) | IFF_UP = 0x1
constant IFNAMSIZ (line 645) | IFNAMSIZ = 0x10
constant IFT_BRIDGE (line 646) | IFT_BRIDGE = 0xd1
constant IFT_CARP (line 647) | IFT_CARP = 0xf8
constant IFT_IEEE1394 (line 648) | IFT_IEEE1394 = 0x90
constant IFT_INFINIBAND (line 649) | IFT_INFINIBAND = 0xc7
constant IFT_L2VLAN (line 650) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 651) | IFT_L3IPVLAN = 0x88
constant IFT_PPP (line 652) | IFT_PPP = 0x17
constant IFT_PROPVIRTUAL (line 653) | IFT_PROPVIRTUAL = 0x35
constant IGNBRK (line 654) | IGNBRK = 0x1
constant IGNCR (line 655) | IGNCR = 0x80
constant IGNPAR (line 656) | IGNPAR = 0x4
constant IMAXBEL (line 657) | IMAXBEL = 0x2000
constant INLCR (line 658) | INLCR = 0x40
constant INPCK (line 659) | INPCK = 0x10
constant IN_CLASSA_HOST (line 660) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 661) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 662) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 663) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 664) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 665) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 666) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 667) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 668) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 669) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 670) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 671) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 672) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 673) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 674) | IN_LOOPBACKNET = 0x7f
constant IN_RFC3021_MASK (line 675) | IN_RFC3021_MASK = 0xfffffffe
constant IPPROTO_3PC (line 676) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 677) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 678) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 679) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 680) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 681) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 682) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 683) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 684) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 685) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CARP (line 686) | IPPROTO_CARP = 0x70
constant IPPROTO_CFTP (line 687) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 688) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 689) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 690) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 691) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 692) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 693) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 694) | IPPROTO_DIVERT = 0x102
constant IPPROTO_DONE (line 695) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 696) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 697) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 698) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 699) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 700) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 701) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 702) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 703) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 704) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 705) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 706) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 707) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HIP (line 708) | IPPROTO_HIP = 0x8b
constant IPPROTO_HMP (line 709) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 710) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 711) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 712) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 713) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 714) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 715) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 716) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 717) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 718) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 719) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 720) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 721) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 722) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 723) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 724) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 725) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 726) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 727) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 728) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 729) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 730) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 731) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 732) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 733) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 734) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 735) | IPPROTO_MAX = 0x100
constant IPPROTO_MEAS (line 736) | IPPROTO_MEAS = 0x13
constant IPPROTO_MH (line 737) | IPPROTO_MH = 0x87
constant IPPROTO_MHRP (line 738) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 739) | IPPROTO_MICP = 0x5f
constant IPPROTO_MOBILE (line 740) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MPLS (line 741) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 742) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 743) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 744) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 745) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 746) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 747) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 748) | IPPROTO_NVPII = 0xb
constant IPPROTO_OLD_DIVERT (line 749) | IPPROTO_OLD_DIVERT = 0xfe
constant IPPROTO_OSPFIGP (line 750) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PFSYNC (line 751) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PGM (line 752) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 753) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 754) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 755) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 756) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 757) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 758) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 759) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 760) | IPPROTO_RDP = 0x1b
constant IPPROTO_RESERVED_253 (line 761) | IPPROTO_RESERVED_253 = 0xfd
constant IPPROTO_RESERVED_254 (line 762) | IPPROTO_RESERVED_254 = 0xfe
constant IPPROTO_ROUTING (line 763) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 764) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 765) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 766) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 767) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 768) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SCTP (line 769) | IPPROTO_SCTP = 0x84
constant IPPROTO_SDRP (line 770) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEND (line 771) | IPPROTO_SEND = 0x103
constant IPPROTO_SEP (line 772) | IPPROTO_SEP = 0x21
constant IPPROTO_SHIM6 (line 773) | IPPROTO_SHIM6 = 0x8c
constant IPPROTO_SKIP (line 774) | IPPROTO_SKIP = 0x39
constant IPPROTO_SPACER (line 775) | IPPROTO_SPACER = 0x7fff
constant IPPROTO_SRPC (line 776) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 777) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 778) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 779) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 780) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 781) | IPPROTO_TCP = 0x6
constant IPPROTO_TLSP (line 782) | IPPROTO_TLSP = 0x38
constant IPPROTO_TP (line 783) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 784) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 785) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 786) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 787) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 788) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 789) | IPPROTO_UDPLITE = 0x88
constant IPPROTO_VINES (line 790) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 791) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 792) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 793) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 794) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 795) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 796) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 797) | IPPROTO_XTP = 0x24
constant IPV6_AUTOFLOWLABEL (line 798) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_BINDANY (line 799) | IPV6_BINDANY = 0x40
constant IPV6_BINDMULTI (line 800) | IPV6_BINDMULTI = 0x41
constant IPV6_BINDV6ONLY (line 801) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_CHECKSUM (line 802) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 803) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 804) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 805) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 806) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 807) | IPV6_DSTOPTS = 0x32
constant IPV6_FLOWID (line 808) | IPV6_FLOWID = 0x43
constant IPV6_FLOWINFO_MASK (line 809) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 810) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FLOWTYPE (line 811) | IPV6_FLOWTYPE = 0x44
constant IPV6_FRAGTTL (line 812) | IPV6_FRAGTTL = 0x78
constant IPV6_FW_ADD (line 813) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 814) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 815) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 816) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 817) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 818) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 819) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 820) | IPV6_HOPOPTS = 0x31
constant IPV6_IPSEC_POLICY (line 821) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 822) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 823) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 824) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXOPTHDR (line 825) | IPV6_MAXOPTHDR = 0x800
constant IPV6_MAXPACKET (line 826) | IPV6_MAXPACKET = 0xffff
constant IPV6_MAX_GROUP_SRC_FILTER (line 827) | IPV6_MAX_GROUP_SRC_FILTER = 0x200
constant IPV6_MAX_MEMBERSHIPS (line 828) | IPV6_MAX_MEMBERSHIPS = 0xfff
constant IPV6_MAX_SOCK_SRC_FILTER (line 829) | IPV6_MAX_SOCK_SRC_FILTER = 0x80
constant IPV6_MIN_MEMBERSHIPS (line 830) | IPV6_MIN_MEMBERSHIPS = 0x1f
constant IPV6_MMTU (line 831) | IPV6_MMTU = 0x500
constant IPV6_MSFILTER (line 832) | IPV6_MSFILTER = 0x4a
constant IPV6_MULTICAST_HOPS (line 833) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 834) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 835) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 836) | IPV6_NEXTHOP = 0x30
constant IPV6_PATHMTU (line 837) | IPV6_PATHMTU = 0x2c
constant IPV6_PKTINFO (line 838) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 839) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 840) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 841) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 842) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_PREFER_TEMPADDR (line 843) | IPV6_PREFER_TEMPADDR = 0x3f
constant IPV6_RECVDSTOPTS (line 844) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVFLOWID (line 845) | IPV6_RECVFLOWID = 0x46
constant IPV6_RECVHOPLIMIT (line 846) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 847) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 848) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 849) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRSSBUCKETID (line 850) | IPV6_RECVRSSBUCKETID = 0x47
constant IPV6_RECVRTHDR (line 851) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 852) | IPV6_RECVTCLASS = 0x39
constant IPV6_RSSBUCKETID (line 853) | IPV6_RSSBUCKETID = 0x45
constant IPV6_RSS_LISTEN_BUCKET (line 854) | IPV6_RSS_LISTEN_BUCKET = 0x42
constant IPV6_RTHDR (line 855) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 856) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 857) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 858) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 859) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 860) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 861) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 862) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 863) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 864) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 865) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 866) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 867) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 868) | IP_ADD_SOURCE_MEMBERSHIP = 0x46
constant IP_BINDANY (line 869) | IP_BINDANY = 0x18
constant IP_BINDMULTI (line 870) | IP_BINDMULTI = 0x19
constant IP_BLOCK_SOURCE (line 871) | IP_BLOCK_SOURCE = 0x48
constant IP_DEFAULT_MULTICAST_LOOP (line 872) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 873) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 874) | IP_DF = 0x4000
constant IP_DONTFRAG (line 875) | IP_DONTFRAG = 0x43
constant IP_DROP_MEMBERSHIP (line 876) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 877) | IP_DROP_SOURCE_MEMBERSHIP = 0x47
constant IP_DUMMYNET3 (line 878) | IP_DUMMYNET3 = 0x31
constant IP_DUMMYNET_CONFIGURE (line 879) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 880) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 881) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 882) | IP_DUMMYNET_GET = 0x40
constant IP_FLOWID (line 883) | IP_FLOWID = 0x5a
constant IP_FLOWTYPE (line 884) | IP_FLOWTYPE = 0x5b
constant IP_FW3 (line 885) | IP_FW3 = 0x30
constant IP_FW_ADD (line 886) | IP_FW_ADD = 0x32
constant IP_FW_DEL (line 887) | IP_FW_DEL = 0x33
constant IP_FW_FLUSH (line 888) | IP_FW_FLUSH = 0x34
constant IP_FW_GET (line 889) | IP_FW_GET = 0x36
constant IP_FW_NAT_CFG (line 890) | IP_FW_NAT_CFG = 0x38
constant IP_FW_NAT_DEL (line 891) | IP_FW_NAT_DEL = 0x39
constant IP_FW_NAT_GET_CONFIG (line 892) | IP_FW_NAT_GET_CONFIG = 0x3a
constant IP_FW_NAT_GET_LOG (line 893) | IP_FW_NAT_GET_LOG = 0x3b
constant IP_FW_RESETLOG (line 894) | IP_FW_RESETLOG = 0x37
constant IP_FW_TABLE_ADD (line 895) | IP_FW_TABLE_ADD = 0x28
constant IP_FW_TABLE_DEL (line 896) | IP_FW_TABLE_DEL = 0x29
constant IP_FW_TABLE_FLUSH (line 897) | IP_FW_TABLE_FLUSH = 0x2a
constant IP_FW_TABLE_GETSIZE (line 898) | IP_FW_TABLE_GETSIZE = 0x2b
constant IP_FW_TABLE_LIST (line 899) | IP_FW_TABLE_LIST = 0x2c
constant IP_FW_ZERO (line 900) | IP_FW_ZERO = 0x35
constant IP_HDRINCL (line 901) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 902) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 903) | IP_MAXPACKET = 0xffff
constant IP_MAX_GROUP_SRC_FILTER (line 904) | IP_MAX_GROUP_SRC_FILTER = 0x200
constant IP_MAX_MEMBERSHIPS (line 905) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MAX_SOCK_MUTE_FILTER (line 906) | IP_MAX_SOCK_MUTE_FILTER = 0x80
constant IP_MAX_SOCK_SRC_FILTER (line 907) | IP_MAX_SOCK_SRC_FILTER = 0x80
constant IP_MAX_SOURCE_FILTER (line 908) | IP_MAX_SOURCE_FILTER = 0x400
constant IP_MF (line 909) | IP_MF = 0x2000
constant IP_MINTTL (line 910) | IP_MINTTL = 0x42
constant IP_MIN_MEMBERSHIPS (line 911) | IP_MIN_MEMBERSHIPS = 0x1f
constant IP_MSFILTER (line 912) | IP_MSFILTER = 0x4a
constant IP_MSS (line 913) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 914) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 915) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 916) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 917) | IP_MULTICAST_VIF = 0xe
constant IP_OFFMASK (line 918) | IP_OFFMASK = 0x1fff
constant IP_ONESBCAST (line 919) | IP_ONESBCAST = 0x17
constant IP_OPTIONS (line 920) | IP_OPTIONS = 0x1
constant IP_PORTRANGE (line 921) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 922) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 923) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 924) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 925) | IP_RECVDSTADDR = 0x7
constant IP_RECVFLOWID (line 926) | IP_RECVFLOWID = 0x5d
constant IP_RECVIF (line 927) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 928) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 929) | IP_RECVRETOPTS = 0x6
constant IP_RECVRSSBUCKETID (line 930) | IP_RECVRSSBUCKETID = 0x5e
constant IP_RECVTOS (line 931) | IP_RECVTOS = 0x44
constant IP_RECVTTL (line 932) | IP_RECVTTL = 0x41
constant IP_RETOPTS (line 933) | IP_RETOPTS = 0x8
constant IP_RF (line 934) | IP_RF = 0x8000
constant IP_RSSBUCKETID (line 935) | IP_RSSBUCKETID = 0x5c
constant IP_RSS_LISTEN_BUCKET (line 936) | IP_RSS_LISTEN_BUCKET = 0x1a
constant IP_RSVP_OFF (line 937) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 938) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 939) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 940) | IP_RSVP_VIF_ON = 0x11
constant IP_SENDSRCADDR (line 941) | IP_SENDSRCADDR = 0x7
constant IP_TOS (line 942) | IP_TOS = 0x3
constant IP_TTL (line 943) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 944) | IP_UNBLOCK_SOURCE = 0x49
constant ISIG (line 945) | ISIG = 0x80
constant ISTRIP (line 946) | ISTRIP = 0x20
constant IXANY (line 947) | IXANY = 0x800
constant IXOFF (line 948) | IXOFF = 0x400
constant IXON (line 949) | IXON = 0x200
constant KERN_HOSTNAME (line 950) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 951) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 952) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 953) | KERN_VERSION = 0x4
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_32BIT (line 969) | MAP_32BIT = 0x80000
constant MAP_ALIGNED_SUPER (line 970) | MAP_ALIGNED_SUPER = 0x1000000
constant MAP_ALIGNMENT_MASK (line 971) | MAP_ALIGNMENT_MASK = -0x1000000
constant MAP_ALIGNMENT_SHIFT (line 972) | MAP_ALIGNMENT_SHIFT = 0x18
constant MAP_ANON (line 973) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 974) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 975) | MAP_COPY = 0x2
constant MAP_EXCL (line 976) | MAP_EXCL = 0x4000
constant MAP_FILE (line 977) | MAP_FILE = 0x0
constant MAP_FIXED (line 978) | MAP_FIXED = 0x10
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 MNT_ACLS (line 992) | MNT_ACLS = 0x8000000
constant MNT_ASYNC (line 993) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 994) | MNT_AUTOMOUNTED = 0x200000000
constant MNT_BYFSID (line 995) | MNT_BYFSID = 0x8000000
constant MNT_CMDFLAGS (line 996) | MNT_CMDFLAGS = 0xd0f0000
constant MNT_DEFEXPORTED (line 997) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 998) | MNT_DELEXPORT = 0x20000
constant MNT_EXKERB (line 999) | MNT_EXKERB = 0x800
constant MNT_EXPORTANON (line 1000) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 1001) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 1002) | MNT_EXPUBLIC = 0x20000000
constant MNT_EXRDONLY (line 1003) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 1004) | MNT_FORCE = 0x80000
constant MNT_GJOURNAL (line 1005) | MNT_GJOURNAL = 0x2000000
constant MNT_IGNORE (line 1006) | MNT_IGNORE = 0x800000
constant MNT_LAZY (line 1007) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 1008) | MNT_LOCAL = 0x1000
constant MNT_MULTILABEL (line 1009) | MNT_MULTILABEL = 0x4000000
constant MNT_NFS4ACLS (line 1010) | MNT_NFS4ACLS = 0x10
constant MNT_NOATIME (line 1011) | MNT_NOATIME = 0x10000000
constant MNT_NOCLUSTERR (line 1012) | MNT_NOCLUSTERR = 0x40000000
constant MNT_NOCLUSTERW (line 1013) | MNT_NOCLUSTERW = 0x80000000
constant MNT_NOEXEC (line 1014) | MNT_NOEXEC = 0x4
constant MNT_NONBUSY (line 1015) | MNT_NONBUSY = 0x4000000
constant MNT_NOSUID (line 1016) | MNT_NOSUID = 0x8
constant MNT_NOSYMFOLLOW (line 1017) | MNT_NOSYMFOLLOW = 0x400000
constant MNT_NOWAIT (line 1018) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 1019) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 1020) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 1021) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 1022) | MNT_ROOTFS = 0x4000
constant MNT_SNAPSHOT (line 1023) | MNT_SNAPSHOT = 0x1000000
constant MNT_SOFTDEP (line 1024) | MNT_SOFTDEP = 0x200000
constant MNT_SUIDDIR (line 1025) | MNT_SUIDDIR = 0x100000
constant MNT_SUJ (line 1026) | MNT_SUJ = 0x100000000
constant MNT_SUSPEND (line 1027) | MNT_SUSPEND = 0x4
constant MNT_SYNCHRONOUS (line 1028) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 1029) | MNT_UNION = 0x20
constant MNT_UPDATE (line 1030) | MNT_UPDATE = 0x10000
constant MNT_UPDATEMASK (line 1031) | MNT_UPDATEMASK = 0x2d8d0807e
constant MNT_USER (line 1032) | MNT_USER = 0x8000
constant MNT_VISFLAGMASK (line 1033) | MNT_VISFLAGMASK = 0x3fef0ffff
constant MNT_WAIT (line 1034) | MNT_WAIT = 0x1
constant MSG_CMSG_CLOEXEC (line 1035) | MSG_CMSG_CLOEXEC = 0x40000
constant MSG_COMPAT (line 1036) | MSG_COMPAT = 0x8000
constant MSG_CTRUNC (line 1037) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 1038) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1039) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 1040) | MSG_EOF = 0x100
constant MSG_EOR (line 1041) | MSG_EOR = 0x8
constant MSG_NBIO (line 1042) | MSG_NBIO = 0x4000
constant MSG_NOSIGNAL (line 1043) | MSG_NOSIGNAL = 0x20000
constant MSG_NOTIFICATION (line 1044) | MSG_NOTIFICATION = 0x2000
constant MSG_OOB (line 1045) | MSG_OOB = 0x1
constant MSG_PEEK (line 1046) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 1047) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 1048) | MSG_WAITALL = 0x40
constant MSG_WAITFORONE (line 1049) | MSG_WAITFORONE = 0x80000
constant MS_ASYNC (line 1050) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 1051) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 1052) | MS_SYNC = 0x0
constant NAME_MAX (line 1053) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 1054) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 1055) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 1056) | NET_RT_IFLIST = 0x3
constant NET_RT_IFLISTL (line 1057) | NET_RT_IFLISTL = 0x5
constant NET_RT_IFMALIST (line 1058) | NET_RT_IFMALIST = 0x4
constant NOFLSH (line 1059) | NOFLSH = 0x80000000
constant NOKERNINFO (line 1060) | NOKERNINFO = 0x2000000
constant NOTE_ATTRIB (line 1061) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 1062) | NOTE_CHILD = 0x4
constant NOTE_CLOSE (line 1063) | NOTE_CLOSE = 0x100
constant NOTE_CLOSE_WRITE (line 1064) | NOTE_CLOSE_WRITE = 0x200
constant NOTE_DELETE (line 1065) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 1066) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1067) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1068) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 1069) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 1070) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 1071) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 1072) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 1073) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 1074) | NOTE_FFOR = 0x80000000
constant NOTE_FILE_POLL (line 1075) | NOTE_FILE_POLL = 0x2
constant NOTE_FORK (line 1076) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1077) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1078) | NOTE_LOWAT = 0x1
constant NOTE_MSECONDS (line 1079) | NOTE_MSECONDS = 0x2
constant NOTE_NSECONDS (line 1080) | NOTE_NSECONDS = 0x8
constant NOTE_OPEN (line 1081) | NOTE_OPEN = 0x80
constant NOTE_PCTRLMASK (line 1082) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1083) | NOTE_PDATAMASK = 0xfffff
constant NOTE_READ (line 1084) | NOTE_READ = 0x400
constant NOTE_RENAME (line 1085) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1086) | NOTE_REVOKE = 0x40
constant NOTE_SECONDS (line 1087) | NOTE_SECONDS = 0x1
constant NOTE_TRACK (line 1088) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1089) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 1090) | NOTE_TRIGGER = 0x1000000
constant NOTE_USECONDS (line 1091) | NOTE_USECONDS = 0x4
constant NOTE_WRITE (line 1092) | NOTE_WRITE = 0x2
constant OCRNL (line 1093) | OCRNL = 0x10
constant ONLCR (line 1094) | ONLCR = 0x2
constant ONLRET (line 1095) | ONLRET = 0x40
constant ONOCR (line 1096) | ONOCR = 0x20
constant ONOEOT (line 1097) | ONOEOT = 0x8
constant OPOST (line 1098) | OPOST = 0x1
constant OXTABS (line 1099) | OXTABS = 0x4
constant O_ACCMODE (line 1100) | O_ACCMODE = 0x3
constant O_APPEND (line 1101) | O_APPEND = 0x8
constant O_ASYNC (line 1102) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1103) | O_CLOEXEC = 0x100000
constant O_CREAT (line 1104) | O_CREAT = 0x200
constant O_DIRECT (line 1105) | O_DIRECT = 0x10000
constant O_DIRECTORY (line 1106) | O_DIRECTORY = 0x20000
constant O_EXCL (line 1107) | O_EXCL = 0x800
constant O_EXEC (line 1108) | O_EXEC = 0x40000
constant O_EXLOCK (line 1109) | O_EXLOCK = 0x20
constant O_FSYNC (line 1110) | O_FSYNC = 0x80
constant O_NDELAY (line 1111) | O_NDELAY = 0x4
constant O_NOCTTY (line 1112) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1113) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1114) | O_NONBLOCK = 0x4
constant O_RDONLY (line 1115) | O_RDONLY = 0x0
constant O_RDWR (line 1116) | O_RDWR = 0x2
constant O_SHLOCK (line 1117) | O_SHLOCK = 0x10
constant O_SYNC (line 1118) | O_SYNC = 0x80
constant O_TRUNC (line 1119) | O_TRUNC = 0x400
constant O_TTY_INIT (line 1120) | O_TTY_INIT = 0x80000
constant O_VERIFY (line 1121) | O_VERIFY = 0x200000
constant O_WRONLY (line 1122) | O_WRONLY = 0x1
constant PARENB (line 1123) | PARENB = 0x1000
constant PARMRK (line 1124) | PARMRK = 0x8
constant PARODD (line 1125) | PARODD = 0x2000
constant PENDIN (line 1126) | PENDIN = 0x20000000
constant PRIO_PGRP (line 1127) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1128) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1129) | PRIO_USER = 0x2
constant PROT_EXEC (line 1130) | PROT_EXEC = 0x4
constant PROT_NONE (line 1131) | PROT_NONE = 0x0
constant PROT_READ (line 1132) | PROT_READ = 0x1
constant PROT_WRITE (line 1133) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 1134) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1135) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1136) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1137) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1138) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1139) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1140) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1141) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1142) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1143) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1144) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1145) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1146) | RTAX_BRD = 0x7
constant RTAX_DST (line 1147) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1148) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1149) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1150) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1151) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1152) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 1153) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1154) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1155) | RTA_BRD = 0x80
constant RTA_DST (line 1156) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1157) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1158) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1159) | RTA_IFA = 0x20
constant RTA_IFP (line 1160) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1161) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1162) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1163) | RTF_BROADCAST = 0x400000
constant RTF_DONE (line 1164) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1165) | RTF_DYNAMIC = 0x10
constant RTF_FIXEDMTU (line 1166) | RTF_FIXEDMTU = 0x80000
constant RTF_FMASK (line 1167) | RTF_FMASK = 0x1004d808
constant RTF_GATEWAY (line 1168) | RTF_GATEWAY = 0x2
constant RTF_GWFLAG_COMPAT (line 1169) | RTF_GWFLAG_COMPAT = 0x80000000
constant RTF_HOST (line 1170) | RTF_HOST = 0x4
constant RTF_LLDATA (line 1171) | RTF_LLDATA = 0x400
constant RTF_LLINFO (line 1172) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1173) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1174) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 1175) | RTF_MULTICAST = 0x800000
constant RTF_PINNED (line 1176) | RTF_PINNED = 0x100000
constant RTF_PROTO1 (line 1177) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1178) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1179) | RTF_PROTO3 = 0x40000
constant RTF_REJECT (line 1180) | RTF_REJECT = 0x8
constant RTF_RNH_LOCKED (line 1181) | RTF_RNH_LOCKED = 0x40000000
constant RTF_STATIC (line 1182) | RTF_STATIC = 0x800
constant RTF_STICKY (line 1183) | RTF_STICKY = 0x10000000
constant RTF_UP (line 1184) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 1185) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1186) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1187) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1188) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1189) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1190) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1191) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1192) | RTM_IEEE80211 = 0x12
constant RTM_IFANNOUNCE (line 1193) | RTM_IFANNOUNCE = 0x11
constant RTM_IFINFO (line 1194) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 1195) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1196) | RTM_LOSING = 0x5
constant RTM_MISS (line 1197) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1198) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1199) | RTM_NEWMADDR = 0xf
constant RTM_REDIRECT (line 1200) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1201) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1202) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1203) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1204) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1205) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1206) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1207) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1208) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1209) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1210) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1211) | RTV_SSTHRESH = 0x20
constant RTV_WEIGHT (line 1212) | RTV_WEIGHT = 0x100
constant RT_ALL_FIBS (line 1213) | RT_ALL_FIBS = -0x1
constant RT_BLACKHOLE (line 1214) | RT_BLACKHOLE = 0x40
constant RT_CACHING_CONTEXT (line 1215) | RT_CACHING_CONTEXT = 0x1
constant RT_DEFAULT_FIB (line 1216) | RT_DEFAULT_FIB = 0x0
constant RT_HAS_GW (line 1217) | RT_HAS_GW = 0x80
constant RT_HAS_HEADER (line 1218) | RT_HAS_HEADER = 0x10
constant RT_HAS_HEADER_BIT (line 1219) | RT_HAS_HEADER_BIT = 0x4
constant RT_L2_ME (line 1220) | RT_L2_ME = 0x4
constant RT_L2_ME_BIT (line 1221) | RT_L2_ME_BIT = 0x2
constant RT_LLE_CACHE (line 1222) | RT_LLE_CACHE = 0x100
constant RT_MAY_LOOP (line 1223) | RT_MAY_LOOP = 0x8
constant RT_MAY_LOOP_BIT (line 1224) | RT_MAY_LOOP_BIT = 0x3
constant RT_NORTREF (line 1225) | RT_NORTREF = 0x2
constant RT_REJECT (line 1226) | RT_REJECT = 0x20
constant RUSAGE_CHILDREN (line 1227) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1228) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1229) | RUSAGE_THREAD = 0x1
constant SCM_BINTIME (line 1230) | SCM_BINTIME = 0x4
constant SCM_CREDS (line 1231) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1232) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1233) | SCM_TIMESTAMP = 0x2
constant SHUT_RD (line 1234) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1235) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1236) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1237) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1238) | SIOCAIFADDR = 0x8040691a
constant SIOCAIFGROUP (line 1239) | SIOCAIFGROUP = 0x80286987
constant SIOCATMARK (line 1240) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1241) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1242) | SIOCDIFADDR = 0x80206919
constant SIOCDIFGROUP (line 1243) | SIOCDIFGROUP = 0x80286989
constant SIOCDIFPHYADDR (line 1244) | SIOCDIFPHYADDR = 0x80206949
constant SIOCGDRVSPEC (line 1245) | SIOCGDRVSPEC = 0xc028697b
constant SIOCGETSGCNT (line 1246) | SIOCGETSGCNT = 0xc0207210
constant SIOCGETVIFCNT (line 1247) | SIOCGETVIFCNT = 0xc028720f
constant SIOCGHIWAT (line 1248) | SIOCGHIWAT = 0x40047301
constant SIOCGI2C (line 1249) | SIOCGI2C = 0xc020693d
constant SIOCGIFADDR (line 1250) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFBRDADDR (line 1251) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1252) | SIOCGIFCAP = 0xc020691f
constant SIOCGIFCONF (line 1253) | SIOCGIFCONF = 0xc0106924
constant SIOCGIFDESCR (line 1254) | SIOCGIFDESCR = 0xc020692a
constant SIOCGIFDSTADDR (line 1255) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFIB (line 1256) | SIOCGIFFIB = 0xc020695c
constant SIOCGIFFLAGS (line 1257) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1258) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGMEMB (line 1259) | SIOCGIFGMEMB = 0xc028698a
constant SIOCGIFGROUP (line 1260) | SIOCGIFGROUP = 0xc0286988
constant SIOCGIFINDEX (line 1261) | SIOCGIFINDEX = 0xc0206920
constant SIOCGIFMAC (line 1262) | SIOCGIFMAC = 0xc0206926
constant SIOCGIFMEDIA (line 1263) | SIOCGIFMEDIA = 0xc0306938
constant SIOCGIFMETRIC (line 1264) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1265) | SIOCGIFMTU = 0xc0206933
constant SIOCGIFNETMASK (line 1266) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1267) | SIOCGIFPDSTADDR = 0xc0206948
constant SIOCGIFPHYS (line 1268) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPSRCADDR (line 1269) | SIOCGIFPSRCADDR = 0xc0206947
constant SIOCGIFSTATUS (line 1270) | SIOCGIFSTATUS = 0xc331693b
constant SIOCGIFXMEDIA (line 1271) | SIOCGIFXMEDIA = 0xc030698b
constant SIOCGLOWAT (line 1272) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1273) | SIOCGPGRP = 0x40047309
constant SIOCGPRIVATE_0 (line 1274) | SIOCGPRIVATE_0 = 0xc0206950
constant SIOCGPRIVATE_1 (line 1275) | SIOCGPRIVATE_1 = 0xc0206951
constant SIOCGTUNFIB (line 1276) | SIOCGTUNFIB = 0xc020695e
constant SIOCIFCREATE (line 1277) | SIOCIFCREATE = 0xc020697a
constant SIOCIFCREATE2 (line 1278) | SIOCIFCREATE2 = 0xc020697c
constant SIOCIFDESTROY (line 1279) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1280) | SIOCIFGCLONERS = 0xc0106978
constant SIOCSDRVSPEC (line 1281) | SIOCSDRVSPEC = 0x8028697b
constant SIOCSHIWAT (line 1282) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1283) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFBRDADDR (line 1284) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1285) | SIOCSIFCAP = 0x8020691e
constant SIOCSIFDESCR (line 1286) | SIOCSIFDESCR = 0x80206929
constant SIOCSIFDSTADDR (line 1287) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFIB (line 1288) | SIOCSIFFIB = 0x8020695d
constant SIOCSIFFLAGS (line 1289) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1290) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1291) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMAC (line 1292) | SIOCSIFMAC = 0x80206927
constant SIOCSIFMEDIA (line 1293) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1294) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1295) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNAME (line 1296) | SIOCSIFNAME = 0x80206928
constant SIOCSIFNETMASK (line 1297) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1298) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSIFPHYS (line 1299) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFRVNET (line 1300) | SIOCSIFRVNET = 0xc020695b
constant SIOCSIFVNET (line 1301) | SIOCSIFVNET = 0xc020695a
constant SIOCSLOWAT (line 1302) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1303) | SIOCSPGRP = 0x80047308
constant SIOCSTUNFIB (line 1304) | SIOCSTUNFIB = 0x8020695f
constant SOCK_CLOEXEC (line 1305) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1306) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1307) | SOCK_MAXADDRLEN = 0xff
constant SOCK_NONBLOCK (line 1308) | SOCK_NONBLOCK = 0x20000000
constant SOCK_RAW (line 1309) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1310) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1311) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1312) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1313) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1314) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1315) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1316) | SO_ACCEPTFILTER = 0x1000
constant SO_BINTIME (line 1317) | SO_BINTIME = 0x2000
constant SO_BROADCAST (line 1318) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1319) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1320) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1321) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1322) | SO_KEEPALIVE = 0x8
constant SO_LABEL (line 1323) | SO_LABEL = 0x1009
constant SO_LINGER (line 1324) | SO_LINGER = 0x80
constant SO_LISTENINCQLEN (line 1325) | SO_LISTENINCQLEN = 0x1013
constant SO_LISTENQLEN (line 1326) | SO_LISTENQLEN = 0x1012
constant SO_LISTENQLIMIT (line 1327) | SO_LISTENQLIMIT = 0x1011
constant SO_NOSIGPIPE (line 1328) | SO_NOSIGPIPE = 0x800
constant SO_NO_DDP (line 1329) | SO_NO_DDP = 0x8000
constant SO_NO_OFFLOAD (line 1330) | SO_NO_OFFLOAD = 0x4000
constant SO_OOBINLINE (line 1331) | SO_OOBINLINE = 0x100
constant SO_PEERLABEL (line 1332) | SO_PEERLABEL = 0x1010
constant SO_PROTOCOL (line 1333) | SO_PROTOCOL = 0x1016
constant SO_PROTOTYPE (line 1334) | SO_PROTOTYPE = 0x1016
constant SO_RCVBUF (line 1335) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1336) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1337) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1338) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1339) | SO_REUSEPORT = 0x200
constant SO_SETFIB (line 1340) | SO_SETFIB = 0x1014
constant SO_SNDBUF (line 1341) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1342) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1343) | SO_SNDTIMEO = 0x1005
constant SO_TIMESTAMP (line 1344) | SO_TIMESTAMP = 0x400
constant SO_TYPE (line 1345) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1346) | SO_USELOOPBACK = 0x40
constant SO_USER_COOKIE (line 1347) | SO_USER_COOKIE = 0x1015
constant SO_VENDOR (line 1348) | SO_VENDOR = 0x80000000
constant S_BLKSIZE (line 1349) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1350) | S_IEXEC = 0x40
constant S_IFBLK (line 1351) | S_IFBLK = 0x6000
constant S_IFCHR (line 1352) | S_IFCHR = 0x2000
constant S_IFDIR (line 1353) | S_IFDIR = 0x4000
constant S_IFIFO (line 1354) | S_IFIFO = 0x1000
constant S_IFLNK (line 1355) | S_IFLNK = 0xa000
constant S_IFMT (line 1356) | S_IFMT = 0xf000
constant S_IFREG (line 1357) | S_IFREG = 0x8000
constant S_IFSOCK (line 1358) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1359) | S_IFWHT = 0xe000
constant S_IREAD (line 1360) | S_IREAD = 0x100
constant S_IRGRP (line 1361) | S_IRGRP = 0x20
constant S_IROTH (line 1362) | S_IROTH = 0x4
constant S_IRUSR (line 1363) | S_IRUSR = 0x100
constant S_IRWXG (line 1364) | S_IRWXG = 0x38
constant S_IRWXO (line 1365) | S_IRWXO = 0x7
constant S_IRWXU (line 1366) | S_IRWXU = 0x1c0
constant S_ISGID (line 1367) | S_ISGID = 0x400
constant S_ISTXT (line 1368) | S_ISTXT = 0x200
constant S_ISUID (line 1369) | S_ISUID = 0x800
constant S_ISVTX (line 1370) | S_ISVTX = 0x200
constant S_IWGRP (line 1371) | S_IWGRP = 0x10
constant S_IWOTH (line 1372) | S_IWOTH = 0x2
constant S_IWRITE (line 1373) | S_IWRITE = 0x80
constant S_IWUSR (line 1374) | S_IWUSR = 0x80
constant S_IXGRP (line 1375) | S_IXGRP = 0x8
constant S_IXOTH (line 1376) | S_IXOTH = 0x1
constant S_IXUSR (line 1377) | S_IXUSR = 0x40
constant TAB0 (line 1378) | TAB0 = 0x0
constant TAB3 (line 1379) | TAB3 = 0x4
constant TABDLY (line 1380) | TABDLY = 0x4
constant TCIFLUSH (line 1381) | TCIFLUSH = 0x1
constant TCIOFF (line 1382) | TCIOFF = 0x3
constant TCIOFLUSH (line 1383) | TCIOFLUSH = 0x3
constant TCION (line 1384) | TCION = 0x4
constant TCOFLUSH (line 1385) | TCOFLUSH = 0x2
constant TCOOFF (line 1386) | TCOOFF = 0x1
constant TCOON (line 1387) | TCOON = 0x2
constant TCP_CA_NAME_MAX (line 1388) | TCP_CA_NAME_MAX = 0x10
constant TCP_CCALGOOPT (line 1389) | TCP_CCALGOOPT = 0x41
constant TCP_CONGESTION (line 1390) | TCP_CONGESTION = 0x40
constant TCP_FASTOPEN (line 1391) | TCP_FASTOPEN = 0x401
constant TCP_FUNCTION_BLK (line 1392) | TCP_FUNCTION_BLK = 0x2000
constant TCP_FUNCTION_NAME_LEN_MAX (line 1393) | TCP_FUNCTION_NAME_LEN_MAX = 0x20
constant TCP_INFO (line 1394) | TCP_INFO = 0x20
constant TCP_KEEPCNT (line 1395) | TCP_KEEPCNT = 0x400
constant TCP_KEEPIDLE (line 1396) | TCP_KEEPIDLE = 0x100
constant TCP_KEEPINIT (line 1397) | TCP_KEEPINIT = 0x80
constant TCP_KEEPINTVL (line 1398) | TCP_KEEPINTVL = 0x200
constant TCP_MAXBURST (line 1399) | TCP_MAXBURST = 0x4
constant TCP_MAXHLEN (line 1400) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1401) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1402) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1403) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1404) | TCP_MAX_SACK = 0x4
constant TCP_MAX_WINSHIFT (line 1405) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1406) | TCP_MD5SIG = 0x10
constant TCP_MINMSS (line 1407) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1408) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1409) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1410) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1411) | TCP_NOPUSH = 0x4
constant TCP_PCAP_IN (line 1412) | TCP_PCAP_IN = 0x1000
constant TCP_PCAP_OUT (line 1413) | TCP_PCAP_OUT = 0x800
constant TCP_VENDOR (line 1414) | TCP_VENDOR = 0x80000000
constant TCSAFLUSH (line 1415) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1416) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1417) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1418) | TIOCCONS = 0x80047462
constant TIOCDRAIN (line 1419) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1420) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1421) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1422) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1423) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1424) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1425) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1426) | TIOCGPGRP = 0x40047477
constant TIOCGPTN (line 1427) | TIOCGPTN = 0x4004740f
constant TIOCGSID (line 1428) | TIOCGSID = 0x40047463
constant TIOCGWINSZ (line 1429) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1430) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1431) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1432) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1433) | TIOCMGET = 0x4004746a
constant TIOCMSDTRWAIT (line 1434) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1435) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1436) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1437) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1438) | TIOCM_CTS = 0x20
constant TIOCM_DCD (line 1439) | TIOCM_DCD = 0x40
constant TIOCM_DSR (line 1440) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1441) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1442) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1443) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1444) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1445) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1446) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1447) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1448) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1449) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1450) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1451) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1452) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1453) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1454) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1455) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1456) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1457) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1458) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1459) | TIOCPKT_STOP = 0x4
constant TIOCPTMASTER (line 1460) | TIOCPTMASTER = 0x2000741c
constant TIOCSBRK (line 1461) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1462) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1463) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1464) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1465) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1466) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1467) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1468) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1469) | TIOCSIG = 0x2004745f
constant TIOCSPGRP (line 1470) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1471) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1472) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1473) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1474) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1475) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1476) | TIOCTIMESTAMP = 0x40107459
constant TIOCUCNTL (line 1477) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1478) | TOSTOP = 0x400000
constant VDISCARD (line 1479) | VDISCARD = 0xf
constant VDSUSP (line 1480) | VDSUSP = 0xb
constant VEOF (line 1481) | VEOF = 0x0
constant VEOL (line 1482) | VEOL = 0x1
constant VEOL2 (line 1483) | VEOL2 = 0x2
constant VERASE (line 1484) | VERASE = 0x3
constant VERASE2 (line 1485) | VERASE2 = 0x7
constant VINTR (line 1486) | VINTR = 0x8
constant VKILL (line 1487) | VKILL = 0x5
constant VLNEXT (line 1488) | VLNEXT = 0xe
constant VMIN (line 1489) | VMIN = 0x10
constant VQUIT (line 1490) | VQUIT = 0x9
constant VREPRINT (line 1491) | VREPRINT = 0x6
constant VSTART (line 1492) | VSTART = 0xc
constant VSTATUS (line 1493) | VSTATUS = 0x12
constant VSTOP (line 1494) | VSTOP = 0xd
constant VSUSP (line 1495) | VSUSP = 0xa
constant VTIME (line 1496) | VTIME = 0x11
constant VWERASE (line 1497) | VWERASE = 0x4
constant WCONTINUED (line 1498) | WCONTINUED = 0x4
constant WCOREFLAG (line 1499) | WCOREFLAG = 0x80
constant WEXITED (line 1500) | WEXITED = 0x10
constant WLINUXCLONE (line 1501) | WLINUXCLONE = 0x80000000
constant WNOHANG (line 1502) | WNOHANG = 0x1
constant WNOWAIT (line 1503) | WNOWAIT = 0x8
constant WSTOPPED (line 1504) | WSTOPPED = 0x2
constant WTRAPPED (line 1505) | WTRAPPED = 0x20
constant WUNTRACED (line 1506) | WUNTRACED = 0x2
constant E2BIG (line 1511) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1512) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1513) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1514) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1515) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1516) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1517) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1518) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1519) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1520) | EBADMSG = syscall.Errno(0x59)
constant EBADRPC (line 1521) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1522) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1523) | ECANCELED = syscall.Errno(0x55)
constant ECAPMODE (line 1524) | ECAPMODE = syscall.Errno(0x5e)
constant ECHILD (line 1525) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1526) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1527) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1528) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1529) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1530) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1531) | EDOM = syscall.Errno(0x21)
constant EDOOFUS (line 1532) | EDOOFUS = syscall.Errno(0x58)
constant EDQUOT (line 1533) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1534) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1535) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1536) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1537) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1538) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1539) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1540) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1541) | EILSEQ = syscall.Errno(0x56)
constant EINPROGRESS (line 1542) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1543) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1544) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1545) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1546) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1547) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1548) | ELAST = syscall.Errno(0x60)
constant ELOOP (line 1549) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1550) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1551) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1552) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1553) | EMULTIHOP = syscall.Errno(0x5a)
constant ENAMETOOLONG (line 1554) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1555) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1556) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1557) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1558) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1559) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1560) | ENOATTR = syscall.Errno(0x57)
constant ENOBUFS (line 1561) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1562) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1563) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1564) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1565) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1566) | ENOLINK = syscall.Errno(0x5b)
constant ENOMEM (line 1567) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1568) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1569) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1570) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1571) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1572) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCAPABLE (line 1573) | ENOTCAPABLE = syscall.Errno(0x5d)
constant ENOTCONN (line 1574) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1575) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1576) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1577) | ENOTRECOVERABLE = syscall.Errno(0x5f)
constant ENOTSOCK (line 1578) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1579) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1580) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1581) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1582) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1583) | EOVERFLOW = syscall.Errno(0x54)
constant EOWNERDEAD (line 1584) | EOWNERDEAD = syscall.Errno(0x60)
constant EPERM (line 1585) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1586) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1587) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1588) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1589) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1590) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1591) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1592) | EPROTO = syscall.Errno(0x5c)
constant EPROTONOSUPPORT (line 1593) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1594) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1595) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1596) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1597) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1598) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1599) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1600) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1601) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1602) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1603) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1604) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1605) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1606) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1607) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1608) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1609) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1614) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1615) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1616) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1617) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1618) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1619) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1620) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1621) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1622) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1623) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1624) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1625) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1626) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1627) | SIGKILL = syscall.Signal(0x9)
constant SIGLIBRT (line 1628) | SIGLIBRT = syscall.Signal(0x21)
constant SIGLWP (line 1629) | SIGLWP = syscall.Signal(0x20)
constant SIGPIPE (line 1630) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1631) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1632) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1633) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1634) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1635) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1636) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1637) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1638) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1639) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1640) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1641) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1642) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1643) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1644) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1645) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1646) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1647) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1648) | 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_HW (line 354) | CTL_HW = 0x6
constant CTL_KERN (line 355) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 356) | CTL_MAXNAME = 0x18
constant CTL_NET (line 357) | CTL_NET = 0x4
constant DLT_A429 (line 358) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 359) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 360) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 361) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 362) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 363) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 364) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 365) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 366) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 367) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 368) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 369) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 370) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_BREDR_BB (line 371) | DLT_BLUETOOTH_BREDR_BB = 0xff
constant DLT_BLUETOOTH_HCI_H4 (line 372) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 373) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_BLUETOOTH_LE_LL (line 374) | DLT_BLUETOOTH_LE_LL = 0xfb
constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 375) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100
constant DLT_BLUETOOTH_LINUX_MONITOR (line 376) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe
constant DLT_CAN20B (line 377) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 378) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 379) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 380) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 381) | DLT_CISCO_IOS = 0x76
constant DLT_CLASS_NETBSD_RAWAF (line 382) | DLT_CLASS_NETBSD_RAWAF = 0x2240000
constant DLT_C_HDLC (line 383) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 384) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DBUS (line 385) | DLT_DBUS = 0xe7
constant DLT_DECT (line 386) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 387) | DLT_DOCSIS = 0x8f
constant DLT_DVB_CI (line 388) | DLT_DVB_CI = 0xeb
constant DLT_ECONET (line 389) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 390) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 391) | DLT_EN3MB = 0x2
constant DLT_ENC (line 392) | DLT_ENC = 0x6d
constant DLT_EPON (line 393) | DLT_EPON = 0x103
constant DLT_ERF (line 394) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 395) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 396) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 397) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 398) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 399) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 400) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 401) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 402) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 403) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 404) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 405) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 406) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 407) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 408) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 409) | DLT_GSMTAP_UM = 0xd9
constant DLT_IBM_SN (line 410) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 411) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 412) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 413) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 414) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 415) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 416) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 417) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NOFCS (line 418) | DLT_IEEE802_15_4_NOFCS = 0xe6
constant DLT_IEEE802_15_4_NONASK_PHY (line 419) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 420) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 421) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_INFINIBAND (line 422) | DLT_INFINIBAND = 0xf7
constant DLT_IPFILTER (line 423) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 424) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 425) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPMI_HPM_2 (line 426) | DLT_IPMI_HPM_2 = 0x104
constant DLT_IPNET (line 427) | DLT_IPNET = 0xe2
constant DLT_IPOIB (line 428) | DLT_IPOIB = 0xf2
constant DLT_IPV4 (line 429) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 430) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 431) | DLT_IP_OVER_FC = 0x7a
constant DLT_ISO_14443 (line 432) | DLT_ISO_14443 = 0x108
constant DLT_JUNIPER_ATM1 (line 433) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 434) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_ATM_CEMIC (line 435) | DLT_JUNIPER_ATM_CEMIC = 0xee
constant DLT_JUNIPER_CHDLC (line 436) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 437) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 438) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FIBRECHANNEL (line 439) | DLT_JUNIPER_FIBRECHANNEL = 0xea
constant DLT_JUNIPER_FRELAY (line 440) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 441) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 442) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 443) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 444) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 445) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 446) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 447) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 448) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 449) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 450) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 451) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_SRX_E2E (line 452) | DLT_JUNIPER_SRX_E2E = 0xe9
constant DLT_JUNIPER_ST (line 453) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 454) | DLT_JUNIPER_VP = 0xb7
constant DLT_JUNIPER_VS (line 455) | DLT_JUNIPER_VS = 0xe8
constant DLT_LAPB_WITH_DIR (line 456) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 457) | DLT_LAPD = 0xcb
constant DLT_LIN (line 458) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 459) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 460) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 461) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_PPP_WITHDIRECTION (line 462) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6
constant DLT_LINUX_SLL (line 463) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 464) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 465) | DLT_LTALK = 0x72
constant DLT_MATCHING_MAX (line 466) | DLT_MATCHING_MAX = 0x109
constant DLT_MATCHING_MIN (line 467) | DLT_MATCHING_MIN = 0x68
constant DLT_MFR (line 468) | DLT_MFR = 0xb6
constant DLT_MOST (line 469) | DLT_MOST = 0xd3
constant DLT_MPEG_2_TS (line 470) | DLT_MPEG_2_TS = 0xf3
constant DLT_MPLS (line 471) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 472) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 473) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 474) | DLT_MTP3 = 0x8d
constant DLT_MUX27010 (line 475) | DLT_MUX27010 = 0xec
constant DLT_NETANALYZER (line 476) | DLT_NETANALYZER = 0xf0
constant DLT_NETANALYZER_TRANSPARENT (line 477) | DLT_NETANALYZER_TRANSPARENT = 0xf1
constant DLT_NETLINK (line 478) | DLT_NETLINK = 0xfd
constant DLT_NFC_LLCP (line 479) | DLT_NFC_LLCP = 0xf5
constant DLT_NFLOG (line 480) | DLT_NFLOG = 0xef
constant DLT_NG40 (line 481) | DLT_NG40 = 0xf4
constant DLT_NULL (line 482) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 483) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 484) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 485) | DLT_PFSYNC = 0x79
constant DLT_PKTAP (line 486) | DLT_PKTAP = 0x102
constant DLT_PPI (line 487) | DLT_PPI = 0xc0
constant DLT_PPP (line 488) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 489) | DLT_PPP_BSDOS = 0xe
constant DLT_PPP_ETHER (line 490) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 491) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 492) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 493) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PPP_WITH_DIRECTION (line 494) | DLT_PPP_WITH_DIRECTION = 0xa6
constant DLT_PRISM_HEADER (line 495) | DLT_PRISM_HEADER = 0x77
constant DLT_PROFIBUS_DL (line 496) | DLT_PROFIBUS_DL = 0x101
constant DLT_PRONET (line 497) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 498) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 499) | DLT_RAW = 0xc
constant DLT_RDS (line 500) | DLT_RDS = 0x109
constant DLT_REDBACK_SMARTEDGE (line 501) | DLT_REDBACK_SMARTEDGE = 0x20
constant DLT_RIO (line 502) | DLT_RIO = 0x7c
constant DLT_RTAC_SERIAL (line 503) | DLT_RTAC_SERIAL = 0xfa
constant DLT_SCCP (line 504) | DLT_SCCP = 0x8e
constant DLT_SCTP (line 505) | DLT_SCTP = 0xf8
constant DLT_SITA (line 506) | DLT_SITA = 0xc4
constant DLT_SLIP (line 507) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 508) | DLT_SLIP_BSDOS = 0xd
constant DLT_STANAG_5066_D_PDU (line 509) | DLT_STANAG_5066_D_PDU = 0xed
constant DLT_SUNATM (line 510) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 511) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 512) | DLT_TZSP = 0x80
constant DLT_USB (line 513) | DLT_USB = 0xba
constant DLT_USBPCAP (line 514) | DLT_USBPCAP = 0xf9
constant DLT_USB_FREEBSD (line 515) | DLT_USB_FREEBSD = 0xba
constant DLT_USB_LINUX (line 516) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 517) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_USER0 (line 518) | DLT_USER0 = 0x93
constant DLT_USER1 (line 519) | DLT_USER1 = 0x94
constant DLT_USER10 (line 520) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 521) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 522) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 523) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 524) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 525) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 526) | DLT_USER2 = 0x95
constant DLT_USER3 (line 527) | DLT_USER3 = 0x96
constant DLT_USER4 (line 528) | DLT_USER4 = 0x97
constant DLT_USER5 (line 529) | DLT_USER5 = 0x98
constant DLT_USER6 (line 530) | DLT_USER6 = 0x99
constant DLT_USER7 (line 531) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 532) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 533) | DLT_USER9 = 0x9c
constant DLT_WATTSTOPPER_DLM (line 534) | DLT_WATTSTOPPER_DLM = 0x107
constant DLT_WIHART (line 535) | DLT_WIHART = 0xdf
constant DLT_WIRESHARK_UPPER_PDU (line 536) | DLT_WIRESHARK_UPPER_PDU = 0xfc
constant DLT_X2E_SERIAL (line 537) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 538) | DLT_X2E_XORAYA = 0xd6
constant DLT_ZWAVE_R1_R2 (line 539) | DLT_ZWAVE_R1_R2 = 0x105
constant DLT_ZWAVE_R3 (line 540) | DLT_ZWAVE_R3 = 0x106
constant DT_BLK (line 541) | DT_BLK = 0x6
constant DT_CHR (line 542) | DT_CHR = 0x2
constant DT_DIR (line 543) | DT_DIR = 0x4
constant DT_FIFO (line 544) | DT_FIFO = 0x1
constant DT_LNK (line 545) | DT_LNK = 0xa
constant DT_REG (line 546) | DT_REG = 0x8
constant DT_SOCK (line 547) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 548) | DT_UNKNOWN = 0x0
constant DT_WHT (line 549) | DT_WHT = 0xe
constant ECHO (line 550) | ECHO = 0x8
constant ECHOCTL (line 551) | ECHOCTL = 0x40
constant ECHOE (line 552) | ECHOE = 0x2
constant ECHOK (line 553) | ECHOK = 0x4
constant ECHOKE (line 554) | ECHOKE = 0x1
constant ECHONL (line 555) | ECHONL = 0x10
constant ECHOPRT (line 556) | ECHOPRT = 0x20
constant EVFILT_AIO (line 557) | EVFILT_AIO = -0x3
constant EVFILT_FS (line 558) | EVFILT_FS = -0x9
constant EVFILT_LIO (line 559) | EVFILT_LIO = -0xa
constant EVFILT_PROC (line 560) | EVFILT_PROC = -0x5
constant EVFILT_PROCDESC (line 561) | EVFILT_PROCDESC = -0x8
constant EVFILT_READ (line 562) | EVFILT_READ = -0x1
constant EVFILT_SENDFILE (line 563) | EVFILT_SENDFILE = -0xc
constant EVFILT_SIGNAL (line 564) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 565) | EVFILT_SYSCOUNT = 0xc
constant EVFILT_TIMER (line 566) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 567) | EVFILT_USER = -0xb
constant EVFILT_VNODE (line 568) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 569) | EVFILT_WRITE = -0x2
constant EV_ADD (line 570) | EV_ADD = 0x1
constant EV_CLEAR (line 571) | EV_CLEAR = 0x20
constant EV_DELETE (line 572) | EV_DELETE = 0x2
constant EV_DISABLE (line 573) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 574) | EV_DISPATCH = 0x80
constant EV_DROP (line 575) | EV_DROP = 0x1000
constant EV_ENABLE (line 576) | EV_ENABLE = 0x4
constant EV_EOF (line 577) | EV_EOF = 0x8000
constant EV_ERROR (line 578) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 579) | EV_FLAG1 = 0x2000
constant EV_FLAG2 (line 580) | EV_FLAG2 = 0x4000
constant EV_FORCEONESHOT (line 581) | EV_FORCEONESHOT = 0x100
constant EV_ONESHOT (line 582) | EV_ONESHOT = 0x10
constant EV_RECEIPT (line 583) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 584) | EV_SYSFLAGS = 0xf000
constant EXTA (line 585) | EXTA = 0x4b00
constant EXTATTR_NAMESPACE_EMPTY (line 586) | EXTATTR_NAMESPACE_EMPTY = 0x0
constant EXTATTR_NAMESPACE_SYSTEM (line 587) | EXTATTR_NAMESPACE_SYSTEM = 0x2
constant EXTATTR_NAMESPACE_USER (line 588) | EXTATTR_NAMESPACE_USER = 0x1
constant EXTB (line 589) | EXTB = 0x9600
constant EXTPROC (line 590) | EXTPROC = 0x800
constant FD_CLOEXEC (line 591) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 592) | FD_SETSIZE = 0x400
constant FLUSHO (line 593) | FLUSHO = 0x800000
constant F_CANCEL (line 594) | F_CANCEL = 0x5
constant F_DUP2FD (line 595) | F_DUP2FD = 0xa
constant F_DUP2FD_CLOEXEC (line 596) | F_DUP2FD_CLOEXEC = 0x12
constant F_DUPFD (line 597) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 598) | F_DUPFD_CLOEXEC = 0x11
constant F_GETFD (line 599) | F_GETFD = 0x1
constant F_GETFL (line 600) | F_GETFL = 0x3
constant F_GETLK (line 601) | F_GETLK = 0xb
constant F_GETOWN (line 602) | F_GETOWN = 0x5
constant F_OGETLK (line 603) | F_OGETLK = 0x7
constant F_OK (line 604) | F_OK = 0x0
constant F_OSETLK (line 605) | F_OSETLK = 0x8
constant F_OSETLKW (line 606) | F_OSETLKW = 0x9
constant F_RDAHEAD (line 607) | F_RDAHEAD = 0x10
constant F_RDLCK (line 608) | F_RDLCK = 0x1
constant F_READAHEAD (line 609) | F_READAHEAD = 0xf
constant F_SETFD (line 610) | F_SETFD = 0x2
constant F_SETFL (line 611) | F_SETFL = 0x4
constant F_SETLK (line 612) | F_SETLK = 0xc
constant F_SETLKW (line 613) | F_SETLKW = 0xd
constant F_SETLK_REMOTE (line 614) | F_SETLK_REMOTE = 0xe
constant F_SETOWN (line 615) | F_SETOWN = 0x6
constant F_UNLCK (line 616) | F_UNLCK = 0x2
constant F_UNLCKSYS (line 617) | F_UNLCKSYS = 0x4
constant F_WRLCK (line 618) | F_WRLCK = 0x3
constant HUPCL (line 619) | HUPCL = 0x4000
constant HW_MACHINE (line 620) | HW_MACHINE = 0x1
constant ICANON (line 621) | ICANON = 0x100
constant ICMP6_FILTER (line 622) | ICMP6_FILTER = 0x12
constant ICRNL (line 623) | ICRNL = 0x100
constant IEXTEN (line 624) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 625) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 626) | IFAN_DEPARTURE = 0x1
constant IFF_ALLMULTI (line 627) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 628) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 629) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 630) | IFF_CANTCHANGE = 0x218f52
constant IFF_CANTCONFIG (line 631) | IFF_CANTCONFIG = 0x10000
constant IFF_DEBUG (line 632) | IFF_DEBUG = 0x4
constant IFF_DRV_OACTIVE (line 633) | IFF_DRV_OACTIVE = 0x400
constant IFF_DRV_RUNNING (line 634) | IFF_DRV_RUNNING = 0x40
constant IFF_DYING (line 635) | IFF_DYING = 0x200000
constant IFF_LINK0 (line 636) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 637) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 638) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 639) | IFF_LOOPBACK = 0x8
constant IFF_MONITOR (line 640) | IFF_MONITOR = 0x40000
constant IFF_MULTICAST (line 641) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 642) | IFF_NOARP = 0x80
constant IFF_OACTIVE (line 643) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 644) | IFF_POINTOPOINT = 0x10
constant IFF_PPROMISC (line 645) | IFF_PPROMISC = 0x20000
constant IFF_PROMISC (line 646) | IFF_PROMISC = 0x100
constant IFF_RENAMING (line 647) | IFF_RENAMING = 0x400000
constant IFF_RUNNING (line 648) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 649) | IFF_SIMPLEX = 0x800
constant IFF_STATICARP (line 650) | IFF_STATICARP = 0x80000
constant IFF_UP (line 651) | IFF_UP = 0x1
constant IFNAMSIZ (line 652) | IFNAMSIZ = 0x10
constant IFT_BRIDGE (line 653) | IFT_BRIDGE = 0xd1
constant IFT_CARP (line 654) | IFT_CARP = 0xf8
constant IFT_IEEE1394 (line 655) | IFT_IEEE1394 = 0x90
constant IFT_INFINIBAND (line 656) | IFT_INFINIBAND = 0xc7
constant IFT_L2VLAN (line 657) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 658) | IFT_L3IPVLAN = 0x88
constant IFT_PPP (line 659) | IFT_PPP = 0x17
constant IFT_PROPVIRTUAL (line 660) | IFT_PROPVIRTUAL = 0x35
constant IGNBRK (line 661) | IGNBRK = 0x1
constant IGNCR (line 662) | IGNCR = 0x80
constant IGNPAR (line 663) | IGNPAR = 0x4
constant IMAXBEL (line 664) | IMAXBEL = 0x2000
constant INLCR (line 665) | INLCR = 0x40
constant INPCK (line 666) | INPCK = 0x10
constant IN_CLASSA_HOST (line 667) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 668) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 669) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 670) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 671) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 672) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 673) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 674) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 675) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 676) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 677) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 678) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 679) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 680) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 681) | IN_LOOPBACKNET = 0x7f
constant IN_RFC3021_MASK (line 682) | IN_RFC3021_MASK = 0xfffffffe
constant IPPROTO_3PC (line 683) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 684) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 685) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 686) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 687) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 688) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 689) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 690) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 691) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 692) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CARP (line 693) | IPPROTO_CARP = 0x70
constant IPPROTO_CFTP (line 694) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 695) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 696) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 697) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 698) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 699) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 700) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 701) | IPPROTO_DIVERT = 0x102
constant IPPROTO_DONE (line 702) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 703) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 704) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 705) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 706) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 707) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 708) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 709) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 710) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 711) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 712) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 713) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 714) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HIP (line 715) | IPPROTO_HIP = 0x8b
constant IPPROTO_HMP (line 716) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 717) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 718) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 719) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 720) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 721) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 722) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 723) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 724) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 725) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 726) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 727) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 728) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 729) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 730) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 731) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 732) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 733) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 734) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 735) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 736) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 737) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 738) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 739) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 740) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 741) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 742) | IPPROTO_MAX = 0x100
constant IPPROTO_MEAS (line 743) | IPPROTO_MEAS = 0x13
constant IPPROTO_MH (line 744) | IPPROTO_MH = 0x87
constant IPPROTO_MHRP (line 745) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 746) | IPPROTO_MICP = 0x5f
constant IPPROTO_MOBILE (line 747) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MPLS (line 748) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 749) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 750) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 751) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 752) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 753) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 754) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 755) | IPPROTO_NVPII = 0xb
constant IPPROTO_OLD_DIVERT (line 756) | IPPROTO_OLD_DIVERT = 0xfe
constant IPPROTO_OSPFIGP (line 757) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PFSYNC (line 758) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PGM (line 759) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 760) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 761) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 762) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 763) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 764) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 765) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 766) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 767) | IPPROTO_RDP = 0x1b
constant IPPROTO_RESERVED_253 (line 768) | IPPROTO_RESERVED_253 = 0xfd
constant IPPROTO_RESERVED_254 (line 769) | IPPROTO_RESERVED_254 = 0xfe
constant IPPROTO_ROUTING (line 770) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 771) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 772) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 773) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 774) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 775) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SCTP (line 776) | IPPROTO_SCTP = 0x84
constant IPPROTO_SDRP (line 777) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEND (line 778) | IPPROTO_SEND = 0x103
constant IPPROTO_SEP (line 779) | IPPROTO_SEP = 0x21
constant IPPROTO_SHIM6 (line 780) | IPPROTO_SHIM6 = 0x8c
constant IPPROTO_SKIP (line 781) | IPPROTO_SKIP = 0x39
constant IPPROTO_SPACER (line 782) | IPPROTO_SPACER = 0x7fff
constant IPPROTO_SRPC (line 783) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 784) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 785) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 786) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 787) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 788) | IPPROTO_TCP = 0x6
constant IPPROTO_TLSP (line 789) | IPPROTO_TLSP = 0x38
constant IPPROTO_TP (line 790) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 791) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 792) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 793) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 794) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 795) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 796) | IPPROTO_UDPLITE = 0x88
constant IPPROTO_VINES (line 797) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 798) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 799) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 800) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 801) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 802) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 803) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 804) | IPPROTO_XTP = 0x24
constant IPV6_AUTOFLOWLABEL (line 805) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_BINDANY (line 806) | IPV6_BINDANY = 0x40
constant IPV6_BINDMULTI (line 807) | IPV6_BINDMULTI = 0x41
constant IPV6_BINDV6ONLY (line 808) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_CHECKSUM (line 809) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 810) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 811) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 812) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 813) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 814) | IPV6_DSTOPTS = 0x32
constant IPV6_FLOWID (line 815) | IPV6_FLOWID = 0x43
constant IPV6_FLOWINFO_MASK (line 816) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 817) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FLOWTYPE (line 818) | IPV6_FLOWTYPE = 0x44
constant IPV6_FRAGTTL (line 819) | IPV6_FRAGTTL = 0x78
constant IPV6_FW_ADD (line 820) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 821) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 822) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 823) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 824) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 825) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 826) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 827) | IPV6_HOPOPTS = 0x31
constant IPV6_IPSEC_POLICY (line 828) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 829) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 830) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 831) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXOPTHDR (line 832) | IPV6_MAXOPTHDR = 0x800
constant IPV6_MAXPACKET (line 833) | IPV6_MAXPACKET = 0xffff
constant IPV6_MAX_GROUP_SRC_FILTER (line 834) | IPV6_MAX_GROUP_SRC_FILTER = 0x200
constant IPV6_MAX_MEMBERSHIPS (line 835) | IPV6_MAX_MEMBERSHIPS = 0xfff
constant IPV6_MAX_SOCK_SRC_FILTER (line 836) | IPV6_MAX_SOCK_SRC_FILTER = 0x80
constant IPV6_MIN_MEMBERSHIPS (line 837) | IPV6_MIN_MEMBERSHIPS = 0x1f
constant IPV6_MMTU (line 838) | IPV6_MMTU = 0x500
constant IPV6_MSFILTER (line 839) | IPV6_MSFILTER = 0x4a
constant IPV6_MULTICAST_HOPS (line 840) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 841) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 842) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 843) | IPV6_NEXTHOP = 0x30
constant IPV6_PATHMTU (line 844) | IPV6_PATHMTU = 0x2c
constant IPV6_PKTINFO (line 845) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 846) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 847) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 848) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 849) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_PREFER_TEMPADDR (line 850) | IPV6_PREFER_TEMPADDR = 0x3f
constant IPV6_RECVDSTOPTS (line 851) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVFLOWID (line 852) | IPV6_RECVFLOWID = 0x46
constant IPV6_RECVHOPLIMIT (line 853) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 854) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 855) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 856) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRSSBUCKETID (line 857) | IPV6_RECVRSSBUCKETID = 0x47
constant IPV6_RECVRTHDR (line 858) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 859) | IPV6_RECVTCLASS = 0x39
constant IPV6_RSSBUCKETID (line 860) | IPV6_RSSBUCKETID = 0x45
constant IPV6_RSS_LISTEN_BUCKET (line 861) | IPV6_RSS_LISTEN_BUCKET = 0x42
constant IPV6_RTHDR (line 862) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 863) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 864) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 865) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 866) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 867) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 868) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 869) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 870) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 871) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 872) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 873) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 874) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 875) | IP_ADD_SOURCE_MEMBERSHIP = 0x46
constant IP_BINDANY (line 876) | IP_BINDANY = 0x18
constant IP_BINDMULTI (line 877) | IP_BINDMULTI = 0x19
constant IP_BLOCK_SOURCE (line 878) | IP_BLOCK_SOURCE = 0x48
constant IP_DEFAULT_MULTICAST_LOOP (line 879) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 880) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 881) | IP_DF = 0x4000
constant IP_DONTFRAG (line 882) | IP_DONTFRAG = 0x43
constant IP_DROP_MEMBERSHIP (line 883) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 884) | IP_DROP_SOURCE_MEMBERSHIP = 0x47
constant IP_DUMMYNET3 (line 885) | IP_DUMMYNET3 = 0x31
constant IP_DUMMYNET_CONFIGURE (line 886) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 887) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 888) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 889) | IP_DUMMYNET_GET = 0x40
constant IP_FLOWID (line 890) | IP_FLOWID = 0x5a
constant IP_FLOWTYPE (line 891) | IP_FLOWTYPE = 0x5b
constant IP_FW3 (line 892) | IP_FW3 = 0x30
constant IP_FW_ADD (line 893) | IP_FW_ADD = 0x32
constant IP_FW_DEL (line 894) | IP_FW_DEL = 0x33
constant IP_FW_FLUSH (line 895) | IP_FW_FLUSH = 0x34
constant IP_FW_GET (line 896) | IP_FW_GET = 0x36
constant IP_FW_NAT_CFG (line 897) | IP_FW_NAT_CFG = 0x38
constant IP_FW_NAT_DEL (line 898) | IP_FW_NAT_DEL = 0x39
constant IP_FW_NAT_GET_CONFIG (line 899) | IP_FW_NAT_GET_CONFIG = 0x3a
constant IP_FW_NAT_GET_LOG (line 900) | IP_FW_NAT_GET_LOG = 0x3b
constant IP_FW_RESETLOG (line 901) | IP_FW_RESETLOG = 0x37
constant IP_FW_TABLE_ADD (line 902) | IP_FW_TABLE_ADD = 0x28
constant IP_FW_TABLE_DEL (line 903) | IP_FW_TABLE_DEL = 0x29
constant IP_FW_TABLE_FLUSH (line 904) | IP_FW_TABLE_FLUSH = 0x2a
constant IP_FW_TABLE_GETSIZE (line 905) | IP_FW_TABLE_GETSIZE = 0x2b
constant IP_FW_TABLE_LIST (line 906) | IP_FW_TABLE_LIST = 0x2c
constant IP_FW_ZERO (line 907) | IP_FW_ZERO = 0x35
constant IP_HDRINCL (line 908) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 909) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 910) | IP_MAXPACKET = 0xffff
constant IP_MAX_GROUP_SRC_FILTER (line 911) | IP_MAX_GROUP_SRC_FILTER = 0x200
constant IP_MAX_MEMBERSHIPS (line 912) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MAX_SOCK_MUTE_FILTER (line 913) | IP_MAX_SOCK_MUTE_FILTER = 0x80
constant IP_MAX_SOCK_SRC_FILTER (line 914) | IP_MAX_SOCK_SRC_FILTER = 0x80
constant IP_MAX_SOURCE_FILTER (line 915) | IP_MAX_SOURCE_FILTER = 0x400
constant IP_MF (line 916) | IP_MF = 0x2000
constant IP_MINTTL (line 917) | IP_MINTTL = 0x42
constant IP_MIN_MEMBERSHIPS (line 918) | IP_MIN_MEMBERSHIPS = 0x1f
constant IP_MSFILTER (line 919) | IP_MSFILTER = 0x4a
constant IP_MSS (line 920) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 921) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 922) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 923) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 924) | IP_MULTICAST_VIF = 0xe
constant IP_OFFMASK (line 925) | IP_OFFMASK = 0x1fff
constant IP_ONESBCAST (line 926) | IP_ONESBCAST = 0x17
constant IP_OPTIONS (line 927) | IP_OPTIONS = 0x1
constant IP_PORTRANGE (line 928) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 929) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 930) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 931) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 932) | IP_RECVDSTADDR = 0x7
constant IP_RECVFLOWID (line 933) | IP_RECVFLOWID = 0x5d
constant IP_RECVIF (line 934) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 935) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 936) | IP_RECVRETOPTS = 0x6
constant IP_RECVRSSBUCKETID (line 937) | IP_RECVRSSBUCKETID = 0x5e
constant IP_RECVTOS (line 938) | IP_RECVTOS = 0x44
constant IP_RECVTTL (line 939) | IP_RECVTTL = 0x41
constant IP_RETOPTS (line 940) | IP_RETOPTS = 0x8
constant IP_RF (line 941) | IP_RF = 0x8000
constant IP_RSSBUCKETID (line 942) | IP_RSSBUCKETID = 0x5c
constant IP_RSS_LISTEN_BUCKET (line 943) | IP_RSS_LISTEN_BUCKET = 0x1a
constant IP_RSVP_OFF (line 944) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 945) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 946) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 947) | IP_RSVP_VIF_ON = 0x11
constant IP_SENDSRCADDR (line 948) | IP_SENDSRCADDR = 0x7
constant IP_TOS (line 949) | IP_TOS = 0x3
constant IP_TTL (line 950) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 951) | IP_UNBLOCK_SOURCE = 0x49
constant ISIG (line 952) | ISIG = 0x80
constant ISTRIP (line 953) | ISTRIP = 0x20
constant IXANY (line 954) | IXANY = 0x800
constant IXOFF (line 955) | IXOFF = 0x400
constant IXON (line 956) | IXON = 0x200
constant KERN_HOSTNAME (line 957) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 958) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 959) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 960) | KERN_VERSION = 0x4
constant LOCK_EX (line 961) | LOCK_EX = 0x2
constant LOCK_NB (line 962) | LOCK_NB = 0x4
constant LOCK_SH (line 963) | LOCK_SH = 0x1
constant LOCK_UN (line 964) | LOCK_UN = 0x8
constant MADV_AUTOSYNC (line 965) | MADV_AUTOSYNC = 0x7
constant MADV_CORE (line 966) | MADV_CORE = 0x9
constant MADV_DONTNEED (line 967) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 968) | MADV_FREE = 0x5
constant MADV_NOCORE (line 969) | MADV_NOCORE = 0x8
constant MADV_NORMAL (line 970) | MADV_NORMAL = 0x0
constant MADV_NOSYNC (line 971) | MADV_NOSYNC = 0x6
constant MADV_PROTECT (line 972) | MADV_PROTECT = 0xa
constant MADV_RANDOM (line 973) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 974) | MADV_SEQUENTIAL = 0x2
constant MADV_WILLNEED (line 975) | MADV_WILLNEED = 0x3
constant MAP_ALIGNED_SUPER (line 976) | MAP_ALIGNED_SUPER = 0x1000000
constant MAP_ALIGNMENT_MASK (line 977) | MAP_ALIGNMENT_MASK = -0x1000000
constant MAP_ALIGNMENT_SHIFT (line 978) | MAP_ALIGNMENT_SHIFT = 0x18
constant MAP_ANON (line 979) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 980) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 981) | MAP_COPY = 0x2
constant MAP_EXCL (line 982) | MAP_EXCL = 0x4000
constant MAP_FILE (line 983) | MAP_FILE = 0x0
constant MAP_FIXED (line 984) | MAP_FIXED = 0x10
constant MAP_GUARD (line 985) | MAP_GUARD = 0x2000
constant MAP_HASSEMAPHORE (line 986) | MAP_HASSEMAPHORE = 0x200
constant MAP_NOCORE (line 987) | MAP_NOCORE = 0x20000
constant MAP_NOSYNC (line 988) | MAP_NOSYNC = 0x800
constant MAP_PREFAULT_READ (line 989) | MAP_PREFAULT_READ = 0x40000
constant MAP_PRIVATE (line 990) | MAP_PRIVATE = 0x2
constant MAP_RESERVED0020 (line 991) | MAP_RESERVED0020 = 0x20
constant MAP_RESERVED0040 (line 992) | MAP_RESERVED0040 = 0x40
constant MAP_RESERVED0080 (line 993) | MAP_RESERVED0080 = 0x80
constant MAP_RESERVED0100 (line 994) | MAP_RESERVED0100 = 0x100
constant MAP_SHARED (line 995) | MAP_SHARED = 0x1
constant MAP_STACK (line 996) | MAP_STACK = 0x400
constant MCL_CURRENT (line 997) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 998) | MCL_FUTURE = 0x2
constant MNT_ACLS (line 999) | MNT_ACLS = 0x8000000
constant MNT_ASYNC (line 1000) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 1001) | MNT_AUTOMOUNTED = 0x200000000
constant MNT_BYFSID (line 1002) | MNT_BYFSID = 0x8000000
constant MNT_CMDFLAGS (line 1003) | MNT_CMDFLAGS = 0xd0f0000
constant MNT_DEFEXPORTED (line 1004) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 1005) | MNT_DELEXPORT = 0x20000
constant MNT_EXKERB (line 1006) | MNT_EXKERB = 0x800
constant MNT_EXPORTANON (line 1007) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 1008) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 1009) | MNT_EXPUBLIC = 0x20000000
constant MNT_EXRDONLY (line 1010) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 1011) | MNT_FORCE = 0x80000
constant MNT_GJOURNAL (line 1012) | MNT_GJOURNAL = 0x2000000
constant MNT_IGNORE (line 1013) | MNT_IGNORE = 0x800000
constant MNT_LAZY (line 1014) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 1015) | MNT_LOCAL = 0x1000
constant MNT_MULTILABEL (line 1016) | MNT_MULTILABEL = 0x4000000
constant MNT_NFS4ACLS (line 1017) | MNT_NFS4ACLS = 0x10
constant MNT_NOATIME (line 1018) | MNT_NOATIME = 0x10000000
constant MNT_NOCLUSTERR (line 1019) | MNT_NOCLUSTERR = 0x40000000
constant MNT_NOCLUSTERW (line 1020) | MNT_NOCLUSTERW = 0x80000000
constant MNT_NOEXEC (line 1021) | MNT_NOEXEC = 0x4
constant MNT_NONBUSY (line 1022) | MNT_NONBUSY = 0x4000000
constant MNT_NOSUID (line 1023) | MNT_NOSUID = 0x8
constant MNT_NOSYMFOLLOW (line 1024) | MNT_NOSYMFOLLOW = 0x400000
constant MNT_NOWAIT (line 1025) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 1026) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 1027) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 1028) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 1029) | MNT_ROOTFS = 0x4000
constant MNT_SNAPSHOT (line 1030) | MNT_SNAPSHOT = 0x1000000
constant MNT_SOFTDEP (line 1031) | MNT_SOFTDEP = 0x200000
constant MNT_SUIDDIR (line 1032) | MNT_SUIDDIR = 0x100000
constant MNT_SUJ (line 1033) | MNT_SUJ = 0x100000000
constant MNT_SUSPEND (line 1034) | MNT_SUSPEND = 0x4
constant MNT_SYNCHRONOUS (line 1035) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 1036) | MNT_UNION = 0x20
constant MNT_UPDATE (line 1037) | MNT_UPDATE = 0x10000
constant MNT_UPDATEMASK (line 1038) | MNT_UPDATEMASK = 0x2d8d0807e
constant MNT_USER (line 1039) | MNT_USER = 0x8000
constant MNT_VISFLAGMASK (line 1040) | MNT_VISFLAGMASK = 0x3fef0ffff
constant MNT_WAIT (line 1041) | MNT_WAIT = 0x1
constant MSG_CMSG_CLOEXEC (line 1042) | MSG_CMSG_CLOEXEC = 0x40000
constant MSG_COMPAT (line 1043) | MSG_COMPAT = 0x8000
constant MSG_CTRUNC (line 1044) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 1045) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1046) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 1047) | MSG_EOF = 0x100
constant MSG_EOR (line 1048) | MSG_EOR = 0x8
constant MSG_NBIO (line 1049) | MSG_NBIO = 0x4000
constant MSG_NOSIGNAL (line 1050) | MSG_NOSIGNAL = 0x20000
constant MSG_NOTIFICATION (line 1051) | MSG_NOTIFICATION = 0x2000
constant MSG_OOB (line 1052) | MSG_OOB = 0x1
constant MSG_PEEK (line 1053) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 1054) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 1055) | MSG_WAITALL = 0x40
constant MSG_WAITFORONE (line 1056) | MSG_WAITFORONE = 0x80000
constant MS_ASYNC (line 1057) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 1058) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 1059) | MS_SYNC = 0x0
constant NAME_MAX (line 1060) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 1061) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 1062) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 1063) | NET_RT_IFLIST = 0x3
constant NET_RT_IFLISTL (line 1064) | NET_RT_IFLISTL = 0x5
constant NET_RT_IFMALIST (line 1065) | NET_RT_IFMALIST = 0x4
constant NOFLSH (line 1066) | NOFLSH = 0x80000000
constant NOKERNINFO (line 1067) | NOKERNINFO = 0x2000000
constant NOTE_ATTRIB (line 1068) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 1069) | NOTE_CHILD = 0x4
constant NOTE_CLOSE (line 1070) | NOTE_CLOSE = 0x100
constant NOTE_CLOSE_WRITE (line 1071) | NOTE_CLOSE_WRITE = 0x200
constant NOTE_DELETE (line 1072) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 1073) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1074) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1075) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 1076) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 1077) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 1078) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 1079) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 1080) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 1081) | NOTE_FFOR = 0x80000000
constant NOTE_FILE_POLL (line 1082) | NOTE_FILE_POLL = 0x2
constant NOTE_FORK (line 1083) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1084) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1085) | NOTE_LOWAT = 0x1
constant NOTE_MSECONDS (line 1086) | NOTE_MSECONDS = 0x2
constant NOTE_NSECONDS (line 1087) | NOTE_NSECONDS = 0x8
constant NOTE_OPEN (line 1088) | NOTE_OPEN = 0x80
constant NOTE_PCTRLMASK (line 1089) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1090) | NOTE_PDATAMASK = 0xfffff
constant NOTE_READ (line 1091) | NOTE_READ = 0x400
constant NOTE_RENAME (line 1092) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1093) | NOTE_REVOKE = 0x40
constant NOTE_SECONDS (line 1094) | NOTE_SECONDS = 0x1
constant NOTE_TRACK (line 1095) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1096) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 1097) | NOTE_TRIGGER = 0x1000000
constant NOTE_USECONDS (line 1098) | NOTE_USECONDS = 0x4
constant NOTE_WRITE (line 1099) | NOTE_WRITE = 0x2
constant OCRNL (line 1100) | OCRNL = 0x10
constant ONLCR (line 1101) | ONLCR = 0x2
constant ONLRET (line 1102) | ONLRET = 0x40
constant ONOCR (line 1103) | ONOCR = 0x20
constant ONOEOT (line 1104) | ONOEOT = 0x8
constant OPOST (line 1105) | OPOST = 0x1
constant OXTABS (line 1106) | OXTABS = 0x4
constant O_ACCMODE (line 1107) | O_ACCMODE = 0x3
constant O_APPEND (line 1108) | O_APPEND = 0x8
constant O_ASYNC (line 1109) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1110) | O_CLOEXEC = 0x100000
constant O_CREAT (line 1111) | O_CREAT = 0x200
constant O_DIRECT (line 1112) | O_DIRECT = 0x10000
constant O_DIRECTORY (line 1113) | O_DIRECTORY = 0x20000
constant O_EXCL (line 1114) | O_EXCL = 0x800
constant O_EXEC (line 1115) | O_EXEC = 0x40000
constant O_EXLOCK (line 1116) | O_EXLOCK = 0x20
constant O_FSYNC (line 1117) | O_FSYNC = 0x80
constant O_NDELAY (line 1118) | O_NDELAY = 0x4
constant O_NOCTTY (line 1119) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1120) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1121) | O_NONBLOCK = 0x4
constant O_RDONLY (line 1122) | O_RDONLY = 0x0
constant O_RDWR (line 1123) | O_RDWR = 0x2
constant O_SHLOCK (line 1124) | O_SHLOCK = 0x10
constant O_SYNC (line 1125) | O_SYNC = 0x80
constant O_TRUNC (line 1126) | O_TRUNC = 0x400
constant O_TTY_INIT (line 1127) | O_TTY_INIT = 0x80000
constant O_VERIFY (line 1128) | O_VERIFY = 0x200000
constant O_WRONLY (line 1129) | O_WRONLY = 0x1
constant PARENB (line 1130) | PARENB = 0x1000
constant PARMRK (line 1131) | PARMRK = 0x8
constant PARODD (line 1132) | PARODD = 0x2000
constant PENDIN (line 1133) | PENDIN = 0x20000000
constant PRIO_PGRP (line 1134) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1135) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1136) | PRIO_USER = 0x2
constant PROT_EXEC (line 1137) | PROT_EXEC = 0x4
constant PROT_NONE (line 1138) | PROT_NONE = 0x0
constant PROT_READ (line 1139) | PROT_READ = 0x1
constant PROT_WRITE (line 1140) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 1141) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1142) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1143) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1144) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1145) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1146) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1147) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1148) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1149) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1150) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1151) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1152) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1153) | RTAX_BRD = 0x7
constant RTAX_DST (line 1154) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1155) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1156) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1157) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1158) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1159) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 1160) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1161) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1162) | RTA_BRD = 0x80
constant RTA_DST (line 1163) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1164) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1165) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1166) | RTA_IFA = 0x20
constant RTA_IFP (line 1167) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1168) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1169) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1170) | RTF_BROADCAST = 0x400000
constant RTF_DONE (line 1171) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1172) | RTF_DYNAMIC = 0x10
constant RTF_FIXEDMTU (line 1173) | RTF_FIXEDMTU = 0x80000
constant RTF_FMASK (line 1174) | RTF_FMASK = 0x1004d808
constant RTF_GATEWAY (line 1175) | RTF_GATEWAY = 0x2
constant RTF_GWFLAG_COMPAT (line 1176) | RTF_GWFLAG_COMPAT = 0x80000000
constant RTF_HOST (line 1177) | RTF_HOST = 0x4
constant RTF_LLDATA (line 1178) | RTF_LLDATA = 0x400
constant RTF_LLINFO (line 1179) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1180) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1181) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 1182) | RTF_MULTICAST = 0x800000
constant RTF_PINNED (line 1183) | RTF_PINNED = 0x100000
constant RTF_PROTO1 (line 1184) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1185) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1186) | RTF_PROTO3 = 0x40000
constant RTF_REJECT (line 1187) | RTF_REJECT = 0x8
constant RTF_RNH_LOCKED (line 1188) | RTF_RNH_LOCKED = 0x40000000
constant RTF_STATIC (line 1189) | RTF_STATIC = 0x800
constant RTF_STICKY (line 1190) | RTF_STICKY = 0x10000000
constant RTF_UP (line 1191) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 1192) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1193) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1194) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1195) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1196) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1197) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1198) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1199) | RTM_IEEE80211 = 0x12
constant RTM_IFANNOUNCE (line 1200) | RTM_IFANNOUNCE = 0x11
constant RTM_IFINFO (line 1201) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 1202) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1203) | RTM_LOSING = 0x5
constant RTM_MISS (line 1204) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1205) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1206) | RTM_NEWMADDR = 0xf
constant RTM_REDIRECT (line 1207) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1208) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1209) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1210) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1211) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1212) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1213) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1214) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1215) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1216) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1217) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1218) | RTV_SSTHRESH = 0x20
constant RTV_WEIGHT (line 1219) | RTV_WEIGHT = 0x100
constant RT_ALL_FIBS (line 1220) | RT_ALL_FIBS = -0x1
constant RT_BLACKHOLE (line 1221) | RT_BLACKHOLE = 0x40
constant RT_CACHING_CONTEXT (line 1222) | RT_CACHING_CONTEXT = 0x1
constant RT_DEFAULT_FIB (line 1223) | RT_DEFAULT_FIB = 0x0
constant RT_HAS_GW (line 1224) | RT_HAS_GW = 0x80
constant RT_HAS_HEADER (line 1225) | RT_HAS_HEADER = 0x10
constant RT_HAS_HEADER_BIT (line 1226) | RT_HAS_HEADER_BIT = 0x4
constant RT_L2_ME (line 1227) | RT_L2_ME = 0x4
constant RT_L2_ME_BIT (line 1228) | RT_L2_ME_BIT = 0x2
constant RT_LLE_CACHE (line 1229) | RT_LLE_CACHE = 0x100
constant RT_MAY_LOOP (line 1230) | RT_MAY_LOOP = 0x8
constant RT_MAY_LOOP_BIT (line 1231) | RT_MAY_LOOP_BIT = 0x3
constant RT_NORTREF (line 1232) | RT_NORTREF = 0x2
constant RT_REJECT (line 1233) | RT_REJECT = 0x20
constant RUSAGE_CHILDREN (line 1234) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1235) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1236) | RUSAGE_THREAD = 0x1
constant SCM_BINTIME (line 1237) | SCM_BINTIME = 0x4
constant SCM_CREDS (line 1238) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1239) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1240) | SCM_TIMESTAMP = 0x2
constant SHUT_RD (line 1241) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1242) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1243) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1244) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1245) | SIOCAIFADDR = 0x8040691a
constant SIOCAIFGROUP (line 1246) | SIOCAIFGROUP = 0x80246987
constant SIOCATMARK (line 1247) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1248) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1249) | SIOCDIFADDR = 0x80206919
constant SIOCDIFGROUP (line 1250) | SIOCDIFGROUP = 0x80246989
constant SIOCDIFPHYADDR (line 1251) | SIOCDIFPHYADDR = 0x80206949
constant SIOCGDRVSPEC (line 1252) | SIOCGDRVSPEC = 0xc01c697b
constant SIOCGETSGCNT (line 1253) | SIOCGETSGCNT = 0xc0147210
constant SIOCGETVIFCNT (line 1254) | SIOCGETVIFCNT = 0xc014720f
constant SIOCGHIWAT (line 1255) | SIOCGHIWAT = 0x40047301
constant SIOCGHWADDR (line 1256) | SIOCGHWADDR = 0xc020693e
constant SIOCGI2C (line 1257) | SIOCGI2C = 0xc020693d
constant SIOCGIFADDR (line 1258) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFBRDADDR (line 1259) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1260) | SIOCGIFCAP = 0xc020691f
constant SIOCGIFCONF (line 1261) | SIOCGIFCONF = 0xc0086924
constant SIOCGIFDESCR (line 1262) | SIOCGIFDESCR = 0xc020692a
constant SIOCGIFDSTADDR (line 1263) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFIB (line 1264) | SIOCGIFFIB = 0xc020695c
constant SIOCGIFFLAGS (line 1265) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1266) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGMEMB (line 1267) | SIOCGIFGMEMB = 0xc024698a
constant SIOCGIFGROUP (line 1268) | SIOCGIFGROUP = 0xc0246988
constant SIOCGIFINDEX (line 1269) | SIOCGIFINDEX = 0xc0206920
constant SIOCGIFMAC (line 1270) | SIOCGIFMAC = 0xc0206926
constant SIOCGIFMEDIA (line 1271) | SIOCGIFMEDIA = 0xc0286938
constant SIOCGIFMETRIC (line 1272) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1273) | SIOCGIFMTU = 0xc0206933
constant SIOCGIFNETMASK (line 1274) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1275) | SIOCGIFPDSTADDR = 0xc0206948
constant SIOCGIFPHYS (line 1276) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPSRCADDR (line 1277) | SIOCGIFPSRCADDR = 0xc0206947
constant SIOCGIFSTATUS (line 1278) | SIOCGIFSTATUS = 0xc331693b
constant SIOCGIFXMEDIA (line 1279) | SIOCGIFXMEDIA = 0xc028698b
constant SIOCGLOWAT (line 1280) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1281) | SIOCGPGRP = 0x40047309
constant SIOCGPRIVATE_0 (line 1282) | SIOCGPRIVATE_0 = 0xc0206950
constant SIOCGPRIVATE_1 (line 1283) | SIOCGPRIVATE_1 = 0xc0206951
constant SIOCGTUNFIB (line 1284) | SIOCGTUNFIB = 0xc020695e
constant SIOCIFCREATE (line 1285) | SIOCIFCREATE = 0xc020697a
constant SIOCIFCREATE2 (line 1286) | SIOCIFCREATE2 = 0xc020697c
constant SIOCIFDESTROY (line 1287) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1288) | SIOCIFGCLONERS = 0xc00c6978
constant SIOCSDRVSPEC (line 1289) | SIOCSDRVSPEC = 0x801c697b
constant SIOCSHIWAT (line 1290) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1291) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFBRDADDR (line 1292) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1293) | SIOCSIFCAP = 0x8020691e
constant SIOCSIFDESCR (line 1294) | SIOCSIFDESCR = 0x80206929
constant SIOCSIFDSTADDR (line 1295) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFIB (line 1296) | SIOCSIFFIB = 0x8020695d
constant SIOCSIFFLAGS (line 1297) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1298) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1299) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMAC (line 1300) | SIOCSIFMAC = 0x80206927
constant SIOCSIFMEDIA (line 1301) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1302) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1303) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNAME (line 1304) | SIOCSIFNAME = 0x80206928
constant SIOCSIFNETMASK (line 1305) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1306) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSIFPHYS (line 1307) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFRVNET (line 1308) | SIOCSIFRVNET = 0xc020695b
constant SIOCSIFVNET (line 1309) | SIOCSIFVNET = 0xc020695a
constant SIOCSLOWAT (line 1310) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1311) | SIOCSPGRP = 0x80047308
constant SIOCSTUNFIB (line 1312) | SIOCSTUNFIB = 0x8020695f
constant SOCK_CLOEXEC (line 1313) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1314) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1315) | SOCK_MAXADDRLEN = 0xff
constant SOCK_NONBLOCK (line 1316) | SOCK_NONBLOCK = 0x20000000
constant SOCK_RAW (line 1317) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1318) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1319) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1320) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1321) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1322) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1323) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1324) | SO_ACCEPTFILTER = 0x1000
constant SO_BINTIME (line 1325) | SO_BINTIME = 0x2000
constant SO_BROADCAST (line 1326) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1327) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1328) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1329) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1330) | SO_KEEPALIVE = 0x8
constant SO_LABEL (line 1331) | SO_LABEL = 0x1009
constant SO_LINGER (line 1332) | SO_LINGER = 0x80
constant SO_LISTENINCQLEN (line 1333) | SO_LISTENINCQLEN = 0x1013
constant SO_LISTENQLEN (line 1334) | SO_LISTENQLEN = 0x1012
constant SO_LISTENQLIMIT (line 1335) | SO_LISTENQLIMIT = 0x1011
constant SO_NOSIGPIPE (line 1336) | SO_NOSIGPIPE = 0x800
constant SO_NO_DDP (line 1337) | SO_NO_DDP = 0x8000
constant SO_NO_OFFLOAD (line 1338) | SO_NO_OFFLOAD = 0x4000
constant SO_OOBINLINE (line 1339) | SO_OOBINLINE = 0x100
constant SO_PEERLABEL (line 1340) | SO_PEERLABEL = 0x1010
constant SO_PROTOCOL (line 1341) | SO_PROTOCOL = 0x1016
constant SO_PROTOTYPE (line 1342) | SO_PROTOTYPE = 0x1016
constant SO_RCVBUF (line 1343) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1344) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1345) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1346) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1347) | SO_REUSEPORT = 0x200
constant SO_SETFIB (line 1348) | SO_SETFIB = 0x1014
constant SO_SNDBUF (line 1349) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1350) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1351) | SO_SNDTIMEO = 0x1005
constant SO_TIMESTAMP (line 1352) | SO_TIMESTAMP = 0x400
constant SO_TYPE (line 1353) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1354) | SO_USELOOPBACK = 0x40
constant SO_USER_COOKIE (line 1355) | SO_USER_COOKIE = 0x1015
constant SO_VENDOR (line 1356) | SO_VENDOR = 0x80000000
constant S_BLKSIZE (line 1357) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1358) | S_IEXEC = 0x40
constant S_IFBLK (line 1359) | S_IFBLK = 0x6000
constant S_IFCHR (line 1360) | S_IFCHR = 0x2000
constant S_IFDIR (line 1361) | S_IFDIR = 0x4000
constant S_IFIFO (line 1362) | S_IFIFO = 0x1000
constant S_IFLNK (line 1363) | S_IFLNK = 0xa000
constant S_IFMT (line 1364) | S_IFMT = 0xf000
constant S_IFREG (line 1365) | S_IFREG = 0x8000
constant S_IFSOCK (line 1366) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1367) | S_IFWHT = 0xe000
constant S_IREAD (line 1368) | S_IREAD = 0x100
constant S_IRGRP (line 1369) | S_IRGRP = 0x20
constant S_IROTH (line 1370) | S_IROTH = 0x4
constant S_IRUSR (line 1371) | S_IRUSR = 0x100
constant S_IRWXG (line 1372) | S_IRWXG = 0x38
constant S_IRWXO (line 1373) | S_IRWXO = 0x7
constant S_IRWXU (line 1374) | S_IRWXU = 0x1c0
constant S_ISGID (line 1375) | S_ISGID = 0x400
constant S_ISTXT (line 1376) | S_ISTXT = 0x200
constant S_ISUID (line 1377) | S_ISUID = 0x800
constant S_ISVTX (line 1378) | S_ISVTX = 0x200
constant S_IWGRP (line 1379) | S_IWGRP = 0x10
constant S_IWOTH (line 1380) | S_IWOTH = 0x2
constant S_IWRITE (line 1381) | S_IWRITE = 0x80
constant S_IWUSR (line 1382) | S_IWUSR = 0x80
constant S_IXGRP (line 1383) | S_IXGRP = 0x8
constant S_IXOTH (line 1384) | S_IXOTH = 0x1
constant S_IXUSR (line 1385) | S_IXUSR = 0x40
constant TAB0 (line 1386) | TAB0 = 0x0
constant TAB3 (line 1387) | TAB3 = 0x4
constant TABDLY (line 1388) | TABDLY = 0x4
constant TCIFLUSH (line 1389) | TCIFLUSH = 0x1
constant TCIOFF (line 1390) | TCIOFF = 0x3
constant TCIOFLUSH (line 1391) | TCIOFLUSH = 0x3
constant TCION (line 1392) | TCION = 0x4
constant TCOFLUSH (line 1393) | TCOFLUSH = 0x2
constant TCOOFF (line 1394) | TCOOFF = 0x1
constant TCOON (line 1395) | TCOON = 0x2
constant TCP_CA_NAME_MAX (line 1396) | TCP_CA_NAME_MAX = 0x10
constant TCP_CCALGOOPT (line 1397) | TCP_CCALGOOPT = 0x41
constant TCP_CONGESTION (line 1398) | TCP_CONGESTION = 0x40
constant TCP_FASTOPEN (line 1399) | TCP_FASTOPEN = 0x401
constant TCP_FUNCTION_BLK (line 1400) | TCP_FUNCTION_BLK = 0x2000
constant TCP_FUNCTION_NAME_LEN_MAX (line 1401) | TCP_FUNCTION_NAME_LEN_MAX = 0x20
constant TCP_INFO (line 1402) | TCP_INFO = 0x20
constant TCP_KEEPCNT (line 1403) | TCP_KEEPCNT = 0x400
constant TCP_KEEPIDLE (line 1404) | TCP_KEEPIDLE = 0x100
constant TCP_KEEPINIT (line 1405) | TCP_KEEPINIT = 0x80
constant TCP_KEEPINTVL (line 1406) | TCP_KEEPINTVL = 0x200
constant TCP_MAXBURST (line 1407) | TCP_MAXBURST = 0x4
constant TCP_MAXHLEN (line 1408) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1409) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1410) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1411) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1412) | TCP_MAX_SACK = 0x4
constant TCP_MAX_WINSHIFT (line 1413) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1414) | TCP_MD5SIG = 0x10
constant TCP_MINMSS (line 1415) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1416) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1417) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1418) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1419) | TCP_NOPUSH = 0x4
constant TCP_PCAP_IN (line 1420) | TCP_PCAP_IN = 0x1000
constant TCP_PCAP_OUT (line 1421) | TCP_PCAP_OUT = 0x800
constant TCP_VENDOR (line 1422) | TCP_VENDOR = 0x80000000
constant TCSAFLUSH (line 1423) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1424) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1425) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1426) | TIOCCONS = 0x80047462
constant TIOCDRAIN (line 1427) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1428) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1429) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1430) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1431) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1432) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1433) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1434) | TIOCGPGRP = 0x40047477
constant TIOCGPTN (line 1435) | TIOCGPTN = 0x4004740f
constant TIOCGSID (line 1436) | TIOCGSID = 0x40047463
constant TIOCGWINSZ (line 1437) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1438) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1439) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1440) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1441) | TIOCMGET = 0x4004746a
constant TIOCMSDTRWAIT (line 1442) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1443) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1444) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1445) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1446) | TIOCM_CTS = 0x20
constant TIOCM_DCD (line 1447) | TIOCM_DCD = 0x40
constant TIOCM_DSR (line 1448) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1449) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1450) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1451) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1452) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1453) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1454) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1455) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1456) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1457) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1458) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1459) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1460) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1461) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1462) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1463) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1464) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1465) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1466) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1467) | TIOCPKT_STOP = 0x4
constant TIOCPTMASTER (line 1468) | TIOCPTMASTER = 0x2000741c
constant TIOCSBRK (line 1469) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1470) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1471) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1472) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1473) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1474) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1475) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1476) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1477) | TIOCSIG = 0x2004745f
constant TIOCSPGRP (line 1478) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1479) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1480) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1481) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1482) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1483) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1484) | TIOCTIMESTAMP = 0x40107459
constant TIOCUCNTL (line 1485) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1486) | TOSTOP = 0x400000
constant VDISCARD (line 1487) | VDISCARD = 0xf
constant VDSUSP (line 1488) | VDSUSP = 0xb
constant VEOF (line 1489) | VEOF = 0x0
constant VEOL (line 1490) | VEOL = 0x1
constant VEOL2 (line 1491) | VEOL2 = 0x2
constant VERASE (line 1492) | VERASE = 0x3
constant VERASE2 (line 1493) | VERASE2 = 0x7
constant VINTR (line 1494) | VINTR = 0x8
constant VKILL (line 1495) | VKILL = 0x5
constant VLNEXT (line 1496) | VLNEXT = 0xe
constant VMIN (line 1497) | VMIN = 0x10
constant VQUIT (line 1498) | VQUIT = 0x9
constant VREPRINT (line 1499) | VREPRINT = 0x6
constant VSTART (line 1500) | VSTART = 0xc
constant VSTATUS (line 1501) | VSTATUS = 0x12
constant VSTOP (line 1502) | VSTOP = 0xd
constant VSUSP (line 1503) | VSUSP = 0xa
constant VTIME (line 1504) | VTIME = 0x11
constant VWERASE (line 1505) | VWERASE = 0x4
constant WCONTINUED (line 1506) | WCONTINUED = 0x4
constant WCOREFLAG (line 1507) | WCOREFLAG = 0x80
constant WEXITED (line 1508) | WEXITED = 0x10
constant WLINUXCLONE (line 1509) | WLINUXCLONE = 0x80000000
constant WNOHANG (line 1510) | WNOHANG = 0x1
constant WNOWAIT (line 1511) | WNOWAIT = 0x8
constant WSTOPPED (line 1512) | WSTOPPED = 0x2
constant WTRAPPED (line 1513) | WTRAPPED = 0x20
constant WUNTRACED (line 1514) | WUNTRACED = 0x2
constant E2BIG (line 1519) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1520) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1521) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1522) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1523) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1524) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1525) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1526) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1527) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1528) | EBADMSG = syscall.Errno(0x59)
constant EBADRPC (line 1529) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1530) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1531) | ECANCELED = syscall.Errno(0x55)
constant ECAPMODE (line 1532) | ECAPMODE = syscall.Errno(0x5e)
constant ECHILD (line 1533) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1534) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1535) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1536) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1537) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1538) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1539) | EDOM = syscall.Errno(0x21)
constant EDOOFUS (line 1540) | EDOOFUS = syscall.Errno(0x58)
constant EDQUOT (line 1541) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1542) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1543) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1544) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1545) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1546) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1547) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1548) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1549) | EILSEQ = syscall.Errno(0x56)
constant EINPROGRESS (line 1550) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1551) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1552) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1553) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1554) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1555) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1556) | ELAST = syscall.Errno(0x60)
constant ELOOP (line 1557) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1558) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1559) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1560) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1561) | EMULTIHOP = syscall.Errno(0x5a)
constant ENAMETOOLONG (line 1562) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1563) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1564) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1565) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1566) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1567) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1568) | ENOATTR = syscall.Errno(0x57)
constant ENOBUFS (line 1569) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1570) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1571) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1572) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1573) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1574) | ENOLINK = syscall.Errno(0x5b)
constant ENOMEM (line 1575) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1576) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1577) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1578) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1579) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1580) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCAPABLE (line 1581) | ENOTCAPABLE = syscall.Errno(0x5d)
constant ENOTCONN (line 1582) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1583) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1584) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1585) | ENOTRECOVERABLE = syscall.Errno(0x5f)
constant ENOTSOCK (line 1586) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1587) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1588) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1589) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1590) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1591) | EOVERFLOW = syscall.Errno(0x54)
constant EOWNERDEAD (line 1592) | EOWNERDEAD = syscall.Errno(0x60)
constant EPERM (line 1593) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1594) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1595) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1596) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1597) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1598) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1599) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1600) | EPROTO = syscall.Errno(0x5c)
constant EPROTONOSUPPORT (line 1601) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1602) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1603) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1604) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1605) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1606) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1607) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1608) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1609) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1610) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1611) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1612) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1613) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1614) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1615) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1616) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1617) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1622) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1623) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1624) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1625) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1626) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1627) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1628) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1629) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1630) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1631) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1632) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1633) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1634) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1635) | SIGKILL = syscall.Signal(0x9)
constant SIGLIBRT (line 1636) | SIGLIBRT = syscall.Signal(0x21)
constant SIGLWP (line 1637) | SIGLWP = syscall.Signal(0x20)
constant SIGPIPE (line 1638) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1639) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1640) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1641) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1642) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1643) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1644) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1645) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1646) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1647) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1648) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1649) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1650) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1651) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1652) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1653) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1654) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1655) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1656) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.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_HW (line 354) | CTL_HW = 0x6
constant CTL_KERN (line 355) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 356) | CTL_MAXNAME = 0x18
constant CTL_NET (line 357) | CTL_NET = 0x4
constant DLT_A429 (line 358) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 359) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 360) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 361) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 362) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 363) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 364) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 365) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 366) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 367) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 368) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 369) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 370) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_BREDR_BB (line 371) | DLT_BLUETOOTH_BREDR_BB = 0xff
constant DLT_BLUETOOTH_HCI_H4 (line 372) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 373) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_BLUETOOTH_LE_LL (line 374) | DLT_BLUETOOTH_LE_LL = 0xfb
constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 375) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100
constant DLT_BLUETOOTH_LINUX_MONITOR (line 376) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe
constant DLT_CAN20B (line 377) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 378) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 379) | DLT_CHAOS = 0x5
constant DLT_CHDLC (line 380) | DLT_CHDLC = 0x68
constant DLT_CISCO_IOS (line 381) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 382) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 383) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DBUS (line 384) | DLT_DBUS = 0xe7
constant DLT_DECT (line 385) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 386) | DLT_DOCSIS = 0x8f
constant DLT_DVB_CI (line 387) | DLT_DVB_CI = 0xeb
constant DLT_ECONET (line 388) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 389) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 390) | DLT_EN3MB = 0x2
constant DLT_ENC (line 391) | DLT_ENC = 0x6d
constant DLT_EPON (line 392) | DLT_EPON = 0x103
constant DLT_ERF (line 393) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 394) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 395) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 396) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 397) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 398) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 399) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 400) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 401) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 402) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 403) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 404) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 405) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 406) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 407) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 408) | DLT_GSMTAP_UM = 0xd9
constant DLT_HHDLC (line 409) | DLT_HHDLC = 0x79
constant DLT_IBM_SN (line 410) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 411) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 412) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 413) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 414) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 415) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 416) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 417) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NOFCS (line 418) | DLT_IEEE802_15_4_NOFCS = 0xe6
constant DLT_IEEE802_15_4_NONASK_PHY (line 419) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 420) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 421) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_INFINIBAND (line 422) | DLT_INFINIBAND = 0xf7
constant DLT_IPFILTER (line 423) | DLT_IPFILTER = 0x74
constant DLT_IPMB (line 424) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 425) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPMI_HPM_2 (line 426) | DLT_IPMI_HPM_2 = 0x104
constant DLT_IPNET (line 427) | DLT_IPNET = 0xe2
constant DLT_IPOIB (line 428) | DLT_IPOIB = 0xf2
constant DLT_IPV4 (line 429) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 430) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 431) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 432) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 433) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_ATM_CEMIC (line 434) | DLT_JUNIPER_ATM_CEMIC = 0xee
constant DLT_JUNIPER_CHDLC (line 435) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 436) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 437) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FIBRECHANNEL (line 438) | DLT_JUNIPER_FIBRECHANNEL = 0xea
constant DLT_JUNIPER_FRELAY (line 439) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 440) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 441) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 442) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 443) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 444) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 445) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 446) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 447) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 448) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 449) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 450) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_SRX_E2E (line 451) | DLT_JUNIPER_SRX_E2E = 0xe9
constant DLT_JUNIPER_ST (line 452) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 453) | DLT_JUNIPER_VP = 0xb7
constant DLT_JUNIPER_VS (line 454) | DLT_JUNIPER_VS = 0xe8
constant DLT_LAPB_WITH_DIR (line 455) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 456) | DLT_LAPD = 0xcb
constant DLT_LIN (line 457) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 458) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 459) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 460) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_PPP_WITHDIRECTION (line 461) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6
constant DLT_LINUX_SLL (line 462) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 463) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 464) | DLT_LTALK = 0x72
constant DLT_MATCHING_MAX (line 465) | DLT_MATCHING_MAX = 0x104
constant DLT_MATCHING_MIN (line 466) | DLT_MATCHING_MIN = 0x68
constant DLT_MFR (line 467) | DLT_MFR = 0xb6
constant DLT_MOST (line 468) | DLT_MOST = 0xd3
constant DLT_MPEG_2_TS (line 469) | DLT_MPEG_2_TS = 0xf3
constant DLT_MPLS (line 470) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 471) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 472) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 473) | DLT_MTP3 = 0x8d
constant DLT_MUX27010 (line 474) | DLT_MUX27010 = 0xec
constant DLT_NETANALYZER (line 475) | DLT_NETANALYZER = 0xf0
constant DLT_NETANALYZER_TRANSPARENT (line 476) | DLT_NETANALYZER_TRANSPARENT = 0xf1
constant DLT_NETLINK (line 477) | DLT_NETLINK = 0xfd
constant DLT_NFC_LLCP (line 478) | DLT_NFC_LLCP = 0xf5
constant DLT_NFLOG (line 479) | DLT_NFLOG = 0xef
constant DLT_NG40 (line 480) | DLT_NG40 = 0xf4
constant DLT_NULL (line 481) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 482) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 483) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 484) | DLT_PFSYNC = 0x79
constant DLT_PKTAP (line 485) | DLT_PKTAP = 0x102
constant DLT_PPI (line 486) | DLT_PPI = 0xc0
constant DLT_PPP (line 487) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 488) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 489) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 490) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 491) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 492) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PPP_WITH_DIRECTION (line 493) | DLT_PPP_WITH_DIRECTION = 0xa6
constant DLT_PRISM_HEADER (line 494) | DLT_PRISM_HEADER = 0x77
constant DLT_PROFIBUS_DL (line 495) | DLT_PROFIBUS_DL = 0x101
constant DLT_PRONET (line 496) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 497) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 498) | DLT_RAW = 0xc
constant DLT_RIO (line 499) | DLT_RIO = 0x7c
constant DLT_RTAC_SERIAL (line 500) | DLT_RTAC_SERIAL = 0xfa
constant DLT_SCCP (line 501) | DLT_SCCP = 0x8e
constant DLT_SCTP (line 502) | DLT_SCTP = 0xf8
constant DLT_SITA (line 503) | DLT_SITA = 0xc4
constant DLT_SLIP (line 504) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 505) | DLT_SLIP_BSDOS = 0xf
constant DLT_STANAG_5066_D_PDU (line 506) | DLT_STANAG_5066_D_PDU = 0xed
constant DLT_SUNATM (line 507) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 508) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 509) | DLT_TZSP = 0x80
constant DLT_USB (line 510) | DLT_USB = 0xba
constant DLT_USBPCAP (line 511) | DLT_USBPCAP = 0xf9
constant DLT_USB_LINUX (line 512) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 513) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_USER0 (line 514) | DLT_USER0 = 0x93
constant DLT_USER1 (line 515) | DLT_USER1 = 0x94
constant DLT_USER10 (line 516) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 517) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 518) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 519) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 520) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 521) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 522) | DLT_USER2 = 0x95
constant DLT_USER3 (line 523) | DLT_USER3 = 0x96
constant DLT_USER4 (line 524) | DLT_USER4 = 0x97
constant DLT_USER5 (line 525) | DLT_USER5 = 0x98
constant DLT_USER6 (line 526) | DLT_USER6 = 0x99
constant DLT_USER7 (line 527) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 528) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 529) | DLT_USER9 = 0x9c
constant DLT_WIHART (line 530) | DLT_WIHART = 0xdf
constant DLT_WIRESHARK_UPPER_PDU (line 531) | DLT_WIRESHARK_UPPER_PDU = 0xfc
constant DLT_X2E_SERIAL (line 532) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 533) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 534) | DT_BLK = 0x6
constant DT_CHR (line 535) | DT_CHR = 0x2
constant DT_DIR (line 536) | DT_DIR = 0x4
constant DT_FIFO (line 537) | DT_FIFO = 0x1
constant DT_LNK (line 538) | DT_LNK = 0xa
constant DT_REG (line 539) | DT_REG = 0x8
constant DT_SOCK (line 540) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 541) | DT_UNKNOWN = 0x0
constant DT_WHT (line 542) | DT_WHT = 0xe
constant ECHO (line 543) | ECHO = 0x8
constant ECHOCTL (line 544) | ECHOCTL = 0x40
constant ECHOE (line 545) | ECHOE = 0x2
constant ECHOK (line 546) | ECHOK = 0x4
constant ECHOKE (line 547) | ECHOKE = 0x1
constant ECHONL (line 548) | ECHONL = 0x10
constant ECHOPRT (line 549) | ECHOPRT = 0x20
constant EVFILT_AIO (line 550) | EVFILT_AIO = -0x3
constant EVFILT_FS (line 551) | EVFILT_FS = -0x9
constant EVFILT_LIO (line 552) | EVFILT_LIO = -0xa
constant EVFILT_PROC (line 553) | EVFILT_PROC = -0x5
constant EVFILT_PROCDESC (line 554) | EVFILT_PROCDESC = -0x8
constant EVFILT_READ (line 555) | EVFILT_READ = -0x1
constant EVFILT_SENDFILE (line 556) | EVFILT_SENDFILE = -0xc
constant EVFILT_SIGNAL (line 557) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 558) | EVFILT_SYSCOUNT = 0xc
constant EVFILT_TIMER (line 559) | EVFILT_TIMER = -0x7
constant EVFILT_USER (line 560) | EVFILT_USER = -0xb
constant EVFILT_VNODE (line 561) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 562) | EVFILT_WRITE = -0x2
constant EV_ADD (line 563) | EV_ADD = 0x1
constant EV_CLEAR (line 564) | EV_CLEAR = 0x20
constant EV_DELETE (line 565) | EV_DELETE = 0x2
constant EV_DISABLE (line 566) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 567) | EV_DISPATCH = 0x80
constant EV_DROP (line 568) | EV_DROP = 0x1000
constant EV_ENABLE (line 569) | EV_ENABLE = 0x4
constant EV_EOF (line 570) | EV_EOF = 0x8000
constant EV_ERROR (line 571) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 572) | EV_FLAG1 = 0x2000
constant EV_FLAG2 (line 573) | EV_FLAG2 = 0x4000
constant EV_FORCEONESHOT (line 574) | EV_FORCEONESHOT = 0x100
constant EV_ONESHOT (line 575) | EV_ONESHOT = 0x10
constant EV_RECEIPT (line 576) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 577) | EV_SYSFLAGS = 0xf000
constant EXTA (line 578) | EXTA = 0x4b00
constant EXTATTR_NAMESPACE_EMPTY (line 579) | EXTATTR_NAMESPACE_EMPTY = 0x0
constant EXTATTR_NAMESPACE_SYSTEM (line 580) | EXTATTR_NAMESPACE_SYSTEM = 0x2
constant EXTATTR_NAMESPACE_USER (line 581) | EXTATTR_NAMESPACE_USER = 0x1
constant EXTB (line 582) | EXTB = 0x9600
constant EXTPROC (line 583) | EXTPROC = 0x800
constant FD_CLOEXEC (line 584) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 585) | FD_SETSIZE = 0x400
constant FLUSHO (line 586) | FLUSHO = 0x800000
constant F_CANCEL (line 587) | F_CANCEL = 0x5
constant F_DUP2FD (line 588) | F_DUP2FD = 0xa
constant F_DUP2FD_CLOEXEC (line 589) | F_DUP2FD_CLOEXEC = 0x12
constant F_DUPFD (line 590) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 591) | F_DUPFD_CLOEXEC = 0x11
constant F_GETFD (line 592) | F_GETFD = 0x1
constant F_GETFL (line 593) | F_GETFL = 0x3
constant F_GETLK (line 594) | F_GETLK = 0xb
constant F_GETOWN (line 595) | F_GETOWN = 0x5
constant F_OGETLK (line 596) | F_OGETLK = 0x7
constant F_OK (line 597) | F_OK = 0x0
constant F_OSETLK (line 598) | F_OSETLK = 0x8
constant F_OSETLKW (line 599) | F_OSETLKW = 0x9
constant F_RDAHEAD (line 600) | F_RDAHEAD = 0x10
constant F_RDLCK (line 601) | F_RDLCK = 0x1
constant F_READAHEAD (line 602) | F_READAHEAD = 0xf
constant F_SETFD (line 603) | F_SETFD = 0x2
constant F_SETFL (line 604) | F_SETFL = 0x4
constant F_SETLK (line 605) | F_SETLK = 0xc
constant F_SETLKW (line 606) | F_SETLKW = 0xd
constant F_SETLK_REMOTE (line 607) | F_SETLK_REMOTE = 0xe
constant F_SETOWN (line 608) | F_SETOWN = 0x6
constant F_UNLCK (line 609) | F_UNLCK = 0x2
constant F_UNLCKSYS (line 610) | F_UNLCKSYS = 0x4
constant F_WRLCK (line 611) | F_WRLCK = 0x3
constant HUPCL (line 612) | HUPCL = 0x4000
constant HW_MACHINE (line 613) | HW_MACHINE = 0x1
constant ICANON (line 614) | ICANON = 0x100
constant ICMP6_FILTER (line 615) | ICMP6_FILTER = 0x12
constant ICRNL (line 616) | ICRNL = 0x100
constant IEXTEN (line 617) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 618) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 619) | IFAN_DEPARTURE = 0x1
constant IFF_ALLMULTI (line 620) | IFF_ALLMULTI = 0x200
constant IFF_ALTPHYS (line 621) | IFF_ALTPHYS = 0x4000
constant IFF_BROADCAST (line 622) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 623) | IFF_CANTCHANGE = 0x218f52
constant IFF_CANTCONFIG (line 624) | IFF_CANTCONFIG = 0x10000
constant IFF_DEBUG (line 625) | IFF_DEBUG = 0x4
constant IFF_DRV_OACTIVE (line 626) | IFF_DRV_OACTIVE = 0x400
constant IFF_DRV_RUNNING (line 627) | IFF_DRV_RUNNING = 0x40
constant IFF_DYING (line 628) | IFF_DYING = 0x200000
constant IFF_LINK0 (line 629) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 630) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 631) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 632) | IFF_LOOPBACK = 0x8
constant IFF_MONITOR (line 633) | IFF_MONITOR = 0x40000
constant IFF_MULTICAST (line 634) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 635) | IFF_NOARP = 0x80
constant IFF_OACTIVE (line 636) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 637) | IFF_POINTOPOINT = 0x10
constant IFF_PPROMISC (line 638) | IFF_PPROMISC = 0x20000
constant IFF_PROMISC (line 639) | IFF_PROMISC = 0x100
constant IFF_RENAMING (line 640) | IFF_RENAMING = 0x400000
constant IFF_RUNNING (line 641) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 642) | IFF_SIMPLEX = 0x800
constant IFF_STATICARP (line 643) | IFF_STATICARP = 0x80000
constant IFF_UP (line 644) | IFF_UP = 0x1
constant IFNAMSIZ (line 645) | IFNAMSIZ = 0x10
constant IFT_BRIDGE (line 646) | IFT_BRIDGE = 0xd1
constant IFT_CARP (line 647) | IFT_CARP = 0xf8
constant IFT_IEEE1394 (line 648) | IFT_IEEE1394 = 0x90
constant IFT_INFINIBAND (line 649) | IFT_INFINIBAND = 0xc7
constant IFT_L2VLAN (line 650) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 651) | IFT_L3IPVLAN = 0x88
constant IFT_PPP (line 652) | IFT_PPP = 0x17
constant IFT_PROPVIRTUAL (line 653) | IFT_PROPVIRTUAL = 0x35
constant IGNBRK (line 654) | IGNBRK = 0x1
constant IGNCR (line 655) | IGNCR = 0x80
constant IGNPAR (line 656) | IGNPAR = 0x4
constant IMAXBEL (line 657) | IMAXBEL = 0x2000
constant INLCR (line 658) | INLCR = 0x40
constant INPCK (line 659) | INPCK = 0x10
constant IN_CLASSA_HOST (line 660) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 661) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 662) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 663) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 664) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 665) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 666) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 667) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 668) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 669) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 670) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 671) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 672) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 673) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 674) | IN_LOOPBACKNET = 0x7f
constant IN_RFC3021_MASK (line 675) | IN_RFC3021_MASK = 0xfffffffe
constant IPPROTO_3PC (line 676) | IPPROTO_3PC = 0x22
constant IPPROTO_ADFS (line 677) | IPPROTO_ADFS = 0x44
constant IPPROTO_AH (line 678) | IPPROTO_AH = 0x33
constant IPPROTO_AHIP (line 679) | IPPROTO_AHIP = 0x3d
constant IPPROTO_APES (line 680) | IPPROTO_APES = 0x63
constant IPPROTO_ARGUS (line 681) | IPPROTO_ARGUS = 0xd
constant IPPROTO_AX25 (line 682) | IPPROTO_AX25 = 0x5d
constant IPPROTO_BHA (line 683) | IPPROTO_BHA = 0x31
constant IPPROTO_BLT (line 684) | IPPROTO_BLT = 0x1e
constant IPPROTO_BRSATMON (line 685) | IPPROTO_BRSATMON = 0x4c
constant IPPROTO_CARP (line 686) | IPPROTO_CARP = 0x70
constant IPPROTO_CFTP (line 687) | IPPROTO_CFTP = 0x3e
constant IPPROTO_CHAOS (line 688) | IPPROTO_CHAOS = 0x10
constant IPPROTO_CMTP (line 689) | IPPROTO_CMTP = 0x26
constant IPPROTO_CPHB (line 690) | IPPROTO_CPHB = 0x49
constant IPPROTO_CPNX (line 691) | IPPROTO_CPNX = 0x48
constant IPPROTO_DDP (line 692) | IPPROTO_DDP = 0x25
constant IPPROTO_DGP (line 693) | IPPROTO_DGP = 0x56
constant IPPROTO_DIVERT (line 694) | IPPROTO_DIVERT = 0x102
constant IPPROTO_DONE (line 695) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 696) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 697) | IPPROTO_EGP = 0x8
constant IPPROTO_EMCON (line 698) | IPPROTO_EMCON = 0xe
constant IPPROTO_ENCAP (line 699) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 700) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 701) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 702) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 703) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 704) | IPPROTO_GGP = 0x3
constant IPPROTO_GMTP (line 705) | IPPROTO_GMTP = 0x64
constant IPPROTO_GRE (line 706) | IPPROTO_GRE = 0x2f
constant IPPROTO_HELLO (line 707) | IPPROTO_HELLO = 0x3f
constant IPPROTO_HIP (line 708) | IPPROTO_HIP = 0x8b
constant IPPROTO_HMP (line 709) | IPPROTO_HMP = 0x14
constant IPPROTO_HOPOPTS (line 710) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 711) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 712) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 713) | IPPROTO_IDP = 0x16
constant IPPROTO_IDPR (line 714) | IPPROTO_IDPR = 0x23
constant IPPROTO_IDRP (line 715) | IPPROTO_IDRP = 0x2d
constant IPPROTO_IGMP (line 716) | IPPROTO_IGMP = 0x2
constant IPPROTO_IGP (line 717) | IPPROTO_IGP = 0x55
constant IPPROTO_IGRP (line 718) | IPPROTO_IGRP = 0x58
constant IPPROTO_IL (line 719) | IPPROTO_IL = 0x28
constant IPPROTO_INLSP (line 720) | IPPROTO_INLSP = 0x34
constant IPPROTO_INP (line 721) | IPPROTO_INP = 0x20
constant IPPROTO_IP (line 722) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 723) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPCV (line 724) | IPPROTO_IPCV = 0x47
constant IPPROTO_IPEIP (line 725) | IPPROTO_IPEIP = 0x5e
constant IPPROTO_IPIP (line 726) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPPC (line 727) | IPPROTO_IPPC = 0x43
constant IPPROTO_IPV4 (line 728) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 729) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IRTP (line 730) | IPPROTO_IRTP = 0x1c
constant IPPROTO_KRYPTOLAN (line 731) | IPPROTO_KRYPTOLAN = 0x41
constant IPPROTO_LARP (line 732) | IPPROTO_LARP = 0x5b
constant IPPROTO_LEAF1 (line 733) | IPPROTO_LEAF1 = 0x19
constant IPPROTO_LEAF2 (line 734) | IPPROTO_LEAF2 = 0x1a
constant IPPROTO_MAX (line 735) | IPPROTO_MAX = 0x100
constant IPPROTO_MEAS (line 736) | IPPROTO_MEAS = 0x13
constant IPPROTO_MH (line 737) | IPPROTO_MH = 0x87
constant IPPROTO_MHRP (line 738) | IPPROTO_MHRP = 0x30
constant IPPROTO_MICP (line 739) | IPPROTO_MICP = 0x5f
constant IPPROTO_MOBILE (line 740) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MPLS (line 741) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 742) | IPPROTO_MTP = 0x5c
constant IPPROTO_MUX (line 743) | IPPROTO_MUX = 0x12
constant IPPROTO_ND (line 744) | IPPROTO_ND = 0x4d
constant IPPROTO_NHRP (line 745) | IPPROTO_NHRP = 0x36
constant IPPROTO_NONE (line 746) | IPPROTO_NONE = 0x3b
constant IPPROTO_NSP (line 747) | IPPROTO_NSP = 0x1f
constant IPPROTO_NVPII (line 748) | IPPROTO_NVPII = 0xb
constant IPPROTO_OLD_DIVERT (line 749) | IPPROTO_OLD_DIVERT = 0xfe
constant IPPROTO_OSPFIGP (line 750) | IPPROTO_OSPFIGP = 0x59
constant IPPROTO_PFSYNC (line 751) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PGM (line 752) | IPPROTO_PGM = 0x71
constant IPPROTO_PIGP (line 753) | IPPROTO_PIGP = 0x9
constant IPPROTO_PIM (line 754) | IPPROTO_PIM = 0x67
constant IPPROTO_PRM (line 755) | IPPROTO_PRM = 0x15
constant IPPROTO_PUP (line 756) | IPPROTO_PUP = 0xc
constant IPPROTO_PVP (line 757) | IPPROTO_PVP = 0x4b
constant IPPROTO_RAW (line 758) | IPPROTO_RAW = 0xff
constant IPPROTO_RCCMON (line 759) | IPPROTO_RCCMON = 0xa
constant IPPROTO_RDP (line 760) | IPPROTO_RDP = 0x1b
constant IPPROTO_RESERVED_253 (line 761) | IPPROTO_RESERVED_253 = 0xfd
constant IPPROTO_RESERVED_254 (line 762) | IPPROTO_RESERVED_254 = 0xfe
constant IPPROTO_ROUTING (line 763) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 764) | IPPROTO_RSVP = 0x2e
constant IPPROTO_RVD (line 765) | IPPROTO_RVD = 0x42
constant IPPROTO_SATEXPAK (line 766) | IPPROTO_SATEXPAK = 0x40
constant IPPROTO_SATMON (line 767) | IPPROTO_SATMON = 0x45
constant IPPROTO_SCCSP (line 768) | IPPROTO_SCCSP = 0x60
constant IPPROTO_SCTP (line 769) | IPPROTO_SCTP = 0x84
constant IPPROTO_SDRP (line 770) | IPPROTO_SDRP = 0x2a
constant IPPROTO_SEND (line 771) | IPPROTO_SEND = 0x103
constant IPPROTO_SEP (line 772) | IPPROTO_SEP = 0x21
constant IPPROTO_SHIM6 (line 773) | IPPROTO_SHIM6 = 0x8c
constant IPPROTO_SKIP (line 774) | IPPROTO_SKIP = 0x39
constant IPPROTO_SPACER (line 775) | IPPROTO_SPACER = 0x7fff
constant IPPROTO_SRPC (line 776) | IPPROTO_SRPC = 0x5a
constant IPPROTO_ST (line 777) | IPPROTO_ST = 0x7
constant IPPROTO_SVMTP (line 778) | IPPROTO_SVMTP = 0x52
constant IPPROTO_SWIPE (line 779) | IPPROTO_SWIPE = 0x35
constant IPPROTO_TCF (line 780) | IPPROTO_TCF = 0x57
constant IPPROTO_TCP (line 781) | IPPROTO_TCP = 0x6
constant IPPROTO_TLSP (line 782) | IPPROTO_TLSP = 0x38
constant IPPROTO_TP (line 783) | IPPROTO_TP = 0x1d
constant IPPROTO_TPXX (line 784) | IPPROTO_TPXX = 0x27
constant IPPROTO_TRUNK1 (line 785) | IPPROTO_TRUNK1 = 0x17
constant IPPROTO_TRUNK2 (line 786) | IPPROTO_TRUNK2 = 0x18
constant IPPROTO_TTP (line 787) | IPPROTO_TTP = 0x54
constant IPPROTO_UDP (line 788) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 789) | IPPROTO_UDPLITE = 0x88
constant IPPROTO_VINES (line 790) | IPPROTO_VINES = 0x53
constant IPPROTO_VISA (line 791) | IPPROTO_VISA = 0x46
constant IPPROTO_VMTP (line 792) | IPPROTO_VMTP = 0x51
constant IPPROTO_WBEXPAK (line 793) | IPPROTO_WBEXPAK = 0x4f
constant IPPROTO_WBMON (line 794) | IPPROTO_WBMON = 0x4e
constant IPPROTO_WSN (line 795) | IPPROTO_WSN = 0x4a
constant IPPROTO_XNET (line 796) | IPPROTO_XNET = 0xf
constant IPPROTO_XTP (line 797) | IPPROTO_XTP = 0x24
constant IPV6_AUTOFLOWLABEL (line 798) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_BINDANY (line 799) | IPV6_BINDANY = 0x40
constant IPV6_BINDMULTI (line 800) | IPV6_BINDMULTI = 0x41
constant IPV6_BINDV6ONLY (line 801) | IPV6_BINDV6ONLY = 0x1b
constant IPV6_CHECKSUM (line 802) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 803) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 804) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 805) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 806) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 807) | IPV6_DSTOPTS = 0x32
constant IPV6_FLOWID (line 808) | IPV6_FLOWID = 0x43
constant IPV6_FLOWINFO_MASK (line 809) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 810) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FLOWTYPE (line 811) | IPV6_FLOWTYPE = 0x44
constant IPV6_FRAGTTL (line 812) | IPV6_FRAGTTL = 0x78
constant IPV6_FW_ADD (line 813) | IPV6_FW_ADD = 0x1e
constant IPV6_FW_DEL (line 814) | IPV6_FW_DEL = 0x1f
constant IPV6_FW_FLUSH (line 815) | IPV6_FW_FLUSH = 0x20
constant IPV6_FW_GET (line 816) | IPV6_FW_GET = 0x22
constant IPV6_FW_ZERO (line 817) | IPV6_FW_ZERO = 0x21
constant IPV6_HLIMDEC (line 818) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 819) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 820) | IPV6_HOPOPTS = 0x31
constant IPV6_IPSEC_POLICY (line 821) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 822) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 823) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 824) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXOPTHDR (line 825) | IPV6_MAXOPTHDR = 0x800
constant IPV6_MAXPACKET (line 826) | IPV6_MAXPACKET = 0xffff
constant IPV6_MAX_GROUP_SRC_FILTER (line 827) | IPV6_MAX_GROUP_SRC_FILTER = 0x200
constant IPV6_MAX_MEMBERSHIPS (line 828) | IPV6_MAX_MEMBERSHIPS = 0xfff
constant IPV6_MAX_SOCK_SRC_FILTER (line 829) | IPV6_MAX_SOCK_SRC_FILTER = 0x80
constant IPV6_MIN_MEMBERSHIPS (line 830) | IPV6_MIN_MEMBERSHIPS = 0x1f
constant IPV6_MMTU (line 831) | IPV6_MMTU = 0x500
constant IPV6_MSFILTER (line 832) | IPV6_MSFILTER = 0x4a
constant IPV6_MULTICAST_HOPS (line 833) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 834) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 835) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 836) | IPV6_NEXTHOP = 0x30
constant IPV6_PATHMTU (line 837) | IPV6_PATHMTU = 0x2c
constant IPV6_PKTINFO (line 838) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 839) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 840) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 841) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 842) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_PREFER_TEMPADDR (line 843) | IPV6_PREFER_TEMPADDR = 0x3f
constant IPV6_RECVDSTOPTS (line 844) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVFLOWID (line 845) | IPV6_RECVFLOWID = 0x46
constant IPV6_RECVHOPLIMIT (line 846) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 847) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 848) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 849) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRSSBUCKETID (line 850) | IPV6_RECVRSSBUCKETID = 0x47
constant IPV6_RECVRTHDR (line 851) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 852) | IPV6_RECVTCLASS = 0x39
constant IPV6_RSSBUCKETID (line 853) | IPV6_RSSBUCKETID = 0x45
constant IPV6_RSS_LISTEN_BUCKET (line 854) | IPV6_RSS_LISTEN_BUCKET = 0x42
constant IPV6_RTHDR (line 855) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 856) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 857) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 858) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 859) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 860) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 861) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 862) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 863) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 864) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 865) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 866) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 867) | IP_ADD_MEMBERSHIP = 0xc
constant IP_ADD_SOURCE_MEMBERSHIP (line 868) | IP_ADD_SOURCE_MEMBERSHIP = 0x46
constant IP_BINDANY (line 869) | IP_BINDANY = 0x18
constant IP_BINDMULTI (line 870) | IP_BINDMULTI = 0x19
constant IP_BLOCK_SOURCE (line 871) | IP_BLOCK_SOURCE = 0x48
constant IP_DEFAULT_MULTICAST_LOOP (line 872) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 873) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 874) | IP_DF = 0x4000
constant IP_DONTFRAG (line 875) | IP_DONTFRAG = 0x43
constant IP_DROP_MEMBERSHIP (line 876) | IP_DROP_MEMBERSHIP = 0xd
constant IP_DROP_SOURCE_MEMBERSHIP (line 877) | IP_DROP_SOURCE_MEMBERSHIP = 0x47
constant IP_DUMMYNET3 (line 878) | IP_DUMMYNET3 = 0x31
constant IP_DUMMYNET_CONFIGURE (line 879) | IP_DUMMYNET_CONFIGURE = 0x3c
constant IP_DUMMYNET_DEL (line 880) | IP_DUMMYNET_DEL = 0x3d
constant IP_DUMMYNET_FLUSH (line 881) | IP_DUMMYNET_FLUSH = 0x3e
constant IP_DUMMYNET_GET (line 882) | IP_DUMMYNET_GET = 0x40
constant IP_FLOWID (line 883) | IP_FLOWID = 0x5a
constant IP_FLOWTYPE (line 884) | IP_FLOWTYPE = 0x5b
constant IP_FW3 (line 885) | IP_FW3 = 0x30
constant IP_FW_ADD (line 886) | IP_FW_ADD = 0x32
constant IP_FW_DEL (line 887) | IP_FW_DEL = 0x33
constant IP_FW_FLUSH (line 888) | IP_FW_FLUSH = 0x34
constant IP_FW_GET (line 889) | IP_FW_GET = 0x36
constant IP_FW_NAT_CFG (line 890) | IP_FW_NAT_CFG = 0x38
constant IP_FW_NAT_DEL (line 891) | IP_FW_NAT_DEL = 0x39
constant IP_FW_NAT_GET_CONFIG (line 892) | IP_FW_NAT_GET_CONFIG = 0x3a
constant IP_FW_NAT_GET_LOG (line 893) | IP_FW_NAT_GET_LOG = 0x3b
constant IP_FW_RESETLOG (line 894) | IP_FW_RESETLOG = 0x37
constant IP_FW_TABLE_ADD (line 895) | IP_FW_TABLE_ADD = 0x28
constant IP_FW_TABLE_DEL (line 896) | IP_FW_TABLE_DEL = 0x29
constant IP_FW_TABLE_FLUSH (line 897) | IP_FW_TABLE_FLUSH = 0x2a
constant IP_FW_TABLE_GETSIZE (line 898) | IP_FW_TABLE_GETSIZE = 0x2b
constant IP_FW_TABLE_LIST (line 899) | IP_FW_TABLE_LIST = 0x2c
constant IP_FW_ZERO (line 900) | IP_FW_ZERO = 0x35
constant IP_HDRINCL (line 901) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 902) | IP_IPSEC_POLICY = 0x15
constant IP_MAXPACKET (line 903) | IP_MAXPACKET = 0xffff
constant IP_MAX_GROUP_SRC_FILTER (line 904) | IP_MAX_GROUP_SRC_FILTER = 0x200
constant IP_MAX_MEMBERSHIPS (line 905) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MAX_SOCK_MUTE_FILTER (line 906) | IP_MAX_SOCK_MUTE_FILTER = 0x80
constant IP_MAX_SOCK_SRC_FILTER (line 907) | IP_MAX_SOCK_SRC_FILTER = 0x80
constant IP_MAX_SOURCE_FILTER (line 908) | IP_MAX_SOURCE_FILTER = 0x400
constant IP_MF (line 909) | IP_MF = 0x2000
constant IP_MINTTL (line 910) | IP_MINTTL = 0x42
constant IP_MIN_MEMBERSHIPS (line 911) | IP_MIN_MEMBERSHIPS = 0x1f
constant IP_MSFILTER (line 912) | IP_MSFILTER = 0x4a
constant IP_MSS (line 913) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 914) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 915) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 916) | IP_MULTICAST_TTL = 0xa
constant IP_MULTICAST_VIF (line 917) | IP_MULTICAST_VIF = 0xe
constant IP_OFFMASK (line 918) | IP_OFFMASK = 0x1fff
constant IP_ONESBCAST (line 919) | IP_ONESBCAST = 0x17
constant IP_OPTIONS (line 920) | IP_OPTIONS = 0x1
constant IP_PORTRANGE (line 921) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 922) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 923) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 924) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 925) | IP_RECVDSTADDR = 0x7
constant IP_RECVFLOWID (line 926) | IP_RECVFLOWID = 0x5d
constant IP_RECVIF (line 927) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 928) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 929) | IP_RECVRETOPTS = 0x6
constant IP_RECVRSSBUCKETID (line 930) | IP_RECVRSSBUCKETID = 0x5e
constant IP_RECVTOS (line 931) | IP_RECVTOS = 0x44
constant IP_RECVTTL (line 932) | IP_RECVTTL = 0x41
constant IP_RETOPTS (line 933) | IP_RETOPTS = 0x8
constant IP_RF (line 934) | IP_RF = 0x8000
constant IP_RSSBUCKETID (line 935) | IP_RSSBUCKETID = 0x5c
constant IP_RSS_LISTEN_BUCKET (line 936) | IP_RSS_LISTEN_BUCKET = 0x1a
constant IP_RSVP_OFF (line 937) | IP_RSVP_OFF = 0x10
constant IP_RSVP_ON (line 938) | IP_RSVP_ON = 0xf
constant IP_RSVP_VIF_OFF (line 939) | IP_RSVP_VIF_OFF = 0x12
constant IP_RSVP_VIF_ON (line 940) | IP_RSVP_VIF_ON = 0x11
constant IP_SENDSRCADDR (line 941) | IP_SENDSRCADDR = 0x7
constant IP_TOS (line 942) | IP_TOS = 0x3
constant IP_TTL (line 943) | IP_TTL = 0x4
constant IP_UNBLOCK_SOURCE (line 944) | IP_UNBLOCK_SOURCE = 0x49
constant ISIG (line 945) | ISIG = 0x80
constant ISTRIP (line 946) | ISTRIP = 0x20
constant IXANY (line 947) | IXANY = 0x800
constant IXOFF (line 948) | IXOFF = 0x400
constant IXON (line 949) | IXON = 0x200
constant KERN_HOSTNAME (line 950) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 951) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 952) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 953) | KERN_VERSION = 0x4
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_32BIT (line 969) | MAP_32BIT = 0x80000
constant MAP_ALIGNED_SUPER (line 970) | MAP_ALIGNED_SUPER = 0x1000000
constant MAP_ALIGNMENT_MASK (line 971) | MAP_ALIGNMENT_MASK = -0x1000000
constant MAP_ALIGNMENT_SHIFT (line 972) | MAP_ALIGNMENT_SHIFT = 0x18
constant MAP_ANON (line 973) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 974) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 975) | MAP_COPY = 0x2
constant MAP_EXCL (line 976) | MAP_EXCL = 0x4000
constant MAP_FILE (line 977) | MAP_FILE = 0x0
constant MAP_FIXED (line 978) | MAP_FIXED = 0x10
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 MNT_ACLS (line 992) | MNT_ACLS = 0x8000000
constant MNT_ASYNC (line 993) | MNT_ASYNC = 0x40
constant MNT_AUTOMOUNTED (line 994) | MNT_AUTOMOUNTED = 0x200000000
constant MNT_BYFSID (line 995) | MNT_BYFSID = 0x8000000
constant MNT_CMDFLAGS (line 996) | MNT_CMDFLAGS = 0xd0f0000
constant MNT_DEFEXPORTED (line 997) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 998) | MNT_DELEXPORT = 0x20000
constant MNT_EXKERB (line 999) | MNT_EXKERB = 0x800
constant MNT_EXPORTANON (line 1000) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 1001) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 1002) | MNT_EXPUBLIC = 0x20000000
constant MNT_EXRDONLY (line 1003) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 1004) | MNT_FORCE = 0x80000
constant MNT_GJOURNAL (line 1005) | MNT_GJOURNAL = 0x2000000
constant MNT_IGNORE (line 1006) | MNT_IGNORE = 0x800000
constant MNT_LAZY (line 1007) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 1008) | MNT_LOCAL = 0x1000
constant MNT_MULTILABEL (line 1009) | MNT_MULTILABEL = 0x4000000
constant MNT_NFS4ACLS (line 1010) | MNT_NFS4ACLS = 0x10
constant MNT_NOATIME (line 1011) | MNT_NOATIME = 0x10000000
constant MNT_NOCLUSTERR (line 1012) | MNT_NOCLUSTERR = 0x40000000
constant MNT_NOCLUSTERW (line 1013) | MNT_NOCLUSTERW = 0x80000000
constant MNT_NOEXEC (line 1014) | MNT_NOEXEC = 0x4
constant MNT_NONBUSY (line 1015) | MNT_NONBUSY = 0x4000000
constant MNT_NOSUID (line 1016) | MNT_NOSUID = 0x8
constant MNT_NOSYMFOLLOW (line 1017) | MNT_NOSYMFOLLOW = 0x400000
constant MNT_NOWAIT (line 1018) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 1019) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 1020) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 1021) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 1022) | MNT_ROOTFS = 0x4000
constant MNT_SNAPSHOT (line 1023) | MNT_SNAPSHOT = 0x1000000
constant MNT_SOFTDEP (line 1024) | MNT_SOFTDEP = 0x200000
constant MNT_SUIDDIR (line 1025) | MNT_SUIDDIR = 0x100000
constant MNT_SUJ (line 1026) | MNT_SUJ = 0x100000000
constant MNT_SUSPEND (line 1027) | MNT_SUSPEND = 0x4
constant MNT_SYNCHRONOUS (line 1028) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 1029) | MNT_UNION = 0x20
constant MNT_UPDATE (line 1030) | MNT_UPDATE = 0x10000
constant MNT_UPDATEMASK (line 1031) | MNT_UPDATEMASK = 0x2d8d0807e
constant MNT_USER (line 1032) | MNT_USER = 0x8000
constant MNT_VISFLAGMASK (line 1033) | MNT_VISFLAGMASK = 0x3fef0ffff
constant MNT_WAIT (line 1034) | MNT_WAIT = 0x1
constant MSG_CMSG_CLOEXEC (line 1035) | MSG_CMSG_CLOEXEC = 0x40000
constant MSG_COMPAT (line 1036) | MSG_COMPAT = 0x8000
constant MSG_CTRUNC (line 1037) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 1038) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1039) | MSG_DONTWAIT = 0x80
constant MSG_EOF (line 1040) | MSG_EOF = 0x100
constant MSG_EOR (line 1041) | MSG_EOR = 0x8
constant MSG_NBIO (line 1042) | MSG_NBIO = 0x4000
constant MSG_NOSIGNAL (line 1043) | MSG_NOSIGNAL = 0x20000
constant MSG_NOTIFICATION (line 1044) | MSG_NOTIFICATION = 0x2000
constant MSG_OOB (line 1045) | MSG_OOB = 0x1
constant MSG_PEEK (line 1046) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 1047) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 1048) | MSG_WAITALL = 0x40
constant MSG_WAITFORONE (line 1049) | MSG_WAITFORONE = 0x80000
constant MS_ASYNC (line 1050) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 1051) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 1052) | MS_SYNC = 0x0
constant NAME_MAX (line 1053) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 1054) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 1055) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 1056) | NET_RT_IFLIST = 0x3
constant NET_RT_IFLISTL (line 1057) | NET_RT_IFLISTL = 0x5
constant NET_RT_IFMALIST (line 1058) | NET_RT_IFMALIST = 0x4
constant NOFLSH (line 1059) | NOFLSH = 0x80000000
constant NOKERNINFO (line 1060) | NOKERNINFO = 0x2000000
constant NOTE_ATTRIB (line 1061) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 1062) | NOTE_CHILD = 0x4
constant NOTE_CLOSE (line 1063) | NOTE_CLOSE = 0x100
constant NOTE_CLOSE_WRITE (line 1064) | NOTE_CLOSE_WRITE = 0x200
constant NOTE_DELETE (line 1065) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 1066) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1067) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1068) | NOTE_EXTEND = 0x4
constant NOTE_FFAND (line 1069) | NOTE_FFAND = 0x40000000
constant NOTE_FFCOPY (line 1070) | NOTE_FFCOPY = 0xc0000000
constant NOTE_FFCTRLMASK (line 1071) | NOTE_FFCTRLMASK = 0xc0000000
constant NOTE_FFLAGSMASK (line 1072) | NOTE_FFLAGSMASK = 0xffffff
constant NOTE_FFNOP (line 1073) | NOTE_FFNOP = 0x0
constant NOTE_FFOR (line 1074) | NOTE_FFOR = 0x80000000
constant NOTE_FILE_POLL (line 1075) | NOTE_FILE_POLL = 0x2
constant NOTE_FORK (line 1076) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1077) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1078) | NOTE_LOWAT = 0x1
constant NOTE_MSECONDS (line 1079) | NOTE_MSECONDS = 0x2
constant NOTE_NSECONDS (line 1080) | NOTE_NSECONDS = 0x8
constant NOTE_OPEN (line 1081) | NOTE_OPEN = 0x80
constant NOTE_PCTRLMASK (line 1082) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1083) | NOTE_PDATAMASK = 0xfffff
constant NOTE_READ (line 1084) | NOTE_READ = 0x400
constant NOTE_RENAME (line 1085) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1086) | NOTE_REVOKE = 0x40
constant NOTE_SECONDS (line 1087) | NOTE_SECONDS = 0x1
constant NOTE_TRACK (line 1088) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1089) | NOTE_TRACKERR = 0x2
constant NOTE_TRIGGER (line 1090) | NOTE_TRIGGER = 0x1000000
constant NOTE_USECONDS (line 1091) | NOTE_USECONDS = 0x4
constant NOTE_WRITE (line 1092) | NOTE_WRITE = 0x2
constant OCRNL (line 1093) | OCRNL = 0x10
constant ONLCR (line 1094) | ONLCR = 0x2
constant ONLRET (line 1095) | ONLRET = 0x40
constant ONOCR (line 1096) | ONOCR = 0x20
constant ONOEOT (line 1097) | ONOEOT = 0x8
constant OPOST (line 1098) | OPOST = 0x1
constant OXTABS (line 1099) | OXTABS = 0x4
constant O_ACCMODE (line 1100) | O_ACCMODE = 0x3
constant O_APPEND (line 1101) | O_APPEND = 0x8
constant O_ASYNC (line 1102) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1103) | O_CLOEXEC = 0x100000
constant O_CREAT (line 1104) | O_CREAT = 0x200
constant O_DIRECT (line 1105) | O_DIRECT = 0x10000
constant O_DIRECTORY (line 1106) | O_DIRECTORY = 0x20000
constant O_EXCL (line 1107) | O_EXCL = 0x800
constant O_EXEC (line 1108) | O_EXEC = 0x40000
constant O_EXLOCK (line 1109) | O_EXLOCK = 0x20
constant O_FSYNC (line 1110) | O_FSYNC = 0x80
constant O_NDELAY (line 1111) | O_NDELAY = 0x4
constant O_NOCTTY (line 1112) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1113) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1114) | O_NONBLOCK = 0x4
constant O_RDONLY (line 1115) | O_RDONLY = 0x0
constant O_RDWR (line 1116) | O_RDWR = 0x2
constant O_SHLOCK (line 1117) | O_SHLOCK = 0x10
constant O_SYNC (line 1118) | O_SYNC = 0x80
constant O_TRUNC (line 1119) | O_TRUNC = 0x400
constant O_TTY_INIT (line 1120) | O_TTY_INIT = 0x80000
constant O_VERIFY (line 1121) | O_VERIFY = 0x200000
constant O_WRONLY (line 1122) | O_WRONLY = 0x1
constant PARENB (line 1123) | PARENB = 0x1000
constant PARMRK (line 1124) | PARMRK = 0x8
constant PARODD (line 1125) | PARODD = 0x2000
constant PENDIN (line 1126) | PENDIN = 0x20000000
constant PRIO_PGRP (line 1127) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1128) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1129) | PRIO_USER = 0x2
constant PROT_EXEC (line 1130) | PROT_EXEC = 0x4
constant PROT_NONE (line 1131) | PROT_NONE = 0x0
constant PROT_READ (line 1132) | PROT_READ = 0x1
constant PROT_WRITE (line 1133) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 1134) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1135) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1136) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1137) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1138) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1139) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1140) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1141) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1142) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1143) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1144) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1145) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1146) | RTAX_BRD = 0x7
constant RTAX_DST (line 1147) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1148) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1149) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1150) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1151) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1152) | RTAX_MAX = 0x8
constant RTAX_NETMASK (line 1153) | RTAX_NETMASK = 0x2
constant RTA_AUTHOR (line 1154) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1155) | RTA_BRD = 0x80
constant RTA_DST (line 1156) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1157) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1158) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1159) | RTA_IFA = 0x20
constant RTA_IFP (line 1160) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1161) | RTA_NETMASK = 0x4
constant RTF_BLACKHOLE (line 1162) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1163) | RTF_BROADCAST = 0x400000
constant RTF_DONE (line 1164) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1165) | RTF_DYNAMIC = 0x10
constant RTF_FIXEDMTU (line 1166) | RTF_FIXEDMTU = 0x80000
constant RTF_FMASK (line 1167) | RTF_FMASK = 0x1004d808
constant RTF_GATEWAY (line 1168) | RTF_GATEWAY = 0x2
constant RTF_GWFLAG_COMPAT (line 1169) | RTF_GWFLAG_COMPAT = 0x80000000
constant RTF_HOST (line 1170) | RTF_HOST = 0x4
constant RTF_LLDATA (line 1171) | RTF_LLDATA = 0x400
constant RTF_LLINFO (line 1172) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1173) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1174) | RTF_MODIFIED = 0x20
constant RTF_MULTICAST (line 1175) | RTF_MULTICAST = 0x800000
constant RTF_PINNED (line 1176) | RTF_PINNED = 0x100000
constant RTF_PROTO1 (line 1177) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1178) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1179) | RTF_PROTO3 = 0x40000
constant RTF_REJECT (line 1180) | RTF_REJECT = 0x8
constant RTF_RNH_LOCKED (line 1181) | RTF_RNH_LOCKED = 0x40000000
constant RTF_STATIC (line 1182) | RTF_STATIC = 0x800
constant RTF_STICKY (line 1183) | RTF_STICKY = 0x10000000
constant RTF_UP (line 1184) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 1185) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1186) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1187) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1188) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1189) | RTM_DELETE = 0x2
constant RTM_DELMADDR (line 1190) | RTM_DELMADDR = 0x10
constant RTM_GET (line 1191) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1192) | RTM_IEEE80211 = 0x12
constant RTM_IFANNOUNCE (line 1193) | RTM_IFANNOUNCE = 0x11
constant RTM_IFINFO (line 1194) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 1195) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1196) | RTM_LOSING = 0x5
constant RTM_MISS (line 1197) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1198) | RTM_NEWADDR = 0xc
constant RTM_NEWMADDR (line 1199) | RTM_NEWMADDR = 0xf
constant RTM_REDIRECT (line 1200) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1201) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1202) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1203) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1204) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1205) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1206) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1207) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1208) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1209) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1210) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1211) | RTV_SSTHRESH = 0x20
constant RTV_WEIGHT (line 1212) | RTV_WEIGHT = 0x100
constant RT_ALL_FIBS (line 1213) | RT_ALL_FIBS = -0x1
constant RT_BLACKHOLE (line 1214) | RT_BLACKHOLE = 0x40
constant RT_CACHING_CONTEXT (line 1215) | RT_CACHING_CONTEXT = 0x1
constant RT_DEFAULT_FIB (line 1216) | RT_DEFAULT_FIB = 0x0
constant RT_HAS_GW (line 1217) | RT_HAS_GW = 0x80
constant RT_HAS_HEADER (line 1218) | RT_HAS_HEADER = 0x10
constant RT_HAS_HEADER_BIT (line 1219) | RT_HAS_HEADER_BIT = 0x4
constant RT_L2_ME (line 1220) | RT_L2_ME = 0x4
constant RT_L2_ME_BIT (line 1221) | RT_L2_ME_BIT = 0x2
constant RT_LLE_CACHE (line 1222) | RT_LLE_CACHE = 0x100
constant RT_MAY_LOOP (line 1223) | RT_MAY_LOOP = 0x8
constant RT_MAY_LOOP_BIT (line 1224) | RT_MAY_LOOP_BIT = 0x3
constant RT_NORTREF (line 1225) | RT_NORTREF = 0x2
constant RT_REJECT (line 1226) | RT_REJECT = 0x20
constant RUSAGE_CHILDREN (line 1227) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1228) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1229) | RUSAGE_THREAD = 0x1
constant SCM_BINTIME (line 1230) | SCM_BINTIME = 0x4
constant SCM_CREDS (line 1231) | SCM_CREDS = 0x3
constant SCM_RIGHTS (line 1232) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1233) | SCM_TIMESTAMP = 0x2
constant SHUT_RD (line 1234) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1235) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1236) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1237) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1238) | SIOCAIFADDR = 0x8040691a
constant SIOCAIFGROUP (line 1239) | SIOCAIFGROUP = 0x80286987
constant SIOCATMARK (line 1240) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1241) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1242) | SIOCDIFADDR = 0x80206919
constant SIOCDIFGROUP (line 1243) | SIOCDIFGROUP = 0x80286989
constant SIOCDIFPHYADDR (line 1244) | SIOCDIFPHYADDR = 0x80206949
constant SIOCGDRVSPEC (line 1245) | SIOCGDRVSPEC = 0xc028697b
constant SIOCGETSGCNT (line 1246) | SIOCGETSGCNT = 0xc0207210
constant SIOCGETVIFCNT (line 1247) | SIOCGETVIFCNT = 0xc028720f
constant SIOCGHIWAT (line 1248) | SIOCGHIWAT = 0x40047301
constant SIOCGI2C (line 1249) | SIOCGI2C = 0xc020693d
constant SIOCGIFADDR (line 1250) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFBRDADDR (line 1251) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCAP (line 1252) | SIOCGIFCAP = 0xc020691f
constant SIOCGIFCONF (line 1253) | SIOCGIFCONF = 0xc0106924
constant SIOCGIFDESCR (line 1254) | SIOCGIFDESCR = 0xc020692a
constant SIOCGIFDSTADDR (line 1255) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFIB (line 1256) | SIOCGIFFIB = 0xc020695c
constant SIOCGIFFLAGS (line 1257) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGENERIC (line 1258) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGMEMB (line 1259) | SIOCGIFGMEMB = 0xc028698a
constant SIOCGIFGROUP (line 1260) | SIOCGIFGROUP = 0xc0286988
constant SIOCGIFINDEX (line 1261) | SIOCGIFINDEX = 0xc0206920
constant SIOCGIFMAC (line 1262) | SIOCGIFMAC = 0xc0206926
constant SIOCGIFMEDIA (line 1263) | SIOCGIFMEDIA = 0xc0306938
constant SIOCGIFMETRIC (line 1264) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1265) | SIOCGIFMTU = 0xc0206933
constant SIOCGIFNETMASK (line 1266) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1267) | SIOCGIFPDSTADDR = 0xc0206948
constant SIOCGIFPHYS (line 1268) | SIOCGIFPHYS = 0xc0206935
constant SIOCGIFPSRCADDR (line 1269) | SIOCGIFPSRCADDR = 0xc0206947
constant SIOCGIFSTATUS (line 1270) | SIOCGIFSTATUS = 0xc331693b
constant SIOCGIFXMEDIA (line 1271) | SIOCGIFXMEDIA = 0xc030698b
constant SIOCGLOWAT (line 1272) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1273) | SIOCGPGRP = 0x40047309
constant SIOCGPRIVATE_0 (line 1274) | SIOCGPRIVATE_0 = 0xc0206950
constant SIOCGPRIVATE_1 (line 1275) | SIOCGPRIVATE_1 = 0xc0206951
constant SIOCGTUNFIB (line 1276) | SIOCGTUNFIB = 0xc020695e
constant SIOCIFCREATE (line 1277) | SIOCIFCREATE = 0xc020697a
constant SIOCIFCREATE2 (line 1278) | SIOCIFCREATE2 = 0xc020697c
constant SIOCIFDESTROY (line 1279) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1280) | SIOCIFGCLONERS = 0xc0106978
constant SIOCSDRVSPEC (line 1281) | SIOCSDRVSPEC = 0x8028697b
constant SIOCSHIWAT (line 1282) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1283) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFBRDADDR (line 1284) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFCAP (line 1285) | SIOCSIFCAP = 0x8020691e
constant SIOCSIFDESCR (line 1286) | SIOCSIFDESCR = 0x80206929
constant SIOCSIFDSTADDR (line 1287) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFIB (line 1288) | SIOCSIFFIB = 0x8020695d
constant SIOCSIFFLAGS (line 1289) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGENERIC (line 1290) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1291) | SIOCSIFLLADDR = 0x8020693c
constant SIOCSIFMAC (line 1292) | SIOCSIFMAC = 0x80206927
constant SIOCSIFMEDIA (line 1293) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1294) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1295) | SIOCSIFMTU = 0x80206934
constant SIOCSIFNAME (line 1296) | SIOCSIFNAME = 0x80206928
constant SIOCSIFNETMASK (line 1297) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1298) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSIFPHYS (line 1299) | SIOCSIFPHYS = 0x80206936
constant SIOCSIFRVNET (line 1300) | SIOCSIFRVNET = 0xc020695b
constant SIOCSIFVNET (line 1301) | SIOCSIFVNET = 0xc020695a
constant SIOCSLOWAT (line 1302) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1303) | SIOCSPGRP = 0x80047308
constant SIOCSTUNFIB (line 1304) | SIOCSTUNFIB = 0x8020695f
constant SOCK_CLOEXEC (line 1305) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1306) | SOCK_DGRAM = 0x2
constant SOCK_MAXADDRLEN (line 1307) | SOCK_MAXADDRLEN = 0xff
constant SOCK_NONBLOCK (line 1308) | SOCK_NONBLOCK = 0x20000000
constant SOCK_RAW (line 1309) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1310) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1311) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1312) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1313) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1314) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1315) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1316) | SO_ACCEPTFILTER = 0x1000
constant SO_BINTIME (line 1317) | SO_BINTIME = 0x2000
constant SO_BROADCAST (line 1318) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1319) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1320) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1321) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1322) | SO_KEEPALIVE = 0x8
constant SO_LABEL (line 1323) | SO_LABEL = 0x1009
constant SO_LINGER (line 1324) | SO_LINGER = 0x80
constant SO_LISTENINCQLEN (line 1325) | SO_LISTENINCQLEN = 0x1013
constant SO_LISTENQLEN (line 1326) | SO_LISTENQLEN = 0x1012
constant SO_LISTENQLIMIT (line 1327) | SO_LISTENQLIMIT = 0x1011
constant SO_NOSIGPIPE (line 1328) | SO_NOSIGPIPE = 0x800
constant SO_NO_DDP (line 1329) | SO_NO_DDP = 0x8000
constant SO_NO_OFFLOAD (line 1330) | SO_NO_OFFLOAD = 0x4000
constant SO_OOBINLINE (line 1331) | SO_OOBINLINE = 0x100
constant SO_PEERLABEL (line 1332) | SO_PEERLABEL = 0x1010
constant SO_PROTOCOL (line 1333) | SO_PROTOCOL = 0x1016
constant SO_PROTOTYPE (line 1334) | SO_PROTOTYPE = 0x1016
constant SO_RCVBUF (line 1335) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1336) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1337) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1338) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1339) | SO_REUSEPORT = 0x200
constant SO_SETFIB (line 1340) | SO_SETFIB = 0x1014
constant SO_SNDBUF (line 1341) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1342) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1343) | SO_SNDTIMEO = 0x1005
constant SO_TIMESTAMP (line 1344) | SO_TIMESTAMP = 0x400
constant SO_TYPE (line 1345) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1346) | SO_USELOOPBACK = 0x40
constant SO_USER_COOKIE (line 1347) | SO_USER_COOKIE = 0x1015
constant SO_VENDOR (line 1348) | SO_VENDOR = 0x80000000
constant S_BLKSIZE (line 1349) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1350) | S_IEXEC = 0x40
constant S_IFBLK (line 1351) | S_IFBLK = 0x6000
constant S_IFCHR (line 1352) | S_IFCHR = 0x2000
constant S_IFDIR (line 1353) | S_IFDIR = 0x4000
constant S_IFIFO (line 1354) | S_IFIFO = 0x1000
constant S_IFLNK (line 1355) | S_IFLNK = 0xa000
constant S_IFMT (line 1356) | S_IFMT = 0xf000
constant S_IFREG (line 1357) | S_IFREG = 0x8000
constant S_IFSOCK (line 1358) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1359) | S_IFWHT = 0xe000
constant S_IREAD (line 1360) | S_IREAD = 0x100
constant S_IRGRP (line 1361) | S_IRGRP = 0x20
constant S_IROTH (line 1362) | S_IROTH = 0x4
constant S_IRUSR (line 1363) | S_IRUSR = 0x100
constant S_IRWXG (line 1364) | S_IRWXG = 0x38
constant S_IRWXO (line 1365) | S_IRWXO = 0x7
constant S_IRWXU (line 1366) | S_IRWXU = 0x1c0
constant S_ISGID (line 1367) | S_ISGID = 0x400
constant S_ISTXT (line 1368) | S_ISTXT = 0x200
constant S_ISUID (line 1369) | S_ISUID = 0x800
constant S_ISVTX (line 1370) | S_ISVTX = 0x200
constant S_IWGRP (line 1371) | S_IWGRP = 0x10
constant S_IWOTH (line 1372) | S_IWOTH = 0x2
constant S_IWRITE (line 1373) | S_IWRITE = 0x80
constant S_IWUSR (line 1374) | S_IWUSR = 0x80
constant S_IXGRP (line 1375) | S_IXGRP = 0x8
constant S_IXOTH (line 1376) | S_IXOTH = 0x1
constant S_IXUSR (line 1377) | S_IXUSR = 0x40
constant TAB0 (line 1378) | TAB0 = 0x0
constant TAB3 (line 1379) | TAB3 = 0x4
constant TABDLY (line 1380) | TABDLY = 0x4
constant TCIFLUSH (line 1381) | TCIFLUSH = 0x1
constant TCIOFF (line 1382) | TCIOFF = 0x3
constant TCIOFLUSH (line 1383) | TCIOFLUSH = 0x3
constant TCION (line 1384) | TCION = 0x4
constant TCOFLUSH (line 1385) | TCOFLUSH = 0x2
constant TCOOFF (line 1386) | TCOOFF = 0x1
constant TCOON (line 1387) | TCOON = 0x2
constant TCP_CA_NAME_MAX (line 1388) | TCP_CA_NAME_MAX = 0x10
constant TCP_CCALGOOPT (line 1389) | TCP_CCALGOOPT = 0x41
constant TCP_CONGESTION (line 1390) | TCP_CONGESTION = 0x40
constant TCP_FASTOPEN (line 1391) | TCP_FASTOPEN = 0x401
constant TCP_FUNCTION_BLK (line 1392) | TCP_FUNCTION_BLK = 0x2000
constant TCP_FUNCTION_NAME_LEN_MAX (line 1393) | TCP_FUNCTION_NAME_LEN_MAX = 0x20
constant TCP_INFO (line 1394) | TCP_INFO = 0x20
constant TCP_KEEPCNT (line 1395) | TCP_KEEPCNT = 0x400
constant TCP_KEEPIDLE (line 1396) | TCP_KEEPIDLE = 0x100
constant TCP_KEEPINIT (line 1397) | TCP_KEEPINIT = 0x80
constant TCP_KEEPINTVL (line 1398) | TCP_KEEPINTVL = 0x200
constant TCP_MAXBURST (line 1399) | TCP_MAXBURST = 0x4
constant TCP_MAXHLEN (line 1400) | TCP_MAXHLEN = 0x3c
constant TCP_MAXOLEN (line 1401) | TCP_MAXOLEN = 0x28
constant TCP_MAXSEG (line 1402) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1403) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1404) | TCP_MAX_SACK = 0x4
constant TCP_MAX_WINSHIFT (line 1405) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1406) | TCP_MD5SIG = 0x10
constant TCP_MINMSS (line 1407) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1408) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1409) | TCP_NODELAY = 0x1
constant TCP_NOOPT (line 1410) | TCP_NOOPT = 0x8
constant TCP_NOPUSH (line 1411) | TCP_NOPUSH = 0x4
constant TCP_PCAP_IN (line 1412) | TCP_PCAP_IN = 0x1000
constant TCP_PCAP_OUT (line 1413) | TCP_PCAP_OUT = 0x800
constant TCP_VENDOR (line 1414) | TCP_VENDOR = 0x80000000
constant TCSAFLUSH (line 1415) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1416) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1417) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1418) | TIOCCONS = 0x80047462
constant TIOCDRAIN (line 1419) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1420) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1421) | TIOCEXT = 0x80047460
constant TIOCFLUSH (line 1422) | TIOCFLUSH = 0x80047410
constant TIOCGDRAINWAIT (line 1423) | TIOCGDRAINWAIT = 0x40047456
constant TIOCGETA (line 1424) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1425) | TIOCGETD = 0x4004741a
constant TIOCGPGRP (line 1426) | TIOCGPGRP = 0x40047477
constant TIOCGPTN (line 1427) | TIOCGPTN = 0x4004740f
constant TIOCGSID (line 1428) | TIOCGSID = 0x40047463
constant TIOCGWINSZ (line 1429) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1430) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1431) | TIOCMBIS = 0x8004746c
constant TIOCMGDTRWAIT (line 1432) | TIOCMGDTRWAIT = 0x4004745a
constant TIOCMGET (line 1433) | TIOCMGET = 0x4004746a
constant TIOCMSDTRWAIT (line 1434) | TIOCMSDTRWAIT = 0x8004745b
constant TIOCMSET (line 1435) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1436) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1437) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1438) | TIOCM_CTS = 0x20
constant TIOCM_DCD (line 1439) | TIOCM_DCD = 0x40
constant TIOCM_DSR (line 1440) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1441) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1442) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1443) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1444) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1445) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1446) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1447) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1448) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1449) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1450) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1451) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1452) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1453) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1454) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1455) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1456) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1457) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1458) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1459) | TIOCPKT_STOP = 0x4
constant TIOCPTMASTER (line 1460) | TIOCPTMASTER = 0x2000741c
constant TIOCSBRK (line 1461) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1462) | TIOCSCTTY = 0x20007461
constant TIOCSDRAINWAIT (line 1463) | TIOCSDRAINWAIT = 0x80047457
constant TIOCSDTR (line 1464) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1465) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1466) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1467) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1468) | TIOCSETD = 0x8004741b
constant TIOCSIG (line 1469) | TIOCSIG = 0x2004745f
constant TIOCSPGRP (line 1470) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1471) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1472) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1473) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1474) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1475) | TIOCSWINSZ = 0x80087467
constant TIOCTIMESTAMP (line 1476) | TIOCTIMESTAMP = 0x40107459
constant TIOCUCNTL (line 1477) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1478) | TOSTOP = 0x400000
constant VDISCARD (line 1479) | VDISCARD = 0xf
constant VDSUSP (line 1480) | VDSUSP = 0xb
constant VEOF (line 1481) | VEOF = 0x0
constant VEOL (line 1482) | VEOL = 0x1
constant VEOL2 (line 1483) | VEOL2 = 0x2
constant VERASE (line 1484) | VERASE = 0x3
constant VERASE2 (line 1485) | VERASE2 = 0x7
constant VINTR (line 1486) | VINTR = 0x8
constant VKILL (line 1487) | VKILL = 0x5
constant VLNEXT (line 1488) | VLNEXT = 0xe
constant VMIN (line 1489) | VMIN = 0x10
constant VQUIT (line 1490) | VQUIT = 0x9
constant VREPRINT (line 1491) | VREPRINT = 0x6
constant VSTART (line 1492) | VSTART = 0xc
constant VSTATUS (line 1493) | VSTATUS = 0x12
constant VSTOP (line 1494) | VSTOP = 0xd
constant VSUSP (line 1495) | VSUSP = 0xa
constant VTIME (line 1496) | VTIME = 0x11
constant VWERASE (line 1497) | VWERASE = 0x4
constant WCONTINUED (line 1498) | WCONTINUED = 0x4
constant WCOREFLAG (line 1499) | WCOREFLAG = 0x80
constant WEXITED (line 1500) | WEXITED = 0x10
constant WLINUXCLONE (line 1501) | WLINUXCLONE = 0x80000000
constant WNOHANG (line 1502) | WNOHANG = 0x1
constant WNOWAIT (line 1503) | WNOWAIT = 0x8
constant WSTOPPED (line 1504) | WSTOPPED = 0x2
constant WTRAPPED (line 1505) | WTRAPPED = 0x20
constant WUNTRACED (line 1506) | WUNTRACED = 0x2
constant E2BIG (line 1511) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1512) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1513) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1514) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1515) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1516) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1517) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1518) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1519) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1520) | EBADMSG = syscall.Errno(0x59)
constant EBADRPC (line 1521) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1522) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1523) | ECANCELED = syscall.Errno(0x55)
constant ECAPMODE (line 1524) | ECAPMODE = syscall.Errno(0x5e)
constant ECHILD (line 1525) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1526) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1527) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1528) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1529) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1530) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1531) | EDOM = syscall.Errno(0x21)
constant EDOOFUS (line 1532) | EDOOFUS = syscall.Errno(0x58)
constant EDQUOT (line 1533) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1534) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1535) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1536) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1537) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1538) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1539) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1540) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1541) | EILSEQ = syscall.Errno(0x56)
constant EINPROGRESS (line 1542) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1543) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1544) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1545) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1546) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1547) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1548) | ELAST = syscall.Errno(0x60)
constant ELOOP (line 1549) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1550) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1551) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1552) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1553) | EMULTIHOP = syscall.Errno(0x5a)
constant ENAMETOOLONG (line 1554) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1555) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1556) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1557) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1558) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1559) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1560) | ENOATTR = syscall.Errno(0x57)
constant ENOBUFS (line 1561) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1562) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1563) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1564) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1565) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1566) | ENOLINK = syscall.Errno(0x5b)
constant ENOMEM (line 1567) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1568) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1569) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1570) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1571) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1572) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCAPABLE (line 1573) | ENOTCAPABLE = syscall.Errno(0x5d)
constant ENOTCONN (line 1574) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1575) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1576) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1577) | ENOTRECOVERABLE = syscall.Errno(0x5f)
constant ENOTSOCK (line 1578) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1579) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 1580) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1581) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1582) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1583) | EOVERFLOW = syscall.Errno(0x54)
constant EOWNERDEAD (line 1584) | EOWNERDEAD = syscall.Errno(0x60)
constant EPERM (line 1585) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1586) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1587) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1588) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1589) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1590) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1591) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1592) | EPROTO = syscall.Errno(0x5c)
constant EPROTONOSUPPORT (line 1593) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1594) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1595) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1596) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1597) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1598) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1599) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1600) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1601) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1602) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1603) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1604) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1605) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1606) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1607) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1608) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1609) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1614) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1615) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1616) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1617) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1618) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1619) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1620) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1621) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1622) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1623) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1624) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1625) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1626) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1627) | SIGKILL = syscall.Signal(0x9)
constant SIGLIBRT (line 1628) | SIGLIBRT = syscall.Signal(0x21)
constant SIGLWP (line 1629) | SIGLWP = syscall.Signal(0x20)
constant SIGPIPE (line 1630) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1631) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1632) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1633) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1634) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1635) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1636) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1637) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1638) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1639) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1640) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1641) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1642) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1643) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1644) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1645) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1646) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1647) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1648) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_386.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x80041270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x40041271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x1261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x1265
constant BLKFRASET (line 183) | BLKFRASET = 0x1264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x1260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x80041272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x127b
constant BLKRAGET (line 187) | BLKRAGET = 0x1263
constant BLKRASET (line 188) | BLKRASET = 0x1262
constant BLKROGET (line 189) | BLKROGET = 0x125e
constant BLKROSET (line 190) | BLKROSET = 0x125d
constant BLKRRPART (line 191) | BLKRRPART = 0x125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x1267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x1266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x1268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x800
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x1000
constant FP_XSTATE_MAGIC2 (line 681) | FP_XSTATE_MAGIC2 = 0x46505845
constant FS_ENCRYPTION_MODE_ADIANTUM (line 682) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 683) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 684) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 685) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 686) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 687) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 688) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 689) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 691) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 692) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 693) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 694) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 695) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 696) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 697) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 698) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 699) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 700) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 701) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 702) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 703) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 704) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 705) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 706) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 707) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 708) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 709) | F_EXLCK = 0x4
constant F_GETFD (line 710) | F_GETFD = 0x1
constant F_GETFL (line 711) | F_GETFL = 0x3
constant F_GETLEASE (line 712) | F_GETLEASE = 0x401
constant F_GETLK (line 713) | F_GETLK = 0xc
constant F_GETLK64 (line 714) | F_GETLK64 = 0xc
constant F_GETOWN (line 715) | F_GETOWN = 0x9
constant F_GETOWN_EX (line 716) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 717) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 718) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 719) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 720) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 721) | F_GET_SEALS = 0x40a
constant F_LOCK (line 722) | F_LOCK = 0x1
constant F_NOTIFY (line 723) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 724) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 725) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 726) | F_OFD_SETLKW = 0x26
constant F_OK (line 727) | F_OK = 0x0
constant F_RDLCK (line 728) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 729) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 730) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 731) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 732) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 733) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 734) | F_SETFD = 0x2
constant F_SETFL (line 735) | F_SETFL = 0x4
constant F_SETLEASE (line 736) | F_SETLEASE = 0x400
constant F_SETLK (line 737) | F_SETLK = 0xd
constant F_SETLK64 (line 738) | F_SETLK64 = 0xd
constant F_SETLKW (line 739) | F_SETLKW = 0xe
constant F_SETLKW64 (line 740) | F_SETLKW64 = 0xe
constant F_SETOWN (line 741) | F_SETOWN = 0x8
constant F_SETOWN_EX (line 742) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 743) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 744) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 745) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 746) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 747) | F_SHLCK = 0x8
constant F_TEST (line 748) | F_TEST = 0x3
constant F_TLOCK (line 749) | F_TLOCK = 0x2
constant F_ULOCK (line 750) | F_ULOCK = 0x0
constant F_UNLCK (line 751) | F_UNLCK = 0x2
constant F_WRLCK (line 752) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 753) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 754) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 755) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 756) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 757) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 758) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 759) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 760) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 761) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 762) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 763) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 764) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 765) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 766) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 767) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 768) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 769) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 770) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 771) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 772) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 773) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 774) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 775) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 776) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 777) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 778) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 779) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 780) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 781) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 782) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 783) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 784) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 785) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 786) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 787) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 788) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 789) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 790) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 791) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 792) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 793) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 794) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 795) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 796) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 797) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 798) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 799) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 800) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 801) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 802) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 803) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 804) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 805) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 806) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 807) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 808) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 809) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 810) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 811) | HUPCL = 0x400
constant IBSHIFT (line 812) | IBSHIFT = 0x10
constant ICANON (line 813) | ICANON = 0x2
constant ICMPV6_FILTER (line 814) | ICMPV6_FILTER = 0x1
constant ICRNL (line 815) | ICRNL = 0x100
constant IEXTEN (line 816) | IEXTEN = 0x8000
constant IFA_F_DADFAILED (line 817) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 818) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 819) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 820) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 821) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 822) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 823) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 824) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 825) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 826) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 827) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 828) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 829) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 830) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 831) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 832) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 833) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 834) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 835) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 836) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 837) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 838) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 839) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 840) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 841) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 842) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 843) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 844) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 845) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 846) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 847) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 848) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 849) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 850) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 851) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 852) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 853) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 854) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 855) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 856) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 857) | IFF_SLAVE = 0x800
constant IFF_TAP (line 858) | IFF_TAP = 0x2
constant IFF_TUN (line 859) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 860) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 861) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 862) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 863) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 864) | IFNAMSIZ = 0x10
constant IGNBRK (line 865) | IGNBRK = 0x1
constant IGNCR (line 866) | IGNCR = 0x80
constant IGNPAR (line 867) | IGNPAR = 0x4
constant IMAXBEL (line 868) | IMAXBEL = 0x2000
constant INLCR (line 869) | INLCR = 0x40
constant INPCK (line 870) | INPCK = 0x10
constant IN_ACCESS (line 871) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 872) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 873) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 874) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 875) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 876) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 877) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 878) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 879) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 880) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 881) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 882) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 883) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 884) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 885) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 886) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 887) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 888) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 889) | IN_CREATE = 0x100
constant IN_DELETE (line 890) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 891) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 892) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 893) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 894) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 895) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 896) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 897) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 898) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 899) | IN_MODIFY = 0x2
constant IN_MOVE (line 900) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 901) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 902) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 903) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 904) | IN_NONBLOCK = 0x800
constant IN_ONESHOT (line 905) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 906) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 907) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 908) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 909) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 910) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9
constant IPPROTO_AH (line 911) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 912) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 913) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 914) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 915) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 916) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 917) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 918) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 919) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 920) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 921) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 922) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 923) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 924) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 925) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 926) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 927) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 928) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 929) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 930) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 931) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 932) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 933) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 934) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 935) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 936) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 937) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 938) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 939) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 940) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 941) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 942) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 943) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 944) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 945) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 946) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 947) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 948) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 949) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 950) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 951) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 952) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 953) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 954) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 955) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 956) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 957) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 958) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 959) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 960) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 961) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 962) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 963) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 964) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 965) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 966) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 967) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 968) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 969) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 970) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 971) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 972) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 973) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 974) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 975) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 976) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 977) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 978) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 979) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 980) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 981) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 982) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 983) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 984) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 985) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 986) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 987) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 988) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 989) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 990) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 991) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 992) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 993) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 994) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 995) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 996) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 997) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 998) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 999) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 1000) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1001) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1002) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1003) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1004) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1005) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1006) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1007) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1008) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1009) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1010) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1011) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1012) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1013) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1014) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1015) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1016) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1017) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1018) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1019) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1020) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1021) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1022) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1023) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1024) | IP_MF = 0x2000
constant IP_MINTTL (line 1025) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1026) | IP_MSFILTER = 0x29
constant IP_MSS (line 1027) | IP_MSS = 0x240
constant IP_MTU (line 1028) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1029) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1030) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1031) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1032) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1033) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1034) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1035) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1036) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1037) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1038) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1039) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1040) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1041) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1042) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1043) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1044) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1045) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1046) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1047) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1048) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1049) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1050) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1051) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1052) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1053) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1054) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1055) | IP_RETOPTS = 0x7
constant IP_RF (line 1056) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1057) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1058) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1059) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1060) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1061) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1062) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1063) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1064) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1065) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1066) | ISTRIP = 0x20
constant IUCLC (line 1067) | IUCLC = 0x200
constant IUTF8 (line 1068) | IUTF8 = 0x4000
constant IXANY (line 1069) | IXANY = 0x800
constant IXOFF (line 1070) | IXOFF = 0x1000
constant IXON (line 1071) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1072) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1073) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1074) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1075) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1076) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1077) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1078) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1079) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1080) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1081) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1082) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1083) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1084) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1085) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1086) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1087) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1088) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1089) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1090) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1091) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1092) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1093) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1094) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1095) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1096) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1097) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1098) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1099) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1100) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1101) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1102) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1103) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1104) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1105) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1106) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1107) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1108) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1109) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1110) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1111) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1112) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1113) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1114) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1115) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1116) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1117) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1118) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1119) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1120) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1121) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1122) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1123) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1124) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1125) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1126) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1127) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1128) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1129) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1130) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1131) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1132) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1133) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1134) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1135) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1136) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1137) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1138) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1139) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1140) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1141) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1142) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1143) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1144) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1145) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1146) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1148) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1149) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1150) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1151) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1152) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1153) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1154) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1155) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1156) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1157) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1158) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1159) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1160) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1161) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1162) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1163) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1164) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1165) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1166) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1167) | LOCK_EX = 0x2
constant LOCK_NB (line 1168) | LOCK_NB = 0x4
constant LOCK_SH (line 1169) | LOCK_SH = 0x1
constant LOCK_UN (line 1170) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1171) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1172) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1173) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1174) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1175) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1176) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1177) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1178) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1179) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1180) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1181) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1182) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1183) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1184) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1185) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1186) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1187) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1188) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1189) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1190) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1191) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1192) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1193) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1194) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1195) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1196) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1197) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1198) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1199) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1200) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1201) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1202) | MADV_WIPEONFORK = 0x12
constant MAP_32BIT (line 1203) | MAP_32BIT = 0x40
constant MAP_ANON (line 1204) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1205) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1206) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1207) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1208) | MAP_FILE = 0x0
constant MAP_FIXED (line 1209) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1210) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1211) | MAP_GROWSDOWN = 0x100
constant MAP_HUGETLB (line 1212) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1213) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1214) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1215) | MAP_LOCKED = 0x2000
constant MAP_NONBLOCK (line 1216) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1217) | MAP_NORESERVE = 0x4000
constant MAP_POPULATE (line 1218) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1219) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 1220) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1221) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1222) | MAP_STACK = 0x20000
constant MAP_SYNC (line 1223) | MAP_SYNC = 0x80000
constant MAP_TYPE (line 1224) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1225) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1226) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1227) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1228) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1229) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1230) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1231) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1232) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1233) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1234) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1235) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1236) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1237) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1238) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1239) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1240) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1241) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1242) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1243) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1244) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1245) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1246) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1247) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1248) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1249) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1250) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1251) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1252) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1253) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1254) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1255) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1256) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1257) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1258) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1259) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1260) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1261) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1262) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1263) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1264) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1265) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1266) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1267) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1268) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1269) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1270) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1271) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1272) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1273) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1274) | MSG_FIN = 0x200
constant MSG_MORE (line 1275) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1276) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1277) | MSG_OOB = 0x1
constant MSG_PEEK (line 1278) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1279) | MSG_PROXY = 0x10
constant MSG_RST (line 1280) | MSG_RST = 0x1000
constant MSG_SYN (line 1281) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1282) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1283) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1284) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1285) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1286) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1287) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1288) | MS_ASYNC = 0x1
constant MS_BIND (line 1289) | MS_BIND = 0x1000
constant MS_BORN (line 1290) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1291) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1292) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1293) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1294) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1295) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1296) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1297) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1298) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1299) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1300) | MS_NOATIME = 0x400
constant MS_NODEV (line 1301) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1302) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1303) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1304) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1305) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1306) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1307) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1308) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1309) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1310) | MS_RDONLY = 0x1
constant MS_REC (line 1311) | MS_REC = 0x4000
constant MS_RELATIME (line 1312) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1313) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1314) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1315) | MS_SHARED = 0x100000
constant MS_SILENT (line 1316) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1317) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1318) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1319) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1320) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1321) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1322) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1323) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1324) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1325) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1326) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1327) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1328) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1329) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1330) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1331) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1332) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1333) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1334) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1335) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1336) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1337) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1338) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1339) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1340) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1341) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1342) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1343) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1344) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1345) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1346) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1347) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1348) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1349) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1350) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1351) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1352) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1353) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1354) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1355) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1356) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1357) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1358) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1359) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1360) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1361) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1362) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1363) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1364) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1365) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1366) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1367) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1368) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1369) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1370) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1371) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1372) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1373) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1374) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1375) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1376) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1377) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1378) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1379) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1380) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1381) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1382) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1383) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1384) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1385) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1386) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1387) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1388) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1389) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1390) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1391) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1392) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1393) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1394) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1395) | NL0 = 0x0
constant NL1 (line 1396) | NL1 = 0x100
constant NLA_ALIGNTO (line 1397) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1398) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1399) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1400) | NLA_HDRLEN = 0x4
constant NLDLY (line 1401) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1402) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1403) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1404) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1405) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1406) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1407) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1408) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1409) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1410) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1411) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1412) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1413) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1414) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1415) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1416) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1417) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1418) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1419) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1420) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1421) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1422) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1423) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1424) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1425) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1426) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1427) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1428) | NS_GET_NSTYPE = 0xb703
constant NS_GET_OWNER_UID (line 1429) | NS_GET_OWNER_UID = 0xb704
constant NS_GET_PARENT (line 1430) | NS_GET_PARENT = 0xb702
constant NS_GET_USERNS (line 1431) | NS_GET_USERNS = 0xb701
constant OCFS2_SUPER_MAGIC (line 1432) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1433) | OCRNL = 0x8
constant OFDEL (line 1434) | OFDEL = 0x80
constant OFILL (line 1435) | OFILL = 0x40
constant OLCUC (line 1436) | OLCUC = 0x2
constant ONLCR (line 1437) | ONLCR = 0x4
constant ONLRET (line 1438) | ONLRET = 0x20
constant ONOCR (line 1439) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1440) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1441) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1442) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1443) | O_ACCMODE = 0x3
constant O_APPEND (line 1444) | O_APPEND = 0x400
constant O_ASYNC (line 1445) | O_ASYNC = 0x2000
constant O_CLOEXEC (line 1446) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1447) | O_CREAT = 0x40
constant O_DIRECT (line 1448) | O_DIRECT = 0x4000
constant O_DIRECTORY (line 1449) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1450) | O_DSYNC = 0x1000
constant O_EXCL (line 1451) | O_EXCL = 0x80
constant O_FSYNC (line 1452) | O_FSYNC = 0x101000
constant O_LARGEFILE (line 1453) | O_LARGEFILE = 0x8000
constant O_NDELAY (line 1454) | O_NDELAY = 0x800
constant O_NOATIME (line 1455) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1456) | O_NOCTTY = 0x100
constant O_NOFOLLOW (line 1457) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1458) | O_NONBLOCK = 0x800
constant O_PATH (line 1459) | O_PATH = 0x200000
constant O_RDONLY (line 1460) | O_RDONLY = 0x0
constant O_RDWR (line 1461) | O_RDWR = 0x2
constant O_RSYNC (line 1462) | O_RSYNC = 0x101000
constant O_SYNC (line 1463) | O_SYNC = 0x101000
constant O_TMPFILE (line 1464) | O_TMPFILE = 0x410000
constant O_TRUNC (line 1465) | O_TRUNC = 0x200
constant O_WRONLY (line 1466) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1467) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1468) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1469) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1470) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1471) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1472) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1473) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1474) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1475) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1476) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1477) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1478) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1479) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1480) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1481) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1482) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1483) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1484) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1485) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1486) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1487) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1488) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1489) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1490) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1491) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1492) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1493) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1494) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1495) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1496) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1497) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1498) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1499) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1500) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1501) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1502) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1503) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1504) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1505) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1506) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1507) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1508) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1509) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1510) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1511) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1512) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1513) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1514) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1515) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1516) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1517) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1518) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1519) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1520) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1521) | PARITY_NONE = 0x1
constant PARMRK (line 1522) | PARMRK = 0x8
constant PARODD (line 1523) | PARODD = 0x200
constant PENDIN (line 1524) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1525) | PERF_EVENT_IOC_DISABLE = 0x2401
constant PERF_EVENT_IOC_ENABLE (line 1526) | PERF_EVENT_IOC_ENABLE = 0x2400
constant PERF_EVENT_IOC_ID (line 1527) | PERF_EVENT_IOC_ID = 0x80042407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1528) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4004240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1529) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409
constant PERF_EVENT_IOC_PERIOD (line 1530) | PERF_EVENT_IOC_PERIOD = 0x40082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1531) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a
constant PERF_EVENT_IOC_REFRESH (line 1532) | PERF_EVENT_IOC_REFRESH = 0x2402
constant PERF_EVENT_IOC_RESET (line 1533) | PERF_EVENT_IOC_RESET = 0x2403
constant PERF_EVENT_IOC_SET_BPF (line 1534) | PERF_EVENT_IOC_SET_BPF = 0x40042408
constant PERF_EVENT_IOC_SET_FILTER (line 1535) | PERF_EVENT_IOC_SET_FILTER = 0x40042406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1536) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405
constant PIPEFS_MAGIC (line 1537) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1538) | PPPIOCATTACH = 0x4004743d
constant PPPIOCATTCHAN (line 1539) | PPPIOCATTCHAN = 0x40047438
constant PPPIOCCONNECT (line 1540) | PPPIOCCONNECT = 0x4004743a
constant PPPIOCDETACH (line 1541) | PPPIOCDETACH = 0x4004743c
constant PPPIOCDISCONN (line 1542) | PPPIOCDISCONN = 0x7439
constant PPPIOCGASYNCMAP (line 1543) | PPPIOCGASYNCMAP = 0x80047458
constant PPPIOCGCHAN (line 1544) | PPPIOCGCHAN = 0x80047437
constant PPPIOCGDEBUG (line 1545) | PPPIOCGDEBUG = 0x80047441
constant PPPIOCGFLAGS (line 1546) | PPPIOCGFLAGS = 0x8004745a
constant PPPIOCGIDLE (line 1547) | PPPIOCGIDLE = 0x8008743f
constant PPPIOCGL2TPSTATS (line 1548) | PPPIOCGL2TPSTATS = 0x80487436
constant PPPIOCGMRU (line 1549) | PPPIOCGMRU = 0x80047453
constant PPPIOCGNPMODE (line 1550) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1551) | PPPIOCGRASYNCMAP = 0x80047455
constant PPPIOCGUNIT (line 1552) | PPPIOCGUNIT = 0x80047456
constant PPPIOCGXASYNCMAP (line 1553) | PPPIOCGXASYNCMAP = 0x80207450
constant PPPIOCNEWUNIT (line 1554) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1555) | PPPIOCSACTIVE = 0x40087446
constant PPPIOCSASYNCMAP (line 1556) | PPPIOCSASYNCMAP = 0x40047457
constant PPPIOCSCOMPRESS (line 1557) | PPPIOCSCOMPRESS = 0x400c744d
constant PPPIOCSDEBUG (line 1558) | PPPIOCSDEBUG = 0x40047440
constant PPPIOCSFLAGS (line 1559) | PPPIOCSFLAGS = 0x40047459
constant PPPIOCSMAXCID (line 1560) | PPPIOCSMAXCID = 0x40047451
constant PPPIOCSMRRU (line 1561) | PPPIOCSMRRU = 0x4004743b
constant PPPIOCSMRU (line 1562) | PPPIOCSMRU = 0x40047452
constant PPPIOCSNPMODE (line 1563) | PPPIOCSNPMODE = 0x4008744b
constant PPPIOCSPASS (line 1564) | PPPIOCSPASS = 0x40087447
constant PPPIOCSRASYNCMAP (line 1565) | PPPIOCSRASYNCMAP = 0x40047454
constant PPPIOCSXASYNCMAP (line 1566) | PPPIOCSXASYNCMAP = 0x4020744f
constant PPPIOCXFERUNIT (line 1567) | PPPIOCXFERUNIT = 0x744e
constant PRIO_PGRP (line 1568) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1569) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1570) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1571) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1572) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1573) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1574) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1575) | PROT_NONE = 0x0
constant PROT_READ (line 1576) | PROT_READ = 0x1
constant PROT_WRITE (line 1577) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1578) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1579) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1580) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1581) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1582) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1583) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1584) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1585) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1586) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1587) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1588) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1589) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1590) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1591) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1592) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1593) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1594) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1595) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1596) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1597) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1598) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1599) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1600) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1601) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1602) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1603) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1604) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1605) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1606) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1607) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1608) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1609) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1610) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1611) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1612) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1613) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1614) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1615) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1616) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1617) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1618) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1619) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1620) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1621) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1622) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1623) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1624) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1625) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1626) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1627) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1628) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1629) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1630) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1631) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1632) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1633) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1634) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1635) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1636) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1637) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1638) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1639) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1640) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1641) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1642) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1643) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1644) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1645) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1646) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1647) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1648) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1649) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1650) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1651) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1652) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1653) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1654) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1655) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1656) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1657) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1658) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1659) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1660) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1661) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1662) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1663) | PR_SET_PTRACER_ANY = 0xffffffff
constant PR_SET_SECCOMP (line 1664) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1665) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1666) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1667) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1668) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1669) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1670) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1671) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1672) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1673) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1674) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1675) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1676) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1677) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1678) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1679) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1680) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1681) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1682) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1683) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1684) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1685) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1686) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1687) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1688) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1689) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1690) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1691) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1692) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1693) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1694) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1695) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1696) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1697) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1698) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1699) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1700) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1701) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1702) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1703) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1704) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1705) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1706) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1707) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETFPREGS (line 1708) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETFPXREGS (line 1709) | PTRACE_GETFPXREGS = 0x12
constant PTRACE_GETREGS (line 1710) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1711) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1712) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1713) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1714) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_GET_THREAD_AREA (line 1715) | PTRACE_GET_THREAD_AREA = 0x19
constant PTRACE_INTERRUPT (line 1716) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1717) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1718) | PTRACE_LISTEN = 0x4208
constant PTRACE_OLDSETOPTIONS (line 1719) | PTRACE_OLDSETOPTIONS = 0x15
constant PTRACE_O_EXITKILL (line 1720) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1721) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1722) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1723) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1724) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1725) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1726) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1727) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1728) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1729) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1730) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1731) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKSIGINFO (line 1732) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1733) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1734) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKUSR (line 1735) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1736) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKETEXT (line 1737) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKEUSR (line 1738) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1739) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1740) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1741) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETFPREGS (line 1742) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETFPXREGS (line 1743) | PTRACE_SETFPXREGS = 0x13
constant PTRACE_SETOPTIONS (line 1744) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1745) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1746) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1747) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1748) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SET_THREAD_AREA (line 1749) | PTRACE_SET_THREAD_AREA = 0x1a
constant PTRACE_SINGLEBLOCK (line 1750) | PTRACE_SINGLEBLOCK = 0x21
constant PTRACE_SINGLESTEP (line 1751) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1752) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1753) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1754) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1755) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1756) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_SYSEMU (line 1757) | PTRACE_SYSEMU = 0x1f
constant PTRACE_SYSEMU_SINGLESTEP (line 1758) | PTRACE_SYSEMU_SINGLESTEP = 0x20
constant PTRACE_TRACEME (line 1759) | PTRACE_TRACEME = 0x0
constant QNX4_SUPER_MAGIC (line 1760) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1761) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1762) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1763) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1764) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1765) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1766) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1767) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1768) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1769) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1770) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1771) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1772) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1773) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1774) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1775) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1776) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1777) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 1778) | RLIMIT_NPROC = 0x6
constant RLIMIT_RSS (line 1779) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1780) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1781) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1782) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1783) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1784) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1785) | RNDADDENTROPY = 0x40085203
constant RNDADDTOENTCNT (line 1786) | RNDADDTOENTCNT = 0x40045201
constant RNDCLEARPOOL (line 1787) | RNDCLEARPOOL = 0x5206
constant RNDGETENTCNT (line 1788) | RNDGETENTCNT = 0x80045200
constant RNDGETPOOL (line 1789) | RNDGETPOOL = 0x80085202
constant RNDRESEEDCRNG (line 1790) | RNDRESEEDCRNG = 0x5207
constant RNDZAPENTCNT (line 1791) | RNDZAPENTCNT = 0x5204
constant RTAX_ADVMSS (line 1792) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1793) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1794) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1795) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1796) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1797) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1798) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1799) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1800) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1801) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1802) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1803) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1804) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1805) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1806) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1807) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1808) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1809) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1810) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1811) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1812) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1813) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1814) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1815) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1816) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1817) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1818) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1819) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1820) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1821) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1822) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1823) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1824) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1825) | RTC_AIE_OFF = 0x7002
constant RTC_AIE_ON (line 1826) | RTC_AIE_ON = 0x7001
constant RTC_ALM_READ (line 1827) | RTC_ALM_READ = 0x80247008
constant RTC_ALM_SET (line 1828) | RTC_ALM_SET = 0x40247007
constant RTC_EPOCH_READ (line 1829) | RTC_EPOCH_READ = 0x8004700d
constant RTC_EPOCH_SET (line 1830) | RTC_EPOCH_SET = 0x4004700e
constant RTC_IRQF (line 1831) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1832) | RTC_IRQP_READ = 0x8004700b
constant RTC_IRQP_SET (line 1833) | RTC_IRQP_SET = 0x4004700c
constant RTC_MAX_FREQ (line 1834) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1835) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1836) | RTC_PIE_OFF = 0x7006
constant RTC_PIE_ON (line 1837) | RTC_PIE_ON = 0x7005
constant RTC_PLL_GET (line 1838) | RTC_PLL_GET = 0x801c7011
constant RTC_PLL_SET (line 1839) | RTC_PLL_SET = 0x401c7012
constant RTC_RD_TIME (line 1840) | RTC_RD_TIME = 0x80247009
constant RTC_SET_TIME (line 1841) | RTC_SET_TIME = 0x4024700a
constant RTC_UF (line 1842) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1843) | RTC_UIE_OFF = 0x7004
constant RTC_UIE_ON (line 1844) | RTC_UIE_ON = 0x7003
constant RTC_VL_CLR (line 1845) | RTC_VL_CLR = 0x7014
constant RTC_VL_READ (line 1846) | RTC_VL_READ = 0x80047013
constant RTC_WIE_OFF (line 1847) | RTC_WIE_OFF = 0x7010
constant RTC_WIE_ON (line 1848) | RTC_WIE_ON = 0x700f
constant RTC_WKALM_RD (line 1849) | RTC_WKALM_RD = 0x80287010
constant RTC_WKALM_SET (line 1850) | RTC_WKALM_SET = 0x4028700f
constant RTF_ADDRCLASSMASK (line 1851) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1852) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1853) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1854) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1855) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1856) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1857) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1858) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1859) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1860) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1861) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1862) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1863) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1864) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1865) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1866) | RTF_MSS = 0x40
constant RTF_MTU (line 1867) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1868) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1869) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1870) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1871) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1872) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1873) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1874) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1875) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1876) | RTF_STATIC = 0x400
constant RTF_THROW (line 1877) | RTF_THROW = 0x2000
constant RTF_UP (line 1878) | RTF_UP = 0x1
constant RTF_WINDOW (line 1879) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1880) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1881) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1882) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1883) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1884) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1885) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1886) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1887) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1888) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1889) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1890) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1891) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1892) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1893) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1894) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1895) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1896) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1897) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1898) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1899) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1900) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1901) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1902) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1903) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1904) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1905) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1906) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1907) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1908) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1909) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1910) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1911) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1912) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1913) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1914) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1915) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1916) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1917) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1918) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1919) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1920) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1921) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1922) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1923) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1924) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1925) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1926) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1927) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1928) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1929) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1930) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1931) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1932) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1933) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1934) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1935) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1936) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1937) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1938) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1939) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1940) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1941) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1942) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1943) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1944) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1945) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1946) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1947) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1948) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1949) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1950) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1951) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1952) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1953) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1954) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1955) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1956) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1957) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1958) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1959) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1960) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1961) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1962) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1963) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1964) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1965) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1966) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1967) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1968) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1969) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1970) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1971) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1972) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1973) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1974) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1975) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1976) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1977) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1978) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1979) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1980) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1981) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1982) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1983) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1984) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1985) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1986) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1987) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1988) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1989) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1990) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1991) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1992) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 1993) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 1994) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 1995) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 1996) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 1997) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 1998) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 1999) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2000) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2001) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2002) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2003) | SFD_NONBLOCK = 0x800
constant SHUT_RD (line 2004) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2005) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2006) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2007) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2008) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2009) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2010) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 2011) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2012) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2013) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2014) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2015) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2016) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2017) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2018) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2019) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2020) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2021) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2022) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2023) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2024) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2025) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2026) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2027) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2028) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2029) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2030) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2031) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2032) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2033) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2034) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2035) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2036) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2037) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2038) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2039) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2040) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2041) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2042) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2043) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2044) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2045) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2046) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2047) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2048) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2049) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2050) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2051) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2052) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2053) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2054) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2055) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2056) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2057) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2058) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2059) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2060) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2061) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2062) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2063) | SIOCGSTAMPNS_NEW = 0x80108907
constant SIOCGSTAMPNS_OLD (line 2064) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2065) | SIOCGSTAMP_NEW = 0x80108906
constant SIOCGSTAMP_OLD (line 2066) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2067) | SIOCINQ = 0x541b
constant SIOCOUTQ (line 2068) | SIOCOUTQ = 0x5411
constant SIOCOUTQNSD (line 2069) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2070) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2071) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2072) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2073) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2074) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2075) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2076) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2077) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2078) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2079) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2080) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2081) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2082) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2083) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2084) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2085) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2086) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2087) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2088) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2089) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2090) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2091) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2092) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2093) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2094) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2095) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2096) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2097) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2098) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2099) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2100) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2101) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2102) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2103) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2104) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2105) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2106) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2107) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2108) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2109) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2110) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2111) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2112) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2113) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2114) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2115) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2116) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2117) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2118) | SOCK_NONBLOCK = 0x800
constant SOCK_PACKET (line 2119) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2120) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2121) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2122) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2123) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2124) | SOL_AAL = 0x109
constant SOL_ALG (line 2125) | SOL_ALG = 0x117
constant SOL_ATM (line 2126) | SOL_ATM = 0x108
constant SOL_CAIF (line 2127) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2128) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2129) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2130) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2131) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2132) | SOL_IP = 0x0
constant SOL_IPV6 (line 2133) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2134) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2135) | SOL_IUCV = 0x115
constant SOL_KCM (line 2136) | SOL_KCM = 0x119
constant SOL_LLC (line 2137) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2138) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2139) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2140) | SOL_NFC = 0x118
constant SOL_PACKET (line 2141) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2142) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2143) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2144) | SOL_RAW = 0xff
constant SOL_RDS (line 2145) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2146) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2147) | SOL_SOCKET = 0x1
constant SOL_TCP (line 2148) | SOL_TCP = 0x6
constant SOL_TIPC (line 2149) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2150) | SOL_TLS = 0x11a
constant SOL_X25 (line 2151) | SOL_X25 = 0x106
constant SOL_XDP (line 2152) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2153) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2154) | SO_ACCEPTCONN = 0x1e
constant SO_ATTACH_BPF (line 2155) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2156) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2157) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2158) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2159) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2160) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2161) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2162) | SO_BROADCAST = 0x6
constant SO_BSDCOMPAT (line 2163) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2164) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2165) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2166) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2167) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2168) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2169) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2170) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2171) | SO_DOMAIN = 0x27
constant SO_DONTROUTE (line 2172) | SO_DONTROUTE = 0x5
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2173) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2174) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2175) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2176) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2177) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2178) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2179) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2180) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2181) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2182) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2183) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2184) | SO_ERROR = 0x4
constant SO_GET_FILTER (line 2185) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2186) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2187) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2188) | SO_KEEPALIVE = 0x9
constant SO_LINGER (line 2189) | SO_LINGER = 0xd
constant SO_LOCK_FILTER (line 2190) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2191) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2192) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2193) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2194) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2195) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2196) | SO_OOBINLINE = 0xa
constant SO_PASSCRED (line 2197) | SO_PASSCRED = 0x10
constant SO_PASSSEC (line 2198) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2199) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2200) | SO_PEERCRED = 0x11
constant SO_PEERGROUPS (line 2201) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2202) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2203) | SO_PEERSEC = 0x1f
constant SO_PRIORITY (line 2204) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2205) | SO_PROTOCOL = 0x26
constant SO_RCVBUF (line 2206) | SO_RCVBUF = 0x8
constant SO_RCVBUFFORCE (line 2207) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2208) | SO_RCVLOWAT = 0x12
constant SO_RCVTIMEO (line 2209) | SO_RCVTIMEO = 0x14
constant SO_RCVTIMEO_NEW (line 2210) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2211) | SO_RCVTIMEO_OLD = 0x14
constant SO_REUSEADDR (line 2212) | SO_REUSEADDR = 0x2
constant SO_REUSEPORT (line 2213) | SO_REUSEPORT = 0xf
constant SO_RXQ_OVFL (line 2214) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2215) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2216) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2217) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2218) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2219) | SO_SNDBUF = 0x7
constant SO_SNDBUFFORCE (line 2220) | SO_SNDBUFFORCE = 0x20
constant SO_SNDLOWAT (line 2221) | SO_SNDLOWAT = 0x13
constant SO_SNDTIMEO (line 2222) | SO_SNDTIMEO = 0x15
constant SO_SNDTIMEO_NEW (line 2223) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2224) | SO_SNDTIMEO_OLD = 0x15
constant SO_TIMESTAMP (line 2225) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2226) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2227) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2228) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2229) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2230) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2231) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2232) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2233) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2234) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2235) | SO_TYPE = 0x3
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2236) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2237) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2238) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2239) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2240) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2241) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2242) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2243) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2244) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2245) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2246) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2247) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2248) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2249) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2250) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2251) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2252) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2253) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2254) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2255) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2256) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2257) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2258) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2259) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2260) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2261) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2262) | STATX_CTIME = 0x80
constant STATX_GID (line 2263) | STATX_GID = 0x10
constant STATX_INO (line 2264) | STATX_INO = 0x100
constant STATX_MODE (line 2265) | STATX_MODE = 0x2
constant STATX_MTIME (line 2266) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2267) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2268) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2269) | STATX_TYPE = 0x1
constant STATX_UID (line 2270) | STATX_UID = 0x8
constant STATX__RESERVED (line 2271) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2272) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2273) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2274) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2275) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2276) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2277) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2278) | S_IEXEC = 0x40
constant S_IFBLK (line 2279) | S_IFBLK = 0x6000
constant S_IFCHR (line 2280) | S_IFCHR = 0x2000
constant S_IFDIR (line 2281) | S_IFDIR = 0x4000
constant S_IFIFO (line 2282) | S_IFIFO = 0x1000
constant S_IFLNK (line 2283) | S_IFLNK = 0xa000
constant S_IFMT (line 2284) | S_IFMT = 0xf000
constant S_IFREG (line 2285) | S_IFREG = 0x8000
constant S_IFSOCK (line 2286) | S_IFSOCK = 0xc000
constant S_IREAD (line 2287) | S_IREAD = 0x100
constant S_IRGRP (line 2288) | S_IRGRP = 0x20
constant S_IROTH (line 2289) | S_IROTH = 0x4
constant S_IRUSR (line 2290) | S_IRUSR = 0x100
constant S_IRWXG (line 2291) | S_IRWXG = 0x38
constant S_IRWXO (line 2292) | S_IRWXO = 0x7
constant S_IRWXU (line 2293) | S_IRWXU = 0x1c0
constant S_ISGID (line 2294) | S_ISGID = 0x400
constant S_ISUID (line 2295) | S_ISUID = 0x800
constant S_ISVTX (line 2296) | S_ISVTX = 0x200
constant S_IWGRP (line 2297) | S_IWGRP = 0x10
constant S_IWOTH (line 2298) | S_IWOTH = 0x2
constant S_IWRITE (line 2299) | S_IWRITE = 0x80
constant S_IWUSR (line 2300) | S_IWUSR = 0x80
constant S_IXGRP (line 2301) | S_IXGRP = 0x8
constant S_IXOTH (line 2302) | S_IXOTH = 0x1
constant S_IXUSR (line 2303) | S_IXUSR = 0x40
constant TAB0 (line 2304) | TAB0 = 0x0
constant TAB1 (line 2305) | TAB1 = 0x800
constant TAB2 (line 2306) | TAB2 = 0x1000
constant TAB3 (line 2307) | TAB3 = 0x1800
constant TABDLY (line 2308) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2309) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2310) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2311) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2312) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2313) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2314) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2315) | TCFLSH = 0x540b
constant TCGETA (line 2316) | TCGETA = 0x5405
constant TCGETS (line 2317) | TCGETS = 0x5401
constant TCGETS2 (line 2318) | TCGETS2 = 0x802c542a
constant TCGETX (line 2319) | TCGETX = 0x5432
constant TCIFLUSH (line 2320) | TCIFLUSH = 0x0
constant TCIOFF (line 2321) | TCIOFF = 0x2
constant TCIOFLUSH (line 2322) | TCIOFLUSH = 0x2
constant TCION (line 2323) | TCION = 0x3
constant TCOFLUSH (line 2324) | TCOFLUSH = 0x1
constant TCOOFF (line 2325) | TCOOFF = 0x0
constant TCOON (line 2326) | TCOON = 0x1
constant TCP_BPF_IW (line 2327) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2328) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2329) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2330) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2331) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2332) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2333) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2334) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2335) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2336) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2337) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2338) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2339) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2340) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2341) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2342) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2343) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2344) | TCP_INFO = 0xb
constant TCP_INQ (line 2345) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2346) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2347) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2348) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2349) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2350) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2351) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2352) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2353) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2354) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2355) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2356) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2357) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2358) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2359) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2360) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2361) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2362) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2363) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2364) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2365) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2366) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2367) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2368) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2369) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2370) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2371) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2372) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2373) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2374) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2375) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2376) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2377) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2378) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2379) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2380) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2381) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2382) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2383) | TCSAFLUSH = 0x2
constant TCSBRK (line 2384) | TCSBRK = 0x5409
constant TCSBRKP (line 2385) | TCSBRKP = 0x5425
constant TCSETA (line 2386) | TCSETA = 0x5406
constant TCSETAF (line 2387) | TCSETAF = 0x5408
constant TCSETAW (line 2388) | TCSETAW = 0x5407
constant TCSETS (line 2389) | TCSETS = 0x5402
constant TCSETS2 (line 2390) | TCSETS2 = 0x402c542b
constant TCSETSF (line 2391) | TCSETSF = 0x5404
constant TCSETSF2 (line 2392) | TCSETSF2 = 0x402c542d
constant TCSETSW (line 2393) | TCSETSW = 0x5403
constant TCSETSW2 (line 2394) | TCSETSW2 = 0x402c542c
constant TCSETX (line 2395) | TCSETX = 0x5433
constant TCSETXF (line 2396) | TCSETXF = 0x5434
constant TCSETXW (line 2397) | TCSETXW = 0x5435
constant TCXONC (line 2398) | TCXONC = 0x540a
constant TIMER_ABSTIME (line 2399) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2400) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2401) | TIOCCONS = 0x541d
constant TIOCEXCL (line 2402) | TIOCEXCL = 0x540c
constant TIOCGDEV (line 2403) | TIOCGDEV = 0x80045432
constant TIOCGETD (line 2404) | TIOCGETD = 0x5424
constant TIOCGEXCL (line 2405) | TIOCGEXCL = 0x80045440
constant TIOCGICOUNT (line 2406) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2407) | TIOCGISO7816 = 0x80285442
constant TIOCGLCKTRMIOS (line 2408) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGPGRP (line 2409) | TIOCGPGRP = 0x540f
constant TIOCGPKT (line 2410) | TIOCGPKT = 0x80045438
constant TIOCGPTLCK (line 2411) | TIOCGPTLCK = 0x80045439
constant TIOCGPTN (line 2412) | TIOCGPTN = 0x80045430
constant TIOCGPTPEER (line 2413) | TIOCGPTPEER = 0x5441
constant TIOCGRS485 (line 2414) | TIOCGRS485 = 0x542e
constant TIOCGSERIAL (line 2415) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2416) | TIOCGSID = 0x5429
constant TIOCGSOFTCAR (line 2417) | TIOCGSOFTCAR = 0x5419
constant TIOCGWINSZ (line 2418) | TIOCGWINSZ = 0x5413
constant TIOCINQ (line 2419) | TIOCINQ = 0x541b
constant TIOCLINUX (line 2420) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2421) | TIOCMBIC = 0x5417
constant TIOCMBIS (line 2422) | TIOCMBIS = 0x5416
constant TIOCMGET (line 2423) | TIOCMGET = 0x5415
constant TIOCMIWAIT (line 2424) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2425) | TIOCMSET = 0x5418
constant TIOCM_CAR (line 2426) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2427) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2428) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2429) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2430) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2431) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2432) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2433) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2434) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2435) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2436) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2437) | TIOCNOTTY = 0x5422
constant TIOCNXCL (line 2438) | TIOCNXCL = 0x540d
constant TIOCOUTQ (line 2439) | TIOCOUTQ = 0x5411
constant TIOCPKT (line 2440) | TIOCPKT = 0x5420
constant TIOCPKT_DATA (line 2441) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2442) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2443) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2444) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2445) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2446) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2447) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2448) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2449) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2450) | TIOCSCTTY = 0x540e
constant TIOCSERCONFIG (line 2451) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2452) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2453) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2454) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2455) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2456) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2457) | TIOCSERSWILD = 0x5455
constant TIOCSER_TEMT (line 2458) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2459) | TIOCSETD = 0x5423
constant TIOCSIG (line 2460) | TIOCSIG = 0x40045436
constant TIOCSISO7816 (line 2461) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2462) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSPGRP (line 2463) | TIOCSPGRP = 0x5410
constant TIOCSPTLCK (line 2464) | TIOCSPTLCK = 0x40045431
constant TIOCSRS485 (line 2465) | TIOCSRS485 = 0x542f
constant TIOCSSERIAL (line 2466) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2467) | TIOCSSOFTCAR = 0x541a
constant TIOCSTI (line 2468) | TIOCSTI = 0x5412
constant TIOCSWINSZ (line 2469) | TIOCSWINSZ = 0x5414
constant TIOCVHANGUP (line 2470) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2471) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2472) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2473) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2474) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2475) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2476) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2477) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2478) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2479) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2480) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2481) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2482) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2483) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2484) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2485) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2486) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2487) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2488) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2489) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2490) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2491) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2492) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2493) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2494) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2495) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2496) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2497) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2498) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2499) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2500) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2501) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2502) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2503) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2504) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2505) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2506) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2507) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2508) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2509) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2510) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2511) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2512) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2513) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2514) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2515) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2516) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2517) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2518) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2519) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2520) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2521) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2522) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2523) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2524) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2525) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2526) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2527) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2528) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2529) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2530) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2531) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2532) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2533) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2534) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2535) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2536) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2537) | TOSTOP = 0x100
constant TPACKET_ALIGNMENT (line 2538) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2539) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2540) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2541) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2542) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2543) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2544) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2545) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2546) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2547) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2548) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2549) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2550) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2551) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2552) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2553) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2554) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2555) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2556) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2557) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2558) | TUNATTACHFILTER = 0x400854d5
constant TUNDETACHFILTER (line 2559) | TUNDETACHFILTER = 0x400854d6
constant TUNGETDEVNETNS (line 2560) | TUNGETDEVNETNS = 0x54e3
constant TUNGETFEATURES (line 2561) | TUNGETFEATURES = 0x800454cf
constant TUNGETFILTER (line 2562) | TUNGETFILTER = 0x800854db
constant TUNGETIFF (line 2563) | TUNGETIFF = 0x800454d2
constant TUNGETSNDBUF (line 2564) | TUNGETSNDBUF = 0x800454d3
constant TUNGETVNETBE (line 2565) | TUNGETVNETBE = 0x800454df
constant TUNGETVNETHDRSZ (line 2566) | TUNGETVNETHDRSZ = 0x800454d7
constant TUNGETVNETLE (line 2567) | TUNGETVNETLE = 0x800454dd
constant TUNSETCARRIER (line 2568) | TUNSETCARRIER = 0x400454e2
constant TUNSETDEBUG (line 2569) | TUNSETDEBUG = 0x400454c9
constant TUNSETFILTEREBPF (line 2570) | TUNSETFILTEREBPF = 0x800454e1
constant TUNSETGROUP (line 2571) | TUNSETGROUP = 0x400454ce
constant TUNSETIFF (line 2572) | TUNSETIFF = 0x400454ca
constant TUNSETIFINDEX (line 2573) | TUNSETIFINDEX = 0x400454da
constant TUNSETLINK (line 2574) | TUNSETLINK = 0x400454cd
constant TUNSETNOCSUM (line 2575) | TUNSETNOCSUM = 0x400454c8
constant TUNSETOFFLOAD (line 2576) | TUNSETOFFLOAD = 0x400454d0
constant TUNSETOWNER (line 2577) | TUNSETOWNER = 0x400454cc
constant TUNSETPERSIST (line 2578) | TUNSETPERSIST = 0x400454cb
constant TUNSETQUEUE (line 2579) | TUNSETQUEUE = 0x400454d9
constant TUNSETSNDBUF (line 2580) | TUNSETSNDBUF = 0x400454d4
constant TUNSETSTEERINGEBPF (line 2581) | TUNSETSTEERINGEBPF = 0x800454e0
constant TUNSETTXFILTER (line 2582) | TUNSETTXFILTER = 0x400454d1
constant TUNSETVNETBE (line 2583) | TUNSETVNETBE = 0x400454de
constant TUNSETVNETHDRSZ (line 2584) | TUNSETVNETHDRSZ = 0x400454d8
constant TUNSETVNETLE (line 2585) | TUNSETVNETLE = 0x400454dc
constant UBI_IOCATT (line 2586) | UBI_IOCATT = 0x40186f40
constant UBI_IOCDET (line 2587) | UBI_IOCDET = 0x40046f41
constant UBI_IOCEBCH (line 2588) | UBI_IOCEBCH = 0x40044f02
constant UBI_IOCEBER (line 2589) | UBI_IOCEBER = 0x40044f01
constant UBI_IOCEBISMAP (line 2590) | UBI_IOCEBISMAP = 0x80044f05
constant UBI_IOCEBMAP (line 2591) | UBI_IOCEBMAP = 0x40084f03
constant UBI_IOCEBUNMAP (line 2592) | UBI_IOCEBUNMAP = 0x40044f04
constant UBI_IOCMKVOL (line 2593) | UBI_IOCMKVOL = 0x40986f00
constant UBI_IOCRMVOL (line 2594) | UBI_IOCRMVOL = 0x40046f01
constant UBI_IOCRNVOL (line 2595) | UBI_IOCRNVOL = 0x51106f03
constant UBI_IOCRPEB (line 2596) | UBI_IOCRPEB = 0x40046f04
constant UBI_IOCRSVOL (line 2597) | UBI_IOCRSVOL = 0x400c6f02
constant UBI_IOCSETVOLPROP (line 2598) | UBI_IOCSETVOLPROP = 0x40104f06
constant UBI_IOCSPEB (line 2599) | UBI_IOCSPEB = 0x40046f05
constant UBI_IOCVOLCRBLK (line 2600) | UBI_IOCVOLCRBLK = 0x40804f07
constant UBI_IOCVOLRMBLK (line 2601) | UBI_IOCVOLRMBLK = 0x4f08
constant UBI_IOCVOLUP (line 2602) | UBI_IOCVOLUP = 0x40084f00
constant UDF_SUPER_MAGIC (line 2603) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2604) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2605) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2606) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2607) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2608) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2609) | VDISCARD = 0xd
constant VEOF (line 2610) | VEOF = 0x4
constant VEOL (line 2611) | VEOL = 0xb
constant VEOL2 (line 2612) | VEOL2 = 0x10
constant VERASE (line 2613) | VERASE = 0x2
constant VINTR (line 2614) | VINTR = 0x0
constant VKILL (line 2615) | VKILL = 0x3
constant VLNEXT (line 2616) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2617) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2618) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2619) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2620) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2621) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2622) | VMIN = 0x6
constant VM_SOCKETS_INVALID_VERSION (line 2623) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2624) | VQUIT = 0x1
constant VREPRINT (line 2625) | VREPRINT = 0xc
constant VSTART (line 2626) | VSTART = 0x8
constant VSTOP (line 2627) | VSTOP = 0x9
constant VSUSP (line 2628) | VSUSP = 0xa
constant VSWTC (line 2629) | VSWTC = 0x7
constant VT0 (line 2630) | VT0 = 0x0
constant VT1 (line 2631) | VT1 = 0x4000
constant VTDLY (line 2632) | VTDLY = 0x4000
constant VTIME (line 2633) | VTIME = 0x5
constant VWERASE (line 2634) | VWERASE = 0xe
constant WALL (line 2635) | WALL = 0x40000000
constant WCLONE (line 2636) | WCLONE = 0x80000000
constant WCONTINUED (line 2637) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2638) | WDIOC_GETBOOTSTATUS = 0x80045702
constant WDIOC_GETPRETIMEOUT (line 2639) | WDIOC_GETPRETIMEOUT = 0x80045709
constant WDIOC_GETSTATUS (line 2640) | WDIOC_GETSTATUS = 0x80045701
constant WDIOC_GETSUPPORT (line 2641) | WDIOC_GETSUPPORT = 0x80285700
constant WDIOC_GETTEMP (line 2642) | WDIOC_GETTEMP = 0x80045703
constant WDIOC_GETTIMELEFT (line 2643) | WDIOC_GETTIMELEFT = 0x8004570a
constant WDIOC_GETTIMEOUT (line 2644) | WDIOC_GETTIMEOUT = 0x80045707
constant WDIOC_KEEPALIVE (line 2645) | WDIOC_KEEPALIVE = 0x80045705
constant WDIOC_SETOPTIONS (line 2646) | WDIOC_SETOPTIONS = 0x80045704
constant WDIOC_SETPRETIMEOUT (line 2647) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2648) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2649) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2650) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2651) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2652) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2653) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2654) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2655) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2656) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2657) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2658) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2659) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2660) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2661) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2662) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2663) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2664) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2665) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2666) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2667) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2668) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2669) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2670) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2671) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2672) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2673) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2674) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2675) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2676) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2677) | WIN_READ = 0x20
constant WIN_READDMA (line 2678) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2679) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2680) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2681) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2682) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2683) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2684) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2685) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2686) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2687) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2688) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2689) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2690) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2691) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2692) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2693) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2694) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2695) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2696) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2697) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2698) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2699) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2700) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2701) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2702) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2703) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2704) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2705) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2706) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2707) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2708) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2709) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2710) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2711) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2712) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2713) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2714) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2715) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2716) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2717) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2718) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2719) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2720) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2721) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2722) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2723) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2724) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2725) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2726) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2727) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2728) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2729) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2730) | WNOHANG = 0x1
constant WNOTHREAD (line 2731) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2732) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2733) | WORDSIZE = 0x20
constant WSTOPPED (line 2734) | WSTOPPED = 0x2
constant WUNTRACED (line 2735) | WUNTRACED = 0x2
constant X86_FXSR_MAGIC (line 2736) | X86_FXSR_MAGIC = 0x0
constant XATTR_CREATE (line 2737) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2738) | XATTR_REPLACE = 0x2
constant XCASE (line 2739) | XCASE = 0x4
constant XDP_COPY (line 2740) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2741) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2742) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2743) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2744) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2745) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2746) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2747) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2748) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2749) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2750) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2751) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2752) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2753) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2754) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2755) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2756) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2757) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2758) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2759) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2760) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2761) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2762) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2763) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2764) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2765) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2766) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2767) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2772) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2773) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2774) | EADDRINUSE = syscall.Errno(0x62)
constant EADDRNOTAVAIL (line 2775) | EADDRNOTAVAIL = syscall.Errno(0x63)
constant EADV (line 2776) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2777) | EAFNOSUPPORT = syscall.Errno(0x61)
constant EAGAIN (line 2778) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2779) | EALREADY = syscall.Errno(0x72)
constant EBADE (line 2780) | EBADE = syscall.Errno(0x34)
constant EBADF (line 2781) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2782) | EBADFD = syscall.Errno(0x4d)
constant EBADMSG (line 2783) | EBADMSG = syscall.Errno(0x4a)
constant EBADR (line 2784) | EBADR = syscall.Errno(0x35)
constant EBADRQC (line 2785) | EBADRQC = syscall.Errno(0x38)
constant EBADSLT (line 2786) | EBADSLT = syscall.Errno(0x39)
constant EBFONT (line 2787) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2788) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2789) | ECANCELED = syscall.Errno(0x7d)
constant ECHILD (line 2790) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2791) | ECHRNG = syscall.Errno(0x2c)
constant ECOMM (line 2792) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2793) | ECONNABORTED = syscall.Errno(0x67)
constant ECONNREFUSED (line 2794) | ECONNREFUSED = syscall.Errno(0x6f)
constant ECONNRESET (line 2795) | ECONNRESET = syscall.Errno(0x68)
constant EDEADLK (line 2796) | EDEADLK = syscall.Errno(0x23)
constant EDEADLOCK (line 2797) | EDEADLOCK = syscall.Errno(0x23)
constant EDESTADDRREQ (line 2798) | EDESTADDRREQ = syscall.Errno(0x59)
constant EDOM (line 2799) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2800) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2801) | EDQUOT = syscall.Errno(0x7a)
constant EEXIST (line 2802) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2803) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2804) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2805) | EHOSTDOWN = syscall.Errno(0x70)
constant EHOSTUNREACH (line 2806) | EHOSTUNREACH = syscall.Errno(0x71)
constant EHWPOISON (line 2807) | EHWPOISON = syscall.Errno(0x85)
constant EIDRM (line 2808) | EIDRM = syscall.Errno(0x2b)
constant EILSEQ (line 2809) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 2810) | EINPROGRESS = syscall.Errno(0x73)
constant EINTR (line 2811) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2812) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2813) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2814) | EISCONN = syscall.Errno(0x6a)
constant EISDIR (line 2815) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2816) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2817) | EKEYEXPIRED = syscall.Errno(0x7f)
constant EKEYREJECTED (line 2818) | EKEYREJECTED = syscall.Errno(0x81)
constant EKEYREVOKED (line 2819) | EKEYREVOKED = syscall.Errno(0x80)
constant EL2HLT (line 2820) | EL2HLT = syscall.Errno(0x33)
constant EL2NSYNC (line 2821) | EL2NSYNC = syscall.Errno(0x2d)
constant EL3HLT (line 2822) | EL3HLT = syscall.Errno(0x2e)
constant EL3RST (line 2823) | EL3RST = syscall.Errno(0x2f)
constant ELIBACC (line 2824) | ELIBACC = syscall.Errno(0x4f)
constant ELIBBAD (line 2825) | ELIBBAD = syscall.Errno(0x50)
constant ELIBEXEC (line 2826) | ELIBEXEC = syscall.Errno(0x53)
constant ELIBMAX (line 2827) | ELIBMAX = syscall.Errno(0x52)
constant ELIBSCN (line 2828) | ELIBSCN = syscall.Errno(0x51)
constant ELNRNG (line 2829) | ELNRNG = syscall.Errno(0x30)
constant ELOOP (line 2830) | ELOOP = syscall.Errno(0x28)
constant EMEDIUMTYPE (line 2831) | EMEDIUMTYPE = syscall.Errno(0x7c)
constant EMFILE (line 2832) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2833) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2834) | EMSGSIZE = syscall.Errno(0x5a)
constant EMULTIHOP (line 2835) | EMULTIHOP = syscall.Errno(0x48)
constant ENAMETOOLONG (line 2836) | ENAMETOOLONG = syscall.Errno(0x24)
constant ENAVAIL (line 2837) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2838) | ENETDOWN = syscall.Errno(0x64)
constant ENETRESET (line 2839) | ENETRESET = syscall.Errno(0x66)
constant ENETUNREACH (line 2840) | ENETUNREACH = syscall.Errno(0x65)
constant ENFILE (line 2841) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2842) | ENOANO = syscall.Errno(0x37)
constant ENOBUFS (line 2843) | ENOBUFS = syscall.Errno(0x69)
constant ENOCSI (line 2844) | ENOCSI = syscall.Errno(0x32)
constant ENODATA (line 2845) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2846) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2847) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2848) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2849) | ENOKEY = syscall.Errno(0x7e)
constant ENOLCK (line 2850) | ENOLCK = syscall.Errno(0x25)
constant ENOLINK (line 2851) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2852) | ENOMEDIUM = syscall.Errno(0x7b)
constant ENOMEM (line 2853) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2854) | ENOMSG = syscall.Errno(0x2a)
constant ENONET (line 2855) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2856) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2857) | ENOPROTOOPT = syscall.Errno(0x5c)
constant ENOSPC (line 2858) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2859) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2860) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2861) | ENOSYS = syscall.Errno(0x26)
constant ENOTBLK (line 2862) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2863) | ENOTCONN = syscall.Errno(0x6b)
constant ENOTDIR (line 2864) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2865) | ENOTEMPTY = syscall.Errno(0x27)
constant ENOTNAM (line 2866) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2867) | ENOTRECOVERABLE = syscall.Errno(0x83)
constant ENOTSOCK (line 2868) | ENOTSOCK = syscall.Errno(0x58)
constant ENOTSUP (line 2869) | ENOTSUP = syscall.Errno(0x5f)
constant ENOTTY (line 2870) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2871) | ENOTUNIQ = syscall.Errno(0x4c)
constant ENXIO (line 2872) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2873) | EOPNOTSUPP = syscall.Errno(0x5f)
constant EOVERFLOW (line 2874) | EOVERFLOW = syscall.Errno(0x4b)
constant EOWNERDEAD (line 2875) | EOWNERDEAD = syscall.Errno(0x82)
constant EPERM (line 2876) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2877) | EPFNOSUPPORT = syscall.Errno(0x60)
constant EPIPE (line 2878) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2879) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2880) | EPROTONOSUPPORT = syscall.Errno(0x5d)
constant EPROTOTYPE (line 2881) | EPROTOTYPE = syscall.Errno(0x5b)
constant ERANGE (line 2882) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2883) | EREMCHG = syscall.Errno(0x4e)
constant EREMOTE (line 2884) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2885) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2886) | ERESTART = syscall.Errno(0x55)
constant ERFKILL (line 2887) | ERFKILL = syscall.Errno(0x84)
constant EROFS (line 2888) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2889) | ESHUTDOWN = syscall.Errno(0x6c)
constant ESOCKTNOSUPPORT (line 2890) | ESOCKTNOSUPPORT = syscall.Errno(0x5e)
constant ESPIPE (line 2891) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2892) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2893) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2894) | ESTALE = syscall.Errno(0x74)
constant ESTRPIPE (line 2895) | ESTRPIPE = syscall.Errno(0x56)
constant ETIME (line 2896) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2897) | ETIMEDOUT = syscall.Errno(0x6e)
constant ETOOMANYREFS (line 2898) | ETOOMANYREFS = syscall.Errno(0x6d)
constant ETXTBSY (line 2899) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2900) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2901) | EUNATCH = syscall.Errno(0x31)
constant EUSERS (line 2902) | EUSERS = syscall.Errno(0x57)
constant EWOULDBLOCK (line 2903) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2904) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2905) | EXFULL = syscall.Errno(0x36)
constant SIGABRT (line 2910) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2911) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2912) | SIGBUS = syscall.Signal(0x7)
constant SIGCHLD (line 2913) | SIGCHLD = syscall.Signal(0x11)
constant SIGCLD (line 2914) | SIGCLD = syscall.Signal(0x11)
constant SIGCONT (line 2915) | SIGCONT = syscall.Signal(0x12)
constant SIGFPE (line 2916) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2917) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2918) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2919) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2920) | SIGIO = syscall.Signal(0x1d)
constant SIGIOT (line 2921) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2922) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2923) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2924) | SIGPOLL = syscall.Signal(0x1d)
constant SIGPROF (line 2925) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2926) | SIGPWR = syscall.Signal(0x1e)
constant SIGQUIT (line 2927) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2928) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTKFLT (line 2929) | SIGSTKFLT = syscall.Signal(0x10)
constant SIGSTOP (line 2930) | SIGSTOP = syscall.Signal(0x13)
constant SIGSYS (line 2931) | SIGSYS = syscall.Signal(0x1f)
constant SIGTERM (line 2932) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2933) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2934) | SIGTSTP = syscall.Signal(0x14)
constant SIGTTIN (line 2935) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2936) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2937) | SIGURG = syscall.Signal(0x17)
constant SIGUSR1 (line 2938) | SIGUSR1 = syscall.Signal(0xa)
constant SIGUSR2 (line 2939) | SIGUSR2 = syscall.Signal(0xc)
constant SIGVTALRM (line 2940) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 2941) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 2942) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 2943) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x80081270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x40081271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x1261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x1265
constant BLKFRASET (line 183) | BLKFRASET = 0x1264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x1260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x80081272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x127b
constant BLKRAGET (line 187) | BLKRAGET = 0x1263
constant BLKRASET (line 188) | BLKRASET = 0x1262
constant BLKROGET (line 189) | BLKROGET = 0x125e
constant BLKROSET (line 190) | BLKROSET = 0x125d
constant BLKRRPART (line 191) | BLKRRPART = 0x125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x1267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x1266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x1268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x800
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x1000
constant FP_XSTATE_MAGIC2 (line 681) | FP_XSTATE_MAGIC2 = 0x46505845
constant FS_ENCRYPTION_MODE_ADIANTUM (line 682) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 683) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 684) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 685) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 686) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 687) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 688) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 689) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 691) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 692) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 693) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 694) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 695) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 696) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 697) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 698) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 699) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 700) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 701) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 702) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 703) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 704) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 705) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 706) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 707) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 708) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 709) | F_EXLCK = 0x4
constant F_GETFD (line 710) | F_GETFD = 0x1
constant F_GETFL (line 711) | F_GETFL = 0x3
constant F_GETLEASE (line 712) | F_GETLEASE = 0x401
constant F_GETLK (line 713) | F_GETLK = 0x5
constant F_GETLK64 (line 714) | F_GETLK64 = 0x5
constant F_GETOWN (line 715) | F_GETOWN = 0x9
constant F_GETOWN_EX (line 716) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 717) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 718) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 719) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 720) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 721) | F_GET_SEALS = 0x40a
constant F_LOCK (line 722) | F_LOCK = 0x1
constant F_NOTIFY (line 723) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 724) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 725) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 726) | F_OFD_SETLKW = 0x26
constant F_OK (line 727) | F_OK = 0x0
constant F_RDLCK (line 728) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 729) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 730) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 731) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 732) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 733) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 734) | F_SETFD = 0x2
constant F_SETFL (line 735) | F_SETFL = 0x4
constant F_SETLEASE (line 736) | F_SETLEASE = 0x400
constant F_SETLK (line 737) | F_SETLK = 0x6
constant F_SETLK64 (line 738) | F_SETLK64 = 0x6
constant F_SETLKW (line 739) | F_SETLKW = 0x7
constant F_SETLKW64 (line 740) | F_SETLKW64 = 0x7
constant F_SETOWN (line 741) | F_SETOWN = 0x8
constant F_SETOWN_EX (line 742) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 743) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 744) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 745) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 746) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 747) | F_SHLCK = 0x8
constant F_TEST (line 748) | F_TEST = 0x3
constant F_TLOCK (line 749) | F_TLOCK = 0x2
constant F_ULOCK (line 750) | F_ULOCK = 0x0
constant F_UNLCK (line 751) | F_UNLCK = 0x2
constant F_WRLCK (line 752) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 753) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 754) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 755) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 756) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 757) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 758) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 759) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 760) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 761) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 762) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 763) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 764) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 765) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 766) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 767) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 768) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 769) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 770) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 771) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 772) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 773) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 774) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 775) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 776) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 777) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 778) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 779) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 780) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 781) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 782) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 783) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 784) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 785) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 786) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 787) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 788) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 789) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 790) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 791) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 792) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 793) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 794) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 795) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 796) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 797) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 798) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 799) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 800) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 801) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 802) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 803) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 804) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 805) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 806) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 807) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 808) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 809) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 810) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 811) | HUPCL = 0x400
constant IBSHIFT (line 812) | IBSHIFT = 0x10
constant ICANON (line 813) | ICANON = 0x2
constant ICMPV6_FILTER (line 814) | ICMPV6_FILTER = 0x1
constant ICRNL (line 815) | ICRNL = 0x100
constant IEXTEN (line 816) | IEXTEN = 0x8000
constant IFA_F_DADFAILED (line 817) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 818) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 819) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 820) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 821) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 822) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 823) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 824) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 825) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 826) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 827) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 828) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 829) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 830) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 831) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 832) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 833) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 834) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 835) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 836) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 837) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 838) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 839) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 840) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 841) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 842) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 843) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 844) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 845) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 846) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 847) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 848) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 849) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 850) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 851) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 852) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 853) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 854) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 855) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 856) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 857) | IFF_SLAVE = 0x800
constant IFF_TAP (line 858) | IFF_TAP = 0x2
constant IFF_TUN (line 859) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 860) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 861) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 862) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 863) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 864) | IFNAMSIZ = 0x10
constant IGNBRK (line 865) | IGNBRK = 0x1
constant IGNCR (line 866) | IGNCR = 0x80
constant IGNPAR (line 867) | IGNPAR = 0x4
constant IMAXBEL (line 868) | IMAXBEL = 0x2000
constant INLCR (line 869) | INLCR = 0x40
constant INPCK (line 870) | INPCK = 0x10
constant IN_ACCESS (line 871) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 872) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 873) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 874) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 875) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 876) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 877) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 878) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 879) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 880) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 881) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 882) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 883) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 884) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 885) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 886) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 887) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 888) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 889) | IN_CREATE = 0x100
constant IN_DELETE (line 890) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 891) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 892) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 893) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 894) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 895) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 896) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 897) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 898) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 899) | IN_MODIFY = 0x2
constant IN_MOVE (line 900) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 901) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 902) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 903) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 904) | IN_NONBLOCK = 0x800
constant IN_ONESHOT (line 905) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 906) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 907) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 908) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 909) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 910) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9
constant IPPROTO_AH (line 911) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 912) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 913) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 914) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 915) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 916) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 917) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 918) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 919) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 920) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 921) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 922) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 923) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 924) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 925) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 926) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 927) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 928) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 929) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 930) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 931) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 932) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 933) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 934) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 935) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 936) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 937) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 938) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 939) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 940) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 941) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 942) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 943) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 944) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 945) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 946) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 947) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 948) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 949) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 950) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 951) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 952) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 953) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 954) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 955) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 956) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 957) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 958) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 959) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 960) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 961) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 962) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 963) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 964) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 965) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 966) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 967) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 968) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 969) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 970) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 971) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 972) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 973) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 974) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 975) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 976) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 977) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 978) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 979) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 980) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 981) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 982) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 983) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 984) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 985) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 986) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 987) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 988) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 989) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 990) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 991) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 992) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 993) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 994) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 995) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 996) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 997) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 998) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 999) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 1000) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1001) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1002) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1003) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1004) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1005) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1006) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1007) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1008) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1009) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1010) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1011) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1012) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1013) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1014) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1015) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1016) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1017) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1018) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1019) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1020) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1021) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1022) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1023) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1024) | IP_MF = 0x2000
constant IP_MINTTL (line 1025) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1026) | IP_MSFILTER = 0x29
constant IP_MSS (line 1027) | IP_MSS = 0x240
constant IP_MTU (line 1028) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1029) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1030) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1031) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1032) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1033) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1034) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1035) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1036) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1037) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1038) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1039) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1040) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1041) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1042) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1043) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1044) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1045) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1046) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1047) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1048) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1049) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1050) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1051) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1052) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1053) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1054) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1055) | IP_RETOPTS = 0x7
constant IP_RF (line 1056) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1057) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1058) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1059) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1060) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1061) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1062) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1063) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1064) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1065) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1066) | ISTRIP = 0x20
constant IUCLC (line 1067) | IUCLC = 0x200
constant IUTF8 (line 1068) | IUTF8 = 0x4000
constant IXANY (line 1069) | IXANY = 0x800
constant IXOFF (line 1070) | IXOFF = 0x1000
constant IXON (line 1071) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1072) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1073) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1074) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1075) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1076) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1077) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1078) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1079) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1080) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1081) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1082) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1083) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1084) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1085) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1086) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1087) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1088) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1089) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1090) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1091) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1092) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1093) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1094) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1095) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1096) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1097) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1098) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1099) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1100) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1101) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1102) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1103) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1104) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1105) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1106) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1107) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1108) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1109) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1110) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1111) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1112) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1113) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1114) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1115) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1116) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1117) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1118) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1119) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1120) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1121) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1122) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1123) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1124) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1125) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1126) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1127) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1128) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1129) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1130) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1131) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1132) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1133) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1134) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1135) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1136) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1137) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1138) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1139) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1140) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1141) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1142) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1143) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1144) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1145) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1146) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1148) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1149) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1150) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1151) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1152) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1153) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1154) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1155) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1156) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1157) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1158) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1159) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1160) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1161) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1162) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1163) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1164) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1165) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1166) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1167) | LOCK_EX = 0x2
constant LOCK_NB (line 1168) | LOCK_NB = 0x4
constant LOCK_SH (line 1169) | LOCK_SH = 0x1
constant LOCK_UN (line 1170) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1171) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1172) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1173) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1174) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1175) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1176) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1177) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1178) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1179) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1180) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1181) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1182) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1183) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1184) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1185) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1186) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1187) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1188) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1189) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1190) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1191) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1192) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1193) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1194) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1195) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1196) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1197) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1198) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1199) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1200) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1201) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1202) | MADV_WIPEONFORK = 0x12
constant MAP_32BIT (line 1203) | MAP_32BIT = 0x40
constant MAP_ANON (line 1204) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1205) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1206) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1207) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1208) | MAP_FILE = 0x0
constant MAP_FIXED (line 1209) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1210) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1211) | MAP_GROWSDOWN = 0x100
constant MAP_HUGETLB (line 1212) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1213) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1214) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1215) | MAP_LOCKED = 0x2000
constant MAP_NONBLOCK (line 1216) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1217) | MAP_NORESERVE = 0x4000
constant MAP_POPULATE (line 1218) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1219) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 1220) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1221) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1222) | MAP_STACK = 0x20000
constant MAP_SYNC (line 1223) | MAP_SYNC = 0x80000
constant MAP_TYPE (line 1224) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1225) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1226) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1227) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1228) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1229) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1230) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1231) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1232) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1233) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1234) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1235) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1236) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1237) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1238) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1239) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1240) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1241) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1242) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1243) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1244) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1245) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1246) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1247) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1248) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1249) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1250) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1251) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1252) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1253) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1254) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1255) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1256) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1257) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1258) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1259) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1260) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1261) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1262) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1263) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1264) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1265) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1266) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1267) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1268) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1269) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1270) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1271) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1272) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1273) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1274) | MSG_FIN = 0x200
constant MSG_MORE (line 1275) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1276) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1277) | MSG_OOB = 0x1
constant MSG_PEEK (line 1278) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1279) | MSG_PROXY = 0x10
constant MSG_RST (line 1280) | MSG_RST = 0x1000
constant MSG_SYN (line 1281) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1282) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1283) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1284) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1285) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1286) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1287) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1288) | MS_ASYNC = 0x1
constant MS_BIND (line 1289) | MS_BIND = 0x1000
constant MS_BORN (line 1290) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1291) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1292) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1293) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1294) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1295) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1296) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1297) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1298) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1299) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1300) | MS_NOATIME = 0x400
constant MS_NODEV (line 1301) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1302) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1303) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1304) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1305) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1306) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1307) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1308) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1309) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1310) | MS_RDONLY = 0x1
constant MS_REC (line 1311) | MS_REC = 0x4000
constant MS_RELATIME (line 1312) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1313) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1314) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1315) | MS_SHARED = 0x100000
constant MS_SILENT (line 1316) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1317) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1318) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1319) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1320) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1321) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1322) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1323) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1324) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1325) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1326) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1327) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1328) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1329) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1330) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1331) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1332) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1333) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1334) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1335) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1336) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1337) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1338) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1339) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1340) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1341) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1342) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1343) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1344) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1345) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1346) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1347) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1348) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1349) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1350) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1351) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1352) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1353) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1354) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1355) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1356) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1357) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1358) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1359) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1360) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1361) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1362) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1363) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1364) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1365) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1366) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1367) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1368) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1369) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1370) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1371) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1372) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1373) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1374) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1375) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1376) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1377) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1378) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1379) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1380) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1381) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1382) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1383) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1384) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1385) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1386) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1387) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1388) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1389) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1390) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1391) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1392) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1393) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1394) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1395) | NL0 = 0x0
constant NL1 (line 1396) | NL1 = 0x100
constant NLA_ALIGNTO (line 1397) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1398) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1399) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1400) | NLA_HDRLEN = 0x4
constant NLDLY (line 1401) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1402) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1403) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1404) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1405) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1406) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1407) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1408) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1409) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1410) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1411) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1412) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1413) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1414) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1415) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1416) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1417) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1418) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1419) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1420) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1421) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1422) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1423) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1424) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1425) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1426) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1427) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1428) | NS_GET_NSTYPE = 0xb703
constant NS_GET_OWNER_UID (line 1429) | NS_GET_OWNER_UID = 0xb704
constant NS_GET_PARENT (line 1430) | NS_GET_PARENT = 0xb702
constant NS_GET_USERNS (line 1431) | NS_GET_USERNS = 0xb701
constant OCFS2_SUPER_MAGIC (line 1432) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1433) | OCRNL = 0x8
constant OFDEL (line 1434) | OFDEL = 0x80
constant OFILL (line 1435) | OFILL = 0x40
constant OLCUC (line 1436) | OLCUC = 0x2
constant ONLCR (line 1437) | ONLCR = 0x4
constant ONLRET (line 1438) | ONLRET = 0x20
constant ONOCR (line 1439) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1440) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1441) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1442) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1443) | O_ACCMODE = 0x3
constant O_APPEND (line 1444) | O_APPEND = 0x400
constant O_ASYNC (line 1445) | O_ASYNC = 0x2000
constant O_CLOEXEC (line 1446) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1447) | O_CREAT = 0x40
constant O_DIRECT (line 1448) | O_DIRECT = 0x4000
constant O_DIRECTORY (line 1449) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1450) | O_DSYNC = 0x1000
constant O_EXCL (line 1451) | O_EXCL = 0x80
constant O_FSYNC (line 1452) | O_FSYNC = 0x101000
constant O_LARGEFILE (line 1453) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1454) | O_NDELAY = 0x800
constant O_NOATIME (line 1455) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1456) | O_NOCTTY = 0x100
constant O_NOFOLLOW (line 1457) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1458) | O_NONBLOCK = 0x800
constant O_PATH (line 1459) | O_PATH = 0x200000
constant O_RDONLY (line 1460) | O_RDONLY = 0x0
constant O_RDWR (line 1461) | O_RDWR = 0x2
constant O_RSYNC (line 1462) | O_RSYNC = 0x101000
constant O_SYNC (line 1463) | O_SYNC = 0x101000
constant O_TMPFILE (line 1464) | O_TMPFILE = 0x410000
constant O_TRUNC (line 1465) | O_TRUNC = 0x200
constant O_WRONLY (line 1466) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1467) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1468) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1469) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1470) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1471) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1472) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1473) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1474) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1475) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1476) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1477) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1478) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1479) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1480) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1481) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1482) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1483) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1484) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1485) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1486) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1487) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1488) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1489) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1490) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1491) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1492) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1493) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1494) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1495) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1496) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1497) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1498) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1499) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1500) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1501) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1502) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1503) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1504) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1505) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1506) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1507) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1508) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1509) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1510) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1511) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1512) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1513) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1514) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1515) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1516) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1517) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1518) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1519) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1520) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1521) | PARITY_NONE = 0x1
constant PARMRK (line 1522) | PARMRK = 0x8
constant PARODD (line 1523) | PARODD = 0x200
constant PENDIN (line 1524) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1525) | PERF_EVENT_IOC_DISABLE = 0x2401
constant PERF_EVENT_IOC_ENABLE (line 1526) | PERF_EVENT_IOC_ENABLE = 0x2400
constant PERF_EVENT_IOC_ID (line 1527) | PERF_EVENT_IOC_ID = 0x80082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1528) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1529) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409
constant PERF_EVENT_IOC_PERIOD (line 1530) | PERF_EVENT_IOC_PERIOD = 0x40082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1531) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1532) | PERF_EVENT_IOC_REFRESH = 0x2402
constant PERF_EVENT_IOC_RESET (line 1533) | PERF_EVENT_IOC_RESET = 0x2403
constant PERF_EVENT_IOC_SET_BPF (line 1534) | PERF_EVENT_IOC_SET_BPF = 0x40042408
constant PERF_EVENT_IOC_SET_FILTER (line 1535) | PERF_EVENT_IOC_SET_FILTER = 0x40082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1536) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405
constant PIPEFS_MAGIC (line 1537) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1538) | PPPIOCATTACH = 0x4004743d
constant PPPIOCATTCHAN (line 1539) | PPPIOCATTCHAN = 0x40047438
constant PPPIOCCONNECT (line 1540) | PPPIOCCONNECT = 0x4004743a
constant PPPIOCDETACH (line 1541) | PPPIOCDETACH = 0x4004743c
constant PPPIOCDISCONN (line 1542) | PPPIOCDISCONN = 0x7439
constant PPPIOCGASYNCMAP (line 1543) | PPPIOCGASYNCMAP = 0x80047458
constant PPPIOCGCHAN (line 1544) | PPPIOCGCHAN = 0x80047437
constant PPPIOCGDEBUG (line 1545) | PPPIOCGDEBUG = 0x80047441
constant PPPIOCGFLAGS (line 1546) | PPPIOCGFLAGS = 0x8004745a
constant PPPIOCGIDLE (line 1547) | PPPIOCGIDLE = 0x8010743f
constant PPPIOCGL2TPSTATS (line 1548) | PPPIOCGL2TPSTATS = 0x80487436
constant PPPIOCGMRU (line 1549) | PPPIOCGMRU = 0x80047453
constant PPPIOCGNPMODE (line 1550) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1551) | PPPIOCGRASYNCMAP = 0x80047455
constant PPPIOCGUNIT (line 1552) | PPPIOCGUNIT = 0x80047456
constant PPPIOCGXASYNCMAP (line 1553) | PPPIOCGXASYNCMAP = 0x80207450
constant PPPIOCNEWUNIT (line 1554) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1555) | PPPIOCSACTIVE = 0x40107446
constant PPPIOCSASYNCMAP (line 1556) | PPPIOCSASYNCMAP = 0x40047457
constant PPPIOCSCOMPRESS (line 1557) | PPPIOCSCOMPRESS = 0x4010744d
constant PPPIOCSDEBUG (line 1558) | PPPIOCSDEBUG = 0x40047440
constant PPPIOCSFLAGS (line 1559) | PPPIOCSFLAGS = 0x40047459
constant PPPIOCSMAXCID (line 1560) | PPPIOCSMAXCID = 0x40047451
constant PPPIOCSMRRU (line 1561) | PPPIOCSMRRU = 0x4004743b
constant PPPIOCSMRU (line 1562) | PPPIOCSMRU = 0x40047452
constant PPPIOCSNPMODE (line 1563) | PPPIOCSNPMODE = 0x4008744b
constant PPPIOCSPASS (line 1564) | PPPIOCSPASS = 0x40107447
constant PPPIOCSRASYNCMAP (line 1565) | PPPIOCSRASYNCMAP = 0x40047454
constant PPPIOCSXASYNCMAP (line 1566) | PPPIOCSXASYNCMAP = 0x4020744f
constant PPPIOCXFERUNIT (line 1567) | PPPIOCXFERUNIT = 0x744e
constant PRIO_PGRP (line 1568) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1569) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1570) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1571) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1572) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1573) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1574) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1575) | PROT_NONE = 0x0
constant PROT_READ (line 1576) | PROT_READ = 0x1
constant PROT_WRITE (line 1577) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1578) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1579) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1580) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1581) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1582) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1583) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1584) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1585) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1586) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1587) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1588) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1589) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1590) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1591) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1592) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1593) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1594) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1595) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1596) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1597) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1598) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1599) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1600) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1601) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1602) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1603) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1604) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1605) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1606) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1607) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1608) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1609) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1610) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1611) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1612) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1613) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1614) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1615) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1616) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1617) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1618) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1619) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1620) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1621) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1622) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1623) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1624) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1625) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1626) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1627) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1628) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1629) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1630) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1631) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1632) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1633) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1634) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1635) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1636) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1637) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1638) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1639) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1640) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1641) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1642) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1643) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1644) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1645) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1646) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1647) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1648) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1649) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1650) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1651) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1652) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1653) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1654) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1655) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1656) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1657) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1658) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1659) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1660) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1661) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1662) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1663) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1664) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1665) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1666) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1667) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1668) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1669) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1670) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1671) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1672) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1673) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1674) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1675) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1676) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1677) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1678) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1679) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1680) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1681) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1682) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1683) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1684) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1685) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1686) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1687) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1688) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1689) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1690) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1691) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1692) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1693) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ARCH_PRCTL (line 1694) | PTRACE_ARCH_PRCTL = 0x1e
constant PTRACE_ATTACH (line 1695) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1696) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1697) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1698) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1699) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1700) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1701) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1702) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1703) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1704) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1705) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1706) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1707) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1708) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETFPREGS (line 1709) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETFPXREGS (line 1710) | PTRACE_GETFPXREGS = 0x12
constant PTRACE_GETREGS (line 1711) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1712) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1713) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1714) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1715) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_GET_THREAD_AREA (line 1716) | PTRACE_GET_THREAD_AREA = 0x19
constant PTRACE_INTERRUPT (line 1717) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1718) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1719) | PTRACE_LISTEN = 0x4208
constant PTRACE_OLDSETOPTIONS (line 1720) | PTRACE_OLDSETOPTIONS = 0x15
constant PTRACE_O_EXITKILL (line 1721) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1722) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1723) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1724) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1725) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1726) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1727) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1728) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1729) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1730) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1731) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1732) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKSIGINFO (line 1733) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1734) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1735) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKUSR (line 1736) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1737) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKETEXT (line 1738) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKEUSR (line 1739) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1740) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1741) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1742) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETFPREGS (line 1743) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETFPXREGS (line 1744) | PTRACE_SETFPXREGS = 0x13
constant PTRACE_SETOPTIONS (line 1745) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1746) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1747) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1748) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1749) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SET_THREAD_AREA (line 1750) | PTRACE_SET_THREAD_AREA = 0x1a
constant PTRACE_SINGLEBLOCK (line 1751) | PTRACE_SINGLEBLOCK = 0x21
constant PTRACE_SINGLESTEP (line 1752) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1753) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1754) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1755) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1756) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1757) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_SYSEMU (line 1758) | PTRACE_SYSEMU = 0x1f
constant PTRACE_SYSEMU_SINGLESTEP (line 1759) | PTRACE_SYSEMU_SINGLESTEP = 0x20
constant PTRACE_TRACEME (line 1760) | PTRACE_TRACEME = 0x0
constant QNX4_SUPER_MAGIC (line 1761) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1762) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1763) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1764) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1765) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1766) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1767) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1768) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1769) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1770) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1771) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1772) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1773) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1774) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1775) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1776) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1777) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1778) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 1779) | RLIMIT_NPROC = 0x6
constant RLIMIT_RSS (line 1780) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1781) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1782) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1783) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1784) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1785) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1786) | RNDADDENTROPY = 0x40085203
constant RNDADDTOENTCNT (line 1787) | RNDADDTOENTCNT = 0x40045201
constant RNDCLEARPOOL (line 1788) | RNDCLEARPOOL = 0x5206
constant RNDGETENTCNT (line 1789) | RNDGETENTCNT = 0x80045200
constant RNDGETPOOL (line 1790) | RNDGETPOOL = 0x80085202
constant RNDRESEEDCRNG (line 1791) | RNDRESEEDCRNG = 0x5207
constant RNDZAPENTCNT (line 1792) | RNDZAPENTCNT = 0x5204
constant RTAX_ADVMSS (line 1793) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1794) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1795) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1796) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1797) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1798) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1799) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1800) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1801) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1802) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1803) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1804) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1805) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1806) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1807) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1808) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1809) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1810) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1811) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1812) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1813) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1814) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1815) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1816) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1817) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1818) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1819) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1820) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1821) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1822) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1823) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1824) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1825) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1826) | RTC_AIE_OFF = 0x7002
constant RTC_AIE_ON (line 1827) | RTC_AIE_ON = 0x7001
constant RTC_ALM_READ (line 1828) | RTC_ALM_READ = 0x80247008
constant RTC_ALM_SET (line 1829) | RTC_ALM_SET = 0x40247007
constant RTC_EPOCH_READ (line 1830) | RTC_EPOCH_READ = 0x8008700d
constant RTC_EPOCH_SET (line 1831) | RTC_EPOCH_SET = 0x4008700e
constant RTC_IRQF (line 1832) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1833) | RTC_IRQP_READ = 0x8008700b
constant RTC_IRQP_SET (line 1834) | RTC_IRQP_SET = 0x4008700c
constant RTC_MAX_FREQ (line 1835) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1836) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1837) | RTC_PIE_OFF = 0x7006
constant RTC_PIE_ON (line 1838) | RTC_PIE_ON = 0x7005
constant RTC_PLL_GET (line 1839) | RTC_PLL_GET = 0x80207011
constant RTC_PLL_SET (line 1840) | RTC_PLL_SET = 0x40207012
constant RTC_RD_TIME (line 1841) | RTC_RD_TIME = 0x80247009
constant RTC_SET_TIME (line 1842) | RTC_SET_TIME = 0x4024700a
constant RTC_UF (line 1843) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1844) | RTC_UIE_OFF = 0x7004
constant RTC_UIE_ON (line 1845) | RTC_UIE_ON = 0x7003
constant RTC_VL_CLR (line 1846) | RTC_VL_CLR = 0x7014
constant RTC_VL_READ (line 1847) | RTC_VL_READ = 0x80047013
constant RTC_WIE_OFF (line 1848) | RTC_WIE_OFF = 0x7010
constant RTC_WIE_ON (line 1849) | RTC_WIE_ON = 0x700f
constant RTC_WKALM_RD (line 1850) | RTC_WKALM_RD = 0x80287010
constant RTC_WKALM_SET (line 1851) | RTC_WKALM_SET = 0x4028700f
constant RTF_ADDRCLASSMASK (line 1852) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1853) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1854) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1855) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1856) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1857) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1858) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1859) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1860) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1861) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1862) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1863) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1864) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1865) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1866) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1867) | RTF_MSS = 0x40
constant RTF_MTU (line 1868) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1869) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1870) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1871) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1872) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1873) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1874) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1875) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1876) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1877) | RTF_STATIC = 0x400
constant RTF_THROW (line 1878) | RTF_THROW = 0x2000
constant RTF_UP (line 1879) | RTF_UP = 0x1
constant RTF_WINDOW (line 1880) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1881) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1882) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1883) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1884) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1885) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1886) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1887) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1888) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1889) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1890) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1891) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1892) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1893) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1894) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1895) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1896) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1897) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1898) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1899) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1900) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1901) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1902) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1903) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1904) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1905) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1906) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1907) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1908) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1909) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1910) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1911) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1912) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1913) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1914) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1915) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1916) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1917) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1918) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1919) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1920) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1921) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1922) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1923) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1924) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1925) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1926) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1927) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1928) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1929) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1930) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1931) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1932) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1933) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1934) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1935) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1936) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1937) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1938) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1939) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1940) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1941) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1942) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1943) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1944) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1945) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1946) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1947) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1948) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1949) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1950) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1951) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1952) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1953) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1954) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1955) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1956) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1957) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1958) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1959) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1960) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1961) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1962) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1963) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1964) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1965) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1966) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1967) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1968) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1969) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1970) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1971) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1972) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1973) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1974) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1975) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1976) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1977) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1978) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1979) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1980) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1981) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1982) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1983) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1984) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1985) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1986) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1987) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1988) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1989) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1990) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1991) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1992) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1993) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 1994) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 1995) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 1996) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 1997) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 1998) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 1999) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 2000) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2001) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2002) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2003) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2004) | SFD_NONBLOCK = 0x800
constant SHUT_RD (line 2005) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2006) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2007) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2008) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2009) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2010) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2011) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 2012) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2013) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2014) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2015) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2016) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2017) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2018) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2019) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2020) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2021) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2022) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2023) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2024) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2025) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2026) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2027) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2028) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2029) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2030) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2031) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2032) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2033) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2034) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2035) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2036) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2037) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2038) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2039) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2040) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2041) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2042) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2043) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2044) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2045) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2046) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2047) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2048) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2049) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2050) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2051) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2052) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2053) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2054) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2055) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2056) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2057) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2058) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2059) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2060) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2061) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2062) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2063) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2064) | SIOCGSTAMPNS_NEW = 0x80108907
constant SIOCGSTAMPNS_OLD (line 2065) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2066) | SIOCGSTAMP_NEW = 0x80108906
constant SIOCGSTAMP_OLD (line 2067) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2068) | SIOCINQ = 0x541b
constant SIOCOUTQ (line 2069) | SIOCOUTQ = 0x5411
constant SIOCOUTQNSD (line 2070) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2071) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2072) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2073) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2074) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2075) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2076) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2077) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2078) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2079) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2080) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2081) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2082) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2083) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2084) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2085) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2086) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2087) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2088) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2089) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2090) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2091) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2092) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2093) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2094) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2095) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2096) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2097) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2098) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2099) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2100) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2101) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2102) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2103) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2104) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2105) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2106) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2107) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2108) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2109) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2110) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2111) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2112) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2113) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2114) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2115) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2116) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2117) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2118) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2119) | SOCK_NONBLOCK = 0x800
constant SOCK_PACKET (line 2120) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2121) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2122) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2123) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2124) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2125) | SOL_AAL = 0x109
constant SOL_ALG (line 2126) | SOL_ALG = 0x117
constant SOL_ATM (line 2127) | SOL_ATM = 0x108
constant SOL_CAIF (line 2128) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2129) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2130) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2131) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2132) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2133) | SOL_IP = 0x0
constant SOL_IPV6 (line 2134) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2135) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2136) | SOL_IUCV = 0x115
constant SOL_KCM (line 2137) | SOL_KCM = 0x119
constant SOL_LLC (line 2138) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2139) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2140) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2141) | SOL_NFC = 0x118
constant SOL_PACKET (line 2142) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2143) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2144) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2145) | SOL_RAW = 0xff
constant SOL_RDS (line 2146) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2147) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2148) | SOL_SOCKET = 0x1
constant SOL_TCP (line 2149) | SOL_TCP = 0x6
constant SOL_TIPC (line 2150) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2151) | SOL_TLS = 0x11a
constant SOL_X25 (line 2152) | SOL_X25 = 0x106
constant SOL_XDP (line 2153) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2154) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2155) | SO_ACCEPTCONN = 0x1e
constant SO_ATTACH_BPF (line 2156) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2157) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2158) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2159) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2160) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2161) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2162) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2163) | SO_BROADCAST = 0x6
constant SO_BSDCOMPAT (line 2164) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2165) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2166) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2167) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2168) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2169) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2170) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2171) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2172) | SO_DOMAIN = 0x27
constant SO_DONTROUTE (line 2173) | SO_DONTROUTE = 0x5
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2174) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2175) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2176) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2177) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2178) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2179) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2180) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2181) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2182) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2183) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2184) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2185) | SO_ERROR = 0x4
constant SO_GET_FILTER (line 2186) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2187) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2188) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2189) | SO_KEEPALIVE = 0x9
constant SO_LINGER (line 2190) | SO_LINGER = 0xd
constant SO_LOCK_FILTER (line 2191) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2192) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2193) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2194) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2195) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2196) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2197) | SO_OOBINLINE = 0xa
constant SO_PASSCRED (line 2198) | SO_PASSCRED = 0x10
constant SO_PASSSEC (line 2199) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2200) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2201) | SO_PEERCRED = 0x11
constant SO_PEERGROUPS (line 2202) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2203) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2204) | SO_PEERSEC = 0x1f
constant SO_PRIORITY (line 2205) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2206) | SO_PROTOCOL = 0x26
constant SO_RCVBUF (line 2207) | SO_RCVBUF = 0x8
constant SO_RCVBUFFORCE (line 2208) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2209) | SO_RCVLOWAT = 0x12
constant SO_RCVTIMEO (line 2210) | SO_RCVTIMEO = 0x14
constant SO_RCVTIMEO_NEW (line 2211) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2212) | SO_RCVTIMEO_OLD = 0x14
constant SO_REUSEADDR (line 2213) | SO_REUSEADDR = 0x2
constant SO_REUSEPORT (line 2214) | SO_REUSEPORT = 0xf
constant SO_RXQ_OVFL (line 2215) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2216) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2217) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2218) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2219) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2220) | SO_SNDBUF = 0x7
constant SO_SNDBUFFORCE (line 2221) | SO_SNDBUFFORCE = 0x20
constant SO_SNDLOWAT (line 2222) | SO_SNDLOWAT = 0x13
constant SO_SNDTIMEO (line 2223) | SO_SNDTIMEO = 0x15
constant SO_SNDTIMEO_NEW (line 2224) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2225) | SO_SNDTIMEO_OLD = 0x15
constant SO_TIMESTAMP (line 2226) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2227) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2228) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2229) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2230) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2231) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2232) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2233) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2234) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2235) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2236) | SO_TYPE = 0x3
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2237) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2238) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2239) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2240) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2241) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2242) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2243) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2244) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2245) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2246) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2247) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2248) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2249) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2250) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2251) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2252) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2253) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2254) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2255) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2256) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2257) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2258) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2259) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2260) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2261) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2262) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2263) | STATX_CTIME = 0x80
constant STATX_GID (line 2264) | STATX_GID = 0x10
constant STATX_INO (line 2265) | STATX_INO = 0x100
constant STATX_MODE (line 2266) | STATX_MODE = 0x2
constant STATX_MTIME (line 2267) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2268) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2269) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2270) | STATX_TYPE = 0x1
constant STATX_UID (line 2271) | STATX_UID = 0x8
constant STATX__RESERVED (line 2272) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2273) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2274) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2275) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2276) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2277) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2278) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2279) | S_IEXEC = 0x40
constant S_IFBLK (line 2280) | S_IFBLK = 0x6000
constant S_IFCHR (line 2281) | S_IFCHR = 0x2000
constant S_IFDIR (line 2282) | S_IFDIR = 0x4000
constant S_IFIFO (line 2283) | S_IFIFO = 0x1000
constant S_IFLNK (line 2284) | S_IFLNK = 0xa000
constant S_IFMT (line 2285) | S_IFMT = 0xf000
constant S_IFREG (line 2286) | S_IFREG = 0x8000
constant S_IFSOCK (line 2287) | S_IFSOCK = 0xc000
constant S_IREAD (line 2288) | S_IREAD = 0x100
constant S_IRGRP (line 2289) | S_IRGRP = 0x20
constant S_IROTH (line 2290) | S_IROTH = 0x4
constant S_IRUSR (line 2291) | S_IRUSR = 0x100
constant S_IRWXG (line 2292) | S_IRWXG = 0x38
constant S_IRWXO (line 2293) | S_IRWXO = 0x7
constant S_IRWXU (line 2294) | S_IRWXU = 0x1c0
constant S_ISGID (line 2295) | S_ISGID = 0x400
constant S_ISUID (line 2296) | S_ISUID = 0x800
constant S_ISVTX (line 2297) | S_ISVTX = 0x200
constant S_IWGRP (line 2298) | S_IWGRP = 0x10
constant S_IWOTH (line 2299) | S_IWOTH = 0x2
constant S_IWRITE (line 2300) | S_IWRITE = 0x80
constant S_IWUSR (line 2301) | S_IWUSR = 0x80
constant S_IXGRP (line 2302) | S_IXGRP = 0x8
constant S_IXOTH (line 2303) | S_IXOTH = 0x1
constant S_IXUSR (line 2304) | S_IXUSR = 0x40
constant TAB0 (line 2305) | TAB0 = 0x0
constant TAB1 (line 2306) | TAB1 = 0x800
constant TAB2 (line 2307) | TAB2 = 0x1000
constant TAB3 (line 2308) | TAB3 = 0x1800
constant TABDLY (line 2309) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2310) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2311) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2312) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2313) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2314) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2315) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2316) | TCFLSH = 0x540b
constant TCGETA (line 2317) | TCGETA = 0x5405
constant TCGETS (line 2318) | TCGETS = 0x5401
constant TCGETS2 (line 2319) | TCGETS2 = 0x802c542a
constant TCGETX (line 2320) | TCGETX = 0x5432
constant TCIFLUSH (line 2321) | TCIFLUSH = 0x0
constant TCIOFF (line 2322) | TCIOFF = 0x2
constant TCIOFLUSH (line 2323) | TCIOFLUSH = 0x2
constant TCION (line 2324) | TCION = 0x3
constant TCOFLUSH (line 2325) | TCOFLUSH = 0x1
constant TCOOFF (line 2326) | TCOOFF = 0x0
constant TCOON (line 2327) | TCOON = 0x1
constant TCP_BPF_IW (line 2328) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2329) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2330) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2331) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2332) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2333) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2334) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2335) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2336) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2337) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2338) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2339) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2340) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2341) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2342) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2343) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2344) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2345) | TCP_INFO = 0xb
constant TCP_INQ (line 2346) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2347) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2348) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2349) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2350) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2351) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2352) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2353) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2354) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2355) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2356) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2357) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2358) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2359) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2360) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2361) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2362) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2363) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2364) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2365) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2366) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2367) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2368) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2369) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2370) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2371) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2372) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2373) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2374) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2375) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2376) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2377) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2378) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2379) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2380) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2381) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2382) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2383) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2384) | TCSAFLUSH = 0x2
constant TCSBRK (line 2385) | TCSBRK = 0x5409
constant TCSBRKP (line 2386) | TCSBRKP = 0x5425
constant TCSETA (line 2387) | TCSETA = 0x5406
constant TCSETAF (line 2388) | TCSETAF = 0x5408
constant TCSETAW (line 2389) | TCSETAW = 0x5407
constant TCSETS (line 2390) | TCSETS = 0x5402
constant TCSETS2 (line 2391) | TCSETS2 = 0x402c542b
constant TCSETSF (line 2392) | TCSETSF = 0x5404
constant TCSETSF2 (line 2393) | TCSETSF2 = 0x402c542d
constant TCSETSW (line 2394) | TCSETSW = 0x5403
constant TCSETSW2 (line 2395) | TCSETSW2 = 0x402c542c
constant TCSETX (line 2396) | TCSETX = 0x5433
constant TCSETXF (line 2397) | TCSETXF = 0x5434
constant TCSETXW (line 2398) | TCSETXW = 0x5435
constant TCXONC (line 2399) | TCXONC = 0x540a
constant TIMER_ABSTIME (line 2400) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2401) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2402) | TIOCCONS = 0x541d
constant TIOCEXCL (line 2403) | TIOCEXCL = 0x540c
constant TIOCGDEV (line 2404) | TIOCGDEV = 0x80045432
constant TIOCGETD (line 2405) | TIOCGETD = 0x5424
constant TIOCGEXCL (line 2406) | TIOCGEXCL = 0x80045440
constant TIOCGICOUNT (line 2407) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2408) | TIOCGISO7816 = 0x80285442
constant TIOCGLCKTRMIOS (line 2409) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGPGRP (line 2410) | TIOCGPGRP = 0x540f
constant TIOCGPKT (line 2411) | TIOCGPKT = 0x80045438
constant TIOCGPTLCK (line 2412) | TIOCGPTLCK = 0x80045439
constant TIOCGPTN (line 2413) | TIOCGPTN = 0x80045430
constant TIOCGPTPEER (line 2414) | TIOCGPTPEER = 0x5441
constant TIOCGRS485 (line 2415) | TIOCGRS485 = 0x542e
constant TIOCGSERIAL (line 2416) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2417) | TIOCGSID = 0x5429
constant TIOCGSOFTCAR (line 2418) | TIOCGSOFTCAR = 0x5419
constant TIOCGWINSZ (line 2419) | TIOCGWINSZ = 0x5413
constant TIOCINQ (line 2420) | TIOCINQ = 0x541b
constant TIOCLINUX (line 2421) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2422) | TIOCMBIC = 0x5417
constant TIOCMBIS (line 2423) | TIOCMBIS = 0x5416
constant TIOCMGET (line 2424) | TIOCMGET = 0x5415
constant TIOCMIWAIT (line 2425) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2426) | TIOCMSET = 0x5418
constant TIOCM_CAR (line 2427) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2428) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2429) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2430) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2431) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2432) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2433) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2434) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2435) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2436) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2437) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2438) | TIOCNOTTY = 0x5422
constant TIOCNXCL (line 2439) | TIOCNXCL = 0x540d
constant TIOCOUTQ (line 2440) | TIOCOUTQ = 0x5411
constant TIOCPKT (line 2441) | TIOCPKT = 0x5420
constant TIOCPKT_DATA (line 2442) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2443) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2444) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2445) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2446) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2447) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2448) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2449) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2450) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2451) | TIOCSCTTY = 0x540e
constant TIOCSERCONFIG (line 2452) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2453) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2454) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2455) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2456) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2457) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2458) | TIOCSERSWILD = 0x5455
constant TIOCSER_TEMT (line 2459) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2460) | TIOCSETD = 0x5423
constant TIOCSIG (line 2461) | TIOCSIG = 0x40045436
constant TIOCSISO7816 (line 2462) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2463) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSPGRP (line 2464) | TIOCSPGRP = 0x5410
constant TIOCSPTLCK (line 2465) | TIOCSPTLCK = 0x40045431
constant TIOCSRS485 (line 2466) | TIOCSRS485 = 0x542f
constant TIOCSSERIAL (line 2467) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2468) | TIOCSSOFTCAR = 0x541a
constant TIOCSTI (line 2469) | TIOCSTI = 0x5412
constant TIOCSWINSZ (line 2470) | TIOCSWINSZ = 0x5414
constant TIOCVHANGUP (line 2471) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2472) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2473) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2474) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2475) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2476) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2477) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2478) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2479) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2480) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2481) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2482) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2483) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2484) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2485) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2486) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2487) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2488) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2489) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2490) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2491) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2492) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2493) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2494) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2495) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2496) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2497) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2498) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2499) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2500) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2501) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2502) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2503) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2504) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2505) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2506) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2507) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2508) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2509) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2510) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2511) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2512) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2513) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2514) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2515) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2516) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2517) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2518) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2519) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2520) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2521) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2522) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2523) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2524) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2525) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2526) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2527) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2528) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2529) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2530) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2531) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2532) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2533) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2534) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2535) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2536) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2537) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2538) | TOSTOP = 0x100
constant TPACKET_ALIGNMENT (line 2539) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2540) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2541) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2542) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2543) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2544) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2545) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2546) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2547) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2548) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2549) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2550) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2551) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2552) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2553) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2554) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2555) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2556) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2557) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2558) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2559) | TUNATTACHFILTER = 0x401054d5
constant TUNDETACHFILTER (line 2560) | TUNDETACHFILTER = 0x401054d6
constant TUNGETDEVNETNS (line 2561) | TUNGETDEVNETNS = 0x54e3
constant TUNGETFEATURES (line 2562) | TUNGETFEATURES = 0x800454cf
constant TUNGETFILTER (line 2563) | TUNGETFILTER = 0x801054db
constant TUNGETIFF (line 2564) | TUNGETIFF = 0x800454d2
constant TUNGETSNDBUF (line 2565) | TUNGETSNDBUF = 0x800454d3
constant TUNGETVNETBE (line 2566) | TUNGETVNETBE = 0x800454df
constant TUNGETVNETHDRSZ (line 2567) | TUNGETVNETHDRSZ = 0x800454d7
constant TUNGETVNETLE (line 2568) | TUNGETVNETLE = 0x800454dd
constant TUNSETCARRIER (line 2569) | TUNSETCARRIER = 0x400454e2
constant TUNSETDEBUG (line 2570) | TUNSETDEBUG = 0x400454c9
constant TUNSETFILTEREBPF (line 2571) | TUNSETFILTEREBPF = 0x800454e1
constant TUNSETGROUP (line 2572) | TUNSETGROUP = 0x400454ce
constant TUNSETIFF (line 2573) | TUNSETIFF = 0x400454ca
constant TUNSETIFINDEX (line 2574) | TUNSETIFINDEX = 0x400454da
constant TUNSETLINK (line 2575) | TUNSETLINK = 0x400454cd
constant TUNSETNOCSUM (line 2576) | TUNSETNOCSUM = 0x400454c8
constant TUNSETOFFLOAD (line 2577) | TUNSETOFFLOAD = 0x400454d0
constant TUNSETOWNER (line 2578) | TUNSETOWNER = 0x400454cc
constant TUNSETPERSIST (line 2579) | TUNSETPERSIST = 0x400454cb
constant TUNSETQUEUE (line 2580) | TUNSETQUEUE = 0x400454d9
constant TUNSETSNDBUF (line 2581) | TUNSETSNDBUF = 0x400454d4
constant TUNSETSTEERINGEBPF (line 2582) | TUNSETSTEERINGEBPF = 0x800454e0
constant TUNSETTXFILTER (line 2583) | TUNSETTXFILTER = 0x400454d1
constant TUNSETVNETBE (line 2584) | TUNSETVNETBE = 0x400454de
constant TUNSETVNETHDRSZ (line 2585) | TUNSETVNETHDRSZ = 0x400454d8
constant TUNSETVNETLE (line 2586) | TUNSETVNETLE = 0x400454dc
constant UBI_IOCATT (line 2587) | UBI_IOCATT = 0x40186f40
constant UBI_IOCDET (line 2588) | UBI_IOCDET = 0x40046f41
constant UBI_IOCEBCH (line 2589) | UBI_IOCEBCH = 0x40044f02
constant UBI_IOCEBER (line 2590) | UBI_IOCEBER = 0x40044f01
constant UBI_IOCEBISMAP (line 2591) | UBI_IOCEBISMAP = 0x80044f05
constant UBI_IOCEBMAP (line 2592) | UBI_IOCEBMAP = 0x40084f03
constant UBI_IOCEBUNMAP (line 2593) | UBI_IOCEBUNMAP = 0x40044f04
constant UBI_IOCMKVOL (line 2594) | UBI_IOCMKVOL = 0x40986f00
constant UBI_IOCRMVOL (line 2595) | UBI_IOCRMVOL = 0x40046f01
constant UBI_IOCRNVOL (line 2596) | UBI_IOCRNVOL = 0x51106f03
constant UBI_IOCRPEB (line 2597) | UBI_IOCRPEB = 0x40046f04
constant UBI_IOCRSVOL (line 2598) | UBI_IOCRSVOL = 0x400c6f02
constant UBI_IOCSETVOLPROP (line 2599) | UBI_IOCSETVOLPROP = 0x40104f06
constant UBI_IOCSPEB (line 2600) | UBI_IOCSPEB = 0x40046f05
constant UBI_IOCVOLCRBLK (line 2601) | UBI_IOCVOLCRBLK = 0x40804f07
constant UBI_IOCVOLRMBLK (line 2602) | UBI_IOCVOLRMBLK = 0x4f08
constant UBI_IOCVOLUP (line 2603) | UBI_IOCVOLUP = 0x40084f00
constant UDF_SUPER_MAGIC (line 2604) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2605) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2606) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2607) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2608) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2609) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2610) | VDISCARD = 0xd
constant VEOF (line 2611) | VEOF = 0x4
constant VEOL (line 2612) | VEOL = 0xb
constant VEOL2 (line 2613) | VEOL2 = 0x10
constant VERASE (line 2614) | VERASE = 0x2
constant VINTR (line 2615) | VINTR = 0x0
constant VKILL (line 2616) | VKILL = 0x3
constant VLNEXT (line 2617) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2618) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2619) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2620) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2621) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2622) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2623) | VMIN = 0x6
constant VM_SOCKETS_INVALID_VERSION (line 2624) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2625) | VQUIT = 0x1
constant VREPRINT (line 2626) | VREPRINT = 0xc
constant VSTART (line 2627) | VSTART = 0x8
constant VSTOP (line 2628) | VSTOP = 0x9
constant VSUSP (line 2629) | VSUSP = 0xa
constant VSWTC (line 2630) | VSWTC = 0x7
constant VT0 (line 2631) | VT0 = 0x0
constant VT1 (line 2632) | VT1 = 0x4000
constant VTDLY (line 2633) | VTDLY = 0x4000
constant VTIME (line 2634) | VTIME = 0x5
constant VWERASE (line 2635) | VWERASE = 0xe
constant WALL (line 2636) | WALL = 0x40000000
constant WCLONE (line 2637) | WCLONE = 0x80000000
constant WCONTINUED (line 2638) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2639) | WDIOC_GETBOOTSTATUS = 0x80045702
constant WDIOC_GETPRETIMEOUT (line 2640) | WDIOC_GETPRETIMEOUT = 0x80045709
constant WDIOC_GETSTATUS (line 2641) | WDIOC_GETSTATUS = 0x80045701
constant WDIOC_GETSUPPORT (line 2642) | WDIOC_GETSUPPORT = 0x80285700
constant WDIOC_GETTEMP (line 2643) | WDIOC_GETTEMP = 0x80045703
constant WDIOC_GETTIMELEFT (line 2644) | WDIOC_GETTIMELEFT = 0x8004570a
constant WDIOC_GETTIMEOUT (line 2645) | WDIOC_GETTIMEOUT = 0x80045707
constant WDIOC_KEEPALIVE (line 2646) | WDIOC_KEEPALIVE = 0x80045705
constant WDIOC_SETOPTIONS (line 2647) | WDIOC_SETOPTIONS = 0x80045704
constant WDIOC_SETPRETIMEOUT (line 2648) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2649) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2650) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2651) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2652) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2653) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2654) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2655) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2656) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2657) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2658) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2659) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2660) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2661) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2662) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2663) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2664) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2665) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2666) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2667) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2668) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2669) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2670) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2671) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2672) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2673) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2674) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2675) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2676) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2677) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2678) | WIN_READ = 0x20
constant WIN_READDMA (line 2679) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2680) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2681) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2682) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2683) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2684) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2685) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2686) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2687) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2688) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2689) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2690) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2691) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2692) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2693) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2694) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2695) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2696) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2697) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2698) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2699) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2700) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2701) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2702) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2703) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2704) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2705) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2706) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2707) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2708) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2709) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2710) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2711) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2712) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2713) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2714) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2715) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2716) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2717) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2718) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2719) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2720) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2721) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2722) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2723) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2724) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2725) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2726) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2727) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2728) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2729) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2730) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2731) | WNOHANG = 0x1
constant WNOTHREAD (line 2732) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2733) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2734) | WORDSIZE = 0x40
constant WSTOPPED (line 2735) | WSTOPPED = 0x2
constant WUNTRACED (line 2736) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2737) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2738) | XATTR_REPLACE = 0x2
constant XCASE (line 2739) | XCASE = 0x4
constant XDP_COPY (line 2740) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2741) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2742) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2743) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2744) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2745) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2746) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2747) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2748) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2749) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2750) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2751) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2752) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2753) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2754) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2755) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2756) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2757) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2758) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2759) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2760) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2761) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2762) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2763) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2764) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2765) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2766) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2767) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2772) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2773) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2774) | EADDRINUSE = syscall.Errno(0x62)
constant EADDRNOTAVAIL (line 2775) | EADDRNOTAVAIL = syscall.Errno(0x63)
constant EADV (line 2776) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2777) | EAFNOSUPPORT = syscall.Errno(0x61)
constant EAGAIN (line 2778) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2779) | EALREADY = syscall.Errno(0x72)
constant EBADE (line 2780) | EBADE = syscall.Errno(0x34)
constant EBADF (line 2781) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2782) | EBADFD = syscall.Errno(0x4d)
constant EBADMSG (line 2783) | EBADMSG = syscall.Errno(0x4a)
constant EBADR (line 2784) | EBADR = syscall.Errno(0x35)
constant EBADRQC (line 2785) | EBADRQC = syscall.Errno(0x38)
constant EBADSLT (line 2786) | EBADSLT = syscall.Errno(0x39)
constant EBFONT (line 2787) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2788) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2789) | ECANCELED = syscall.Errno(0x7d)
constant ECHILD (line 2790) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2791) | ECHRNG = syscall.Errno(0x2c)
constant ECOMM (line 2792) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2793) | ECONNABORTED = syscall.Errno(0x67)
constant ECONNREFUSED (line 2794) | ECONNREFUSED = syscall.Errno(0x6f)
constant ECONNRESET (line 2795) | ECONNRESET = syscall.Errno(0x68)
constant EDEADLK (line 2796) | EDEADLK = syscall.Errno(0x23)
constant EDEADLOCK (line 2797) | EDEADLOCK = syscall.Errno(0x23)
constant EDESTADDRREQ (line 2798) | EDESTADDRREQ = syscall.Errno(0x59)
constant EDOM (line 2799) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2800) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2801) | EDQUOT = syscall.Errno(0x7a)
constant EEXIST (line 2802) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2803) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2804) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2805) | EHOSTDOWN = syscall.Errno(0x70)
constant EHOSTUNREACH (line 2806) | EHOSTUNREACH = syscall.Errno(0x71)
constant EHWPOISON (line 2807) | EHWPOISON = syscall.Errno(0x85)
constant EIDRM (line 2808) | EIDRM = syscall.Errno(0x2b)
constant EILSEQ (line 2809) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 2810) | EINPROGRESS = syscall.Errno(0x73)
constant EINTR (line 2811) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2812) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2813) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2814) | EISCONN = syscall.Errno(0x6a)
constant EISDIR (line 2815) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2816) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2817) | EKEYEXPIRED = syscall.Errno(0x7f)
constant EKEYREJECTED (line 2818) | EKEYREJECTED = syscall.Errno(0x81)
constant EKEYREVOKED (line 2819) | EKEYREVOKED = syscall.Errno(0x80)
constant EL2HLT (line 2820) | EL2HLT = syscall.Errno(0x33)
constant EL2NSYNC (line 2821) | EL2NSYNC = syscall.Errno(0x2d)
constant EL3HLT (line 2822) | EL3HLT = syscall.Errno(0x2e)
constant EL3RST (line 2823) | EL3RST = syscall.Errno(0x2f)
constant ELIBACC (line 2824) | ELIBACC = syscall.Errno(0x4f)
constant ELIBBAD (line 2825) | ELIBBAD = syscall.Errno(0x50)
constant ELIBEXEC (line 2826) | ELIBEXEC = syscall.Errno(0x53)
constant ELIBMAX (line 2827) | ELIBMAX = syscall.Errno(0x52)
constant ELIBSCN (line 2828) | ELIBSCN = syscall.Errno(0x51)
constant ELNRNG (line 2829) | ELNRNG = syscall.Errno(0x30)
constant ELOOP (line 2830) | ELOOP = syscall.Errno(0x28)
constant EMEDIUMTYPE (line 2831) | EMEDIUMTYPE = syscall.Errno(0x7c)
constant EMFILE (line 2832) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2833) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2834) | EMSGSIZE = syscall.Errno(0x5a)
constant EMULTIHOP (line 2835) | EMULTIHOP = syscall.Errno(0x48)
constant ENAMETOOLONG (line 2836) | ENAMETOOLONG = syscall.Errno(0x24)
constant ENAVAIL (line 2837) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2838) | ENETDOWN = syscall.Errno(0x64)
constant ENETRESET (line 2839) | ENETRESET = syscall.Errno(0x66)
constant ENETUNREACH (line 2840) | ENETUNREACH = syscall.Errno(0x65)
constant ENFILE (line 2841) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2842) | ENOANO = syscall.Errno(0x37)
constant ENOBUFS (line 2843) | ENOBUFS = syscall.Errno(0x69)
constant ENOCSI (line 2844) | ENOCSI = syscall.Errno(0x32)
constant ENODATA (line 2845) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2846) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2847) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2848) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2849) | ENOKEY = syscall.Errno(0x7e)
constant ENOLCK (line 2850) | ENOLCK = syscall.Errno(0x25)
constant ENOLINK (line 2851) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2852) | ENOMEDIUM = syscall.Errno(0x7b)
constant ENOMEM (line 2853) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2854) | ENOMSG = syscall.Errno(0x2a)
constant ENONET (line 2855) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2856) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2857) | ENOPROTOOPT = syscall.Errno(0x5c)
constant ENOSPC (line 2858) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2859) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2860) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2861) | ENOSYS = syscall.Errno(0x26)
constant ENOTBLK (line 2862) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2863) | ENOTCONN = syscall.Errno(0x6b)
constant ENOTDIR (line 2864) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2865) | ENOTEMPTY = syscall.Errno(0x27)
constant ENOTNAM (line 2866) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2867) | ENOTRECOVERABLE = syscall.Errno(0x83)
constant ENOTSOCK (line 2868) | ENOTSOCK = syscall.Errno(0x58)
constant ENOTSUP (line 2869) | ENOTSUP = syscall.Errno(0x5f)
constant ENOTTY (line 2870) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2871) | ENOTUNIQ = syscall.Errno(0x4c)
constant ENXIO (line 2872) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2873) | EOPNOTSUPP = syscall.Errno(0x5f)
constant EOVERFLOW (line 2874) | EOVERFLOW = syscall.Errno(0x4b)
constant EOWNERDEAD (line 2875) | EOWNERDEAD = syscall.Errno(0x82)
constant EPERM (line 2876) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2877) | EPFNOSUPPORT = syscall.Errno(0x60)
constant EPIPE (line 2878) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2879) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2880) | EPROTONOSUPPORT = syscall.Errno(0x5d)
constant EPROTOTYPE (line 2881) | EPROTOTYPE = syscall.Errno(0x5b)
constant ERANGE (line 2882) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2883) | EREMCHG = syscall.Errno(0x4e)
constant EREMOTE (line 2884) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2885) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2886) | ERESTART = syscall.Errno(0x55)
constant ERFKILL (line 2887) | ERFKILL = syscall.Errno(0x84)
constant EROFS (line 2888) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2889) | ESHUTDOWN = syscall.Errno(0x6c)
constant ESOCKTNOSUPPORT (line 2890) | ESOCKTNOSUPPORT = syscall.Errno(0x5e)
constant ESPIPE (line 2891) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2892) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2893) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2894) | ESTALE = syscall.Errno(0x74)
constant ESTRPIPE (line 2895) | ESTRPIPE = syscall.Errno(0x56)
constant ETIME (line 2896) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2897) | ETIMEDOUT = syscall.Errno(0x6e)
constant ETOOMANYREFS (line 2898) | ETOOMANYREFS = syscall.Errno(0x6d)
constant ETXTBSY (line 2899) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2900) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2901) | EUNATCH = syscall.Errno(0x31)
constant EUSERS (line 2902) | EUSERS = syscall.Errno(0x57)
constant EWOULDBLOCK (line 2903) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2904) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2905) | EXFULL = syscall.Errno(0x36)
constant SIGABRT (line 2910) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2911) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2912) | SIGBUS = syscall.Signal(0x7)
constant SIGCHLD (line 2913) | SIGCHLD = syscall.Signal(0x11)
constant SIGCLD (line 2914) | SIGCLD = syscall.Signal(0x11)
constant SIGCONT (line 2915) | SIGCONT = syscall.Signal(0x12)
constant SIGFPE (line 2916) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2917) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2918) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2919) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2920) | SIGIO = syscall.Signal(0x1d)
constant SIGIOT (line 2921) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2922) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2923) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2924) | SIGPOLL = syscall.Signal(0x1d)
constant SIGPROF (line 2925) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2926) | SIGPWR = syscall.Signal(0x1e)
constant SIGQUIT (line 2927) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2928) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTKFLT (line 2929) | SIGSTKFLT = syscall.Signal(0x10)
constant SIGSTOP (line 2930) | SIGSTOP = syscall.Signal(0x13)
constant SIGSYS (line 2931) | SIGSYS = syscall.Signal(0x1f)
constant SIGTERM (line 2932) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2933) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2934) | SIGTSTP = syscall.Signal(0x14)
constant SIGTTIN (line 2935) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2936) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2937) | SIGURG = syscall.Signal(0x17)
constant SIGUSR1 (line 2938) | SIGUSR1 = syscall.Signal(0xa)
constant SIGUSR2 (line 2939) | SIGUSR2 = syscall.Signal(0xc)
constant SIGVTALRM (line 2940) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 2941) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 2942) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 2943) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x80041270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x40041271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x1261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x1265
constant BLKFRASET (line 183) | BLKFRASET = 0x1264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x1260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x80041272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x127b
constant BLKRAGET (line 187) | BLKRAGET = 0x1263
constant BLKRASET (line 188) | BLKRASET = 0x1262
constant BLKROGET (line 189) | BLKROGET = 0x125e
constant BLKROSET (line 190) | BLKROSET = 0x125d
constant BLKRRPART (line 191) | BLKRRPART = 0x125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x1267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x1266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x1268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x800
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x1000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0xc
constant F_GETLK64 (line 713) | F_GETLK64 = 0xc
constant F_GETOWN (line 714) | F_GETOWN = 0x9
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0xd
constant F_SETLK64 (line 737) | F_SETLK64 = 0xd
constant F_SETLKW (line 738) | F_SETLKW = 0xe
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0xe
constant F_SETOWN (line 740) | F_SETOWN = 0x8
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x400
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x2
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x8000
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x800
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x200
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x1000
constant IXON (line 1070) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x100
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x2000
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x4000
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 1218) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1219) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1220) | MAP_STACK = 0x20000
constant MAP_SYNC (line 1221) | MAP_SYNC = 0x80000
constant MAP_TYPE (line 1222) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1223) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1224) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1225) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1226) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1227) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1228) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1229) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1230) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1231) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1232) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1233) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1234) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1235) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1236) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1237) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1238) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1239) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1240) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1241) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1242) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1243) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1244) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1245) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1246) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1247) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1248) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1249) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1250) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1251) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1252) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1253) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1254) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1255) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1256) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1257) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1258) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1259) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1260) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1261) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1262) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1263) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1264) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1265) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1266) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1267) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1268) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1269) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1270) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1271) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1272) | MSG_FIN = 0x200
constant MSG_MORE (line 1273) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1274) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1275) | MSG_OOB = 0x1
constant MSG_PEEK (line 1276) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1277) | MSG_PROXY = 0x10
constant MSG_RST (line 1278) | MSG_RST = 0x1000
constant MSG_SYN (line 1279) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1280) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1281) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1282) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1283) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1284) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1285) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1286) | MS_ASYNC = 0x1
constant MS_BIND (line 1287) | MS_BIND = 0x1000
constant MS_BORN (line 1288) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1289) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1290) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1291) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1292) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1293) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1294) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1295) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1296) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1297) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1298) | MS_NOATIME = 0x400
constant MS_NODEV (line 1299) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1300) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1301) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1302) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1303) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1304) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1305) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1306) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1307) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1308) | MS_RDONLY = 0x1
constant MS_REC (line 1309) | MS_REC = 0x4000
constant MS_RELATIME (line 1310) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1311) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1312) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1313) | MS_SHARED = 0x100000
constant MS_SILENT (line 1314) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1315) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1316) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1317) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1318) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1319) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1320) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1321) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1322) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1323) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1324) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1325) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1326) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1327) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1328) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1329) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1330) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1331) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1332) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1333) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1334) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1335) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1336) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1337) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1338) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1339) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1340) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1341) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1342) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1343) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1344) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1345) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1346) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1347) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1348) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1349) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1350) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1351) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1352) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1353) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1354) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1355) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1356) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1357) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1358) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1359) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1360) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1361) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1362) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1363) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1364) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1365) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1366) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1367) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1368) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1369) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1370) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1371) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1372) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1373) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1374) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1375) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1376) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1377) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1378) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1379) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1380) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1381) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1382) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1383) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1384) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1385) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1386) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1387) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1388) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1389) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1390) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1391) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1392) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1393) | NL0 = 0x0
constant NL1 (line 1394) | NL1 = 0x100
constant NLA_ALIGNTO (line 1395) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1396) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1397) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1398) | NLA_HDRLEN = 0x4
constant NLDLY (line 1399) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1400) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1401) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1402) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1403) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1404) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1405) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1406) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1407) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1408) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1409) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1410) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1411) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1412) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1413) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1414) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1415) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1416) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1417) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1418) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1419) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1420) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1421) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1422) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1423) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1424) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1425) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1426) | NS_GET_NSTYPE = 0xb703
constant NS_GET_OWNER_UID (line 1427) | NS_GET_OWNER_UID = 0xb704
constant NS_GET_PARENT (line 1428) | NS_GET_PARENT = 0xb702
constant NS_GET_USERNS (line 1429) | NS_GET_USERNS = 0xb701
constant OCFS2_SUPER_MAGIC (line 1430) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1431) | OCRNL = 0x8
constant OFDEL (line 1432) | OFDEL = 0x80
constant OFILL (line 1433) | OFILL = 0x40
constant OLCUC (line 1434) | OLCUC = 0x2
constant ONLCR (line 1435) | ONLCR = 0x4
constant ONLRET (line 1436) | ONLRET = 0x20
constant ONOCR (line 1437) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1438) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1439) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1440) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1441) | O_ACCMODE = 0x3
constant O_APPEND (line 1442) | O_APPEND = 0x400
constant O_ASYNC (line 1443) | O_ASYNC = 0x2000
constant O_CLOEXEC (line 1444) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1445) | O_CREAT = 0x40
constant O_DIRECT (line 1446) | O_DIRECT = 0x10000
constant O_DIRECTORY (line 1447) | O_DIRECTORY = 0x4000
constant O_DSYNC (line 1448) | O_DSYNC = 0x1000
constant O_EXCL (line 1449) | O_EXCL = 0x80
constant O_FSYNC (line 1450) | O_FSYNC = 0x101000
constant O_LARGEFILE (line 1451) | O_LARGEFILE = 0x20000
constant O_NDELAY (line 1452) | O_NDELAY = 0x800
constant O_NOATIME (line 1453) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1454) | O_NOCTTY = 0x100
constant O_NOFOLLOW (line 1455) | O_NOFOLLOW = 0x8000
constant O_NONBLOCK (line 1456) | O_NONBLOCK = 0x800
constant O_PATH (line 1457) | O_PATH = 0x200000
constant O_RDONLY (line 1458) | O_RDONLY = 0x0
constant O_RDWR (line 1459) | O_RDWR = 0x2
constant O_RSYNC (line 1460) | O_RSYNC = 0x101000
constant O_SYNC (line 1461) | O_SYNC = 0x101000
constant O_TMPFILE (line 1462) | O_TMPFILE = 0x404000
constant O_TRUNC (line 1463) | O_TRUNC = 0x200
constant O_WRONLY (line 1464) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1465) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1466) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1467) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1468) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1469) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1470) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1471) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1472) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1473) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1474) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1475) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1476) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1477) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1478) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1479) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1480) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1481) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1482) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1483) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1484) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1485) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1486) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1487) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1488) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1489) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1490) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1491) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1492) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1493) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1494) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1495) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1496) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1497) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1498) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1499) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1500) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1501) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1502) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1503) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1504) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1505) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1506) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1507) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1508) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1509) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1510) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1511) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1512) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1513) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1514) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1515) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1516) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1517) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1518) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1519) | PARITY_NONE = 0x1
constant PARMRK (line 1520) | PARMRK = 0x8
constant PARODD (line 1521) | PARODD = 0x200
constant PENDIN (line 1522) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1523) | PERF_EVENT_IOC_DISABLE = 0x2401
constant PERF_EVENT_IOC_ENABLE (line 1524) | PERF_EVENT_IOC_ENABLE = 0x2400
constant PERF_EVENT_IOC_ID (line 1525) | PERF_EVENT_IOC_ID = 0x80042407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1526) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4004240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1527) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409
constant PERF_EVENT_IOC_PERIOD (line 1528) | PERF_EVENT_IOC_PERIOD = 0x40082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1529) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a
constant PERF_EVENT_IOC_REFRESH (line 1530) | PERF_EVENT_IOC_REFRESH = 0x2402
constant PERF_EVENT_IOC_RESET (line 1531) | PERF_EVENT_IOC_RESET = 0x2403
constant PERF_EVENT_IOC_SET_BPF (line 1532) | PERF_EVENT_IOC_SET_BPF = 0x40042408
constant PERF_EVENT_IOC_SET_FILTER (line 1533) | PERF_EVENT_IOC_SET_FILTER = 0x40042406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1534) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405
constant PIPEFS_MAGIC (line 1535) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1536) | PPPIOCATTACH = 0x4004743d
constant PPPIOCATTCHAN (line 1537) | PPPIOCATTCHAN = 0x40047438
constant PPPIOCCONNECT (line 1538) | PPPIOCCONNECT = 0x4004743a
constant PPPIOCDETACH (line 1539) | PPPIOCDETACH = 0x4004743c
constant PPPIOCDISCONN (line 1540) | PPPIOCDISCONN = 0x7439
constant PPPIOCGASYNCMAP (line 1541) | PPPIOCGASYNCMAP = 0x80047458
constant PPPIOCGCHAN (line 1542) | PPPIOCGCHAN = 0x80047437
constant PPPIOCGDEBUG (line 1543) | PPPIOCGDEBUG = 0x80047441
constant PPPIOCGFLAGS (line 1544) | PPPIOCGFLAGS = 0x8004745a
constant PPPIOCGIDLE (line 1545) | PPPIOCGIDLE = 0x8008743f
constant PPPIOCGL2TPSTATS (line 1546) | PPPIOCGL2TPSTATS = 0x80487436
constant PPPIOCGMRU (line 1547) | PPPIOCGMRU = 0x80047453
constant PPPIOCGNPMODE (line 1548) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1549) | PPPIOCGRASYNCMAP = 0x80047455
constant PPPIOCGUNIT (line 1550) | PPPIOCGUNIT = 0x80047456
constant PPPIOCGXASYNCMAP (line 1551) | PPPIOCGXASYNCMAP = 0x80207450
constant PPPIOCNEWUNIT (line 1552) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1553) | PPPIOCSACTIVE = 0x40087446
constant PPPIOCSASYNCMAP (line 1554) | PPPIOCSASYNCMAP = 0x40047457
constant PPPIOCSCOMPRESS (line 1555) | PPPIOCSCOMPRESS = 0x400c744d
constant PPPIOCSDEBUG (line 1556) | PPPIOCSDEBUG = 0x40047440
constant PPPIOCSFLAGS (line 1557) | PPPIOCSFLAGS = 0x40047459
constant PPPIOCSMAXCID (line 1558) | PPPIOCSMAXCID = 0x40047451
constant PPPIOCSMRRU (line 1559) | PPPIOCSMRRU = 0x4004743b
constant PPPIOCSMRU (line 1560) | PPPIOCSMRU = 0x40047452
constant PPPIOCSNPMODE (line 1561) | PPPIOCSNPMODE = 0x4008744b
constant PPPIOCSPASS (line 1562) | PPPIOCSPASS = 0x40087447
constant PPPIOCSRASYNCMAP (line 1563) | PPPIOCSRASYNCMAP = 0x40047454
constant PPPIOCSXASYNCMAP (line 1564) | PPPIOCSXASYNCMAP = 0x4020744f
constant PPPIOCXFERUNIT (line 1565) | PPPIOCXFERUNIT = 0x744e
constant PRIO_PGRP (line 1566) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1567) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1568) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1569) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1570) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1571) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1572) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1573) | PROT_NONE = 0x0
constant PROT_READ (line 1574) | PROT_READ = 0x1
constant PROT_WRITE (line 1575) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1576) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1577) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1578) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1579) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1580) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1581) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1582) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1583) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1584) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1585) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1586) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1587) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1588) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1589) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1590) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1591) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1592) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1593) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1594) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1595) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1596) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1597) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1598) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1599) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1600) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1601) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1602) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1603) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1604) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1605) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1606) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1607) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1608) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1609) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1610) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1611) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1612) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1613) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1614) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1615) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1616) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1617) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1618) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1619) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1620) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1621) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1622) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1623) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1624) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1625) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1626) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1627) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1628) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1629) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1630) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1631) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1632) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1633) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1634) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1635) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1636) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1637) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1638) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1639) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1640) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1641) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1642) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1643) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1644) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1645) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1646) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1647) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1648) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1649) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1650) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1651) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1652) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1653) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1654) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1655) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1656) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1657) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1658) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1659) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1660) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1661) | PR_SET_PTRACER_ANY = 0xffffffff
constant PR_SET_SECCOMP (line 1662) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1663) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1664) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1665) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1666) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1667) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1668) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1669) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1670) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1671) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1672) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1673) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1674) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1675) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1676) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1677) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1678) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1679) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1680) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1681) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1682) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1683) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1684) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1685) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1686) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1687) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1688) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1689) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1690) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1691) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1692) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1693) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1694) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1695) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1696) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1697) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1698) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1699) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1700) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1701) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1702) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1703) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1704) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETCRUNCHREGS (line 1705) | PTRACE_GETCRUNCHREGS = 0x19
constant PTRACE_GETEVENTMSG (line 1706) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETFDPIC (line 1707) | PTRACE_GETFDPIC = 0x1f
constant PTRACE_GETFDPIC_EXEC (line 1708) | PTRACE_GETFDPIC_EXEC = 0x0
constant PTRACE_GETFDPIC_INTERP (line 1709) | PTRACE_GETFDPIC_INTERP = 0x1
constant PTRACE_GETFPREGS (line 1710) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETHBPREGS (line 1711) | PTRACE_GETHBPREGS = 0x1d
constant PTRACE_GETREGS (line 1712) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1713) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1714) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1715) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GETVFPREGS (line 1716) | PTRACE_GETVFPREGS = 0x1b
constant PTRACE_GETWMMXREGS (line 1717) | PTRACE_GETWMMXREGS = 0x12
constant PTRACE_GET_SYSCALL_INFO (line 1718) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_GET_THREAD_AREA (line 1719) | PTRACE_GET_THREAD_AREA = 0x16
constant PTRACE_INTERRUPT (line 1720) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1721) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1722) | PTRACE_LISTEN = 0x4208
constant PTRACE_OLDSETOPTIONS (line 1723) | PTRACE_OLDSETOPTIONS = 0x15
constant PTRACE_O_EXITKILL (line 1724) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1725) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1726) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1727) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1728) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1729) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1730) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1731) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1732) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1733) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1734) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1735) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKSIGINFO (line 1736) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1737) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1738) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKUSR (line 1739) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1740) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKETEXT (line 1741) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKEUSR (line 1742) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1743) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1744) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1745) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETCRUNCHREGS (line 1746) | PTRACE_SETCRUNCHREGS = 0x1a
constant PTRACE_SETFPREGS (line 1747) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETHBPREGS (line 1748) | PTRACE_SETHBPREGS = 0x1e
constant PTRACE_SETOPTIONS (line 1749) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1750) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1751) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1752) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1753) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SETVFPREGS (line 1754) | PTRACE_SETVFPREGS = 0x1c
constant PTRACE_SETWMMXREGS (line 1755) | PTRACE_SETWMMXREGS = 0x13
constant PTRACE_SET_SYSCALL (line 1756) | PTRACE_SET_SYSCALL = 0x17
constant PTRACE_SINGLESTEP (line 1757) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1758) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1759) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1760) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1761) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1762) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_TRACEME (line 1763) | PTRACE_TRACEME = 0x0
constant PT_DATA_ADDR (line 1764) | PT_DATA_ADDR = 0x10004
constant PT_TEXT_ADDR (line 1765) | PT_TEXT_ADDR = 0x10000
constant PT_TEXT_END_ADDR (line 1766) | PT_TEXT_END_ADDR = 0x10008
constant QNX4_SUPER_MAGIC (line 1767) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1768) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1769) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1770) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1771) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1772) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1773) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1774) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1775) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1776) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1777) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1778) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1779) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1780) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1781) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1782) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1783) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1784) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 1785) | RLIMIT_NPROC = 0x6
constant RLIMIT_RSS (line 1786) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1787) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1788) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1789) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1790) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1791) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1792) | RNDADDENTROPY = 0x40085203
constant RNDADDTOENTCNT (line 1793) | RNDADDTOENTCNT = 0x40045201
constant RNDCLEARPOOL (line 1794) | RNDCLEARPOOL = 0x5206
constant RNDGETENTCNT (line 1795) | RNDGETENTCNT = 0x80045200
constant RNDGETPOOL (line 1796) | RNDGETPOOL = 0x80085202
constant RNDRESEEDCRNG (line 1797) | RNDRESEEDCRNG = 0x5207
constant RNDZAPENTCNT (line 1798) | RNDZAPENTCNT = 0x5204
constant RTAX_ADVMSS (line 1799) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1800) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1801) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1802) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1803) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1804) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1805) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1806) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1807) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1808) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1809) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1810) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1811) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1812) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1813) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1814) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1815) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1816) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1817) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1818) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1819) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1820) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1821) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1822) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1823) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1824) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1825) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1826) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1827) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1828) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1829) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1830) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1831) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1832) | RTC_AIE_OFF = 0x7002
constant RTC_AIE_ON (line 1833) | RTC_AIE_ON = 0x7001
constant RTC_ALM_READ (line 1834) | RTC_ALM_READ = 0x80247008
constant RTC_ALM_SET (line 1835) | RTC_ALM_SET = 0x40247007
constant RTC_EPOCH_READ (line 1836) | RTC_EPOCH_READ = 0x8004700d
constant RTC_EPOCH_SET (line 1837) | RTC_EPOCH_SET = 0x4004700e
constant RTC_IRQF (line 1838) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1839) | RTC_IRQP_READ = 0x8004700b
constant RTC_IRQP_SET (line 1840) | RTC_IRQP_SET = 0x4004700c
constant RTC_MAX_FREQ (line 1841) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1842) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1843) | RTC_PIE_OFF = 0x7006
constant RTC_PIE_ON (line 1844) | RTC_PIE_ON = 0x7005
constant RTC_PLL_GET (line 1845) | RTC_PLL_GET = 0x801c7011
constant RTC_PLL_SET (line 1846) | RTC_PLL_SET = 0x401c7012
constant RTC_RD_TIME (line 1847) | RTC_RD_TIME = 0x80247009
constant RTC_SET_TIME (line 1848) | RTC_SET_TIME = 0x4024700a
constant RTC_UF (line 1849) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1850) | RTC_UIE_OFF = 0x7004
constant RTC_UIE_ON (line 1851) | RTC_UIE_ON = 0x7003
constant RTC_VL_CLR (line 1852) | RTC_VL_CLR = 0x7014
constant RTC_VL_READ (line 1853) | RTC_VL_READ = 0x80047013
constant RTC_WIE_OFF (line 1854) | RTC_WIE_OFF = 0x7010
constant RTC_WIE_ON (line 1855) | RTC_WIE_ON = 0x700f
constant RTC_WKALM_RD (line 1856) | RTC_WKALM_RD = 0x80287010
constant RTC_WKALM_SET (line 1857) | RTC_WKALM_SET = 0x4028700f
constant RTF_ADDRCLASSMASK (line 1858) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1859) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1860) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1861) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1862) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1863) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1864) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1865) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1866) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1867) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1868) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1869) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1870) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1871) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1872) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1873) | RTF_MSS = 0x40
constant RTF_MTU (line 1874) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1875) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1876) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1877) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1878) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1879) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1880) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1881) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1882) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1883) | RTF_STATIC = 0x400
constant RTF_THROW (line 1884) | RTF_THROW = 0x2000
constant RTF_UP (line 1885) | RTF_UP = 0x1
constant RTF_WINDOW (line 1886) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1887) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1888) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1889) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1890) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1891) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1892) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1893) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1894) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1895) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1896) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1897) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1898) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1899) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1900) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1901) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1902) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1903) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1904) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1905) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1906) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1907) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1908) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1909) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1910) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1911) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1912) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1913) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1914) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1915) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1916) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1917) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1918) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1919) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1920) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1921) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1922) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1923) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1924) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1925) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1926) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1927) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1928) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1929) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1930) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1931) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1932) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1933) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1934) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1935) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1936) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1937) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1938) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1939) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1940) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1941) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1942) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1943) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1944) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1945) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1946) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1947) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1948) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1949) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1950) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1951) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1952) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1953) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1954) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1955) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1956) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1957) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1958) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1959) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1960) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1961) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1962) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1963) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1964) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1965) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1966) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1967) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1968) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1969) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1970) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1971) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1972) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1973) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1974) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1975) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1976) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1977) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1978) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1979) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1980) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1981) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1982) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1983) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1984) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1985) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1986) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1987) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1988) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1989) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1990) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1991) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1992) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1993) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1994) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1995) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1996) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1997) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1998) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1999) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 2000) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 2001) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 2002) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 2003) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 2004) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 2005) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 2006) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2007) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2008) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2009) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2010) | SFD_NONBLOCK = 0x800
constant SHUT_RD (line 2011) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2012) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2013) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2014) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2015) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2016) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2017) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 2018) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2019) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2020) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2021) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2022) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2023) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2024) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2025) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2026) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2027) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2028) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2029) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2030) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2031) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2032) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2033) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2034) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2035) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2036) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2037) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2038) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2039) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2040) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2041) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2042) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2043) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2044) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2045) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2046) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2047) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2048) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2049) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2050) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2051) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2052) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2053) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2054) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2055) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2056) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2057) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2058) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2059) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2060) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2061) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2062) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2063) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2064) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2065) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2066) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2067) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2068) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2069) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2070) | SIOCGSTAMPNS_NEW = 0x80108907
constant SIOCGSTAMPNS_OLD (line 2071) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2072) | SIOCGSTAMP_NEW = 0x80108906
constant SIOCGSTAMP_OLD (line 2073) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2074) | SIOCINQ = 0x541b
constant SIOCOUTQ (line 2075) | SIOCOUTQ = 0x5411
constant SIOCOUTQNSD (line 2076) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2077) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2078) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2079) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2080) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2081) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2082) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2083) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2084) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2085) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2086) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2087) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2088) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2089) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2090) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2091) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2092) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2093) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2094) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2095) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2096) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2097) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2098) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2099) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2100) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2101) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2102) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2103) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2104) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2105) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2106) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2107) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2108) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2109) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2110) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2111) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2112) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2113) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2114) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2115) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2116) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2117) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2118) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2119) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2120) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2121) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2122) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2123) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2124) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2125) | SOCK_NONBLOCK = 0x800
constant SOCK_PACKET (line 2126) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2127) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2128) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2129) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2130) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2131) | SOL_AAL = 0x109
constant SOL_ALG (line 2132) | SOL_ALG = 0x117
constant SOL_ATM (line 2133) | SOL_ATM = 0x108
constant SOL_CAIF (line 2134) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2135) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2136) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2137) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2138) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2139) | SOL_IP = 0x0
constant SOL_IPV6 (line 2140) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2141) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2142) | SOL_IUCV = 0x115
constant SOL_KCM (line 2143) | SOL_KCM = 0x119
constant SOL_LLC (line 2144) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2145) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2146) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2147) | SOL_NFC = 0x118
constant SOL_PACKET (line 2148) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2149) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2150) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2151) | SOL_RAW = 0xff
constant SOL_RDS (line 2152) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2153) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2154) | SOL_SOCKET = 0x1
constant SOL_TCP (line 2155) | SOL_TCP = 0x6
constant SOL_TIPC (line 2156) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2157) | SOL_TLS = 0x11a
constant SOL_X25 (line 2158) | SOL_X25 = 0x106
constant SOL_XDP (line 2159) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2160) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2161) | SO_ACCEPTCONN = 0x1e
constant SO_ATTACH_BPF (line 2162) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2163) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2164) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2165) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2166) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2167) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2168) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2169) | SO_BROADCAST = 0x6
constant SO_BSDCOMPAT (line 2170) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2171) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2172) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2173) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2174) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2175) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2176) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2177) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2178) | SO_DOMAIN = 0x27
constant SO_DONTROUTE (line 2179) | SO_DONTROUTE = 0x5
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2180) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2181) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2182) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2183) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2184) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2185) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2186) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2187) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2188) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2189) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2190) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2191) | SO_ERROR = 0x4
constant SO_GET_FILTER (line 2192) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2193) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2194) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2195) | SO_KEEPALIVE = 0x9
constant SO_LINGER (line 2196) | SO_LINGER = 0xd
constant SO_LOCK_FILTER (line 2197) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2198) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2199) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2200) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2201) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2202) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2203) | SO_OOBINLINE = 0xa
constant SO_PASSCRED (line 2204) | SO_PASSCRED = 0x10
constant SO_PASSSEC (line 2205) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2206) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2207) | SO_PEERCRED = 0x11
constant SO_PEERGROUPS (line 2208) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2209) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2210) | SO_PEERSEC = 0x1f
constant SO_PRIORITY (line 2211) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2212) | SO_PROTOCOL = 0x26
constant SO_RCVBUF (line 2213) | SO_RCVBUF = 0x8
constant SO_RCVBUFFORCE (line 2214) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2215) | SO_RCVLOWAT = 0x12
constant SO_RCVTIMEO (line 2216) | SO_RCVTIMEO = 0x14
constant SO_RCVTIMEO_NEW (line 2217) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2218) | SO_RCVTIMEO_OLD = 0x14
constant SO_REUSEADDR (line 2219) | SO_REUSEADDR = 0x2
constant SO_REUSEPORT (line 2220) | SO_REUSEPORT = 0xf
constant SO_RXQ_OVFL (line 2221) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2222) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2223) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2224) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2225) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2226) | SO_SNDBUF = 0x7
constant SO_SNDBUFFORCE (line 2227) | SO_SNDBUFFORCE = 0x20
constant SO_SNDLOWAT (line 2228) | SO_SNDLOWAT = 0x13
constant SO_SNDTIMEO (line 2229) | SO_SNDTIMEO = 0x15
constant SO_SNDTIMEO_NEW (line 2230) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2231) | SO_SNDTIMEO_OLD = 0x15
constant SO_TIMESTAMP (line 2232) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2233) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2234) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2235) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2236) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2237) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2238) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2239) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2240) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2241) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2242) | SO_TYPE = 0x3
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2243) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2244) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2245) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2246) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2247) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2248) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2249) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2250) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2251) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2252) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2253) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2254) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2255) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2256) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2257) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2258) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2259) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2260) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2261) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2262) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2263) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2264) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2265) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2266) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2267) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2268) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2269) | STATX_CTIME = 0x80
constant STATX_GID (line 2270) | STATX_GID = 0x10
constant STATX_INO (line 2271) | STATX_INO = 0x100
constant STATX_MODE (line 2272) | STATX_MODE = 0x2
constant STATX_MTIME (line 2273) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2274) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2275) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2276) | STATX_TYPE = 0x1
constant STATX_UID (line 2277) | STATX_UID = 0x8
constant STATX__RESERVED (line 2278) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2279) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2280) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2281) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2282) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2283) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2284) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2285) | S_IEXEC = 0x40
constant S_IFBLK (line 2286) | S_IFBLK = 0x6000
constant S_IFCHR (line 2287) | S_IFCHR = 0x2000
constant S_IFDIR (line 2288) | S_IFDIR = 0x4000
constant S_IFIFO (line 2289) | S_IFIFO = 0x1000
constant S_IFLNK (line 2290) | S_IFLNK = 0xa000
constant S_IFMT (line 2291) | S_IFMT = 0xf000
constant S_IFREG (line 2292) | S_IFREG = 0x8000
constant S_IFSOCK (line 2293) | S_IFSOCK = 0xc000
constant S_IREAD (line 2294) | S_IREAD = 0x100
constant S_IRGRP (line 2295) | S_IRGRP = 0x20
constant S_IROTH (line 2296) | S_IROTH = 0x4
constant S_IRUSR (line 2297) | S_IRUSR = 0x100
constant S_IRWXG (line 2298) | S_IRWXG = 0x38
constant S_IRWXO (line 2299) | S_IRWXO = 0x7
constant S_IRWXU (line 2300) | S_IRWXU = 0x1c0
constant S_ISGID (line 2301) | S_ISGID = 0x400
constant S_ISUID (line 2302) | S_ISUID = 0x800
constant S_ISVTX (line 2303) | S_ISVTX = 0x200
constant S_IWGRP (line 2304) | S_IWGRP = 0x10
constant S_IWOTH (line 2305) | S_IWOTH = 0x2
constant S_IWRITE (line 2306) | S_IWRITE = 0x80
constant S_IWUSR (line 2307) | S_IWUSR = 0x80
constant S_IXGRP (line 2308) | S_IXGRP = 0x8
constant S_IXOTH (line 2309) | S_IXOTH = 0x1
constant S_IXUSR (line 2310) | S_IXUSR = 0x40
constant TAB0 (line 2311) | TAB0 = 0x0
constant TAB1 (line 2312) | TAB1 = 0x800
constant TAB2 (line 2313) | TAB2 = 0x1000
constant TAB3 (line 2314) | TAB3 = 0x1800
constant TABDLY (line 2315) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2316) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2317) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2318) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2319) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2320) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2321) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2322) | TCFLSH = 0x540b
constant TCGETA (line 2323) | TCGETA = 0x5405
constant TCGETS (line 2324) | TCGETS = 0x5401
constant TCGETS2 (line 2325) | TCGETS2 = 0x802c542a
constant TCGETX (line 2326) | TCGETX = 0x5432
constant TCIFLUSH (line 2327) | TCIFLUSH = 0x0
constant TCIOFF (line 2328) | TCIOFF = 0x2
constant TCIOFLUSH (line 2329) | TCIOFLUSH = 0x2
constant TCION (line 2330) | TCION = 0x3
constant TCOFLUSH (line 2331) | TCOFLUSH = 0x1
constant TCOOFF (line 2332) | TCOOFF = 0x0
constant TCOON (line 2333) | TCOON = 0x1
constant TCP_BPF_IW (line 2334) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2335) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2336) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2337) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2338) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2339) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2340) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2341) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2342) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2343) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2344) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2345) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2346) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2347) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2348) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2349) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2350) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2351) | TCP_INFO = 0xb
constant TCP_INQ (line 2352) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2353) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2354) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2355) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2356) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2357) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2358) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2359) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2360) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2361) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2362) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2363) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2364) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2365) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2366) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2367) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2368) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2369) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2370) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2371) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2372) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2373) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2374) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2375) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2376) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2377) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2378) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2379) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2380) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2381) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2382) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2383) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2384) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2385) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2386) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2387) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2388) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2389) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2390) | TCSAFLUSH = 0x2
constant TCSBRK (line 2391) | TCSBRK = 0x5409
constant TCSBRKP (line 2392) | TCSBRKP = 0x5425
constant TCSETA (line 2393) | TCSETA = 0x5406
constant TCSETAF (line 2394) | TCSETAF = 0x5408
constant TCSETAW (line 2395) | TCSETAW = 0x5407
constant TCSETS (line 2396) | TCSETS = 0x5402
constant TCSETS2 (line 2397) | TCSETS2 = 0x402c542b
constant TCSETSF (line 2398) | TCSETSF = 0x5404
constant TCSETSF2 (line 2399) | TCSETSF2 = 0x402c542d
constant TCSETSW (line 2400) | TCSETSW = 0x5403
constant TCSETSW2 (line 2401) | TCSETSW2 = 0x402c542c
constant TCSETX (line 2402) | TCSETX = 0x5433
constant TCSETXF (line 2403) | TCSETXF = 0x5434
constant TCSETXW (line 2404) | TCSETXW = 0x5435
constant TCXONC (line 2405) | TCXONC = 0x540a
constant TIMER_ABSTIME (line 2406) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2407) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2408) | TIOCCONS = 0x541d
constant TIOCEXCL (line 2409) | TIOCEXCL = 0x540c
constant TIOCGDEV (line 2410) | TIOCGDEV = 0x80045432
constant TIOCGETD (line 2411) | TIOCGETD = 0x5424
constant TIOCGEXCL (line 2412) | TIOCGEXCL = 0x80045440
constant TIOCGICOUNT (line 2413) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2414) | TIOCGISO7816 = 0x80285442
constant TIOCGLCKTRMIOS (line 2415) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGPGRP (line 2416) | TIOCGPGRP = 0x540f
constant TIOCGPKT (line 2417) | TIOCGPKT = 0x80045438
constant TIOCGPTLCK (line 2418) | TIOCGPTLCK = 0x80045439
constant TIOCGPTN (line 2419) | TIOCGPTN = 0x80045430
constant TIOCGPTPEER (line 2420) | TIOCGPTPEER = 0x5441
constant TIOCGRS485 (line 2421) | TIOCGRS485 = 0x542e
constant TIOCGSERIAL (line 2422) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2423) | TIOCGSID = 0x5429
constant TIOCGSOFTCAR (line 2424) | TIOCGSOFTCAR = 0x5419
constant TIOCGWINSZ (line 2425) | TIOCGWINSZ = 0x5413
constant TIOCINQ (line 2426) | TIOCINQ = 0x541b
constant TIOCLINUX (line 2427) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2428) | TIOCMBIC = 0x5417
constant TIOCMBIS (line 2429) | TIOCMBIS = 0x5416
constant TIOCMGET (line 2430) | TIOCMGET = 0x5415
constant TIOCMIWAIT (line 2431) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2432) | TIOCMSET = 0x5418
constant TIOCM_CAR (line 2433) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2434) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2435) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2436) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2437) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2438) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2439) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2440) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2441) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2442) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2443) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2444) | TIOCNOTTY = 0x5422
constant TIOCNXCL (line 2445) | TIOCNXCL = 0x540d
constant TIOCOUTQ (line 2446) | TIOCOUTQ = 0x5411
constant TIOCPKT (line 2447) | TIOCPKT = 0x5420
constant TIOCPKT_DATA (line 2448) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2449) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2450) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2451) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2452) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2453) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2454) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2455) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2456) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2457) | TIOCSCTTY = 0x540e
constant TIOCSERCONFIG (line 2458) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2459) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2460) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2461) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2462) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2463) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2464) | TIOCSERSWILD = 0x5455
constant TIOCSER_TEMT (line 2465) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2466) | TIOCSETD = 0x5423
constant TIOCSIG (line 2467) | TIOCSIG = 0x40045436
constant TIOCSISO7816 (line 2468) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2469) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSPGRP (line 2470) | TIOCSPGRP = 0x5410
constant TIOCSPTLCK (line 2471) | TIOCSPTLCK = 0x40045431
constant TIOCSRS485 (line 2472) | TIOCSRS485 = 0x542f
constant TIOCSSERIAL (line 2473) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2474) | TIOCSSOFTCAR = 0x541a
constant TIOCSTI (line 2475) | TIOCSTI = 0x5412
constant TIOCSWINSZ (line 2476) | TIOCSWINSZ = 0x5414
constant TIOCVHANGUP (line 2477) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2478) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2479) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2480) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2481) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2482) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2483) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2484) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2485) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2486) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2487) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2488) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2489) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2490) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2491) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2492) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2493) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2494) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2495) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2496) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2497) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2498) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2499) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2500) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2501) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2502) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2503) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2504) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2505) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2506) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2507) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2508) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2509) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2510) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2511) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2512) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2513) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2514) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2515) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2516) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2517) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2518) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2519) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2520) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2521) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2522) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2523) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2524) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2525) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2526) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2527) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2528) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2529) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2530) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2531) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2532) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2533) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2534) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2535) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2536) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2537) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2538) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2539) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2540) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2541) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2542) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2543) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2544) | TOSTOP = 0x100
constant TPACKET_ALIGNMENT (line 2545) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2546) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2547) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2548) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2549) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2550) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2551) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2552) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2553) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2554) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2555) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2556) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2557) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2558) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2559) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2560) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2561) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2562) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2563) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2564) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2565) | TUNATTACHFILTER = 0x400854d5
constant TUNDETACHFILTER (line 2566) | TUNDETACHFILTER = 0x400854d6
constant TUNGETDEVNETNS (line 2567) | TUNGETDEVNETNS = 0x54e3
constant TUNGETFEATURES (line 2568) | TUNGETFEATURES = 0x800454cf
constant TUNGETFILTER (line 2569) | TUNGETFILTER = 0x800854db
constant TUNGETIFF (line 2570) | TUNGETIFF = 0x800454d2
constant TUNGETSNDBUF (line 2571) | TUNGETSNDBUF = 0x800454d3
constant TUNGETVNETBE (line 2572) | TUNGETVNETBE = 0x800454df
constant TUNGETVNETHDRSZ (line 2573) | TUNGETVNETHDRSZ = 0x800454d7
constant TUNGETVNETLE (line 2574) | TUNGETVNETLE = 0x800454dd
constant TUNSETCARRIER (line 2575) | TUNSETCARRIER = 0x400454e2
constant TUNSETDEBUG (line 2576) | TUNSETDEBUG = 0x400454c9
constant TUNSETFILTEREBPF (line 2577) | TUNSETFILTEREBPF = 0x800454e1
constant TUNSETGROUP (line 2578) | TUNSETGROUP = 0x400454ce
constant TUNSETIFF (line 2579) | TUNSETIFF = 0x400454ca
constant TUNSETIFINDEX (line 2580) | TUNSETIFINDEX = 0x400454da
constant TUNSETLINK (line 2581) | TUNSETLINK = 0x400454cd
constant TUNSETNOCSUM (line 2582) | TUNSETNOCSUM = 0x400454c8
constant TUNSETOFFLOAD (line 2583) | TUNSETOFFLOAD = 0x400454d0
constant TUNSETOWNER (line 2584) | TUNSETOWNER = 0x400454cc
constant TUNSETPERSIST (line 2585) | TUNSETPERSIST = 0x400454cb
constant TUNSETQUEUE (line 2586) | TUNSETQUEUE = 0x400454d9
constant TUNSETSNDBUF (line 2587) | TUNSETSNDBUF = 0x400454d4
constant TUNSETSTEERINGEBPF (line 2588) | TUNSETSTEERINGEBPF = 0x800454e0
constant TUNSETTXFILTER (line 2589) | TUNSETTXFILTER = 0x400454d1
constant TUNSETVNETBE (line 2590) | TUNSETVNETBE = 0x400454de
constant TUNSETVNETHDRSZ (line 2591) | TUNSETVNETHDRSZ = 0x400454d8
constant TUNSETVNETLE (line 2592) | TUNSETVNETLE = 0x400454dc
constant UBI_IOCATT (line 2593) | UBI_IOCATT = 0x40186f40
constant UBI_IOCDET (line 2594) | UBI_IOCDET = 0x40046f41
constant UBI_IOCEBCH (line 2595) | UBI_IOCEBCH = 0x40044f02
constant UBI_IOCEBER (line 2596) | UBI_IOCEBER = 0x40044f01
constant UBI_IOCEBISMAP (line 2597) | UBI_IOCEBISMAP = 0x80044f05
constant UBI_IOCEBMAP (line 2598) | UBI_IOCEBMAP = 0x40084f03
constant UBI_IOCEBUNMAP (line 2599) | UBI_IOCEBUNMAP = 0x40044f04
constant UBI_IOCMKVOL (line 2600) | UBI_IOCMKVOL = 0x40986f00
constant UBI_IOCRMVOL (line 2601) | UBI_IOCRMVOL = 0x40046f01
constant UBI_IOCRNVOL (line 2602) | UBI_IOCRNVOL = 0x51106f03
constant UBI_IOCRPEB (line 2603) | UBI_IOCRPEB = 0x40046f04
constant UBI_IOCRSVOL (line 2604) | UBI_IOCRSVOL = 0x400c6f02
constant UBI_IOCSETVOLPROP (line 2605) | UBI_IOCSETVOLPROP = 0x40104f06
constant UBI_IOCSPEB (line 2606) | UBI_IOCSPEB = 0x40046f05
constant UBI_IOCVOLCRBLK (line 2607) | UBI_IOCVOLCRBLK = 0x40804f07
constant UBI_IOCVOLRMBLK (line 2608) | UBI_IOCVOLRMBLK = 0x4f08
constant UBI_IOCVOLUP (line 2609) | UBI_IOCVOLUP = 0x40084f00
constant UDF_SUPER_MAGIC (line 2610) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2611) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2612) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2613) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2614) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2615) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2616) | VDISCARD = 0xd
constant VEOF (line 2617) | VEOF = 0x4
constant VEOL (line 2618) | VEOL = 0xb
constant VEOL2 (line 2619) | VEOL2 = 0x10
constant VERASE (line 2620) | VERASE = 0x2
constant VINTR (line 2621) | VINTR = 0x0
constant VKILL (line 2622) | VKILL = 0x3
constant VLNEXT (line 2623) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2624) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2625) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2626) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2627) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2628) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2629) | VMIN = 0x6
constant VM_SOCKETS_INVALID_VERSION (line 2630) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2631) | VQUIT = 0x1
constant VREPRINT (line 2632) | VREPRINT = 0xc
constant VSTART (line 2633) | VSTART = 0x8
constant VSTOP (line 2634) | VSTOP = 0x9
constant VSUSP (line 2635) | VSUSP = 0xa
constant VSWTC (line 2636) | VSWTC = 0x7
constant VT0 (line 2637) | VT0 = 0x0
constant VT1 (line 2638) | VT1 = 0x4000
constant VTDLY (line 2639) | VTDLY = 0x4000
constant VTIME (line 2640) | VTIME = 0x5
constant VWERASE (line 2641) | VWERASE = 0xe
constant WALL (line 2642) | WALL = 0x40000000
constant WCLONE (line 2643) | WCLONE = 0x80000000
constant WCONTINUED (line 2644) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2645) | WDIOC_GETBOOTSTATUS = 0x80045702
constant WDIOC_GETPRETIMEOUT (line 2646) | WDIOC_GETPRETIMEOUT = 0x80045709
constant WDIOC_GETSTATUS (line 2647) | WDIOC_GETSTATUS = 0x80045701
constant WDIOC_GETSUPPORT (line 2648) | WDIOC_GETSUPPORT = 0x80285700
constant WDIOC_GETTEMP (line 2649) | WDIOC_GETTEMP = 0x80045703
constant WDIOC_GETTIMELEFT (line 2650) | WDIOC_GETTIMELEFT = 0x8004570a
constant WDIOC_GETTIMEOUT (line 2651) | WDIOC_GETTIMEOUT = 0x80045707
constant WDIOC_KEEPALIVE (line 2652) | WDIOC_KEEPALIVE = 0x80045705
constant WDIOC_SETOPTIONS (line 2653) | WDIOC_SETOPTIONS = 0x80045704
constant WDIOC_SETPRETIMEOUT (line 2654) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2655) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2656) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2657) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2658) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2659) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2660) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2661) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2662) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2663) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2664) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2665) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2666) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2667) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2668) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2669) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2670) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2671) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2672) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2673) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2674) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2675) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2676) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2677) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2678) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2679) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2680) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2681) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2682) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2683) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2684) | WIN_READ = 0x20
constant WIN_READDMA (line 2685) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2686) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2687) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2688) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2689) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2690) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2691) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2692) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2693) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2694) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2695) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2696) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2697) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2698) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2699) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2700) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2701) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2702) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2703) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2704) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2705) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2706) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2707) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2708) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2709) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2710) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2711) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2712) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2713) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2714) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2715) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2716) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2717) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2718) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2719) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2720) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2721) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2722) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2723) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2724) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2725) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2726) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2727) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2728) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2729) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2730) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2731) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2732) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2733) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2734) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2735) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2736) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2737) | WNOHANG = 0x1
constant WNOTHREAD (line 2738) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2739) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2740) | WORDSIZE = 0x20
constant WSTOPPED (line 2741) | WSTOPPED = 0x2
constant WUNTRACED (line 2742) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2743) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2744) | XATTR_REPLACE = 0x2
constant XCASE (line 2745) | XCASE = 0x4
constant XDP_COPY (line 2746) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2747) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2748) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2749) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2750) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2751) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2752) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2753) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2754) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2755) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2756) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2757) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2758) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2759) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2760) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2761) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2762) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2763) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2764) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2765) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2766) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2767) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2768) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2769) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2770) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2771) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2772) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2773) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2778) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2779) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2780) | EADDRINUSE = syscall.Errno(0x62)
constant EADDRNOTAVAIL (line 2781) | EADDRNOTAVAIL = syscall.Errno(0x63)
constant EADV (line 2782) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2783) | EAFNOSUPPORT = syscall.Errno(0x61)
constant EAGAIN (line 2784) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2785) | EALREADY = syscall.Errno(0x72)
constant EBADE (line 2786) | EBADE = syscall.Errno(0x34)
constant EBADF (line 2787) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2788) | EBADFD = syscall.Errno(0x4d)
constant EBADMSG (line 2789) | EBADMSG = syscall.Errno(0x4a)
constant EBADR (line 2790) | EBADR = syscall.Errno(0x35)
constant EBADRQC (line 2791) | EBADRQC = syscall.Errno(0x38)
constant EBADSLT (line 2792) | EBADSLT = syscall.Errno(0x39)
constant EBFONT (line 2793) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2794) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2795) | ECANCELED = syscall.Errno(0x7d)
constant ECHILD (line 2796) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2797) | ECHRNG = syscall.Errno(0x2c)
constant ECOMM (line 2798) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2799) | ECONNABORTED = syscall.Errno(0x67)
constant ECONNREFUSED (line 2800) | ECONNREFUSED = syscall.Errno(0x6f)
constant ECONNRESET (line 2801) | ECONNRESET = syscall.Errno(0x68)
constant EDEADLK (line 2802) | EDEADLK = syscall.Errno(0x23)
constant EDEADLOCK (line 2803) | EDEADLOCK = syscall.Errno(0x23)
constant EDESTADDRREQ (line 2804) | EDESTADDRREQ = syscall.Errno(0x59)
constant EDOM (line 2805) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2806) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2807) | EDQUOT = syscall.Errno(0x7a)
constant EEXIST (line 2808) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2809) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2810) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2811) | EHOSTDOWN = syscall.Errno(0x70)
constant EHOSTUNREACH (line 2812) | EHOSTUNREACH = syscall.Errno(0x71)
constant EHWPOISON (line 2813) | EHWPOISON = syscall.Errno(0x85)
constant EIDRM (line 2814) | EIDRM = syscall.Errno(0x2b)
constant EILSEQ (line 2815) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 2816) | EINPROGRESS = syscall.Errno(0x73)
constant EINTR (line 2817) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2818) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2819) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2820) | EISCONN = syscall.Errno(0x6a)
constant EISDIR (line 2821) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2822) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2823) | EKEYEXPIRED = syscall.Errno(0x7f)
constant EKEYREJECTED (line 2824) | EKEYREJECTED = syscall.Errno(0x81)
constant EKEYREVOKED (line 2825) | EKEYREVOKED = syscall.Errno(0x80)
constant EL2HLT (line 2826) | EL2HLT = syscall.Errno(0x33)
constant EL2NSYNC (line 2827) | EL2NSYNC = syscall.Errno(0x2d)
constant EL3HLT (line 2828) | EL3HLT = syscall.Errno(0x2e)
constant EL3RST (line 2829) | EL3RST = syscall.Errno(0x2f)
constant ELIBACC (line 2830) | ELIBACC = syscall.Errno(0x4f)
constant ELIBBAD (line 2831) | ELIBBAD = syscall.Errno(0x50)
constant ELIBEXEC (line 2832) | ELIBEXEC = syscall.Errno(0x53)
constant ELIBMAX (line 2833) | ELIBMAX = syscall.Errno(0x52)
constant ELIBSCN (line 2834) | ELIBSCN = syscall.Errno(0x51)
constant ELNRNG (line 2835) | ELNRNG = syscall.Errno(0x30)
constant ELOOP (line 2836) | ELOOP = syscall.Errno(0x28)
constant EMEDIUMTYPE (line 2837) | EMEDIUMTYPE = syscall.Errno(0x7c)
constant EMFILE (line 2838) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2839) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2840) | EMSGSIZE = syscall.Errno(0x5a)
constant EMULTIHOP (line 2841) | EMULTIHOP = syscall.Errno(0x48)
constant ENAMETOOLONG (line 2842) | ENAMETOOLONG = syscall.Errno(0x24)
constant ENAVAIL (line 2843) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2844) | ENETDOWN = syscall.Errno(0x64)
constant ENETRESET (line 2845) | ENETRESET = syscall.Errno(0x66)
constant ENETUNREACH (line 2846) | ENETUNREACH = syscall.Errno(0x65)
constant ENFILE (line 2847) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2848) | ENOANO = syscall.Errno(0x37)
constant ENOBUFS (line 2849) | ENOBUFS = syscall.Errno(0x69)
constant ENOCSI (line 2850) | ENOCSI = syscall.Errno(0x32)
constant ENODATA (line 2851) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2852) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2853) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2854) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2855) | ENOKEY = syscall.Errno(0x7e)
constant ENOLCK (line 2856) | ENOLCK = syscall.Errno(0x25)
constant ENOLINK (line 2857) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2858) | ENOMEDIUM = syscall.Errno(0x7b)
constant ENOMEM (line 2859) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2860) | ENOMSG = syscall.Errno(0x2a)
constant ENONET (line 2861) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2862) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2863) | ENOPROTOOPT = syscall.Errno(0x5c)
constant ENOSPC (line 2864) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2865) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2866) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2867) | ENOSYS = syscall.Errno(0x26)
constant ENOTBLK (line 2868) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2869) | ENOTCONN = syscall.Errno(0x6b)
constant ENOTDIR (line 2870) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2871) | ENOTEMPTY = syscall.Errno(0x27)
constant ENOTNAM (line 2872) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2873) | ENOTRECOVERABLE = syscall.Errno(0x83)
constant ENOTSOCK (line 2874) | ENOTSOCK = syscall.Errno(0x58)
constant ENOTSUP (line 2875) | ENOTSUP = syscall.Errno(0x5f)
constant ENOTTY (line 2876) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2877) | ENOTUNIQ = syscall.Errno(0x4c)
constant ENXIO (line 2878) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2879) | EOPNOTSUPP = syscall.Errno(0x5f)
constant EOVERFLOW (line 2880) | EOVERFLOW = syscall.Errno(0x4b)
constant EOWNERDEAD (line 2881) | EOWNERDEAD = syscall.Errno(0x82)
constant EPERM (line 2882) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2883) | EPFNOSUPPORT = syscall.Errno(0x60)
constant EPIPE (line 2884) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2885) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2886) | EPROTONOSUPPORT = syscall.Errno(0x5d)
constant EPROTOTYPE (line 2887) | EPROTOTYPE = syscall.Errno(0x5b)
constant ERANGE (line 2888) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2889) | EREMCHG = syscall.Errno(0x4e)
constant EREMOTE (line 2890) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2891) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2892) | ERESTART = syscall.Errno(0x55)
constant ERFKILL (line 2893) | ERFKILL = syscall.Errno(0x84)
constant EROFS (line 2894) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2895) | ESHUTDOWN = syscall.Errno(0x6c)
constant ESOCKTNOSUPPORT (line 2896) | ESOCKTNOSUPPORT = syscall.Errno(0x5e)
constant ESPIPE (line 2897) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2898) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2899) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2900) | ESTALE = syscall.Errno(0x74)
constant ESTRPIPE (line 2901) | ESTRPIPE = syscall.Errno(0x56)
constant ETIME (line 2902) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2903) | ETIMEDOUT = syscall.Errno(0x6e)
constant ETOOMANYREFS (line 2904) | ETOOMANYREFS = syscall.Errno(0x6d)
constant ETXTBSY (line 2905) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2906) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2907) | EUNATCH = syscall.Errno(0x31)
constant EUSERS (line 2908) | EUSERS = syscall.Errno(0x57)
constant EWOULDBLOCK (line 2909) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2910) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2911) | EXFULL = syscall.Errno(0x36)
constant SIGABRT (line 2916) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2917) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2918) | SIGBUS = syscall.Signal(0x7)
constant SIGCHLD (line 2919) | SIGCHLD = syscall.Signal(0x11)
constant SIGCLD (line 2920) | SIGCLD = syscall.Signal(0x11)
constant SIGCONT (line 2921) | SIGCONT = syscall.Signal(0x12)
constant SIGFPE (line 2922) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2923) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2924) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2925) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2926) | SIGIO = syscall.Signal(0x1d)
constant SIGIOT (line 2927) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2928) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2929) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2930) | SIGPOLL = syscall.Signal(0x1d)
constant SIGPROF (line 2931) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2932) | SIGPWR = syscall.Signal(0x1e)
constant SIGQUIT (line 2933) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2934) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTKFLT (line 2935) | SIGSTKFLT = syscall.Signal(0x10)
constant SIGSTOP (line 2936) | SIGSTOP = syscall.Signal(0x13)
constant SIGSYS (line 2937) | SIGSYS = syscall.Signal(0x1f)
constant SIGTERM (line 2938) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2939) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2940) | SIGTSTP = syscall.Signal(0x14)
constant SIGTTIN (line 2941) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2942) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2943) | SIGURG = syscall.Signal(0x17)
constant SIGUSR1 (line 2944) | SIGUSR1 = syscall.Signal(0xa)
constant SIGUSR2 (line 2945) | SIGUSR2 = syscall.Signal(0xc)
constant SIGVTALRM (line 2946) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 2947) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 2948) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 2949) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x80081270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x40081271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x1261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x1265
constant BLKFRASET (line 183) | BLKFRASET = 0x1264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x1260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x80081272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x127b
constant BLKRAGET (line 187) | BLKRAGET = 0x1263
constant BLKRASET (line 188) | BLKRASET = 0x1262
constant BLKROGET (line 189) | BLKROGET = 0x125e
constant BLKROSET (line 190) | BLKROSET = 0x125d
constant BLKRRPART (line 191) | BLKRRPART = 0x125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x1267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x1266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x1268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x800
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ESR_MAGIC (line 513) | ESR_MAGIC = 0x45535201
constant ETH_P_1588 (line 514) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 515) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 516) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 517) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 518) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 519) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 520) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 521) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 522) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 523) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 524) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 525) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 526) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 527) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 528) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 529) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 530) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 531) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 532) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 533) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 534) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 535) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 536) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 537) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 538) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 539) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 540) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 541) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 542) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 543) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 544) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 545) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 546) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 547) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 548) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 549) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 550) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 551) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 552) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 553) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 554) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 555) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 556) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 557) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 558) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 559) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 560) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 561) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 562) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 563) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 564) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 565) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 566) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 567) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 568) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 569) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 570) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 571) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 572) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 573) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 574) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 575) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 576) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 577) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 578) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 579) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 580) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 581) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 582) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 583) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 584) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 585) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 586) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 587) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 588) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 589) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 590) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 591) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 592) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 593) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 594) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 595) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 596) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 597) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 598) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 599) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 600) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 601) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 602) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 603) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 604) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 605) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 606) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 607) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 608) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 609) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 610) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 611) | EXTA = 0xe
constant EXTB (line 612) | EXTB = 0xf
constant EXTPROC (line 613) | EXTPROC = 0x10000
constant EXTRA_MAGIC (line 614) | EXTRA_MAGIC = 0x45585401
constant F2FS_SUPER_MAGIC (line 615) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 616) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 617) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 618) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 619) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 620) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 621) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 622) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 623) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 624) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 625) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 626) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 627) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 628) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 629) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 630) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 631) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 632) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 633) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 634) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 635) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 636) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 637) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 638) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 639) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 640) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 641) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 642) | FAN_CREATE = 0x100
constant FAN_DELETE (line 643) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 644) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 645) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 646) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 647) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 648) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 649) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 650) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 651) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 652) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 653) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 654) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 655) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 656) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 657) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 658) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 659) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 660) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 661) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 662) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 663) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 664) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 665) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 666) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 667) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 668) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 669) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 670) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 671) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 672) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 673) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 674) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 675) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 676) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 677) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 678) | FD_SETSIZE = 0x400
constant FF0 (line 679) | FF0 = 0x0
constant FF1 (line 680) | FF1 = 0x8000
constant FFDLY (line 681) | FFDLY = 0x8000
constant FLUSHO (line 682) | FLUSHO = 0x1000
constant FPSIMD_MAGIC (line 683) | FPSIMD_MAGIC = 0x46508001
constant FS_ENCRYPTION_MODE_ADIANTUM (line 684) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 685) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 686) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 687) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 688) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 689) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 690) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 691) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 692) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 693) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 694) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 695) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 696) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 697) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 698) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 699) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 700) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 701) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 702) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 703) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 704) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 705) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 706) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 707) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 708) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 709) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 710) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 711) | F_EXLCK = 0x4
constant F_GETFD (line 712) | F_GETFD = 0x1
constant F_GETFL (line 713) | F_GETFL = 0x3
constant F_GETLEASE (line 714) | F_GETLEASE = 0x401
constant F_GETLK (line 715) | F_GETLK = 0x5
constant F_GETLK64 (line 716) | F_GETLK64 = 0x5
constant F_GETOWN (line 717) | F_GETOWN = 0x9
constant F_GETOWN_EX (line 718) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 719) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 720) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 721) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 722) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 723) | F_GET_SEALS = 0x40a
constant F_LOCK (line 724) | F_LOCK = 0x1
constant F_NOTIFY (line 725) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 726) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 727) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 728) | F_OFD_SETLKW = 0x26
constant F_OK (line 729) | F_OK = 0x0
constant F_RDLCK (line 730) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 731) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 732) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 733) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 734) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 735) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 736) | F_SETFD = 0x2
constant F_SETFL (line 737) | F_SETFL = 0x4
constant F_SETLEASE (line 738) | F_SETLEASE = 0x400
constant F_SETLK (line 739) | F_SETLK = 0x6
constant F_SETLK64 (line 740) | F_SETLK64 = 0x6
constant F_SETLKW (line 741) | F_SETLKW = 0x7
constant F_SETLKW64 (line 742) | F_SETLKW64 = 0x7
constant F_SETOWN (line 743) | F_SETOWN = 0x8
constant F_SETOWN_EX (line 744) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 745) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 746) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 747) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 748) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 749) | F_SHLCK = 0x8
constant F_TEST (line 750) | F_TEST = 0x3
constant F_TLOCK (line 751) | F_TLOCK = 0x2
constant F_ULOCK (line 752) | F_ULOCK = 0x0
constant F_UNLCK (line 753) | F_UNLCK = 0x2
constant F_WRLCK (line 754) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 755) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 756) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 757) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 758) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 759) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 760) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 761) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 762) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 763) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 764) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 765) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 766) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 767) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 768) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 769) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 770) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 771) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 772) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 773) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 774) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 775) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 776) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 777) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 778) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 779) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 780) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 781) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 782) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 783) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 784) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 785) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 786) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 787) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 788) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 789) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 790) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 791) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 792) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 793) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 794) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 795) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 796) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 797) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 798) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 799) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 800) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 801) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 802) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 803) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 804) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 805) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 806) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 807) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 808) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 809) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 810) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 811) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 812) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 813) | HUPCL = 0x400
constant IBSHIFT (line 814) | IBSHIFT = 0x10
constant ICANON (line 815) | ICANON = 0x2
constant ICMPV6_FILTER (line 816) | ICMPV6_FILTER = 0x1
constant ICRNL (line 817) | ICRNL = 0x100
constant IEXTEN (line 818) | IEXTEN = 0x8000
constant IFA_F_DADFAILED (line 819) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 820) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 821) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 822) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 823) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 824) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 825) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 826) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 827) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 828) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 829) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 830) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 831) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 832) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 833) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 834) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 835) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 836) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 837) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 838) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 839) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 840) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 841) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 842) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 843) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 844) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 845) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 846) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 847) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 848) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 849) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 850) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 851) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 852) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 853) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 854) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 855) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 856) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 857) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 858) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 859) | IFF_SLAVE = 0x800
constant IFF_TAP (line 860) | IFF_TAP = 0x2
constant IFF_TUN (line 861) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 862) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 863) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 864) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 865) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 866) | IFNAMSIZ = 0x10
constant IGNBRK (line 867) | IGNBRK = 0x1
constant IGNCR (line 868) | IGNCR = 0x80
constant IGNPAR (line 869) | IGNPAR = 0x4
constant IMAXBEL (line 870) | IMAXBEL = 0x2000
constant INLCR (line 871) | INLCR = 0x40
constant INPCK (line 872) | INPCK = 0x10
constant IN_ACCESS (line 873) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 874) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 875) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 876) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 877) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 878) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 879) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 880) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 881) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 882) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 883) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 884) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 885) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 886) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 887) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 888) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 889) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 890) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 891) | IN_CREATE = 0x100
constant IN_DELETE (line 892) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 893) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 894) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 895) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 896) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 897) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 898) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 899) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 900) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 901) | IN_MODIFY = 0x2
constant IN_MOVE (line 902) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 903) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 904) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 905) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 906) | IN_NONBLOCK = 0x800
constant IN_ONESHOT (line 907) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 908) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 909) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 910) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 911) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 912) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9
constant IPPROTO_AH (line 913) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 914) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 915) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 916) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 917) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 918) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 919) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 920) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 921) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 922) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 923) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 924) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 925) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 926) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 927) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 928) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 929) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 930) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 931) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 932) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 933) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 934) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 935) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 936) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 937) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 938) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 939) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 940) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 941) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 942) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 943) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 944) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 945) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 946) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 947) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 948) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 949) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 950) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 951) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 952) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 953) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 954) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 955) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 956) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 957) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 958) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 959) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 960) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 961) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 962) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 963) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 964) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 965) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 966) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 967) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 968) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 969) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 970) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 971) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 972) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 973) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 974) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 975) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 976) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 977) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 978) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 979) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 980) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 981) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 982) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 983) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 984) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 985) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 986) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 987) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 988) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 989) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 990) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 991) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 992) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 993) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 994) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 995) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 996) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 997) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 998) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 999) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 1000) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 1001) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 1002) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1003) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1004) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1005) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1006) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1007) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1008) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1009) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1010) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1011) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1012) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1013) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1014) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1015) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1016) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1017) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1018) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1019) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1020) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1021) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1022) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1023) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1024) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1025) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1026) | IP_MF = 0x2000
constant IP_MINTTL (line 1027) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1028) | IP_MSFILTER = 0x29
constant IP_MSS (line 1029) | IP_MSS = 0x240
constant IP_MTU (line 1030) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1031) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1032) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1033) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1034) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1035) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1036) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1037) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1038) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1039) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1040) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1041) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1042) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1043) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1044) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1045) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1046) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1047) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1048) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1049) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1050) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1051) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1052) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1053) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1054) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1055) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1056) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1057) | IP_RETOPTS = 0x7
constant IP_RF (line 1058) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1059) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1060) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1061) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1062) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1063) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1064) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1065) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1066) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1067) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1068) | ISTRIP = 0x20
constant IUCLC (line 1069) | IUCLC = 0x200
constant IUTF8 (line 1070) | IUTF8 = 0x4000
constant IXANY (line 1071) | IXANY = 0x800
constant IXOFF (line 1072) | IXOFF = 0x1000
constant IXON (line 1073) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1074) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1075) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1076) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1077) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1078) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1079) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1080) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1081) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1082) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1083) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1084) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1085) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1086) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1087) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1088) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1089) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1090) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1091) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1092) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1093) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1094) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1095) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1096) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1097) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1098) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1099) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1100) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1101) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1102) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1103) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1104) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1105) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1106) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1107) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1108) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1109) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1110) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1111) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1112) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1113) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1114) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1115) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1116) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1117) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1118) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1119) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1120) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1121) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1122) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1123) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1124) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1125) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1126) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1127) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1128) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1129) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1130) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1131) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1132) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1133) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1134) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1135) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1136) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1137) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1138) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1139) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1140) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1141) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1142) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1143) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1144) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1145) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1146) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1148) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1149) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1150) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1151) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1152) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1153) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1154) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1155) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1156) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1157) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1158) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1159) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1160) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1161) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1162) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1163) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1164) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1165) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1166) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1167) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1168) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1169) | LOCK_EX = 0x2
constant LOCK_NB (line 1170) | LOCK_NB = 0x4
constant LOCK_SH (line 1171) | LOCK_SH = 0x1
constant LOCK_UN (line 1172) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1173) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1174) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1175) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1176) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1177) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1178) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1179) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1180) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1181) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1182) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1183) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1184) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1185) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1186) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1187) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1188) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1189) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1190) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1191) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1192) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1193) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1194) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1195) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1196) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1197) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1198) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1199) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1200) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1201) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1202) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1203) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1204) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1205) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1206) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1207) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1208) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1209) | MAP_FILE = 0x0
constant MAP_FIXED (line 1210) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1211) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1212) | MAP_GROWSDOWN = 0x100
constant MAP_HUGETLB (line 1213) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1214) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1215) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1216) | MAP_LOCKED = 0x2000
constant MAP_NONBLOCK (line 1217) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1218) | MAP_NORESERVE = 0x4000
constant MAP_POPULATE (line 1219) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1220) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 1221) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1222) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1223) | MAP_STACK = 0x20000
constant MAP_SYNC (line 1224) | MAP_SYNC = 0x80000
constant MAP_TYPE (line 1225) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1226) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1227) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1228) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1229) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1230) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1231) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1232) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1233) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1234) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1235) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1236) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1237) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1238) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1239) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1240) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1241) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1242) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1243) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1244) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1245) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1246) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1247) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1248) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1249) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1250) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1251) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1252) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1253) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1254) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1255) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1256) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1257) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1258) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1259) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1260) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1261) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1262) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1263) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1264) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1265) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1266) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1267) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1268) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1269) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1270) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1271) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1272) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1273) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1274) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1275) | MSG_FIN = 0x200
constant MSG_MORE (line 1276) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1277) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1278) | MSG_OOB = 0x1
constant MSG_PEEK (line 1279) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1280) | MSG_PROXY = 0x10
constant MSG_RST (line 1281) | MSG_RST = 0x1000
constant MSG_SYN (line 1282) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1283) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1284) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1285) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1286) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1287) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1288) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1289) | MS_ASYNC = 0x1
constant MS_BIND (line 1290) | MS_BIND = 0x1000
constant MS_BORN (line 1291) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1292) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1293) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1294) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1295) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1296) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1297) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1298) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1299) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1300) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1301) | MS_NOATIME = 0x400
constant MS_NODEV (line 1302) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1303) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1304) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1305) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1306) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1307) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1308) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1309) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1310) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1311) | MS_RDONLY = 0x1
constant MS_REC (line 1312) | MS_REC = 0x4000
constant MS_RELATIME (line 1313) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1314) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1315) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1316) | MS_SHARED = 0x100000
constant MS_SILENT (line 1317) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1318) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1319) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1320) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1321) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1322) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1323) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1324) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1325) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1326) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1327) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1328) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1329) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1330) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1331) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1332) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1333) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1334) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1335) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1336) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1337) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1338) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1339) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1340) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1341) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1342) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1343) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1344) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1345) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1346) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1347) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1348) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1349) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1350) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1351) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1352) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1353) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1354) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1355) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1356) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1357) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1358) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1359) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1360) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1361) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1362) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1363) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1364) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1365) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1366) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1367) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1368) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1369) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1370) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1371) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1372) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1373) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1374) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1375) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1376) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1377) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1378) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1379) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1380) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1381) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1382) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1383) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1384) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1385) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1386) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1387) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1388) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1389) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1390) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1391) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1392) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1393) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1394) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1395) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1396) | NL0 = 0x0
constant NL1 (line 1397) | NL1 = 0x100
constant NLA_ALIGNTO (line 1398) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1399) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1400) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1401) | NLA_HDRLEN = 0x4
constant NLDLY (line 1402) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1403) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1404) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1405) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1406) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1407) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1408) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1409) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1410) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1411) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1412) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1413) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1414) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1415) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1416) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1417) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1418) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1419) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1420) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1421) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1422) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1423) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1424) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1425) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1426) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1427) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1428) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1429) | NS_GET_NSTYPE = 0xb703
constant NS_GET_OWNER_UID (line 1430) | NS_GET_OWNER_UID = 0xb704
constant NS_GET_PARENT (line 1431) | NS_GET_PARENT = 0xb702
constant NS_GET_USERNS (line 1432) | NS_GET_USERNS = 0xb701
constant OCFS2_SUPER_MAGIC (line 1433) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1434) | OCRNL = 0x8
constant OFDEL (line 1435) | OFDEL = 0x80
constant OFILL (line 1436) | OFILL = 0x40
constant OLCUC (line 1437) | OLCUC = 0x2
constant ONLCR (line 1438) | ONLCR = 0x4
constant ONLRET (line 1439) | ONLRET = 0x20
constant ONOCR (line 1440) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1441) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1442) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1443) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1444) | O_ACCMODE = 0x3
constant O_APPEND (line 1445) | O_APPEND = 0x400
constant O_ASYNC (line 1446) | O_ASYNC = 0x2000
constant O_CLOEXEC (line 1447) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1448) | O_CREAT = 0x40
constant O_DIRECT (line 1449) | O_DIRECT = 0x10000
constant O_DIRECTORY (line 1450) | O_DIRECTORY = 0x4000
constant O_DSYNC (line 1451) | O_DSYNC = 0x1000
constant O_EXCL (line 1452) | O_EXCL = 0x80
constant O_FSYNC (line 1453) | O_FSYNC = 0x101000
constant O_LARGEFILE (line 1454) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1455) | O_NDELAY = 0x800
constant O_NOATIME (line 1456) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1457) | O_NOCTTY = 0x100
constant O_NOFOLLOW (line 1458) | O_NOFOLLOW = 0x8000
constant O_NONBLOCK (line 1459) | O_NONBLOCK = 0x800
constant O_PATH (line 1460) | O_PATH = 0x200000
constant O_RDONLY (line 1461) | O_RDONLY = 0x0
constant O_RDWR (line 1462) | O_RDWR = 0x2
constant O_RSYNC (line 1463) | O_RSYNC = 0x101000
constant O_SYNC (line 1464) | O_SYNC = 0x101000
constant O_TMPFILE (line 1465) | O_TMPFILE = 0x404000
constant O_TRUNC (line 1466) | O_TRUNC = 0x200
constant O_WRONLY (line 1467) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1468) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1469) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1470) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1471) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1472) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1473) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1474) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1475) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1476) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1477) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1478) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1479) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1480) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1481) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1482) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1483) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1484) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1485) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1486) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1487) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1488) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1489) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1490) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1491) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1492) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1493) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1494) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1495) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1496) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1497) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1498) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1499) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1500) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1501) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1502) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1503) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1504) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1505) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1506) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1507) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1508) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1509) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1510) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1511) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1512) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1513) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1514) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1515) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1516) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1517) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1518) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1519) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1520) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1521) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1522) | PARITY_NONE = 0x1
constant PARMRK (line 1523) | PARMRK = 0x8
constant PARODD (line 1524) | PARODD = 0x200
constant PENDIN (line 1525) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1526) | PERF_EVENT_IOC_DISABLE = 0x2401
constant PERF_EVENT_IOC_ENABLE (line 1527) | PERF_EVENT_IOC_ENABLE = 0x2400
constant PERF_EVENT_IOC_ID (line 1528) | PERF_EVENT_IOC_ID = 0x80082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1529) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1530) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409
constant PERF_EVENT_IOC_PERIOD (line 1531) | PERF_EVENT_IOC_PERIOD = 0x40082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1532) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1533) | PERF_EVENT_IOC_REFRESH = 0x2402
constant PERF_EVENT_IOC_RESET (line 1534) | PERF_EVENT_IOC_RESET = 0x2403
constant PERF_EVENT_IOC_SET_BPF (line 1535) | PERF_EVENT_IOC_SET_BPF = 0x40042408
constant PERF_EVENT_IOC_SET_FILTER (line 1536) | PERF_EVENT_IOC_SET_FILTER = 0x40082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1537) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405
constant PIPEFS_MAGIC (line 1538) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1539) | PPPIOCATTACH = 0x4004743d
constant PPPIOCATTCHAN (line 1540) | PPPIOCATTCHAN = 0x40047438
constant PPPIOCCONNECT (line 1541) | PPPIOCCONNECT = 0x4004743a
constant PPPIOCDETACH (line 1542) | PPPIOCDETACH = 0x4004743c
constant PPPIOCDISCONN (line 1543) | PPPIOCDISCONN = 0x7439
constant PPPIOCGASYNCMAP (line 1544) | PPPIOCGASYNCMAP = 0x80047458
constant PPPIOCGCHAN (line 1545) | PPPIOCGCHAN = 0x80047437
constant PPPIOCGDEBUG (line 1546) | PPPIOCGDEBUG = 0x80047441
constant PPPIOCGFLAGS (line 1547) | PPPIOCGFLAGS = 0x8004745a
constant PPPIOCGIDLE (line 1548) | PPPIOCGIDLE = 0x8010743f
constant PPPIOCGL2TPSTATS (line 1549) | PPPIOCGL2TPSTATS = 0x80487436
constant PPPIOCGMRU (line 1550) | PPPIOCGMRU = 0x80047453
constant PPPIOCGNPMODE (line 1551) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1552) | PPPIOCGRASYNCMAP = 0x80047455
constant PPPIOCGUNIT (line 1553) | PPPIOCGUNIT = 0x80047456
constant PPPIOCGXASYNCMAP (line 1554) | PPPIOCGXASYNCMAP = 0x80207450
constant PPPIOCNEWUNIT (line 1555) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1556) | PPPIOCSACTIVE = 0x40107446
constant PPPIOCSASYNCMAP (line 1557) | PPPIOCSASYNCMAP = 0x40047457
constant PPPIOCSCOMPRESS (line 1558) | PPPIOCSCOMPRESS = 0x4010744d
constant PPPIOCSDEBUG (line 1559) | PPPIOCSDEBUG = 0x40047440
constant PPPIOCSFLAGS (line 1560) | PPPIOCSFLAGS = 0x40047459
constant PPPIOCSMAXCID (line 1561) | PPPIOCSMAXCID = 0x40047451
constant PPPIOCSMRRU (line 1562) | PPPIOCSMRRU = 0x4004743b
constant PPPIOCSMRU (line 1563) | PPPIOCSMRU = 0x40047452
constant PPPIOCSNPMODE (line 1564) | PPPIOCSNPMODE = 0x4008744b
constant PPPIOCSPASS (line 1565) | PPPIOCSPASS = 0x40107447
constant PPPIOCSRASYNCMAP (line 1566) | PPPIOCSRASYNCMAP = 0x40047454
constant PPPIOCSXASYNCMAP (line 1567) | PPPIOCSXASYNCMAP = 0x4020744f
constant PPPIOCXFERUNIT (line 1568) | PPPIOCXFERUNIT = 0x744e
constant PRIO_PGRP (line 1569) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1570) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1571) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1572) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1573) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1574) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1575) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1576) | PROT_NONE = 0x0
constant PROT_READ (line 1577) | PROT_READ = 0x1
constant PROT_WRITE (line 1578) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1579) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1580) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1581) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1582) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1583) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1584) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1585) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1586) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1587) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1588) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1589) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1590) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1591) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1592) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1593) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1594) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1595) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1596) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1597) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1598) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1599) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1600) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1601) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1602) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1603) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1604) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1605) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1606) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1607) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1608) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1609) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1610) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1611) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1612) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1613) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1614) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1615) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1616) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1617) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1618) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1619) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1620) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1621) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1622) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1623) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1624) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1625) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1626) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1627) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1628) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1629) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1630) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1631) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1632) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1633) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1634) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1635) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1636) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1637) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1638) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1639) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1640) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1641) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1642) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1643) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1644) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1645) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1646) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1647) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1648) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1649) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1650) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1651) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1652) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1653) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1654) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1655) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1656) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1657) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1658) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1659) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1660) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1661) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1662) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1663) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1664) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1665) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1666) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1667) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1668) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1669) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1670) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1671) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1672) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1673) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1674) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1675) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1676) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1677) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1678) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1679) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1680) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1681) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1682) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1683) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1684) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1685) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1686) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1687) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1688) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1689) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1690) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1691) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1692) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1693) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1694) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1695) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1696) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1697) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1698) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1699) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1700) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1701) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1702) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1703) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1704) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1705) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1706) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1707) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1708) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETREGS (line 1709) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1710) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1711) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1712) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1713) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_INTERRUPT (line 1714) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1715) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1716) | PTRACE_LISTEN = 0x4208
constant PTRACE_O_EXITKILL (line 1717) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1718) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1719) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1720) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1721) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1722) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1723) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1724) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1725) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1726) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1727) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1728) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKSIGINFO (line 1729) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1730) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1731) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKUSR (line 1732) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1733) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKETEXT (line 1734) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKEUSR (line 1735) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1736) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1737) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1738) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETOPTIONS (line 1739) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1740) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1741) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1742) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1743) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SINGLESTEP (line 1744) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1745) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1746) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1747) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1748) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1749) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_SYSEMU (line 1750) | PTRACE_SYSEMU = 0x1f
constant PTRACE_SYSEMU_SINGLESTEP (line 1751) | PTRACE_SYSEMU_SINGLESTEP = 0x20
constant PTRACE_TRACEME (line 1752) | PTRACE_TRACEME = 0x0
constant QNX4_SUPER_MAGIC (line 1753) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1754) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1755) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1756) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1757) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1758) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1759) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1760) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1761) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1762) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1763) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1764) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1765) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1766) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1767) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1768) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1769) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1770) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 1771) | RLIMIT_NPROC = 0x6
constant RLIMIT_RSS (line 1772) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1773) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1774) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1775) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1776) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1777) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1778) | RNDADDENTROPY = 0x40085203
constant RNDADDTOENTCNT (line 1779) | RNDADDTOENTCNT = 0x40045201
constant RNDCLEARPOOL (line 1780) | RNDCLEARPOOL = 0x5206
constant RNDGETENTCNT (line 1781) | RNDGETENTCNT = 0x80045200
constant RNDGETPOOL (line 1782) | RNDGETPOOL = 0x80085202
constant RNDRESEEDCRNG (line 1783) | RNDRESEEDCRNG = 0x5207
constant RNDZAPENTCNT (line 1784) | RNDZAPENTCNT = 0x5204
constant RTAX_ADVMSS (line 1785) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1786) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1787) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1788) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1789) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1790) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1791) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1792) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1793) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1794) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1795) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1796) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1797) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1798) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1799) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1800) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1801) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1802) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1803) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1804) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1805) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1806) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1807) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1808) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1809) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1810) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1811) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1812) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1813) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1814) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1815) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1816) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1817) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1818) | RTC_AIE_OFF = 0x7002
constant RTC_AIE_ON (line 1819) | RTC_AIE_ON = 0x7001
constant RTC_ALM_READ (line 1820) | RTC_ALM_READ = 0x80247008
constant RTC_ALM_SET (line 1821) | RTC_ALM_SET = 0x40247007
constant RTC_EPOCH_READ (line 1822) | RTC_EPOCH_READ = 0x8008700d
constant RTC_EPOCH_SET (line 1823) | RTC_EPOCH_SET = 0x4008700e
constant RTC_IRQF (line 1824) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1825) | RTC_IRQP_READ = 0x8008700b
constant RTC_IRQP_SET (line 1826) | RTC_IRQP_SET = 0x4008700c
constant RTC_MAX_FREQ (line 1827) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1828) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1829) | RTC_PIE_OFF = 0x7006
constant RTC_PIE_ON (line 1830) | RTC_PIE_ON = 0x7005
constant RTC_PLL_GET (line 1831) | RTC_PLL_GET = 0x80207011
constant RTC_PLL_SET (line 1832) | RTC_PLL_SET = 0x40207012
constant RTC_RD_TIME (line 1833) | RTC_RD_TIME = 0x80247009
constant RTC_SET_TIME (line 1834) | RTC_SET_TIME = 0x4024700a
constant RTC_UF (line 1835) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1836) | RTC_UIE_OFF = 0x7004
constant RTC_UIE_ON (line 1837) | RTC_UIE_ON = 0x7003
constant RTC_VL_CLR (line 1838) | RTC_VL_CLR = 0x7014
constant RTC_VL_READ (line 1839) | RTC_VL_READ = 0x80047013
constant RTC_WIE_OFF (line 1840) | RTC_WIE_OFF = 0x7010
constant RTC_WIE_ON (line 1841) | RTC_WIE_ON = 0x700f
constant RTC_WKALM_RD (line 1842) | RTC_WKALM_RD = 0x80287010
constant RTC_WKALM_SET (line 1843) | RTC_WKALM_SET = 0x4028700f
constant RTF_ADDRCLASSMASK (line 1844) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1845) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1846) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1847) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1848) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1849) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1850) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1851) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1852) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1853) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1854) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1855) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1856) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1857) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1858) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1859) | RTF_MSS = 0x40
constant RTF_MTU (line 1860) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1861) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1862) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1863) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1864) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1865) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1866) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1867) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1868) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1869) | RTF_STATIC = 0x400
constant RTF_THROW (line 1870) | RTF_THROW = 0x2000
constant RTF_UP (line 1871) | RTF_UP = 0x1
constant RTF_WINDOW (line 1872) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1873) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1874) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1875) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1876) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1877) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1878) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1879) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1880) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1881) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1882) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1883) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1884) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1885) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1886) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1887) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1888) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1889) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1890) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1891) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1892) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1893) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1894) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1895) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1896) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1897) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1898) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1899) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1900) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1901) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1902) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1903) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1904) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1905) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1906) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1907) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1908) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1909) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1910) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1911) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1912) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1913) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1914) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1915) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1916) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1917) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1918) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1919) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1920) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1921) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1922) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1923) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1924) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1925) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1926) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1927) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1928) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1929) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1930) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1931) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1932) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1933) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1934) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1935) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1936) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1937) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1938) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1939) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1940) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1941) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1942) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1943) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1944) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1945) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1946) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1947) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1948) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1949) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1950) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1951) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1952) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1953) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1954) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1955) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1956) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1957) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1958) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1959) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1960) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1961) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1962) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1963) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1964) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1965) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1966) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1967) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1968) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1969) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1970) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1971) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1972) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1973) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1974) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1975) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1976) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1977) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1978) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1979) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1980) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1981) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1982) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1983) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1984) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1985) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 1986) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 1987) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 1988) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 1989) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 1990) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 1991) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 1992) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 1993) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 1994) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 1995) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 1996) | SFD_NONBLOCK = 0x800
constant SHUT_RD (line 1997) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1998) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1999) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2000) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2001) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2002) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2003) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 2004) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2005) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2006) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2007) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2008) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2009) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2010) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2011) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2012) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2013) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2014) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2015) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2016) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2017) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2018) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2019) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2020) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2021) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2022) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2023) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2024) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2025) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2026) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2027) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2028) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2029) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2030) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2031) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2032) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2033) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2034) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2035) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2036) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2037) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2038) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2039) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2040) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2041) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2042) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2043) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2044) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2045) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2046) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2047) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2048) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2049) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2050) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2051) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2052) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2053) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2054) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2055) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2056) | SIOCGSTAMPNS_NEW = 0x80108907
constant SIOCGSTAMPNS_OLD (line 2057) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2058) | SIOCGSTAMP_NEW = 0x80108906
constant SIOCGSTAMP_OLD (line 2059) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2060) | SIOCINQ = 0x541b
constant SIOCOUTQ (line 2061) | SIOCOUTQ = 0x5411
constant SIOCOUTQNSD (line 2062) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2063) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2064) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2065) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2066) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2067) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2068) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2069) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2070) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2071) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2072) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2073) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2074) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2075) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2076) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2077) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2078) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2079) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2080) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2081) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2082) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2083) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2084) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2085) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2086) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2087) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2088) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2089) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2090) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2091) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2092) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2093) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2094) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2095) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2096) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2097) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2098) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2099) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2100) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2101) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2102) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2103) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2104) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2105) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2106) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2107) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2108) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2109) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2110) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2111) | SOCK_NONBLOCK = 0x800
constant SOCK_PACKET (line 2112) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2113) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2114) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2115) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2116) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2117) | SOL_AAL = 0x109
constant SOL_ALG (line 2118) | SOL_ALG = 0x117
constant SOL_ATM (line 2119) | SOL_ATM = 0x108
constant SOL_CAIF (line 2120) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2121) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2122) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2123) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2124) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2125) | SOL_IP = 0x0
constant SOL_IPV6 (line 2126) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2127) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2128) | SOL_IUCV = 0x115
constant SOL_KCM (line 2129) | SOL_KCM = 0x119
constant SOL_LLC (line 2130) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2131) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2132) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2133) | SOL_NFC = 0x118
constant SOL_PACKET (line 2134) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2135) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2136) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2137) | SOL_RAW = 0xff
constant SOL_RDS (line 2138) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2139) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2140) | SOL_SOCKET = 0x1
constant SOL_TCP (line 2141) | SOL_TCP = 0x6
constant SOL_TIPC (line 2142) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2143) | SOL_TLS = 0x11a
constant SOL_X25 (line 2144) | SOL_X25 = 0x106
constant SOL_XDP (line 2145) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2146) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2147) | SO_ACCEPTCONN = 0x1e
constant SO_ATTACH_BPF (line 2148) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2149) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2150) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2151) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2152) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2153) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2154) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2155) | SO_BROADCAST = 0x6
constant SO_BSDCOMPAT (line 2156) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2157) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2158) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2159) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2160) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2161) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2162) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2163) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2164) | SO_DOMAIN = 0x27
constant SO_DONTROUTE (line 2165) | SO_DONTROUTE = 0x5
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2166) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2167) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2168) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2169) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2170) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2171) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2172) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2173) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2174) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2175) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2176) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2177) | SO_ERROR = 0x4
constant SO_GET_FILTER (line 2178) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2179) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2180) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2181) | SO_KEEPALIVE = 0x9
constant SO_LINGER (line 2182) | SO_LINGER = 0xd
constant SO_LOCK_FILTER (line 2183) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2184) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2185) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2186) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2187) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2188) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2189) | SO_OOBINLINE = 0xa
constant SO_PASSCRED (line 2190) | SO_PASSCRED = 0x10
constant SO_PASSSEC (line 2191) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2192) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2193) | SO_PEERCRED = 0x11
constant SO_PEERGROUPS (line 2194) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2195) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2196) | SO_PEERSEC = 0x1f
constant SO_PRIORITY (line 2197) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2198) | SO_PROTOCOL = 0x26
constant SO_RCVBUF (line 2199) | SO_RCVBUF = 0x8
constant SO_RCVBUFFORCE (line 2200) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2201) | SO_RCVLOWAT = 0x12
constant SO_RCVTIMEO (line 2202) | SO_RCVTIMEO = 0x14
constant SO_RCVTIMEO_NEW (line 2203) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2204) | SO_RCVTIMEO_OLD = 0x14
constant SO_REUSEADDR (line 2205) | SO_REUSEADDR = 0x2
constant SO_REUSEPORT (line 2206) | SO_REUSEPORT = 0xf
constant SO_RXQ_OVFL (line 2207) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2208) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2209) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2210) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2211) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2212) | SO_SNDBUF = 0x7
constant SO_SNDBUFFORCE (line 2213) | SO_SNDBUFFORCE = 0x20
constant SO_SNDLOWAT (line 2214) | SO_SNDLOWAT = 0x13
constant SO_SNDTIMEO (line 2215) | SO_SNDTIMEO = 0x15
constant SO_SNDTIMEO_NEW (line 2216) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2217) | SO_SNDTIMEO_OLD = 0x15
constant SO_TIMESTAMP (line 2218) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2219) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2220) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2221) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2222) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2223) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2224) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2225) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2226) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2227) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2228) | SO_TYPE = 0x3
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2229) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2230) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2231) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2232) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2233) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2234) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2235) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2236) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2237) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2238) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2239) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2240) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2241) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2242) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2243) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2244) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2245) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2246) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2247) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2248) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2249) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2250) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2251) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2252) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2253) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2254) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2255) | STATX_CTIME = 0x80
constant STATX_GID (line 2256) | STATX_GID = 0x10
constant STATX_INO (line 2257) | STATX_INO = 0x100
constant STATX_MODE (line 2258) | STATX_MODE = 0x2
constant STATX_MTIME (line 2259) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2260) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2261) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2262) | STATX_TYPE = 0x1
constant STATX_UID (line 2263) | STATX_UID = 0x8
constant STATX__RESERVED (line 2264) | STATX__RESERVED = 0x80000000
constant SVE_MAGIC (line 2265) | SVE_MAGIC = 0x53564501
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2266) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2267) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2268) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2269) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2270) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2271) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2272) | S_IEXEC = 0x40
constant S_IFBLK (line 2273) | S_IFBLK = 0x6000
constant S_IFCHR (line 2274) | S_IFCHR = 0x2000
constant S_IFDIR (line 2275) | S_IFDIR = 0x4000
constant S_IFIFO (line 2276) | S_IFIFO = 0x1000
constant S_IFLNK (line 2277) | S_IFLNK = 0xa000
constant S_IFMT (line 2278) | S_IFMT = 0xf000
constant S_IFREG (line 2279) | S_IFREG = 0x8000
constant S_IFSOCK (line 2280) | S_IFSOCK = 0xc000
constant S_IREAD (line 2281) | S_IREAD = 0x100
constant S_IRGRP (line 2282) | S_IRGRP = 0x20
constant S_IROTH (line 2283) | S_IROTH = 0x4
constant S_IRUSR (line 2284) | S_IRUSR = 0x100
constant S_IRWXG (line 2285) | S_IRWXG = 0x38
constant S_IRWXO (line 2286) | S_IRWXO = 0x7
constant S_IRWXU (line 2287) | S_IRWXU = 0x1c0
constant S_ISGID (line 2288) | S_ISGID = 0x400
constant S_ISUID (line 2289) | S_ISUID = 0x800
constant S_ISVTX (line 2290) | S_ISVTX = 0x200
constant S_IWGRP (line 2291) | S_IWGRP = 0x10
constant S_IWOTH (line 2292) | S_IWOTH = 0x2
constant S_IWRITE (line 2293) | S_IWRITE = 0x80
constant S_IWUSR (line 2294) | S_IWUSR = 0x80
constant S_IXGRP (line 2295) | S_IXGRP = 0x8
constant S_IXOTH (line 2296) | S_IXOTH = 0x1
constant S_IXUSR (line 2297) | S_IXUSR = 0x40
constant TAB0 (line 2298) | TAB0 = 0x0
constant TAB1 (line 2299) | TAB1 = 0x800
constant TAB2 (line 2300) | TAB2 = 0x1000
constant TAB3 (line 2301) | TAB3 = 0x1800
constant TABDLY (line 2302) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2303) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2304) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2305) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2306) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2307) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2308) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2309) | TCFLSH = 0x540b
constant TCGETA (line 2310) | TCGETA = 0x5405
constant TCGETS (line 2311) | TCGETS = 0x5401
constant TCGETS2 (line 2312) | TCGETS2 = 0x802c542a
constant TCGETX (line 2313) | TCGETX = 0x5432
constant TCIFLUSH (line 2314) | TCIFLUSH = 0x0
constant TCIOFF (line 2315) | TCIOFF = 0x2
constant TCIOFLUSH (line 2316) | TCIOFLUSH = 0x2
constant TCION (line 2317) | TCION = 0x3
constant TCOFLUSH (line 2318) | TCOFLUSH = 0x1
constant TCOOFF (line 2319) | TCOOFF = 0x0
constant TCOON (line 2320) | TCOON = 0x1
constant TCP_BPF_IW (line 2321) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2322) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2323) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2324) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2325) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2326) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2327) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2328) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2329) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2330) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2331) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2332) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2333) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2334) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2335) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2336) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2337) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2338) | TCP_INFO = 0xb
constant TCP_INQ (line 2339) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2340) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2341) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2342) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2343) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2344) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2345) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2346) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2347) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2348) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2349) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2350) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2351) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2352) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2353) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2354) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2355) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2356) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2357) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2358) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2359) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2360) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2361) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2362) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2363) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2364) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2365) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2366) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2367) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2368) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2369) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2370) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2371) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2372) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2373) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2374) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2375) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2376) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2377) | TCSAFLUSH = 0x2
constant TCSBRK (line 2378) | TCSBRK = 0x5409
constant TCSBRKP (line 2379) | TCSBRKP = 0x5425
constant TCSETA (line 2380) | TCSETA = 0x5406
constant TCSETAF (line 2381) | TCSETAF = 0x5408
constant TCSETAW (line 2382) | TCSETAW = 0x5407
constant TCSETS (line 2383) | TCSETS = 0x5402
constant TCSETS2 (line 2384) | TCSETS2 = 0x402c542b
constant TCSETSF (line 2385) | TCSETSF = 0x5404
constant TCSETSF2 (line 2386) | TCSETSF2 = 0x402c542d
constant TCSETSW (line 2387) | TCSETSW = 0x5403
constant TCSETSW2 (line 2388) | TCSETSW2 = 0x402c542c
constant TCSETX (line 2389) | TCSETX = 0x5433
constant TCSETXF (line 2390) | TCSETXF = 0x5434
constant TCSETXW (line 2391) | TCSETXW = 0x5435
constant TCXONC (line 2392) | TCXONC = 0x540a
constant TIMER_ABSTIME (line 2393) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2394) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2395) | TIOCCONS = 0x541d
constant TIOCEXCL (line 2396) | TIOCEXCL = 0x540c
constant TIOCGDEV (line 2397) | TIOCGDEV = 0x80045432
constant TIOCGETD (line 2398) | TIOCGETD = 0x5424
constant TIOCGEXCL (line 2399) | TIOCGEXCL = 0x80045440
constant TIOCGICOUNT (line 2400) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2401) | TIOCGISO7816 = 0x80285442
constant TIOCGLCKTRMIOS (line 2402) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGPGRP (line 2403) | TIOCGPGRP = 0x540f
constant TIOCGPKT (line 2404) | TIOCGPKT = 0x80045438
constant TIOCGPTLCK (line 2405) | TIOCGPTLCK = 0x80045439
constant TIOCGPTN (line 2406) | TIOCGPTN = 0x80045430
constant TIOCGPTPEER (line 2407) | TIOCGPTPEER = 0x5441
constant TIOCGRS485 (line 2408) | TIOCGRS485 = 0x542e
constant TIOCGSERIAL (line 2409) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2410) | TIOCGSID = 0x5429
constant TIOCGSOFTCAR (line 2411) | TIOCGSOFTCAR = 0x5419
constant TIOCGWINSZ (line 2412) | TIOCGWINSZ = 0x5413
constant TIOCINQ (line 2413) | TIOCINQ = 0x541b
constant TIOCLINUX (line 2414) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2415) | TIOCMBIC = 0x5417
constant TIOCMBIS (line 2416) | TIOCMBIS = 0x5416
constant TIOCMGET (line 2417) | TIOCMGET = 0x5415
constant TIOCMIWAIT (line 2418) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2419) | TIOCMSET = 0x5418
constant TIOCM_CAR (line 2420) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2421) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2422) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2423) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2424) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2425) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2426) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2427) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2428) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2429) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2430) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2431) | TIOCNOTTY = 0x5422
constant TIOCNXCL (line 2432) | TIOCNXCL = 0x540d
constant TIOCOUTQ (line 2433) | TIOCOUTQ = 0x5411
constant TIOCPKT (line 2434) | TIOCPKT = 0x5420
constant TIOCPKT_DATA (line 2435) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2436) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2437) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2438) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2439) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2440) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2441) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2442) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2443) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2444) | TIOCSCTTY = 0x540e
constant TIOCSERCONFIG (line 2445) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2446) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2447) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2448) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2449) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2450) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2451) | TIOCSERSWILD = 0x5455
constant TIOCSER_TEMT (line 2452) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2453) | TIOCSETD = 0x5423
constant TIOCSIG (line 2454) | TIOCSIG = 0x40045436
constant TIOCSISO7816 (line 2455) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2456) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSPGRP (line 2457) | TIOCSPGRP = 0x5410
constant TIOCSPTLCK (line 2458) | TIOCSPTLCK = 0x40045431
constant TIOCSRS485 (line 2459) | TIOCSRS485 = 0x542f
constant TIOCSSERIAL (line 2460) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2461) | TIOCSSOFTCAR = 0x541a
constant TIOCSTI (line 2462) | TIOCSTI = 0x5412
constant TIOCSWINSZ (line 2463) | TIOCSWINSZ = 0x5414
constant TIOCVHANGUP (line 2464) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2465) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2466) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2467) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2468) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2469) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2470) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2471) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2472) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2473) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2474) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2475) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2476) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2477) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2478) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2479) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2480) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2481) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2482) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2483) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2484) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2485) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2486) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2487) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2488) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2489) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2490) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2491) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2492) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2493) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2494) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2495) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2496) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2497) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2498) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2499) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2500) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2501) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2502) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2503) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2504) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2505) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2506) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2507) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2508) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2509) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2510) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2511) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2512) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2513) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2514) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2515) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2516) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2517) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2518) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2519) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2520) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2521) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2522) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2523) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2524) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2525) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2526) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2527) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2528) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2529) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2530) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2531) | TOSTOP = 0x100
constant TPACKET_ALIGNMENT (line 2532) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2533) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2534) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2535) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2536) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2537) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2538) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2539) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2540) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2541) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2542) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2543) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2544) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2545) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2546) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2547) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2548) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2549) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2550) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2551) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2552) | TUNATTACHFILTER = 0x401054d5
constant TUNDETACHFILTER (line 2553) | TUNDETACHFILTER = 0x401054d6
constant TUNGETDEVNETNS (line 2554) | TUNGETDEVNETNS = 0x54e3
constant TUNGETFEATURES (line 2555) | TUNGETFEATURES = 0x800454cf
constant TUNGETFILTER (line 2556) | TUNGETFILTER = 0x801054db
constant TUNGETIFF (line 2557) | TUNGETIFF = 0x800454d2
constant TUNGETSNDBUF (line 2558) | TUNGETSNDBUF = 0x800454d3
constant TUNGETVNETBE (line 2559) | TUNGETVNETBE = 0x800454df
constant TUNGETVNETHDRSZ (line 2560) | TUNGETVNETHDRSZ = 0x800454d7
constant TUNGETVNETLE (line 2561) | TUNGETVNETLE = 0x800454dd
constant TUNSETCARRIER (line 2562) | TUNSETCARRIER = 0x400454e2
constant TUNSETDEBUG (line 2563) | TUNSETDEBUG = 0x400454c9
constant TUNSETFILTEREBPF (line 2564) | TUNSETFILTEREBPF = 0x800454e1
constant TUNSETGROUP (line 2565) | TUNSETGROUP = 0x400454ce
constant TUNSETIFF (line 2566) | TUNSETIFF = 0x400454ca
constant TUNSETIFINDEX (line 2567) | TUNSETIFINDEX = 0x400454da
constant TUNSETLINK (line 2568) | TUNSETLINK = 0x400454cd
constant TUNSETNOCSUM (line 2569) | TUNSETNOCSUM = 0x400454c8
constant TUNSETOFFLOAD (line 2570) | TUNSETOFFLOAD = 0x400454d0
constant TUNSETOWNER (line 2571) | TUNSETOWNER = 0x400454cc
constant TUNSETPERSIST (line 2572) | TUNSETPERSIST = 0x400454cb
constant TUNSETQUEUE (line 2573) | TUNSETQUEUE = 0x400454d9
constant TUNSETSNDBUF (line 2574) | TUNSETSNDBUF = 0x400454d4
constant TUNSETSTEERINGEBPF (line 2575) | TUNSETSTEERINGEBPF = 0x800454e0
constant TUNSETTXFILTER (line 2576) | TUNSETTXFILTER = 0x400454d1
constant TUNSETVNETBE (line 2577) | TUNSETVNETBE = 0x400454de
constant TUNSETVNETHDRSZ (line 2578) | TUNSETVNETHDRSZ = 0x400454d8
constant TUNSETVNETLE (line 2579) | TUNSETVNETLE = 0x400454dc
constant UBI_IOCATT (line 2580) | UBI_IOCATT = 0x40186f40
constant UBI_IOCDET (line 2581) | UBI_IOCDET = 0x40046f41
constant UBI_IOCEBCH (line 2582) | UBI_IOCEBCH = 0x40044f02
constant UBI_IOCEBER (line 2583) | UBI_IOCEBER = 0x40044f01
constant UBI_IOCEBISMAP (line 2584) | UBI_IOCEBISMAP = 0x80044f05
constant UBI_IOCEBMAP (line 2585) | UBI_IOCEBMAP = 0x40084f03
constant UBI_IOCEBUNMAP (line 2586) | UBI_IOCEBUNMAP = 0x40044f04
constant UBI_IOCMKVOL (line 2587) | UBI_IOCMKVOL = 0x40986f00
constant UBI_IOCRMVOL (line 2588) | UBI_IOCRMVOL = 0x40046f01
constant UBI_IOCRNVOL (line 2589) | UBI_IOCRNVOL = 0x51106f03
constant UBI_IOCRPEB (line 2590) | UBI_IOCRPEB = 0x40046f04
constant UBI_IOCRSVOL (line 2591) | UBI_IOCRSVOL = 0x400c6f02
constant UBI_IOCSETVOLPROP (line 2592) | UBI_IOCSETVOLPROP = 0x40104f06
constant UBI_IOCSPEB (line 2593) | UBI_IOCSPEB = 0x40046f05
constant UBI_IOCVOLCRBLK (line 2594) | UBI_IOCVOLCRBLK = 0x40804f07
constant UBI_IOCVOLRMBLK (line 2595) | UBI_IOCVOLRMBLK = 0x4f08
constant UBI_IOCVOLUP (line 2596) | UBI_IOCVOLUP = 0x40084f00
constant UDF_SUPER_MAGIC (line 2597) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2598) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2599) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2600) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2601) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2602) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2603) | VDISCARD = 0xd
constant VEOF (line 2604) | VEOF = 0x4
constant VEOL (line 2605) | VEOL = 0xb
constant VEOL2 (line 2606) | VEOL2 = 0x10
constant VERASE (line 2607) | VERASE = 0x2
constant VINTR (line 2608) | VINTR = 0x0
constant VKILL (line 2609) | VKILL = 0x3
constant VLNEXT (line 2610) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2611) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2612) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2613) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2614) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2615) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2616) | VMIN = 0x6
constant VM_SOCKETS_INVALID_VERSION (line 2617) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2618) | VQUIT = 0x1
constant VREPRINT (line 2619) | VREPRINT = 0xc
constant VSTART (line 2620) | VSTART = 0x8
constant VSTOP (line 2621) | VSTOP = 0x9
constant VSUSP (line 2622) | VSUSP = 0xa
constant VSWTC (line 2623) | VSWTC = 0x7
constant VT0 (line 2624) | VT0 = 0x0
constant VT1 (line 2625) | VT1 = 0x4000
constant VTDLY (line 2626) | VTDLY = 0x4000
constant VTIME (line 2627) | VTIME = 0x5
constant VWERASE (line 2628) | VWERASE = 0xe
constant WALL (line 2629) | WALL = 0x40000000
constant WCLONE (line 2630) | WCLONE = 0x80000000
constant WCONTINUED (line 2631) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2632) | WDIOC_GETBOOTSTATUS = 0x80045702
constant WDIOC_GETPRETIMEOUT (line 2633) | WDIOC_GETPRETIMEOUT = 0x80045709
constant WDIOC_GETSTATUS (line 2634) | WDIOC_GETSTATUS = 0x80045701
constant WDIOC_GETSUPPORT (line 2635) | WDIOC_GETSUPPORT = 0x80285700
constant WDIOC_GETTEMP (line 2636) | WDIOC_GETTEMP = 0x80045703
constant WDIOC_GETTIMELEFT (line 2637) | WDIOC_GETTIMELEFT = 0x8004570a
constant WDIOC_GETTIMEOUT (line 2638) | WDIOC_GETTIMEOUT = 0x80045707
constant WDIOC_KEEPALIVE (line 2639) | WDIOC_KEEPALIVE = 0x80045705
constant WDIOC_SETOPTIONS (line 2640) | WDIOC_SETOPTIONS = 0x80045704
constant WDIOC_SETPRETIMEOUT (line 2641) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2642) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2643) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2644) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2645) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2646) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2647) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2648) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2649) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2650) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2651) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2652) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2653) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2654) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2655) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2656) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2657) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2658) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2659) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2660) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2661) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2662) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2663) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2664) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2665) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2666) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2667) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2668) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2669) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2670) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2671) | WIN_READ = 0x20
constant WIN_READDMA (line 2672) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2673) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2674) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2675) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2676) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2677) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2678) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2679) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2680) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2681) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2682) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2683) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2684) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2685) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2686) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2687) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2688) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2689) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2690) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2691) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2692) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2693) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2694) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2695) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2696) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2697) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2698) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2699) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2700) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2701) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2702) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2703) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2704) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2705) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2706) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2707) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2708) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2709) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2710) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2711) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2712) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2713) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2714) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2715) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2716) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2717) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2718) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2719) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2720) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2721) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2722) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2723) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2724) | WNOHANG = 0x1
constant WNOTHREAD (line 2725) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2726) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2727) | WORDSIZE = 0x40
constant WSTOPPED (line 2728) | WSTOPPED = 0x2
constant WUNTRACED (line 2729) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2730) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2731) | XATTR_REPLACE = 0x2
constant XCASE (line 2732) | XCASE = 0x4
constant XDP_COPY (line 2733) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2734) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2735) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2736) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2737) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2738) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2739) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2740) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2741) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2742) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2743) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2744) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2745) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2746) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2747) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2748) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2749) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2750) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2751) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2752) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2753) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2754) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2755) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2756) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2757) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2758) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2759) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2760) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2765) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2766) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2767) | EADDRINUSE = syscall.Errno(0x62)
constant EADDRNOTAVAIL (line 2768) | EADDRNOTAVAIL = syscall.Errno(0x63)
constant EADV (line 2769) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2770) | EAFNOSUPPORT = syscall.Errno(0x61)
constant EAGAIN (line 2771) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2772) | EALREADY = syscall.Errno(0x72)
constant EBADE (line 2773) | EBADE = syscall.Errno(0x34)
constant EBADF (line 2774) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2775) | EBADFD = syscall.Errno(0x4d)
constant EBADMSG (line 2776) | EBADMSG = syscall.Errno(0x4a)
constant EBADR (line 2777) | EBADR = syscall.Errno(0x35)
constant EBADRQC (line 2778) | EBADRQC = syscall.Errno(0x38)
constant EBADSLT (line 2779) | EBADSLT = syscall.Errno(0x39)
constant EBFONT (line 2780) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2781) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2782) | ECANCELED = syscall.Errno(0x7d)
constant ECHILD (line 2783) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2784) | ECHRNG = syscall.Errno(0x2c)
constant ECOMM (line 2785) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2786) | ECONNABORTED = syscall.Errno(0x67)
constant ECONNREFUSED (line 2787) | ECONNREFUSED = syscall.Errno(0x6f)
constant ECONNRESET (line 2788) | ECONNRESET = syscall.Errno(0x68)
constant EDEADLK (line 2789) | EDEADLK = syscall.Errno(0x23)
constant EDEADLOCK (line 2790) | EDEADLOCK = syscall.Errno(0x23)
constant EDESTADDRREQ (line 2791) | EDESTADDRREQ = syscall.Errno(0x59)
constant EDOM (line 2792) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2793) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2794) | EDQUOT = syscall.Errno(0x7a)
constant EEXIST (line 2795) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2796) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2797) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2798) | EHOSTDOWN = syscall.Errno(0x70)
constant EHOSTUNREACH (line 2799) | EHOSTUNREACH = syscall.Errno(0x71)
constant EHWPOISON (line 2800) | EHWPOISON = syscall.Errno(0x85)
constant EIDRM (line 2801) | EIDRM = syscall.Errno(0x2b)
constant EILSEQ (line 2802) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 2803) | EINPROGRESS = syscall.Errno(0x73)
constant EINTR (line 2804) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2805) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2806) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2807) | EISCONN = syscall.Errno(0x6a)
constant EISDIR (line 2808) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2809) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2810) | EKEYEXPIRED = syscall.Errno(0x7f)
constant EKEYREJECTED (line 2811) | EKEYREJECTED = syscall.Errno(0x81)
constant EKEYREVOKED (line 2812) | EKEYREVOKED = syscall.Errno(0x80)
constant EL2HLT (line 2813) | EL2HLT = syscall.Errno(0x33)
constant EL2NSYNC (line 2814) | EL2NSYNC = syscall.Errno(0x2d)
constant EL3HLT (line 2815) | EL3HLT = syscall.Errno(0x2e)
constant EL3RST (line 2816) | EL3RST = syscall.Errno(0x2f)
constant ELIBACC (line 2817) | ELIBACC = syscall.Errno(0x4f)
constant ELIBBAD (line 2818) | ELIBBAD = syscall.Errno(0x50)
constant ELIBEXEC (line 2819) | ELIBEXEC = syscall.Errno(0x53)
constant ELIBMAX (line 2820) | ELIBMAX = syscall.Errno(0x52)
constant ELIBSCN (line 2821) | ELIBSCN = syscall.Errno(0x51)
constant ELNRNG (line 2822) | ELNRNG = syscall.Errno(0x30)
constant ELOOP (line 2823) | ELOOP = syscall.Errno(0x28)
constant EMEDIUMTYPE (line 2824) | EMEDIUMTYPE = syscall.Errno(0x7c)
constant EMFILE (line 2825) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2826) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2827) | EMSGSIZE = syscall.Errno(0x5a)
constant EMULTIHOP (line 2828) | EMULTIHOP = syscall.Errno(0x48)
constant ENAMETOOLONG (line 2829) | ENAMETOOLONG = syscall.Errno(0x24)
constant ENAVAIL (line 2830) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2831) | ENETDOWN = syscall.Errno(0x64)
constant ENETRESET (line 2832) | ENETRESET = syscall.Errno(0x66)
constant ENETUNREACH (line 2833) | ENETUNREACH = syscall.Errno(0x65)
constant ENFILE (line 2834) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2835) | ENOANO = syscall.Errno(0x37)
constant ENOBUFS (line 2836) | ENOBUFS = syscall.Errno(0x69)
constant ENOCSI (line 2837) | ENOCSI = syscall.Errno(0x32)
constant ENODATA (line 2838) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2839) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2840) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2841) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2842) | ENOKEY = syscall.Errno(0x7e)
constant ENOLCK (line 2843) | ENOLCK = syscall.Errno(0x25)
constant ENOLINK (line 2844) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2845) | ENOMEDIUM = syscall.Errno(0x7b)
constant ENOMEM (line 2846) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2847) | ENOMSG = syscall.Errno(0x2a)
constant ENONET (line 2848) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2849) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2850) | ENOPROTOOPT = syscall.Errno(0x5c)
constant ENOSPC (line 2851) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2852) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2853) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2854) | ENOSYS = syscall.Errno(0x26)
constant ENOTBLK (line 2855) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2856) | ENOTCONN = syscall.Errno(0x6b)
constant ENOTDIR (line 2857) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2858) | ENOTEMPTY = syscall.Errno(0x27)
constant ENOTNAM (line 2859) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2860) | ENOTRECOVERABLE = syscall.Errno(0x83)
constant ENOTSOCK (line 2861) | ENOTSOCK = syscall.Errno(0x58)
constant ENOTSUP (line 2862) | ENOTSUP = syscall.Errno(0x5f)
constant ENOTTY (line 2863) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2864) | ENOTUNIQ = syscall.Errno(0x4c)
constant ENXIO (line 2865) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2866) | EOPNOTSUPP = syscall.Errno(0x5f)
constant EOVERFLOW (line 2867) | EOVERFLOW = syscall.Errno(0x4b)
constant EOWNERDEAD (line 2868) | EOWNERDEAD = syscall.Errno(0x82)
constant EPERM (line 2869) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2870) | EPFNOSUPPORT = syscall.Errno(0x60)
constant EPIPE (line 2871) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2872) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2873) | EPROTONOSUPPORT = syscall.Errno(0x5d)
constant EPROTOTYPE (line 2874) | EPROTOTYPE = syscall.Errno(0x5b)
constant ERANGE (line 2875) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2876) | EREMCHG = syscall.Errno(0x4e)
constant EREMOTE (line 2877) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2878) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2879) | ERESTART = syscall.Errno(0x55)
constant ERFKILL (line 2880) | ERFKILL = syscall.Errno(0x84)
constant EROFS (line 2881) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2882) | ESHUTDOWN = syscall.Errno(0x6c)
constant ESOCKTNOSUPPORT (line 2883) | ESOCKTNOSUPPORT = syscall.Errno(0x5e)
constant ESPIPE (line 2884) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2885) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2886) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2887) | ESTALE = syscall.Errno(0x74)
constant ESTRPIPE (line 2888) | ESTRPIPE = syscall.Errno(0x56)
constant ETIME (line 2889) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2890) | ETIMEDOUT = syscall.Errno(0x6e)
constant ETOOMANYREFS (line 2891) | ETOOMANYREFS = syscall.Errno(0x6d)
constant ETXTBSY (line 2892) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2893) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2894) | EUNATCH = syscall.Errno(0x31)
constant EUSERS (line 2895) | EUSERS = syscall.Errno(0x57)
constant EWOULDBLOCK (line 2896) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2897) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2898) | EXFULL = syscall.Errno(0x36)
constant SIGABRT (line 2903) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2904) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2905) | SIGBUS = syscall.Signal(0x7)
constant SIGCHLD (line 2906) | SIGCHLD = syscall.Signal(0x11)
constant SIGCLD (line 2907) | SIGCLD = syscall.Signal(0x11)
constant SIGCONT (line 2908) | SIGCONT = syscall.Signal(0x12)
constant SIGFPE (line 2909) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2910) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2911) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2912) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2913) | SIGIO = syscall.Signal(0x1d)
constant SIGIOT (line 2914) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2915) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2916) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2917) | SIGPOLL = syscall.Signal(0x1d)
constant SIGPROF (line 2918) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2919) | SIGPWR = syscall.Signal(0x1e)
constant SIGQUIT (line 2920) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2921) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTKFLT (line 2922) | SIGSTKFLT = syscall.Signal(0x10)
constant SIGSTOP (line 2923) | SIGSTOP = syscall.Signal(0x13)
constant SIGSYS (line 2924) | SIGSYS = syscall.Signal(0x1f)
constant SIGTERM (line 2925) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2926) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2927) | SIGTSTP = syscall.Signal(0x14)
constant SIGTTIN (line 2928) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2929) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2930) | SIGURG = syscall.Signal(0x17)
constant SIGUSR1 (line 2931) | SIGUSR1 = syscall.Signal(0xa)
constant SIGUSR2 (line 2932) | SIGUSR2 = syscall.Signal(0xc)
constant SIGVTALRM (line 2933) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 2934) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 2935) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 2936) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x40041270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x80041271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x20001261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x20001265
constant BLKFRASET (line 183) | BLKFRASET = 0x20001264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x20001260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x40041272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x2000127b
constant BLKRAGET (line 187) | BLKRAGET = 0x20001263
constant BLKRASET (line 188) | BLKRASET = 0x20001262
constant BLKROGET (line 189) | BLKROGET = 0x2000125e
constant BLKROSET (line 190) | BLKROSET = 0x2000125d
constant BLKRRPART (line 191) | BLKRRPART = 0x2000125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x20001267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x20001266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x20001268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x80
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x2000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0x21
constant F_GETLK64 (line 713) | F_GETLK64 = 0x21
constant F_GETOWN (line 714) | F_GETOWN = 0x17
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0x22
constant F_SETLK64 (line 737) | F_SETLK64 = 0x22
constant F_SETLKW (line 738) | F_SETLKW = 0x23
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0x23
constant F_SETOWN (line 740) | F_SETOWN = 0x18
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x400
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x2
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x100
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x80
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x200
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x1000
constant IXON (line 1070) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x800
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x800
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x2000
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x4000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x1000
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x80000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x8000
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x20000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x400
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x10000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 1218) | MAP_RENAME = 0x800
constant MAP_SHARED (line 1219) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1220) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1221) | MAP_STACK = 0x40000
constant MAP_TYPE (line 1222) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1223) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1224) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1225) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1226) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1227) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1228) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1229) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1230) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1231) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1232) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1233) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1234) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1235) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1236) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1237) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1238) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1239) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1240) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1241) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1242) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1243) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1244) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1245) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1246) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1247) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1248) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1249) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1250) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1251) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1252) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1253) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1254) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1255) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1256) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1257) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1258) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1259) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1260) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1261) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1262) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1263) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1264) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1265) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1266) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1267) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1268) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1269) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1270) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1271) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1272) | MSG_FIN = 0x200
constant MSG_MORE (line 1273) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1274) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1275) | MSG_OOB = 0x1
constant MSG_PEEK (line 1276) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1277) | MSG_PROXY = 0x10
constant MSG_RST (line 1278) | MSG_RST = 0x1000
constant MSG_SYN (line 1279) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1280) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1281) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1282) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1283) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1284) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1285) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1286) | MS_ASYNC = 0x1
constant MS_BIND (line 1287) | MS_BIND = 0x1000
constant MS_BORN (line 1288) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1289) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1290) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1291) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1292) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1293) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1294) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1295) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1296) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1297) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1298) | MS_NOATIME = 0x400
constant MS_NODEV (line 1299) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1300) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1301) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1302) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1303) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1304) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1305) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1306) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1307) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1308) | MS_RDONLY = 0x1
constant MS_REC (line 1309) | MS_REC = 0x4000
constant MS_RELATIME (line 1310) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1311) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1312) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1313) | MS_SHARED = 0x100000
constant MS_SILENT (line 1314) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1315) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1316) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1317) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1318) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1319) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1320) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1321) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1322) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1323) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1324) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1325) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1326) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1327) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1328) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1329) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1330) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1331) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1332) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1333) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1334) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1335) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1336) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1337) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1338) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1339) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1340) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1341) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1342) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1343) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1344) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1345) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1346) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1347) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1348) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1349) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1350) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1351) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1352) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1353) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1354) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1355) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1356) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1357) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1358) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1359) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1360) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1361) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1362) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1363) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1364) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1365) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1366) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1367) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1368) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1369) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1370) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1371) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1372) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1373) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1374) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1375) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1376) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1377) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1378) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1379) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1380) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1381) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1382) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1383) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1384) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1385) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1386) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1387) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1388) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1389) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1390) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1391) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1392) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1393) | NL0 = 0x0
constant NL1 (line 1394) | NL1 = 0x100
constant NLA_ALIGNTO (line 1395) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1396) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1397) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1398) | NLA_HDRLEN = 0x4
constant NLDLY (line 1399) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1400) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1401) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1402) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1403) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1404) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1405) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1406) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1407) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1408) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1409) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1410) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1411) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1412) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1413) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1414) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1415) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1416) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1417) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1418) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1419) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1420) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1421) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1422) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1423) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1424) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1425) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1426) | NS_GET_NSTYPE = 0x2000b703
constant NS_GET_OWNER_UID (line 1427) | NS_GET_OWNER_UID = 0x2000b704
constant NS_GET_PARENT (line 1428) | NS_GET_PARENT = 0x2000b702
constant NS_GET_USERNS (line 1429) | NS_GET_USERNS = 0x2000b701
constant OCFS2_SUPER_MAGIC (line 1430) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1431) | OCRNL = 0x8
constant OFDEL (line 1432) | OFDEL = 0x80
constant OFILL (line 1433) | OFILL = 0x40
constant OLCUC (line 1434) | OLCUC = 0x2
constant ONLCR (line 1435) | ONLCR = 0x4
constant ONLRET (line 1436) | ONLRET = 0x20
constant ONOCR (line 1437) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1438) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1439) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1440) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1441) | O_ACCMODE = 0x3
constant O_APPEND (line 1442) | O_APPEND = 0x8
constant O_ASYNC (line 1443) | O_ASYNC = 0x1000
constant O_CLOEXEC (line 1444) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1445) | O_CREAT = 0x100
constant O_DIRECT (line 1446) | O_DIRECT = 0x8000
constant O_DIRECTORY (line 1447) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1448) | O_DSYNC = 0x10
constant O_EXCL (line 1449) | O_EXCL = 0x400
constant O_FSYNC (line 1450) | O_FSYNC = 0x4010
constant O_LARGEFILE (line 1451) | O_LARGEFILE = 0x2000
constant O_NDELAY (line 1452) | O_NDELAY = 0x80
constant O_NOATIME (line 1453) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1454) | O_NOCTTY = 0x800
constant O_NOFOLLOW (line 1455) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1456) | O_NONBLOCK = 0x80
constant O_PATH (line 1457) | O_PATH = 0x200000
constant O_RDONLY (line 1458) | O_RDONLY = 0x0
constant O_RDWR (line 1459) | O_RDWR = 0x2
constant O_RSYNC (line 1460) | O_RSYNC = 0x4010
constant O_SYNC (line 1461) | O_SYNC = 0x4010
constant O_TMPFILE (line 1462) | O_TMPFILE = 0x410000
constant O_TRUNC (line 1463) | O_TRUNC = 0x200
constant O_WRONLY (line 1464) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1465) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1466) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1467) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1468) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1469) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1470) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1471) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1472) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1473) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1474) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1475) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1476) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1477) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1478) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1479) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1480) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1481) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1482) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1483) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1484) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1485) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1486) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1487) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1488) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1489) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1490) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1491) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1492) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1493) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1494) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1495) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1496) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1497) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1498) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1499) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1500) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1501) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1502) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1503) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1504) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1505) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1506) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1507) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1508) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1509) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1510) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1511) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1512) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1513) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1514) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1515) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1516) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1517) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1518) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1519) | PARITY_NONE = 0x1
constant PARMRK (line 1520) | PARMRK = 0x8
constant PARODD (line 1521) | PARODD = 0x200
constant PENDIN (line 1522) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1523) | PERF_EVENT_IOC_DISABLE = 0x20002401
constant PERF_EVENT_IOC_ENABLE (line 1524) | PERF_EVENT_IOC_ENABLE = 0x20002400
constant PERF_EVENT_IOC_ID (line 1525) | PERF_EVENT_IOC_ID = 0x40042407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1526) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8004240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1527) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409
constant PERF_EVENT_IOC_PERIOD (line 1528) | PERF_EVENT_IOC_PERIOD = 0x80082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1529) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a
constant PERF_EVENT_IOC_REFRESH (line 1530) | PERF_EVENT_IOC_REFRESH = 0x20002402
constant PERF_EVENT_IOC_RESET (line 1531) | PERF_EVENT_IOC_RESET = 0x20002403
constant PERF_EVENT_IOC_SET_BPF (line 1532) | PERF_EVENT_IOC_SET_BPF = 0x80042408
constant PERF_EVENT_IOC_SET_FILTER (line 1533) | PERF_EVENT_IOC_SET_FILTER = 0x80042406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1534) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405
constant PIPEFS_MAGIC (line 1535) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1536) | PPPIOCATTACH = 0x8004743d
constant PPPIOCATTCHAN (line 1537) | PPPIOCATTCHAN = 0x80047438
constant PPPIOCCONNECT (line 1538) | PPPIOCCONNECT = 0x8004743a
constant PPPIOCDETACH (line 1539) | PPPIOCDETACH = 0x8004743c
constant PPPIOCDISCONN (line 1540) | PPPIOCDISCONN = 0x20007439
constant PPPIOCGASYNCMAP (line 1541) | PPPIOCGASYNCMAP = 0x40047458
constant PPPIOCGCHAN (line 1542) | PPPIOCGCHAN = 0x40047437
constant PPPIOCGDEBUG (line 1543) | PPPIOCGDEBUG = 0x40047441
constant PPPIOCGFLAGS (line 1544) | PPPIOCGFLAGS = 0x4004745a
constant PPPIOCGIDLE (line 1545) | PPPIOCGIDLE = 0x4008743f
constant PPPIOCGL2TPSTATS (line 1546) | PPPIOCGL2TPSTATS = 0x40487436
constant PPPIOCGMRU (line 1547) | PPPIOCGMRU = 0x40047453
constant PPPIOCGNPMODE (line 1548) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1549) | PPPIOCGRASYNCMAP = 0x40047455
constant PPPIOCGUNIT (line 1550) | PPPIOCGUNIT = 0x40047456
constant PPPIOCGXASYNCMAP (line 1551) | PPPIOCGXASYNCMAP = 0x40207450
constant PPPIOCNEWUNIT (line 1552) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1553) | PPPIOCSACTIVE = 0x80087446
constant PPPIOCSASYNCMAP (line 1554) | PPPIOCSASYNCMAP = 0x80047457
constant PPPIOCSCOMPRESS (line 1555) | PPPIOCSCOMPRESS = 0x800c744d
constant PPPIOCSDEBUG (line 1556) | PPPIOCSDEBUG = 0x80047440
constant PPPIOCSFLAGS (line 1557) | PPPIOCSFLAGS = 0x80047459
constant PPPIOCSMAXCID (line 1558) | PPPIOCSMAXCID = 0x80047451
constant PPPIOCSMRRU (line 1559) | PPPIOCSMRRU = 0x8004743b
constant PPPIOCSMRU (line 1560) | PPPIOCSMRU = 0x80047452
constant PPPIOCSNPMODE (line 1561) | PPPIOCSNPMODE = 0x8008744b
constant PPPIOCSPASS (line 1562) | PPPIOCSPASS = 0x80087447
constant PPPIOCSRASYNCMAP (line 1563) | PPPIOCSRASYNCMAP = 0x80047454
constant PPPIOCSXASYNCMAP (line 1564) | PPPIOCSXASYNCMAP = 0x8020744f
constant PPPIOCXFERUNIT (line 1565) | PPPIOCXFERUNIT = 0x2000744e
constant PRIO_PGRP (line 1566) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1567) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1568) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1569) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1570) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1571) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1572) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1573) | PROT_NONE = 0x0
constant PROT_READ (line 1574) | PROT_READ = 0x1
constant PROT_WRITE (line 1575) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1576) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1577) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1578) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1579) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1580) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1581) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1582) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1583) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1584) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1585) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1586) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1587) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1588) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1589) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1590) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1591) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1592) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1593) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1594) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1595) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1596) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1597) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1598) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1599) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1600) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1601) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1602) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1603) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1604) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1605) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1606) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1607) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1608) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1609) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1610) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1611) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1612) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1613) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1614) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1615) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1616) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1617) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1618) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1619) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1620) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1621) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1622) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1623) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1624) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1625) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1626) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1627) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1628) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1629) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1630) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1631) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1632) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1633) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1634) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1635) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1636) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1637) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1638) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1639) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1640) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1641) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1642) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1643) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1644) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1645) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1646) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1647) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1648) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1649) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1650) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1651) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1652) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1653) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1654) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1655) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1656) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1657) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1658) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1659) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1660) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1661) | PR_SET_PTRACER_ANY = 0xffffffff
constant PR_SET_SECCOMP (line 1662) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1663) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1664) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1665) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1666) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1667) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1668) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1669) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1670) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1671) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1672) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1673) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1674) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1675) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1676) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1677) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1678) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1679) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1680) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1681) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1682) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1683) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1684) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1685) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1686) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1687) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1688) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1689) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1690) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1691) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1692) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1693) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1694) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1695) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1696) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1697) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1698) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1699) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1700) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1701) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1702) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1703) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1704) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1705) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETFPREGS (line 1706) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETREGS (line 1707) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1708) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1709) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1710) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1711) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_GET_THREAD_AREA (line 1712) | PTRACE_GET_THREAD_AREA = 0x19
constant PTRACE_GET_THREAD_AREA_3264 (line 1713) | PTRACE_GET_THREAD_AREA_3264 = 0xc4
constant PTRACE_GET_WATCH_REGS (line 1714) | PTRACE_GET_WATCH_REGS = 0xd0
constant PTRACE_INTERRUPT (line 1715) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1716) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1717) | PTRACE_LISTEN = 0x4208
constant PTRACE_OLDSETOPTIONS (line 1718) | PTRACE_OLDSETOPTIONS = 0x15
constant PTRACE_O_EXITKILL (line 1719) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1720) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1721) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1722) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1723) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1724) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1725) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1726) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1727) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1728) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1729) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1730) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKDATA_3264 (line 1731) | PTRACE_PEEKDATA_3264 = 0xc1
constant PTRACE_PEEKSIGINFO (line 1732) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1733) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1734) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKTEXT_3264 (line 1735) | PTRACE_PEEKTEXT_3264 = 0xc0
constant PTRACE_PEEKUSR (line 1736) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1737) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKEDATA_3264 (line 1738) | PTRACE_POKEDATA_3264 = 0xc3
constant PTRACE_POKETEXT (line 1739) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKETEXT_3264 (line 1740) | PTRACE_POKETEXT_3264 = 0xc2
constant PTRACE_POKEUSR (line 1741) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1742) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1743) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1744) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETFPREGS (line 1745) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETOPTIONS (line 1746) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1747) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1748) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1749) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1750) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SET_THREAD_AREA (line 1751) | PTRACE_SET_THREAD_AREA = 0x1a
constant PTRACE_SET_WATCH_REGS (line 1752) | PTRACE_SET_WATCH_REGS = 0xd1
constant PTRACE_SINGLESTEP (line 1753) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1754) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1755) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1756) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1757) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1758) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_TRACEME (line 1759) | PTRACE_TRACEME = 0x0
constant QNX4_SUPER_MAGIC (line 1760) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1761) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1762) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1763) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1764) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1765) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1766) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1767) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1768) | RLIMIT_AS = 0x6
constant RLIMIT_CORE (line 1769) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1770) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1771) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1772) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1773) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1774) | RLIMIT_MEMLOCK = 0x9
constant RLIMIT_MSGQUEUE (line 1775) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1776) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1777) | RLIMIT_NOFILE = 0x5
constant RLIMIT_NPROC (line 1778) | RLIMIT_NPROC = 0x8
constant RLIMIT_RSS (line 1779) | RLIMIT_RSS = 0x7
constant RLIMIT_RTPRIO (line 1780) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1781) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1782) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1783) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1784) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1785) | RNDADDENTROPY = 0x80085203
constant RNDADDTOENTCNT (line 1786) | RNDADDTOENTCNT = 0x80045201
constant RNDCLEARPOOL (line 1787) | RNDCLEARPOOL = 0x20005206
constant RNDGETENTCNT (line 1788) | RNDGETENTCNT = 0x40045200
constant RNDGETPOOL (line 1789) | RNDGETPOOL = 0x40085202
constant RNDRESEEDCRNG (line 1790) | RNDRESEEDCRNG = 0x20005207
constant RNDZAPENTCNT (line 1791) | RNDZAPENTCNT = 0x20005204
constant RTAX_ADVMSS (line 1792) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1793) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1794) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1795) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1796) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1797) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1798) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1799) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1800) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1801) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1802) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1803) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1804) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1805) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1806) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1807) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1808) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1809) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1810) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1811) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1812) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1813) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1814) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1815) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1816) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1817) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1818) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1819) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1820) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1821) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1822) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1823) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1824) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1825) | RTC_AIE_OFF = 0x20007002
constant RTC_AIE_ON (line 1826) | RTC_AIE_ON = 0x20007001
constant RTC_ALM_READ (line 1827) | RTC_ALM_READ = 0x40247008
constant RTC_ALM_SET (line 1828) | RTC_ALM_SET = 0x80247007
constant RTC_EPOCH_READ (line 1829) | RTC_EPOCH_READ = 0x4004700d
constant RTC_EPOCH_SET (line 1830) | RTC_EPOCH_SET = 0x8004700e
constant RTC_IRQF (line 1831) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1832) | RTC_IRQP_READ = 0x4004700b
constant RTC_IRQP_SET (line 1833) | RTC_IRQP_SET = 0x8004700c
constant RTC_MAX_FREQ (line 1834) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1835) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1836) | RTC_PIE_OFF = 0x20007006
constant RTC_PIE_ON (line 1837) | RTC_PIE_ON = 0x20007005
constant RTC_PLL_GET (line 1838) | RTC_PLL_GET = 0x401c7011
constant RTC_PLL_SET (line 1839) | RTC_PLL_SET = 0x801c7012
constant RTC_RD_TIME (line 1840) | RTC_RD_TIME = 0x40247009
constant RTC_SET_TIME (line 1841) | RTC_SET_TIME = 0x8024700a
constant RTC_UF (line 1842) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1843) | RTC_UIE_OFF = 0x20007004
constant RTC_UIE_ON (line 1844) | RTC_UIE_ON = 0x20007003
constant RTC_VL_CLR (line 1845) | RTC_VL_CLR = 0x20007014
constant RTC_VL_READ (line 1846) | RTC_VL_READ = 0x40047013
constant RTC_WIE_OFF (line 1847) | RTC_WIE_OFF = 0x20007010
constant RTC_WIE_ON (line 1848) | RTC_WIE_ON = 0x2000700f
constant RTC_WKALM_RD (line 1849) | RTC_WKALM_RD = 0x40287010
constant RTC_WKALM_SET (line 1850) | RTC_WKALM_SET = 0x8028700f
constant RTF_ADDRCLASSMASK (line 1851) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1852) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1853) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1854) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1855) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1856) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1857) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1858) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1859) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1860) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1861) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1862) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1863) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1864) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1865) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1866) | RTF_MSS = 0x40
constant RTF_MTU (line 1867) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1868) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1869) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1870) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1871) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1872) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1873) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1874) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1875) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1876) | RTF_STATIC = 0x400
constant RTF_THROW (line 1877) | RTF_THROW = 0x2000
constant RTF_UP (line 1878) | RTF_UP = 0x1
constant RTF_WINDOW (line 1879) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1880) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1881) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1882) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1883) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1884) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1885) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1886) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1887) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1888) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1889) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1890) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1891) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1892) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1893) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1894) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1895) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1896) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1897) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1898) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1899) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1900) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1901) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1902) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1903) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1904) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1905) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1906) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1907) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1908) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1909) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1910) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1911) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1912) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1913) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1914) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1915) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1916) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1917) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1918) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1919) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1920) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1921) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1922) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1923) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1924) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1925) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1926) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1927) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1928) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1929) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1930) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1931) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1932) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1933) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1934) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1935) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1936) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1937) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1938) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1939) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1940) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1941) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1942) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1943) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1944) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1945) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1946) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1947) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1948) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1949) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1950) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1951) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1952) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1953) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1954) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1955) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1956) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1957) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1958) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1959) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1960) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1961) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1962) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1963) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1964) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1965) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1966) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1967) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1968) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1969) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1970) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1971) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1972) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1973) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1974) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1975) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1976) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1977) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1978) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1979) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1980) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1981) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1982) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1983) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1984) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1985) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1986) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1987) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1988) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1989) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1990) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1991) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1992) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 1993) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 1994) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 1995) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 1996) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 1997) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 1998) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 1999) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2000) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2001) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2002) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2003) | SFD_NONBLOCK = 0x80
constant SHUT_RD (line 2004) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2005) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2006) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2007) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2008) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2009) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2010) | SIOCATMARK = 0x40047307
constant SIOCBONDCHANGEACTIVE (line 2011) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2012) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2013) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2014) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2015) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2016) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2017) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2018) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2019) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2020) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2021) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2022) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2023) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2024) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2025) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2026) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2027) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2028) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2029) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2030) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2031) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2032) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2033) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2034) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2035) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2036) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2037) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2038) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2039) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2040) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2041) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2042) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2043) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2044) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2045) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2046) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2047) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2048) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2049) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2050) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2051) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2052) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2053) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2054) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2055) | SIOCGPGRP = 0x40047309
constant SIOCGPPPCSTATS (line 2056) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2057) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2058) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2059) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2060) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2061) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2062) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2063) | SIOCGSTAMPNS_NEW = 0x40108907
constant SIOCGSTAMPNS_OLD (line 2064) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2065) | SIOCGSTAMP_NEW = 0x40108906
constant SIOCGSTAMP_OLD (line 2066) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2067) | SIOCINQ = 0x467f
constant SIOCOUTQ (line 2068) | SIOCOUTQ = 0x7472
constant SIOCOUTQNSD (line 2069) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2070) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2071) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2072) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2073) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2074) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2075) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2076) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2077) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2078) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2079) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2080) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2081) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2082) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2083) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2084) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2085) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2086) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2087) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2088) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2089) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2090) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2091) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2092) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2093) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2094) | SIOCSPGRP = 0x80047308
constant SIOCSRARP (line 2095) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2096) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2097) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2098) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2099) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2100) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2101) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2102) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2103) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2104) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2105) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2106) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2107) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2108) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2109) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2110) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2111) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2112) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2113) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2114) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2115) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2116) | SOCK_DGRAM = 0x1
constant SOCK_IOC_TYPE (line 2117) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2118) | SOCK_NONBLOCK = 0x80
constant SOCK_PACKET (line 2119) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2120) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2121) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2122) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2123) | SOCK_STREAM = 0x2
constant SOL_AAL (line 2124) | SOL_AAL = 0x109
constant SOL_ALG (line 2125) | SOL_ALG = 0x117
constant SOL_ATM (line 2126) | SOL_ATM = 0x108
constant SOL_CAIF (line 2127) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2128) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2129) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2130) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2131) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2132) | SOL_IP = 0x0
constant SOL_IPV6 (line 2133) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2134) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2135) | SOL_IUCV = 0x115
constant SOL_KCM (line 2136) | SOL_KCM = 0x119
constant SOL_LLC (line 2137) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2138) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2139) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2140) | SOL_NFC = 0x118
constant SOL_PACKET (line 2141) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2142) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2143) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2144) | SOL_RAW = 0xff
constant SOL_RDS (line 2145) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2146) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2147) | SOL_SOCKET = 0xffff
constant SOL_TCP (line 2148) | SOL_TCP = 0x6
constant SOL_TIPC (line 2149) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2150) | SOL_TLS = 0x11a
constant SOL_X25 (line 2151) | SOL_X25 = 0x106
constant SOL_XDP (line 2152) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2153) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2154) | SO_ACCEPTCONN = 0x1009
constant SO_ATTACH_BPF (line 2155) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2156) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2157) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2158) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2159) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2160) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2161) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2162) | SO_BROADCAST = 0x20
constant SO_BSDCOMPAT (line 2163) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2164) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2165) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2166) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2167) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2168) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2169) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2170) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2171) | SO_DOMAIN = 0x1029
constant SO_DONTROUTE (line 2172) | SO_DONTROUTE = 0x10
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2173) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2174) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2175) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2176) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2177) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2178) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2179) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2180) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2181) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2182) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2183) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2184) | SO_ERROR = 0x1007
constant SO_GET_FILTER (line 2185) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2186) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2187) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2188) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 2189) | SO_LINGER = 0x80
constant SO_LOCK_FILTER (line 2190) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2191) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2192) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2193) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2194) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2195) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2196) | SO_OOBINLINE = 0x100
constant SO_PASSCRED (line 2197) | SO_PASSCRED = 0x11
constant SO_PASSSEC (line 2198) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2199) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2200) | SO_PEERCRED = 0x12
constant SO_PEERGROUPS (line 2201) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2202) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2203) | SO_PEERSEC = 0x1e
constant SO_PRIORITY (line 2204) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2205) | SO_PROTOCOL = 0x1028
constant SO_RCVBUF (line 2206) | SO_RCVBUF = 0x1002
constant SO_RCVBUFFORCE (line 2207) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2208) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 2209) | SO_RCVTIMEO = 0x1006
constant SO_RCVTIMEO_NEW (line 2210) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2211) | SO_RCVTIMEO_OLD = 0x1006
constant SO_REUSEADDR (line 2212) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 2213) | SO_REUSEPORT = 0x200
constant SO_RXQ_OVFL (line 2214) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2215) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2216) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2217) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2218) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2219) | SO_SNDBUF = 0x1001
constant SO_SNDBUFFORCE (line 2220) | SO_SNDBUFFORCE = 0x1f
constant SO_SNDLOWAT (line 2221) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 2222) | SO_SNDTIMEO = 0x1005
constant SO_SNDTIMEO_NEW (line 2223) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2224) | SO_SNDTIMEO_OLD = 0x1005
constant SO_STYLE (line 2225) | SO_STYLE = 0x1008
constant SO_TIMESTAMP (line 2226) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2227) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2228) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2229) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2230) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2231) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2232) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2233) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2234) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2235) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2236) | SO_TYPE = 0x1008
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2237) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2238) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2239) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2240) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2241) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2242) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2243) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2244) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2245) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2246) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2247) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2248) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2249) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2250) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2251) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2252) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2253) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2254) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2255) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2256) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2257) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2258) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2259) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2260) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2261) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2262) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2263) | STATX_CTIME = 0x80
constant STATX_GID (line 2264) | STATX_GID = 0x10
constant STATX_INO (line 2265) | STATX_INO = 0x100
constant STATX_MODE (line 2266) | STATX_MODE = 0x2
constant STATX_MTIME (line 2267) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2268) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2269) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2270) | STATX_TYPE = 0x1
constant STATX_UID (line 2271) | STATX_UID = 0x8
constant STATX__RESERVED (line 2272) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2273) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2274) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2275) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2276) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2277) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2278) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2279) | S_IEXEC = 0x40
constant S_IFBLK (line 2280) | S_IFBLK = 0x6000
constant S_IFCHR (line 2281) | S_IFCHR = 0x2000
constant S_IFDIR (line 2282) | S_IFDIR = 0x4000
constant S_IFIFO (line 2283) | S_IFIFO = 0x1000
constant S_IFLNK (line 2284) | S_IFLNK = 0xa000
constant S_IFMT (line 2285) | S_IFMT = 0xf000
constant S_IFREG (line 2286) | S_IFREG = 0x8000
constant S_IFSOCK (line 2287) | S_IFSOCK = 0xc000
constant S_IREAD (line 2288) | S_IREAD = 0x100
constant S_IRGRP (line 2289) | S_IRGRP = 0x20
constant S_IROTH (line 2290) | S_IROTH = 0x4
constant S_IRUSR (line 2291) | S_IRUSR = 0x100
constant S_IRWXG (line 2292) | S_IRWXG = 0x38
constant S_IRWXO (line 2293) | S_IRWXO = 0x7
constant S_IRWXU (line 2294) | S_IRWXU = 0x1c0
constant S_ISGID (line 2295) | S_ISGID = 0x400
constant S_ISUID (line 2296) | S_ISUID = 0x800
constant S_ISVTX (line 2297) | S_ISVTX = 0x200
constant S_IWGRP (line 2298) | S_IWGRP = 0x10
constant S_IWOTH (line 2299) | S_IWOTH = 0x2
constant S_IWRITE (line 2300) | S_IWRITE = 0x80
constant S_IWUSR (line 2301) | S_IWUSR = 0x80
constant S_IXGRP (line 2302) | S_IXGRP = 0x8
constant S_IXOTH (line 2303) | S_IXOTH = 0x1
constant S_IXUSR (line 2304) | S_IXUSR = 0x40
constant TAB0 (line 2305) | TAB0 = 0x0
constant TAB1 (line 2306) | TAB1 = 0x800
constant TAB2 (line 2307) | TAB2 = 0x1000
constant TAB3 (line 2308) | TAB3 = 0x1800
constant TABDLY (line 2309) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2310) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2311) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2312) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2313) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2314) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2315) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2316) | TCFLSH = 0x5407
constant TCGETA (line 2317) | TCGETA = 0x5401
constant TCGETS (line 2318) | TCGETS = 0x540d
constant TCGETS2 (line 2319) | TCGETS2 = 0x4030542a
constant TCIFLUSH (line 2320) | TCIFLUSH = 0x0
constant TCIOFF (line 2321) | TCIOFF = 0x2
constant TCIOFLUSH (line 2322) | TCIOFLUSH = 0x2
constant TCION (line 2323) | TCION = 0x3
constant TCOFLUSH (line 2324) | TCOFLUSH = 0x1
constant TCOOFF (line 2325) | TCOOFF = 0x0
constant TCOON (line 2326) | TCOON = 0x1
constant TCP_BPF_IW (line 2327) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2328) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2329) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2330) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2331) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2332) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2333) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2334) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2335) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2336) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2337) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2338) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2339) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2340) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2341) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2342) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2343) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2344) | TCP_INFO = 0xb
constant TCP_INQ (line 2345) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2346) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2347) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2348) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2349) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2350) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2351) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2352) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2353) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2354) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2355) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2356) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2357) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2358) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2359) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2360) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2361) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2362) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2363) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2364) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2365) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2366) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2367) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2368) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2369) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2370) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2371) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2372) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2373) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2374) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2375) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2376) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2377) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2378) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2379) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2380) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2381) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2382) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2383) | TCSAFLUSH = 0x5410
constant TCSBRK (line 2384) | TCSBRK = 0x5405
constant TCSBRKP (line 2385) | TCSBRKP = 0x5486
constant TCSETA (line 2386) | TCSETA = 0x5402
constant TCSETAF (line 2387) | TCSETAF = 0x5404
constant TCSETAW (line 2388) | TCSETAW = 0x5403
constant TCSETS (line 2389) | TCSETS = 0x540e
constant TCSETS2 (line 2390) | TCSETS2 = 0x8030542b
constant TCSETSF (line 2391) | TCSETSF = 0x5410
constant TCSETSF2 (line 2392) | TCSETSF2 = 0x8030542d
constant TCSETSW (line 2393) | TCSETSW = 0x540f
constant TCSETSW2 (line 2394) | TCSETSW2 = 0x8030542c
constant TCXONC (line 2395) | TCXONC = 0x5406
constant TIMER_ABSTIME (line 2396) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2397) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2398) | TIOCCONS = 0x80047478
constant TIOCEXCL (line 2399) | TIOCEXCL = 0x740d
constant TIOCGDEV (line 2400) | TIOCGDEV = 0x40045432
constant TIOCGETD (line 2401) | TIOCGETD = 0x7400
constant TIOCGETP (line 2402) | TIOCGETP = 0x7408
constant TIOCGEXCL (line 2403) | TIOCGEXCL = 0x40045440
constant TIOCGICOUNT (line 2404) | TIOCGICOUNT = 0x5492
constant TIOCGISO7816 (line 2405) | TIOCGISO7816 = 0x40285442
constant TIOCGLCKTRMIOS (line 2406) | TIOCGLCKTRMIOS = 0x548b
constant TIOCGLTC (line 2407) | TIOCGLTC = 0x7474
constant TIOCGPGRP (line 2408) | TIOCGPGRP = 0x40047477
constant TIOCGPKT (line 2409) | TIOCGPKT = 0x40045438
constant TIOCGPTLCK (line 2410) | TIOCGPTLCK = 0x40045439
constant TIOCGPTN (line 2411) | TIOCGPTN = 0x40045430
constant TIOCGPTPEER (line 2412) | TIOCGPTPEER = 0x20005441
constant TIOCGRS485 (line 2413) | TIOCGRS485 = 0x4020542e
constant TIOCGSERIAL (line 2414) | TIOCGSERIAL = 0x5484
constant TIOCGSID (line 2415) | TIOCGSID = 0x7416
constant TIOCGSOFTCAR (line 2416) | TIOCGSOFTCAR = 0x5481
constant TIOCGWINSZ (line 2417) | TIOCGWINSZ = 0x40087468
constant TIOCINQ (line 2418) | TIOCINQ = 0x467f
constant TIOCLINUX (line 2419) | TIOCLINUX = 0x5483
constant TIOCMBIC (line 2420) | TIOCMBIC = 0x741c
constant TIOCMBIS (line 2421) | TIOCMBIS = 0x741b
constant TIOCMGET (line 2422) | TIOCMGET = 0x741d
constant TIOCMIWAIT (line 2423) | TIOCMIWAIT = 0x5491
constant TIOCMSET (line 2424) | TIOCMSET = 0x741a
constant TIOCM_CAR (line 2425) | TIOCM_CAR = 0x100
constant TIOCM_CD (line 2426) | TIOCM_CD = 0x100
constant TIOCM_CTS (line 2427) | TIOCM_CTS = 0x40
constant TIOCM_DSR (line 2428) | TIOCM_DSR = 0x400
constant TIOCM_DTR (line 2429) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2430) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2431) | TIOCM_RI = 0x200
constant TIOCM_RNG (line 2432) | TIOCM_RNG = 0x200
constant TIOCM_RTS (line 2433) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2434) | TIOCM_SR = 0x20
constant TIOCM_ST (line 2435) | TIOCM_ST = 0x10
constant TIOCNOTTY (line 2436) | TIOCNOTTY = 0x5471
constant TIOCNXCL (line 2437) | TIOCNXCL = 0x740e
constant TIOCOUTQ (line 2438) | TIOCOUTQ = 0x7472
constant TIOCPKT (line 2439) | TIOCPKT = 0x5470
constant TIOCPKT_DATA (line 2440) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2441) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2442) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2443) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2444) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2445) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2446) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2447) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2448) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2449) | TIOCSCTTY = 0x5480
constant TIOCSERCONFIG (line 2450) | TIOCSERCONFIG = 0x5488
constant TIOCSERGETLSR (line 2451) | TIOCSERGETLSR = 0x548e
constant TIOCSERGETMULTI (line 2452) | TIOCSERGETMULTI = 0x548f
constant TIOCSERGSTRUCT (line 2453) | TIOCSERGSTRUCT = 0x548d
constant TIOCSERGWILD (line 2454) | TIOCSERGWILD = 0x5489
constant TIOCSERSETMULTI (line 2455) | TIOCSERSETMULTI = 0x5490
constant TIOCSERSWILD (line 2456) | TIOCSERSWILD = 0x548a
constant TIOCSER_TEMT (line 2457) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2458) | TIOCSETD = 0x7401
constant TIOCSETN (line 2459) | TIOCSETN = 0x740a
constant TIOCSETP (line 2460) | TIOCSETP = 0x7409
constant TIOCSIG (line 2461) | TIOCSIG = 0x80045436
constant TIOCSISO7816 (line 2462) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2463) | TIOCSLCKTRMIOS = 0x548c
constant TIOCSLTC (line 2464) | TIOCSLTC = 0x7475
constant TIOCSPGRP (line 2465) | TIOCSPGRP = 0x80047476
constant TIOCSPTLCK (line 2466) | TIOCSPTLCK = 0x80045431
constant TIOCSRS485 (line 2467) | TIOCSRS485 = 0xc020542f
constant TIOCSSERIAL (line 2468) | TIOCSSERIAL = 0x5485
constant TIOCSSOFTCAR (line 2469) | TIOCSSOFTCAR = 0x5482
constant TIOCSTI (line 2470) | TIOCSTI = 0x5472
constant TIOCSWINSZ (line 2471) | TIOCSWINSZ = 0x80087467
constant TIOCVHANGUP (line 2472) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2473) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2474) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2475) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2476) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2477) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2478) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2479) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2480) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2481) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2482) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2483) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2484) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2485) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2486) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2487) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2488) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2489) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2490) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2491) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2492) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2493) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2494) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2495) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2496) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2497) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2498) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2499) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2500) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2501) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2502) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2503) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2504) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2505) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2506) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2507) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2508) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2509) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2510) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2511) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2512) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2513) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2514) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2515) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2516) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2517) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2518) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2519) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2520) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2521) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2522) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2523) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2524) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2525) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2526) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2527) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2528) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2529) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2530) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2531) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2532) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2533) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2534) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2535) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2536) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2537) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2538) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2539) | TOSTOP = 0x8000
constant TPACKET_ALIGNMENT (line 2540) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2541) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2542) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2543) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2544) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2545) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2546) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2547) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2548) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2549) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2550) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2551) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2552) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2553) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2554) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2555) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2556) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2557) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2558) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2559) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2560) | TUNATTACHFILTER = 0x800854d5
constant TUNDETACHFILTER (line 2561) | TUNDETACHFILTER = 0x800854d6
constant TUNGETDEVNETNS (line 2562) | TUNGETDEVNETNS = 0x200054e3
constant TUNGETFEATURES (line 2563) | TUNGETFEATURES = 0x400454cf
constant TUNGETFILTER (line 2564) | TUNGETFILTER = 0x400854db
constant TUNGETIFF (line 2565) | TUNGETIFF = 0x400454d2
constant TUNGETSNDBUF (line 2566) | TUNGETSNDBUF = 0x400454d3
constant TUNGETVNETBE (line 2567) | TUNGETVNETBE = 0x400454df
constant TUNGETVNETHDRSZ (line 2568) | TUNGETVNETHDRSZ = 0x400454d7
constant TUNGETVNETLE (line 2569) | TUNGETVNETLE = 0x400454dd
constant TUNSETCARRIER (line 2570) | TUNSETCARRIER = 0x800454e2
constant TUNSETDEBUG (line 2571) | TUNSETDEBUG = 0x800454c9
constant TUNSETFILTEREBPF (line 2572) | TUNSETFILTEREBPF = 0x400454e1
constant TUNSETGROUP (line 2573) | TUNSETGROUP = 0x800454ce
constant TUNSETIFF (line 2574) | TUNSETIFF = 0x800454ca
constant TUNSETIFINDEX (line 2575) | TUNSETIFINDEX = 0x800454da
constant TUNSETLINK (line 2576) | TUNSETLINK = 0x800454cd
constant TUNSETNOCSUM (line 2577) | TUNSETNOCSUM = 0x800454c8
constant TUNSETOFFLOAD (line 2578) | TUNSETOFFLOAD = 0x800454d0
constant TUNSETOWNER (line 2579) | TUNSETOWNER = 0x800454cc
constant TUNSETPERSIST (line 2580) | TUNSETPERSIST = 0x800454cb
constant TUNSETQUEUE (line 2581) | TUNSETQUEUE = 0x800454d9
constant TUNSETSNDBUF (line 2582) | TUNSETSNDBUF = 0x800454d4
constant TUNSETSTEERINGEBPF (line 2583) | TUNSETSTEERINGEBPF = 0x400454e0
constant TUNSETTXFILTER (line 2584) | TUNSETTXFILTER = 0x800454d1
constant TUNSETVNETBE (line 2585) | TUNSETVNETBE = 0x800454de
constant TUNSETVNETHDRSZ (line 2586) | TUNSETVNETHDRSZ = 0x800454d8
constant TUNSETVNETLE (line 2587) | TUNSETVNETLE = 0x800454dc
constant UBI_IOCATT (line 2588) | UBI_IOCATT = 0x80186f40
constant UBI_IOCDET (line 2589) | UBI_IOCDET = 0x80046f41
constant UBI_IOCEBCH (line 2590) | UBI_IOCEBCH = 0x80044f02
constant UBI_IOCEBER (line 2591) | UBI_IOCEBER = 0x80044f01
constant UBI_IOCEBISMAP (line 2592) | UBI_IOCEBISMAP = 0x40044f05
constant UBI_IOCEBMAP (line 2593) | UBI_IOCEBMAP = 0x80084f03
constant UBI_IOCEBUNMAP (line 2594) | UBI_IOCEBUNMAP = 0x80044f04
constant UBI_IOCMKVOL (line 2595) | UBI_IOCMKVOL = 0x80986f00
constant UBI_IOCRMVOL (line 2596) | UBI_IOCRMVOL = 0x80046f01
constant UBI_IOCRNVOL (line 2597) | UBI_IOCRNVOL = 0x91106f03
constant UBI_IOCRPEB (line 2598) | UBI_IOCRPEB = 0x80046f04
constant UBI_IOCRSVOL (line 2599) | UBI_IOCRSVOL = 0x800c6f02
constant UBI_IOCSETVOLPROP (line 2600) | UBI_IOCSETVOLPROP = 0x80104f06
constant UBI_IOCSPEB (line 2601) | UBI_IOCSPEB = 0x80046f05
constant UBI_IOCVOLCRBLK (line 2602) | UBI_IOCVOLCRBLK = 0x80804f07
constant UBI_IOCVOLRMBLK (line 2603) | UBI_IOCVOLRMBLK = 0x20004f08
constant UBI_IOCVOLUP (line 2604) | UBI_IOCVOLUP = 0x80084f00
constant UDF_SUPER_MAGIC (line 2605) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2606) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2607) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2608) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2609) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2610) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2611) | VDISCARD = 0xd
constant VEOF (line 2612) | VEOF = 0x10
constant VEOL (line 2613) | VEOL = 0x11
constant VEOL2 (line 2614) | VEOL2 = 0x6
constant VERASE (line 2615) | VERASE = 0x2
constant VINTR (line 2616) | VINTR = 0x0
constant VKILL (line 2617) | VKILL = 0x3
constant VLNEXT (line 2618) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2619) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2620) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2621) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2622) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2623) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2624) | VMIN = 0x4
constant VM_SOCKETS_INVALID_VERSION (line 2625) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2626) | VQUIT = 0x1
constant VREPRINT (line 2627) | VREPRINT = 0xc
constant VSTART (line 2628) | VSTART = 0x8
constant VSTOP (line 2629) | VSTOP = 0x9
constant VSUSP (line 2630) | VSUSP = 0xa
constant VSWTC (line 2631) | VSWTC = 0x7
constant VSWTCH (line 2632) | VSWTCH = 0x7
constant VT0 (line 2633) | VT0 = 0x0
constant VT1 (line 2634) | VT1 = 0x4000
constant VTDLY (line 2635) | VTDLY = 0x4000
constant VTIME (line 2636) | VTIME = 0x5
constant VWERASE (line 2637) | VWERASE = 0xe
constant WALL (line 2638) | WALL = 0x40000000
constant WCLONE (line 2639) | WCLONE = 0x80000000
constant WCONTINUED (line 2640) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2641) | WDIOC_GETBOOTSTATUS = 0x40045702
constant WDIOC_GETPRETIMEOUT (line 2642) | WDIOC_GETPRETIMEOUT = 0x40045709
constant WDIOC_GETSTATUS (line 2643) | WDIOC_GETSTATUS = 0x40045701
constant WDIOC_GETSUPPORT (line 2644) | WDIOC_GETSUPPORT = 0x40285700
constant WDIOC_GETTEMP (line 2645) | WDIOC_GETTEMP = 0x40045703
constant WDIOC_GETTIMELEFT (line 2646) | WDIOC_GETTIMELEFT = 0x4004570a
constant WDIOC_GETTIMEOUT (line 2647) | WDIOC_GETTIMEOUT = 0x40045707
constant WDIOC_KEEPALIVE (line 2648) | WDIOC_KEEPALIVE = 0x40045705
constant WDIOC_SETOPTIONS (line 2649) | WDIOC_SETOPTIONS = 0x40045704
constant WDIOC_SETPRETIMEOUT (line 2650) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2651) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2652) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2653) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2654) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2655) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2656) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2657) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2658) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2659) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2660) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2661) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2662) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2663) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2664) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2665) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2666) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2667) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2668) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2669) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2670) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2671) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2672) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2673) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2674) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2675) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2676) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2677) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2678) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2679) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2680) | WIN_READ = 0x20
constant WIN_READDMA (line 2681) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2682) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2683) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2684) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2685) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2686) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2687) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2688) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2689) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2690) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2691) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2692) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2693) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2694) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2695) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2696) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2697) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2698) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2699) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2700) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2701) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2702) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2703) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2704) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2705) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2706) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2707) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2708) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2709) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2710) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2711) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2712) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2713) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2714) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2715) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2716) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2717) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2718) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2719) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2720) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2721) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2722) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2723) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2724) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2725) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2726) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2727) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2728) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2729) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2730) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2731) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2732) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2733) | WNOHANG = 0x1
constant WNOTHREAD (line 2734) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2735) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2736) | WORDSIZE = 0x20
constant WSTOPPED (line 2737) | WSTOPPED = 0x2
constant WUNTRACED (line 2738) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2739) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2740) | XATTR_REPLACE = 0x2
constant XCASE (line 2741) | XCASE = 0x4
constant XDP_COPY (line 2742) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2743) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2744) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2745) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2746) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2747) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2748) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2749) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2750) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2751) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2752) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2753) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2754) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2755) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2756) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2757) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2758) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2759) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2760) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2761) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2762) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2763) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2764) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2765) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2766) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2767) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2768) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2769) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2774) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2775) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2776) | EADDRINUSE = syscall.Errno(0x7d)
constant EADDRNOTAVAIL (line 2777) | EADDRNOTAVAIL = syscall.Errno(0x7e)
constant EADV (line 2778) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2779) | EAFNOSUPPORT = syscall.Errno(0x7c)
constant EAGAIN (line 2780) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2781) | EALREADY = syscall.Errno(0x95)
constant EBADE (line 2782) | EBADE = syscall.Errno(0x32)
constant EBADF (line 2783) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2784) | EBADFD = syscall.Errno(0x51)
constant EBADMSG (line 2785) | EBADMSG = syscall.Errno(0x4d)
constant EBADR (line 2786) | EBADR = syscall.Errno(0x33)
constant EBADRQC (line 2787) | EBADRQC = syscall.Errno(0x36)
constant EBADSLT (line 2788) | EBADSLT = syscall.Errno(0x37)
constant EBFONT (line 2789) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2790) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2791) | ECANCELED = syscall.Errno(0x9e)
constant ECHILD (line 2792) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2793) | ECHRNG = syscall.Errno(0x25)
constant ECOMM (line 2794) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2795) | ECONNABORTED = syscall.Errno(0x82)
constant ECONNREFUSED (line 2796) | ECONNREFUSED = syscall.Errno(0x92)
constant ECONNRESET (line 2797) | ECONNRESET = syscall.Errno(0x83)
constant EDEADLK (line 2798) | EDEADLK = syscall.Errno(0x2d)
constant EDEADLOCK (line 2799) | EDEADLOCK = syscall.Errno(0x38)
constant EDESTADDRREQ (line 2800) | EDESTADDRREQ = syscall.Errno(0x60)
constant EDOM (line 2801) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2802) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2803) | EDQUOT = syscall.Errno(0x46d)
constant EEXIST (line 2804) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2805) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2806) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2807) | EHOSTDOWN = syscall.Errno(0x93)
constant EHOSTUNREACH (line 2808) | EHOSTUNREACH = syscall.Errno(0x94)
constant EHWPOISON (line 2809) | EHWPOISON = syscall.Errno(0xa8)
constant EIDRM (line 2810) | EIDRM = syscall.Errno(0x24)
constant EILSEQ (line 2811) | EILSEQ = syscall.Errno(0x58)
constant EINIT (line 2812) | EINIT = syscall.Errno(0x8d)
constant EINPROGRESS (line 2813) | EINPROGRESS = syscall.Errno(0x96)
constant EINTR (line 2814) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2815) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2816) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2817) | EISCONN = syscall.Errno(0x85)
constant EISDIR (line 2818) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2819) | EISNAM = syscall.Errno(0x8b)
constant EKEYEXPIRED (line 2820) | EKEYEXPIRED = syscall.Errno(0xa2)
constant EKEYREJECTED (line 2821) | EKEYREJECTED = syscall.Errno(0xa4)
constant EKEYREVOKED (line 2822) | EKEYREVOKED = syscall.Errno(0xa3)
constant EL2HLT (line 2823) | EL2HLT = syscall.Errno(0x2c)
constant EL2NSYNC (line 2824) | EL2NSYNC = syscall.Errno(0x26)
constant EL3HLT (line 2825) | EL3HLT = syscall.Errno(0x27)
constant EL3RST (line 2826) | EL3RST = syscall.Errno(0x28)
constant ELIBACC (line 2827) | ELIBACC = syscall.Errno(0x53)
constant ELIBBAD (line 2828) | ELIBBAD = syscall.Errno(0x54)
constant ELIBEXEC (line 2829) | ELIBEXEC = syscall.Errno(0x57)
constant ELIBMAX (line 2830) | ELIBMAX = syscall.Errno(0x56)
constant ELIBSCN (line 2831) | ELIBSCN = syscall.Errno(0x55)
constant ELNRNG (line 2832) | ELNRNG = syscall.Errno(0x29)
constant ELOOP (line 2833) | ELOOP = syscall.Errno(0x5a)
constant EMEDIUMTYPE (line 2834) | EMEDIUMTYPE = syscall.Errno(0xa0)
constant EMFILE (line 2835) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2836) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2837) | EMSGSIZE = syscall.Errno(0x61)
constant EMULTIHOP (line 2838) | EMULTIHOP = syscall.Errno(0x4a)
constant ENAMETOOLONG (line 2839) | ENAMETOOLONG = syscall.Errno(0x4e)
constant ENAVAIL (line 2840) | ENAVAIL = syscall.Errno(0x8a)
constant ENETDOWN (line 2841) | ENETDOWN = syscall.Errno(0x7f)
constant ENETRESET (line 2842) | ENETRESET = syscall.Errno(0x81)
constant ENETUNREACH (line 2843) | ENETUNREACH = syscall.Errno(0x80)
constant ENFILE (line 2844) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2845) | ENOANO = syscall.Errno(0x35)
constant ENOBUFS (line 2846) | ENOBUFS = syscall.Errno(0x84)
constant ENOCSI (line 2847) | ENOCSI = syscall.Errno(0x2b)
constant ENODATA (line 2848) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2849) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2850) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2851) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2852) | ENOKEY = syscall.Errno(0xa1)
constant ENOLCK (line 2853) | ENOLCK = syscall.Errno(0x2e)
constant ENOLINK (line 2854) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2855) | ENOMEDIUM = syscall.Errno(0x9f)
constant ENOMEM (line 2856) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2857) | ENOMSG = syscall.Errno(0x23)
constant ENONET (line 2858) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2859) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2860) | ENOPROTOOPT = syscall.Errno(0x63)
constant ENOSPC (line 2861) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2862) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2863) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2864) | ENOSYS = syscall.Errno(0x59)
constant ENOTBLK (line 2865) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2866) | ENOTCONN = syscall.Errno(0x86)
constant ENOTDIR (line 2867) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2868) | ENOTEMPTY = syscall.Errno(0x5d)
constant ENOTNAM (line 2869) | ENOTNAM = syscall.Errno(0x89)
constant ENOTRECOVERABLE (line 2870) | ENOTRECOVERABLE = syscall.Errno(0xa6)
constant ENOTSOCK (line 2871) | ENOTSOCK = syscall.Errno(0x5f)
constant ENOTSUP (line 2872) | ENOTSUP = syscall.Errno(0x7a)
constant ENOTTY (line 2873) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2874) | ENOTUNIQ = syscall.Errno(0x50)
constant ENXIO (line 2875) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2876) | EOPNOTSUPP = syscall.Errno(0x7a)
constant EOVERFLOW (line 2877) | EOVERFLOW = syscall.Errno(0x4f)
constant EOWNERDEAD (line 2878) | EOWNERDEAD = syscall.Errno(0xa5)
constant EPERM (line 2879) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2880) | EPFNOSUPPORT = syscall.Errno(0x7b)
constant EPIPE (line 2881) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2882) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2883) | EPROTONOSUPPORT = syscall.Errno(0x78)
constant EPROTOTYPE (line 2884) | EPROTOTYPE = syscall.Errno(0x62)
constant ERANGE (line 2885) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2886) | EREMCHG = syscall.Errno(0x52)
constant EREMDEV (line 2887) | EREMDEV = syscall.Errno(0x8e)
constant EREMOTE (line 2888) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2889) | EREMOTEIO = syscall.Errno(0x8c)
constant ERESTART (line 2890) | ERESTART = syscall.Errno(0x5b)
constant ERFKILL (line 2891) | ERFKILL = syscall.Errno(0xa7)
constant EROFS (line 2892) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2893) | ESHUTDOWN = syscall.Errno(0x8f)
constant ESOCKTNOSUPPORT (line 2894) | ESOCKTNOSUPPORT = syscall.Errno(0x79)
constant ESPIPE (line 2895) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2896) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2897) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2898) | ESTALE = syscall.Errno(0x97)
constant ESTRPIPE (line 2899) | ESTRPIPE = syscall.Errno(0x5c)
constant ETIME (line 2900) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2901) | ETIMEDOUT = syscall.Errno(0x91)
constant ETOOMANYREFS (line 2902) | ETOOMANYREFS = syscall.Errno(0x90)
constant ETXTBSY (line 2903) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2904) | EUCLEAN = syscall.Errno(0x87)
constant EUNATCH (line 2905) | EUNATCH = syscall.Errno(0x2a)
constant EUSERS (line 2906) | EUSERS = syscall.Errno(0x5e)
constant EWOULDBLOCK (line 2907) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2908) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2909) | EXFULL = syscall.Errno(0x34)
constant SIGABRT (line 2914) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2915) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2916) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 2917) | SIGCHLD = syscall.Signal(0x12)
constant SIGCLD (line 2918) | SIGCLD = syscall.Signal(0x12)
constant SIGCONT (line 2919) | SIGCONT = syscall.Signal(0x19)
constant SIGEMT (line 2920) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 2921) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2922) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2923) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2924) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2925) | SIGIO = syscall.Signal(0x16)
constant SIGIOT (line 2926) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2927) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2928) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2929) | SIGPOLL = syscall.Signal(0x16)
constant SIGPROF (line 2930) | SIGPROF = syscall.Signal(0x1d)
constant SIGPWR (line 2931) | SIGPWR = syscall.Signal(0x13)
constant SIGQUIT (line 2932) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2933) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 2934) | SIGSTOP = syscall.Signal(0x17)
constant SIGSYS (line 2935) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 2936) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2937) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2938) | SIGTSTP = syscall.Signal(0x18)
constant SIGTTIN (line 2939) | SIGTTIN = syscall.Signal(0x1a)
constant SIGTTOU (line 2940) | SIGTTOU = syscall.Signal(0x1b)
constant SIGURG (line 2941) | SIGURG = syscall.Signal(0x15)
constant SIGUSR1 (line 2942) | SIGUSR1 = syscall.Signal(0x10)
constant SIGUSR2 (line 2943) | SIGUSR2 = syscall.Signal(0x11)
constant SIGVTALRM (line 2944) | SIGVTALRM = syscall.Signal(0x1c)
constant SIGWINCH (line 2945) | SIGWINCH = syscall.Signal(0x14)
constant SIGXCPU (line 2946) | SIGXCPU = syscall.Signal(0x1e)
constant SIGXFSZ (line 2947) | SIGXFSZ = syscall.Signal(0x1f)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x40081270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x80081271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x20001261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x20001265
constant BLKFRASET (line 183) | BLKFRASET = 0x20001264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x20001260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x40081272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x2000127b
constant BLKRAGET (line 187) | BLKRAGET = 0x20001263
constant BLKRASET (line 188) | BLKRASET = 0x20001262
constant BLKROGET (line 189) | BLKROGET = 0x2000125e
constant BLKROSET (line 190) | BLKROSET = 0x2000125d
constant BLKRRPART (line 191) | BLKRRPART = 0x2000125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x20001267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x20001266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x20001268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x80
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x2000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0xe
constant F_GETLK64 (line 713) | F_GETLK64 = 0xe
constant F_GETOWN (line 714) | F_GETOWN = 0x17
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0x6
constant F_SETLK64 (line 737) | F_SETLK64 = 0x6
constant F_SETLKW (line 738) | F_SETLKW = 0x7
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0x7
constant F_SETOWN (line 740) | F_SETOWN = 0x18
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x400
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x2
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x100
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x80
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x200
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x1000
constant IXON (line 1070) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x800
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x800
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x2000
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x4000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x1000
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x80000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x8000
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x20000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x400
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x10000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 1218) | MAP_RENAME = 0x800
constant MAP_SHARED (line 1219) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1220) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1221) | MAP_STACK = 0x40000
constant MAP_TYPE (line 1222) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1223) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1224) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1225) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1226) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1227) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1228) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1229) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1230) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1231) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1232) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1233) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1234) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1235) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1236) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1237) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1238) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1239) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1240) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1241) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1242) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1243) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1244) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1245) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1246) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1247) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1248) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1249) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1250) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1251) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1252) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1253) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1254) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1255) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1256) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1257) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1258) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1259) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1260) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1261) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1262) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1263) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1264) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1265) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1266) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1267) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1268) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1269) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1270) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1271) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1272) | MSG_FIN = 0x200
constant MSG_MORE (line 1273) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1274) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1275) | MSG_OOB = 0x1
constant MSG_PEEK (line 1276) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1277) | MSG_PROXY = 0x10
constant MSG_RST (line 1278) | MSG_RST = 0x1000
constant MSG_SYN (line 1279) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1280) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1281) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1282) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1283) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1284) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1285) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1286) | MS_ASYNC = 0x1
constant MS_BIND (line 1287) | MS_BIND = 0x1000
constant MS_BORN (line 1288) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1289) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1290) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1291) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1292) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1293) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1294) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1295) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1296) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1297) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1298) | MS_NOATIME = 0x400
constant MS_NODEV (line 1299) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1300) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1301) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1302) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1303) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1304) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1305) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1306) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1307) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1308) | MS_RDONLY = 0x1
constant MS_REC (line 1309) | MS_REC = 0x4000
constant MS_RELATIME (line 1310) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1311) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1312) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1313) | MS_SHARED = 0x100000
constant MS_SILENT (line 1314) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1315) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1316) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1317) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1318) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1319) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1320) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1321) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1322) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1323) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1324) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1325) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1326) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1327) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1328) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1329) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1330) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1331) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1332) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1333) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1334) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1335) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1336) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1337) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1338) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1339) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1340) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1341) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1342) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1343) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1344) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1345) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1346) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1347) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1348) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1349) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1350) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1351) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1352) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1353) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1354) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1355) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1356) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1357) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1358) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1359) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1360) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1361) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1362) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1363) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1364) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1365) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1366) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1367) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1368) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1369) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1370) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1371) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1372) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1373) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1374) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1375) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1376) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1377) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1378) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1379) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1380) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1381) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1382) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1383) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1384) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1385) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1386) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1387) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1388) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1389) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1390) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1391) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1392) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1393) | NL0 = 0x0
constant NL1 (line 1394) | NL1 = 0x100
constant NLA_ALIGNTO (line 1395) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1396) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1397) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1398) | NLA_HDRLEN = 0x4
constant NLDLY (line 1399) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1400) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1401) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1402) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1403) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1404) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1405) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1406) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1407) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1408) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1409) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1410) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1411) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1412) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1413) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1414) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1415) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1416) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1417) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1418) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1419) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1420) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1421) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1422) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1423) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1424) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1425) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1426) | NS_GET_NSTYPE = 0x2000b703
constant NS_GET_OWNER_UID (line 1427) | NS_GET_OWNER_UID = 0x2000b704
constant NS_GET_PARENT (line 1428) | NS_GET_PARENT = 0x2000b702
constant NS_GET_USERNS (line 1429) | NS_GET_USERNS = 0x2000b701
constant OCFS2_SUPER_MAGIC (line 1430) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1431) | OCRNL = 0x8
constant OFDEL (line 1432) | OFDEL = 0x80
constant OFILL (line 1433) | OFILL = 0x40
constant OLCUC (line 1434) | OLCUC = 0x2
constant ONLCR (line 1435) | ONLCR = 0x4
constant ONLRET (line 1436) | ONLRET = 0x20
constant ONOCR (line 1437) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1438) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1439) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1440) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1441) | O_ACCMODE = 0x3
constant O_APPEND (line 1442) | O_APPEND = 0x8
constant O_ASYNC (line 1443) | O_ASYNC = 0x1000
constant O_CLOEXEC (line 1444) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1445) | O_CREAT = 0x100
constant O_DIRECT (line 1446) | O_DIRECT = 0x8000
constant O_DIRECTORY (line 1447) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1448) | O_DSYNC = 0x10
constant O_EXCL (line 1449) | O_EXCL = 0x400
constant O_FSYNC (line 1450) | O_FSYNC = 0x4010
constant O_LARGEFILE (line 1451) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1452) | O_NDELAY = 0x80
constant O_NOATIME (line 1453) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1454) | O_NOCTTY = 0x800
constant O_NOFOLLOW (line 1455) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1456) | O_NONBLOCK = 0x80
constant O_PATH (line 1457) | O_PATH = 0x200000
constant O_RDONLY (line 1458) | O_RDONLY = 0x0
constant O_RDWR (line 1459) | O_RDWR = 0x2
constant O_RSYNC (line 1460) | O_RSYNC = 0x4010
constant O_SYNC (line 1461) | O_SYNC = 0x4010
constant O_TMPFILE (line 1462) | O_TMPFILE = 0x410000
constant O_TRUNC (line 1463) | O_TRUNC = 0x200
constant O_WRONLY (line 1464) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1465) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1466) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1467) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1468) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1469) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1470) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1471) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1472) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1473) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1474) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1475) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1476) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1477) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1478) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1479) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1480) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1481) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1482) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1483) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1484) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1485) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1486) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1487) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1488) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1489) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1490) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1491) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1492) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1493) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1494) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1495) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1496) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1497) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1498) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1499) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1500) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1501) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1502) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1503) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1504) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1505) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1506) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1507) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1508) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1509) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1510) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1511) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1512) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1513) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1514) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1515) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1516) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1517) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1518) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1519) | PARITY_NONE = 0x1
constant PARMRK (line 1520) | PARMRK = 0x8
constant PARODD (line 1521) | PARODD = 0x200
constant PENDIN (line 1522) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1523) | PERF_EVENT_IOC_DISABLE = 0x20002401
constant PERF_EVENT_IOC_ENABLE (line 1524) | PERF_EVENT_IOC_ENABLE = 0x20002400
constant PERF_EVENT_IOC_ID (line 1525) | PERF_EVENT_IOC_ID = 0x40082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1526) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1527) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409
constant PERF_EVENT_IOC_PERIOD (line 1528) | PERF_EVENT_IOC_PERIOD = 0x80082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1529) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1530) | PERF_EVENT_IOC_REFRESH = 0x20002402
constant PERF_EVENT_IOC_RESET (line 1531) | PERF_EVENT_IOC_RESET = 0x20002403
constant PERF_EVENT_IOC_SET_BPF (line 1532) | PERF_EVENT_IOC_SET_BPF = 0x80042408
constant PERF_EVENT_IOC_SET_FILTER (line 1533) | PERF_EVENT_IOC_SET_FILTER = 0x80082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1534) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405
constant PIPEFS_MAGIC (line 1535) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1536) | PPPIOCATTACH = 0x8004743d
constant PPPIOCATTCHAN (line 1537) | PPPIOCATTCHAN = 0x80047438
constant PPPIOCCONNECT (line 1538) | PPPIOCCONNECT = 0x8004743a
constant PPPIOCDETACH (line 1539) | PPPIOCDETACH = 0x8004743c
constant PPPIOCDISCONN (line 1540) | PPPIOCDISCONN = 0x20007439
constant PPPIOCGASYNCMAP (line 1541) | PPPIOCGASYNCMAP = 0x40047458
constant PPPIOCGCHAN (line 1542) | PPPIOCGCHAN = 0x40047437
constant PPPIOCGDEBUG (line 1543) | PPPIOCGDEBUG = 0x40047441
constant PPPIOCGFLAGS (line 1544) | PPPIOCGFLAGS = 0x4004745a
constant PPPIOCGIDLE (line 1545) | PPPIOCGIDLE = 0x4010743f
constant PPPIOCGL2TPSTATS (line 1546) | PPPIOCGL2TPSTATS = 0x40487436
constant PPPIOCGMRU (line 1547) | PPPIOCGMRU = 0x40047453
constant PPPIOCGNPMODE (line 1548) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1549) | PPPIOCGRASYNCMAP = 0x40047455
constant PPPIOCGUNIT (line 1550) | PPPIOCGUNIT = 0x40047456
constant PPPIOCGXASYNCMAP (line 1551) | PPPIOCGXASYNCMAP = 0x40207450
constant PPPIOCNEWUNIT (line 1552) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1553) | PPPIOCSACTIVE = 0x80107446
constant PPPIOCSASYNCMAP (line 1554) | PPPIOCSASYNCMAP = 0x80047457
constant PPPIOCSCOMPRESS (line 1555) | PPPIOCSCOMPRESS = 0x8010744d
constant PPPIOCSDEBUG (line 1556) | PPPIOCSDEBUG = 0x80047440
constant PPPIOCSFLAGS (line 1557) | PPPIOCSFLAGS = 0x80047459
constant PPPIOCSMAXCID (line 1558) | PPPIOCSMAXCID = 0x80047451
constant PPPIOCSMRRU (line 1559) | PPPIOCSMRRU = 0x8004743b
constant PPPIOCSMRU (line 1560) | PPPIOCSMRU = 0x80047452
constant PPPIOCSNPMODE (line 1561) | PPPIOCSNPMODE = 0x8008744b
constant PPPIOCSPASS (line 1562) | PPPIOCSPASS = 0x80107447
constant PPPIOCSRASYNCMAP (line 1563) | PPPIOCSRASYNCMAP = 0x80047454
constant PPPIOCSXASYNCMAP (line 1564) | PPPIOCSXASYNCMAP = 0x8020744f
constant PPPIOCXFERUNIT (line 1565) | PPPIOCXFERUNIT = 0x2000744e
constant PRIO_PGRP (line 1566) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1567) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1568) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1569) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1570) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1571) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1572) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1573) | PROT_NONE = 0x0
constant PROT_READ (line 1574) | PROT_READ = 0x1
constant PROT_WRITE (line 1575) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1576) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1577) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1578) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1579) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1580) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1581) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1582) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1583) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1584) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1585) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1586) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1587) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1588) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1589) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1590) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1591) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1592) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1593) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1594) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1595) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1596) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1597) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1598) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1599) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1600) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1601) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1602) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1603) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1604) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1605) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1606) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1607) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1608) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1609) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1610) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1611) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1612) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1613) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1614) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1615) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1616) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1617) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1618) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1619) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1620) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1621) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1622) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1623) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1624) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1625) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1626) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1627) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1628) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1629) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1630) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1631) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1632) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1633) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1634) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1635) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1636) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1637) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1638) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1639) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1640) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1641) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1642) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1643) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1644) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1645) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1646) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1647) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1648) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1649) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1650) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1651) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1652) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1653) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1654) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1655) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1656) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1657) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1658) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1659) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1660) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1661) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1662) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1663) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1664) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1665) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1666) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1667) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1668) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1669) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1670) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1671) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1672) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1673) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1674) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1675) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1676) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1677) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1678) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1679) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1680) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1681) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1682) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1683) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1684) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1685) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1686) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1687) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1688) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1689) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1690) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1691) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1692) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1693) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1694) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1695) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1696) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1697) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1698) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1699) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1700) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1701) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1702) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1703) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1704) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1705) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETFPREGS (line 1706) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETREGS (line 1707) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1708) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1709) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1710) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1711) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_GET_THREAD_AREA (line 1712) | PTRACE_GET_THREAD_AREA = 0x19
constant PTRACE_GET_THREAD_AREA_3264 (line 1713) | PTRACE_GET_THREAD_AREA_3264 = 0xc4
constant PTRACE_GET_WATCH_REGS (line 1714) | PTRACE_GET_WATCH_REGS = 0xd0
constant PTRACE_INTERRUPT (line 1715) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1716) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1717) | PTRACE_LISTEN = 0x4208
constant PTRACE_OLDSETOPTIONS (line 1718) | PTRACE_OLDSETOPTIONS = 0x15
constant PTRACE_O_EXITKILL (line 1719) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1720) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1721) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1722) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1723) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1724) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1725) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1726) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1727) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1728) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1729) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1730) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKDATA_3264 (line 1731) | PTRACE_PEEKDATA_3264 = 0xc1
constant PTRACE_PEEKSIGINFO (line 1732) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1733) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1734) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKTEXT_3264 (line 1735) | PTRACE_PEEKTEXT_3264 = 0xc0
constant PTRACE_PEEKUSR (line 1736) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1737) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKEDATA_3264 (line 1738) | PTRACE_POKEDATA_3264 = 0xc3
constant PTRACE_POKETEXT (line 1739) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKETEXT_3264 (line 1740) | PTRACE_POKETEXT_3264 = 0xc2
constant PTRACE_POKEUSR (line 1741) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1742) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1743) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1744) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETFPREGS (line 1745) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETOPTIONS (line 1746) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1747) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1748) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1749) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1750) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SET_THREAD_AREA (line 1751) | PTRACE_SET_THREAD_AREA = 0x1a
constant PTRACE_SET_WATCH_REGS (line 1752) | PTRACE_SET_WATCH_REGS = 0xd1
constant PTRACE_SINGLESTEP (line 1753) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1754) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1755) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1756) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1757) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1758) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_TRACEME (line 1759) | PTRACE_TRACEME = 0x0
constant QNX4_SUPER_MAGIC (line 1760) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1761) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1762) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1763) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1764) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1765) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1766) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1767) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1768) | RLIMIT_AS = 0x6
constant RLIMIT_CORE (line 1769) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1770) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1771) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1772) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1773) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1774) | RLIMIT_MEMLOCK = 0x9
constant RLIMIT_MSGQUEUE (line 1775) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1776) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1777) | RLIMIT_NOFILE = 0x5
constant RLIMIT_NPROC (line 1778) | RLIMIT_NPROC = 0x8
constant RLIMIT_RSS (line 1779) | RLIMIT_RSS = 0x7
constant RLIMIT_RTPRIO (line 1780) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1781) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1782) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1783) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1784) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1785) | RNDADDENTROPY = 0x80085203
constant RNDADDTOENTCNT (line 1786) | RNDADDTOENTCNT = 0x80045201
constant RNDCLEARPOOL (line 1787) | RNDCLEARPOOL = 0x20005206
constant RNDGETENTCNT (line 1788) | RNDGETENTCNT = 0x40045200
constant RNDGETPOOL (line 1789) | RNDGETPOOL = 0x40085202
constant RNDRESEEDCRNG (line 1790) | RNDRESEEDCRNG = 0x20005207
constant RNDZAPENTCNT (line 1791) | RNDZAPENTCNT = 0x20005204
constant RTAX_ADVMSS (line 1792) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1793) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1794) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1795) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1796) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1797) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1798) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1799) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1800) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1801) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1802) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1803) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1804) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1805) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1806) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1807) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1808) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1809) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1810) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1811) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1812) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1813) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1814) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1815) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1816) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1817) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1818) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1819) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1820) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1821) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1822) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1823) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1824) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1825) | RTC_AIE_OFF = 0x20007002
constant RTC_AIE_ON (line 1826) | RTC_AIE_ON = 0x20007001
constant RTC_ALM_READ (line 1827) | RTC_ALM_READ = 0x40247008
constant RTC_ALM_SET (line 1828) | RTC_ALM_SET = 0x80247007
constant RTC_EPOCH_READ (line 1829) | RTC_EPOCH_READ = 0x4008700d
constant RTC_EPOCH_SET (line 1830) | RTC_EPOCH_SET = 0x8008700e
constant RTC_IRQF (line 1831) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1832) | RTC_IRQP_READ = 0x4008700b
constant RTC_IRQP_SET (line 1833) | RTC_IRQP_SET = 0x8008700c
constant RTC_MAX_FREQ (line 1834) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1835) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1836) | RTC_PIE_OFF = 0x20007006
constant RTC_PIE_ON (line 1837) | RTC_PIE_ON = 0x20007005
constant RTC_PLL_GET (line 1838) | RTC_PLL_GET = 0x40207011
constant RTC_PLL_SET (line 1839) | RTC_PLL_SET = 0x80207012
constant RTC_RD_TIME (line 1840) | RTC_RD_TIME = 0x40247009
constant RTC_SET_TIME (line 1841) | RTC_SET_TIME = 0x8024700a
constant RTC_UF (line 1842) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1843) | RTC_UIE_OFF = 0x20007004
constant RTC_UIE_ON (line 1844) | RTC_UIE_ON = 0x20007003
constant RTC_VL_CLR (line 1845) | RTC_VL_CLR = 0x20007014
constant RTC_VL_READ (line 1846) | RTC_VL_READ = 0x40047013
constant RTC_WIE_OFF (line 1847) | RTC_WIE_OFF = 0x20007010
constant RTC_WIE_ON (line 1848) | RTC_WIE_ON = 0x2000700f
constant RTC_WKALM_RD (line 1849) | RTC_WKALM_RD = 0x40287010
constant RTC_WKALM_SET (line 1850) | RTC_WKALM_SET = 0x8028700f
constant RTF_ADDRCLASSMASK (line 1851) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1852) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1853) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1854) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1855) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1856) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1857) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1858) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1859) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1860) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1861) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1862) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1863) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1864) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1865) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1866) | RTF_MSS = 0x40
constant RTF_MTU (line 1867) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1868) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1869) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1870) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1871) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1872) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1873) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1874) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1875) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1876) | RTF_STATIC = 0x400
constant RTF_THROW (line 1877) | RTF_THROW = 0x2000
constant RTF_UP (line 1878) | RTF_UP = 0x1
constant RTF_WINDOW (line 1879) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1880) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1881) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1882) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1883) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1884) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1885) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1886) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1887) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1888) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1889) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1890) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1891) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1892) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1893) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1894) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1895) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1896) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1897) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1898) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1899) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1900) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1901) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1902) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1903) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1904) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1905) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1906) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1907) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1908) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1909) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1910) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1911) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1912) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1913) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1914) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1915) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1916) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1917) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1918) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1919) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1920) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1921) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1922) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1923) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1924) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1925) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1926) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1927) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1928) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1929) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1930) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1931) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1932) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1933) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1934) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1935) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1936) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1937) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1938) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1939) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1940) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1941) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1942) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1943) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1944) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1945) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1946) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1947) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1948) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1949) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1950) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1951) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1952) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1953) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1954) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1955) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1956) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1957) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1958) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1959) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1960) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1961) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1962) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1963) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1964) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1965) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1966) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1967) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1968) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1969) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1970) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1971) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1972) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1973) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1974) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1975) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1976) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1977) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1978) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1979) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1980) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1981) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1982) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1983) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1984) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1985) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1986) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1987) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1988) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1989) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1990) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1991) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1992) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 1993) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 1994) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 1995) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 1996) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 1997) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 1998) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 1999) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2000) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2001) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2002) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2003) | SFD_NONBLOCK = 0x80
constant SHUT_RD (line 2004) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2005) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2006) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2007) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2008) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2009) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2010) | SIOCATMARK = 0x40047307
constant SIOCBONDCHANGEACTIVE (line 2011) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2012) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2013) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2014) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2015) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2016) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2017) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2018) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2019) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2020) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2021) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2022) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2023) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2024) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2025) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2026) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2027) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2028) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2029) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2030) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2031) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2032) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2033) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2034) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2035) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2036) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2037) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2038) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2039) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2040) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2041) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2042) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2043) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2044) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2045) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2046) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2047) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2048) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2049) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2050) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2051) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2052) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2053) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2054) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2055) | SIOCGPGRP = 0x40047309
constant SIOCGPPPCSTATS (line 2056) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2057) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2058) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2059) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2060) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2061) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2062) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2063) | SIOCGSTAMPNS_NEW = 0x40108907
constant SIOCGSTAMPNS_OLD (line 2064) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2065) | SIOCGSTAMP_NEW = 0x40108906
constant SIOCGSTAMP_OLD (line 2066) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2067) | SIOCINQ = 0x467f
constant SIOCOUTQ (line 2068) | SIOCOUTQ = 0x7472
constant SIOCOUTQNSD (line 2069) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2070) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2071) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2072) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2073) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2074) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2075) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2076) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2077) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2078) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2079) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2080) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2081) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2082) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2083) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2084) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2085) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2086) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2087) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2088) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2089) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2090) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2091) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2092) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2093) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2094) | SIOCSPGRP = 0x80047308
constant SIOCSRARP (line 2095) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2096) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2097) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2098) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2099) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2100) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2101) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2102) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2103) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2104) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2105) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2106) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2107) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2108) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2109) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2110) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2111) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2112) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2113) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2114) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2115) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2116) | SOCK_DGRAM = 0x1
constant SOCK_IOC_TYPE (line 2117) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2118) | SOCK_NONBLOCK = 0x80
constant SOCK_PACKET (line 2119) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2120) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2121) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2122) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2123) | SOCK_STREAM = 0x2
constant SOL_AAL (line 2124) | SOL_AAL = 0x109
constant SOL_ALG (line 2125) | SOL_ALG = 0x117
constant SOL_ATM (line 2126) | SOL_ATM = 0x108
constant SOL_CAIF (line 2127) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2128) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2129) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2130) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2131) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2132) | SOL_IP = 0x0
constant SOL_IPV6 (line 2133) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2134) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2135) | SOL_IUCV = 0x115
constant SOL_KCM (line 2136) | SOL_KCM = 0x119
constant SOL_LLC (line 2137) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2138) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2139) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2140) | SOL_NFC = 0x118
constant SOL_PACKET (line 2141) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2142) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2143) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2144) | SOL_RAW = 0xff
constant SOL_RDS (line 2145) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2146) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2147) | SOL_SOCKET = 0xffff
constant SOL_TCP (line 2148) | SOL_TCP = 0x6
constant SOL_TIPC (line 2149) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2150) | SOL_TLS = 0x11a
constant SOL_X25 (line 2151) | SOL_X25 = 0x106
constant SOL_XDP (line 2152) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2153) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2154) | SO_ACCEPTCONN = 0x1009
constant SO_ATTACH_BPF (line 2155) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2156) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2157) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2158) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2159) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2160) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2161) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2162) | SO_BROADCAST = 0x20
constant SO_BSDCOMPAT (line 2163) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2164) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2165) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2166) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2167) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2168) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2169) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2170) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2171) | SO_DOMAIN = 0x1029
constant SO_DONTROUTE (line 2172) | SO_DONTROUTE = 0x10
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2173) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2174) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2175) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2176) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2177) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2178) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2179) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2180) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2181) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2182) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2183) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2184) | SO_ERROR = 0x1007
constant SO_GET_FILTER (line 2185) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2186) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2187) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2188) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 2189) | SO_LINGER = 0x80
constant SO_LOCK_FILTER (line 2190) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2191) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2192) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2193) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2194) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2195) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2196) | SO_OOBINLINE = 0x100
constant SO_PASSCRED (line 2197) | SO_PASSCRED = 0x11
constant SO_PASSSEC (line 2198) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2199) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2200) | SO_PEERCRED = 0x12
constant SO_PEERGROUPS (line 2201) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2202) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2203) | SO_PEERSEC = 0x1e
constant SO_PRIORITY (line 2204) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2205) | SO_PROTOCOL = 0x1028
constant SO_RCVBUF (line 2206) | SO_RCVBUF = 0x1002
constant SO_RCVBUFFORCE (line 2207) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2208) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 2209) | SO_RCVTIMEO = 0x1006
constant SO_RCVTIMEO_NEW (line 2210) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2211) | SO_RCVTIMEO_OLD = 0x1006
constant SO_REUSEADDR (line 2212) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 2213) | SO_REUSEPORT = 0x200
constant SO_RXQ_OVFL (line 2214) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2215) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2216) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2217) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2218) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2219) | SO_SNDBUF = 0x1001
constant SO_SNDBUFFORCE (line 2220) | SO_SNDBUFFORCE = 0x1f
constant SO_SNDLOWAT (line 2221) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 2222) | SO_SNDTIMEO = 0x1005
constant SO_SNDTIMEO_NEW (line 2223) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2224) | SO_SNDTIMEO_OLD = 0x1005
constant SO_STYLE (line 2225) | SO_STYLE = 0x1008
constant SO_TIMESTAMP (line 2226) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2227) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2228) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2229) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2230) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2231) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2232) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2233) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2234) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2235) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2236) | SO_TYPE = 0x1008
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2237) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2238) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2239) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2240) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2241) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2242) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2243) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2244) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2245) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2246) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2247) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2248) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2249) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2250) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2251) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2252) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2253) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2254) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2255) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2256) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2257) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2258) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2259) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2260) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2261) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2262) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2263) | STATX_CTIME = 0x80
constant STATX_GID (line 2264) | STATX_GID = 0x10
constant STATX_INO (line 2265) | STATX_INO = 0x100
constant STATX_MODE (line 2266) | STATX_MODE = 0x2
constant STATX_MTIME (line 2267) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2268) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2269) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2270) | STATX_TYPE = 0x1
constant STATX_UID (line 2271) | STATX_UID = 0x8
constant STATX__RESERVED (line 2272) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2273) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2274) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2275) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2276) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2277) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2278) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2279) | S_IEXEC = 0x40
constant S_IFBLK (line 2280) | S_IFBLK = 0x6000
constant S_IFCHR (line 2281) | S_IFCHR = 0x2000
constant S_IFDIR (line 2282) | S_IFDIR = 0x4000
constant S_IFIFO (line 2283) | S_IFIFO = 0x1000
constant S_IFLNK (line 2284) | S_IFLNK = 0xa000
constant S_IFMT (line 2285) | S_IFMT = 0xf000
constant S_IFREG (line 2286) | S_IFREG = 0x8000
constant S_IFSOCK (line 2287) | S_IFSOCK = 0xc000
constant S_IREAD (line 2288) | S_IREAD = 0x100
constant S_IRGRP (line 2289) | S_IRGRP = 0x20
constant S_IROTH (line 2290) | S_IROTH = 0x4
constant S_IRUSR (line 2291) | S_IRUSR = 0x100
constant S_IRWXG (line 2292) | S_IRWXG = 0x38
constant S_IRWXO (line 2293) | S_IRWXO = 0x7
constant S_IRWXU (line 2294) | S_IRWXU = 0x1c0
constant S_ISGID (line 2295) | S_ISGID = 0x400
constant S_ISUID (line 2296) | S_ISUID = 0x800
constant S_ISVTX (line 2297) | S_ISVTX = 0x200
constant S_IWGRP (line 2298) | S_IWGRP = 0x10
constant S_IWOTH (line 2299) | S_IWOTH = 0x2
constant S_IWRITE (line 2300) | S_IWRITE = 0x80
constant S_IWUSR (line 2301) | S_IWUSR = 0x80
constant S_IXGRP (line 2302) | S_IXGRP = 0x8
constant S_IXOTH (line 2303) | S_IXOTH = 0x1
constant S_IXUSR (line 2304) | S_IXUSR = 0x40
constant TAB0 (line 2305) | TAB0 = 0x0
constant TAB1 (line 2306) | TAB1 = 0x800
constant TAB2 (line 2307) | TAB2 = 0x1000
constant TAB3 (line 2308) | TAB3 = 0x1800
constant TABDLY (line 2309) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2310) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2311) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2312) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2313) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2314) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2315) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2316) | TCFLSH = 0x5407
constant TCGETA (line 2317) | TCGETA = 0x5401
constant TCGETS (line 2318) | TCGETS = 0x540d
constant TCGETS2 (line 2319) | TCGETS2 = 0x4030542a
constant TCIFLUSH (line 2320) | TCIFLUSH = 0x0
constant TCIOFF (line 2321) | TCIOFF = 0x2
constant TCIOFLUSH (line 2322) | TCIOFLUSH = 0x2
constant TCION (line 2323) | TCION = 0x3
constant TCOFLUSH (line 2324) | TCOFLUSH = 0x1
constant TCOOFF (line 2325) | TCOOFF = 0x0
constant TCOON (line 2326) | TCOON = 0x1
constant TCP_BPF_IW (line 2327) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2328) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2329) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2330) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2331) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2332) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2333) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2334) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2335) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2336) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2337) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2338) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2339) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2340) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2341) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2342) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2343) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2344) | TCP_INFO = 0xb
constant TCP_INQ (line 2345) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2346) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2347) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2348) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2349) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2350) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2351) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2352) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2353) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2354) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2355) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2356) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2357) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2358) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2359) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2360) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2361) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2362) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2363) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2364) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2365) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2366) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2367) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2368) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2369) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2370) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2371) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2372) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2373) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2374) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2375) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2376) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2377) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2378) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2379) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2380) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2381) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2382) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2383) | TCSAFLUSH = 0x5410
constant TCSBRK (line 2384) | TCSBRK = 0x5405
constant TCSBRKP (line 2385) | TCSBRKP = 0x5486
constant TCSETA (line 2386) | TCSETA = 0x5402
constant TCSETAF (line 2387) | TCSETAF = 0x5404
constant TCSETAW (line 2388) | TCSETAW = 0x5403
constant TCSETS (line 2389) | TCSETS = 0x540e
constant TCSETS2 (line 2390) | TCSETS2 = 0x8030542b
constant TCSETSF (line 2391) | TCSETSF = 0x5410
constant TCSETSF2 (line 2392) | TCSETSF2 = 0x8030542d
constant TCSETSW (line 2393) | TCSETSW = 0x540f
constant TCSETSW2 (line 2394) | TCSETSW2 = 0x8030542c
constant TCXONC (line 2395) | TCXONC = 0x5406
constant TIMER_ABSTIME (line 2396) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2397) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2398) | TIOCCONS = 0x80047478
constant TIOCEXCL (line 2399) | TIOCEXCL = 0x740d
constant TIOCGDEV (line 2400) | TIOCGDEV = 0x40045432
constant TIOCGETD (line 2401) | TIOCGETD = 0x7400
constant TIOCGETP (line 2402) | TIOCGETP = 0x7408
constant TIOCGEXCL (line 2403) | TIOCGEXCL = 0x40045440
constant TIOCGICOUNT (line 2404) | TIOCGICOUNT = 0x5492
constant TIOCGISO7816 (line 2405) | TIOCGISO7816 = 0x40285442
constant TIOCGLCKTRMIOS (line 2406) | TIOCGLCKTRMIOS = 0x548b
constant TIOCGLTC (line 2407) | TIOCGLTC = 0x7474
constant TIOCGPGRP (line 2408) | TIOCGPGRP = 0x40047477
constant TIOCGPKT (line 2409) | TIOCGPKT = 0x40045438
constant TIOCGPTLCK (line 2410) | TIOCGPTLCK = 0x40045439
constant TIOCGPTN (line 2411) | TIOCGPTN = 0x40045430
constant TIOCGPTPEER (line 2412) | TIOCGPTPEER = 0x20005441
constant TIOCGRS485 (line 2413) | TIOCGRS485 = 0x4020542e
constant TIOCGSERIAL (line 2414) | TIOCGSERIAL = 0x5484
constant TIOCGSID (line 2415) | TIOCGSID = 0x7416
constant TIOCGSOFTCAR (line 2416) | TIOCGSOFTCAR = 0x5481
constant TIOCGWINSZ (line 2417) | TIOCGWINSZ = 0x40087468
constant TIOCINQ (line 2418) | TIOCINQ = 0x467f
constant TIOCLINUX (line 2419) | TIOCLINUX = 0x5483
constant TIOCMBIC (line 2420) | TIOCMBIC = 0x741c
constant TIOCMBIS (line 2421) | TIOCMBIS = 0x741b
constant TIOCMGET (line 2422) | TIOCMGET = 0x741d
constant TIOCMIWAIT (line 2423) | TIOCMIWAIT = 0x5491
constant TIOCMSET (line 2424) | TIOCMSET = 0x741a
constant TIOCM_CAR (line 2425) | TIOCM_CAR = 0x100
constant TIOCM_CD (line 2426) | TIOCM_CD = 0x100
constant TIOCM_CTS (line 2427) | TIOCM_CTS = 0x40
constant TIOCM_DSR (line 2428) | TIOCM_DSR = 0x400
constant TIOCM_DTR (line 2429) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2430) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2431) | TIOCM_RI = 0x200
constant TIOCM_RNG (line 2432) | TIOCM_RNG = 0x200
constant TIOCM_RTS (line 2433) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2434) | TIOCM_SR = 0x20
constant TIOCM_ST (line 2435) | TIOCM_ST = 0x10
constant TIOCNOTTY (line 2436) | TIOCNOTTY = 0x5471
constant TIOCNXCL (line 2437) | TIOCNXCL = 0x740e
constant TIOCOUTQ (line 2438) | TIOCOUTQ = 0x7472
constant TIOCPKT (line 2439) | TIOCPKT = 0x5470
constant TIOCPKT_DATA (line 2440) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2441) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2442) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2443) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2444) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2445) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2446) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2447) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2448) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2449) | TIOCSCTTY = 0x5480
constant TIOCSERCONFIG (line 2450) | TIOCSERCONFIG = 0x5488
constant TIOCSERGETLSR (line 2451) | TIOCSERGETLSR = 0x548e
constant TIOCSERGETMULTI (line 2452) | TIOCSERGETMULTI = 0x548f
constant TIOCSERGSTRUCT (line 2453) | TIOCSERGSTRUCT = 0x548d
constant TIOCSERGWILD (line 2454) | TIOCSERGWILD = 0x5489
constant TIOCSERSETMULTI (line 2455) | TIOCSERSETMULTI = 0x5490
constant TIOCSERSWILD (line 2456) | TIOCSERSWILD = 0x548a
constant TIOCSER_TEMT (line 2457) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2458) | TIOCSETD = 0x7401
constant TIOCSETN (line 2459) | TIOCSETN = 0x740a
constant TIOCSETP (line 2460) | TIOCSETP = 0x7409
constant TIOCSIG (line 2461) | TIOCSIG = 0x80045436
constant TIOCSISO7816 (line 2462) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2463) | TIOCSLCKTRMIOS = 0x548c
constant TIOCSLTC (line 2464) | TIOCSLTC = 0x7475
constant TIOCSPGRP (line 2465) | TIOCSPGRP = 0x80047476
constant TIOCSPTLCK (line 2466) | TIOCSPTLCK = 0x80045431
constant TIOCSRS485 (line 2467) | TIOCSRS485 = 0xc020542f
constant TIOCSSERIAL (line 2468) | TIOCSSERIAL = 0x5485
constant TIOCSSOFTCAR (line 2469) | TIOCSSOFTCAR = 0x5482
constant TIOCSTI (line 2470) | TIOCSTI = 0x5472
constant TIOCSWINSZ (line 2471) | TIOCSWINSZ = 0x80087467
constant TIOCVHANGUP (line 2472) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2473) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2474) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2475) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2476) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2477) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2478) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2479) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2480) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2481) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2482) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2483) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2484) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2485) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2486) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2487) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2488) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2489) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2490) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2491) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2492) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2493) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2494) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2495) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2496) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2497) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2498) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2499) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2500) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2501) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2502) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2503) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2504) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2505) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2506) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2507) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2508) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2509) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2510) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2511) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2512) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2513) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2514) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2515) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2516) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2517) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2518) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2519) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2520) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2521) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2522) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2523) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2524) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2525) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2526) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2527) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2528) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2529) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2530) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2531) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2532) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2533) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2534) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2535) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2536) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2537) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2538) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2539) | TOSTOP = 0x8000
constant TPACKET_ALIGNMENT (line 2540) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2541) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2542) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2543) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2544) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2545) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2546) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2547) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2548) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2549) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2550) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2551) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2552) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2553) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2554) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2555) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2556) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2557) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2558) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2559) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2560) | TUNATTACHFILTER = 0x801054d5
constant TUNDETACHFILTER (line 2561) | TUNDETACHFILTER = 0x801054d6
constant TUNGETDEVNETNS (line 2562) | TUNGETDEVNETNS = 0x200054e3
constant TUNGETFEATURES (line 2563) | TUNGETFEATURES = 0x400454cf
constant TUNGETFILTER (line 2564) | TUNGETFILTER = 0x401054db
constant TUNGETIFF (line 2565) | TUNGETIFF = 0x400454d2
constant TUNGETSNDBUF (line 2566) | TUNGETSNDBUF = 0x400454d3
constant TUNGETVNETBE (line 2567) | TUNGETVNETBE = 0x400454df
constant TUNGETVNETHDRSZ (line 2568) | TUNGETVNETHDRSZ = 0x400454d7
constant TUNGETVNETLE (line 2569) | TUNGETVNETLE = 0x400454dd
constant TUNSETCARRIER (line 2570) | TUNSETCARRIER = 0x800454e2
constant TUNSETDEBUG (line 2571) | TUNSETDEBUG = 0x800454c9
constant TUNSETFILTEREBPF (line 2572) | TUNSETFILTEREBPF = 0x400454e1
constant TUNSETGROUP (line 2573) | TUNSETGROUP = 0x800454ce
constant TUNSETIFF (line 2574) | TUNSETIFF = 0x800454ca
constant TUNSETIFINDEX (line 2575) | TUNSETIFINDEX = 0x800454da
constant TUNSETLINK (line 2576) | TUNSETLINK = 0x800454cd
constant TUNSETNOCSUM (line 2577) | TUNSETNOCSUM = 0x800454c8
constant TUNSETOFFLOAD (line 2578) | TUNSETOFFLOAD = 0x800454d0
constant TUNSETOWNER (line 2579) | TUNSETOWNER = 0x800454cc
constant TUNSETPERSIST (line 2580) | TUNSETPERSIST = 0x800454cb
constant TUNSETQUEUE (line 2581) | TUNSETQUEUE = 0x800454d9
constant TUNSETSNDBUF (line 2582) | TUNSETSNDBUF = 0x800454d4
constant TUNSETSTEERINGEBPF (line 2583) | TUNSETSTEERINGEBPF = 0x400454e0
constant TUNSETTXFILTER (line 2584) | TUNSETTXFILTER = 0x800454d1
constant TUNSETVNETBE (line 2585) | TUNSETVNETBE = 0x800454de
constant TUNSETVNETHDRSZ (line 2586) | TUNSETVNETHDRSZ = 0x800454d8
constant TUNSETVNETLE (line 2587) | TUNSETVNETLE = 0x800454dc
constant UBI_IOCATT (line 2588) | UBI_IOCATT = 0x80186f40
constant UBI_IOCDET (line 2589) | UBI_IOCDET = 0x80046f41
constant UBI_IOCEBCH (line 2590) | UBI_IOCEBCH = 0x80044f02
constant UBI_IOCEBER (line 2591) | UBI_IOCEBER = 0x80044f01
constant UBI_IOCEBISMAP (line 2592) | UBI_IOCEBISMAP = 0x40044f05
constant UBI_IOCEBMAP (line 2593) | UBI_IOCEBMAP = 0x80084f03
constant UBI_IOCEBUNMAP (line 2594) | UBI_IOCEBUNMAP = 0x80044f04
constant UBI_IOCMKVOL (line 2595) | UBI_IOCMKVOL = 0x80986f00
constant UBI_IOCRMVOL (line 2596) | UBI_IOCRMVOL = 0x80046f01
constant UBI_IOCRNVOL (line 2597) | UBI_IOCRNVOL = 0x91106f03
constant UBI_IOCRPEB (line 2598) | UBI_IOCRPEB = 0x80046f04
constant UBI_IOCRSVOL (line 2599) | UBI_IOCRSVOL = 0x800c6f02
constant UBI_IOCSETVOLPROP (line 2600) | UBI_IOCSETVOLPROP = 0x80104f06
constant UBI_IOCSPEB (line 2601) | UBI_IOCSPEB = 0x80046f05
constant UBI_IOCVOLCRBLK (line 2602) | UBI_IOCVOLCRBLK = 0x80804f07
constant UBI_IOCVOLRMBLK (line 2603) | UBI_IOCVOLRMBLK = 0x20004f08
constant UBI_IOCVOLUP (line 2604) | UBI_IOCVOLUP = 0x80084f00
constant UDF_SUPER_MAGIC (line 2605) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2606) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2607) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2608) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2609) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2610) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2611) | VDISCARD = 0xd
constant VEOF (line 2612) | VEOF = 0x10
constant VEOL (line 2613) | VEOL = 0x11
constant VEOL2 (line 2614) | VEOL2 = 0x6
constant VERASE (line 2615) | VERASE = 0x2
constant VINTR (line 2616) | VINTR = 0x0
constant VKILL (line 2617) | VKILL = 0x3
constant VLNEXT (line 2618) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2619) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2620) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2621) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2622) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2623) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2624) | VMIN = 0x4
constant VM_SOCKETS_INVALID_VERSION (line 2625) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2626) | VQUIT = 0x1
constant VREPRINT (line 2627) | VREPRINT = 0xc
constant VSTART (line 2628) | VSTART = 0x8
constant VSTOP (line 2629) | VSTOP = 0x9
constant VSUSP (line 2630) | VSUSP = 0xa
constant VSWTC (line 2631) | VSWTC = 0x7
constant VSWTCH (line 2632) | VSWTCH = 0x7
constant VT0 (line 2633) | VT0 = 0x0
constant VT1 (line 2634) | VT1 = 0x4000
constant VTDLY (line 2635) | VTDLY = 0x4000
constant VTIME (line 2636) | VTIME = 0x5
constant VWERASE (line 2637) | VWERASE = 0xe
constant WALL (line 2638) | WALL = 0x40000000
constant WCLONE (line 2639) | WCLONE = 0x80000000
constant WCONTINUED (line 2640) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2641) | WDIOC_GETBOOTSTATUS = 0x40045702
constant WDIOC_GETPRETIMEOUT (line 2642) | WDIOC_GETPRETIMEOUT = 0x40045709
constant WDIOC_GETSTATUS (line 2643) | WDIOC_GETSTATUS = 0x40045701
constant WDIOC_GETSUPPORT (line 2644) | WDIOC_GETSUPPORT = 0x40285700
constant WDIOC_GETTEMP (line 2645) | WDIOC_GETTEMP = 0x40045703
constant WDIOC_GETTIMELEFT (line 2646) | WDIOC_GETTIMELEFT = 0x4004570a
constant WDIOC_GETTIMEOUT (line 2647) | WDIOC_GETTIMEOUT = 0x40045707
constant WDIOC_KEEPALIVE (line 2648) | WDIOC_KEEPALIVE = 0x40045705
constant WDIOC_SETOPTIONS (line 2649) | WDIOC_SETOPTIONS = 0x40045704
constant WDIOC_SETPRETIMEOUT (line 2650) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2651) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2652) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2653) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2654) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2655) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2656) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2657) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2658) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2659) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2660) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2661) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2662) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2663) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2664) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2665) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2666) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2667) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2668) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2669) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2670) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2671) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2672) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2673) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2674) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2675) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2676) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2677) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2678) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2679) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2680) | WIN_READ = 0x20
constant WIN_READDMA (line 2681) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2682) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2683) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2684) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2685) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2686) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2687) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2688) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2689) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2690) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2691) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2692) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2693) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2694) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2695) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2696) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2697) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2698) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2699) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2700) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2701) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2702) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2703) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2704) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2705) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2706) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2707) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2708) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2709) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2710) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2711) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2712) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2713) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2714) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2715) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2716) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2717) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2718) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2719) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2720) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2721) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2722) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2723) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2724) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2725) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2726) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2727) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2728) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2729) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2730) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2731) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2732) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2733) | WNOHANG = 0x1
constant WNOTHREAD (line 2734) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2735) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2736) | WORDSIZE = 0x40
constant WSTOPPED (line 2737) | WSTOPPED = 0x2
constant WUNTRACED (line 2738) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2739) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2740) | XATTR_REPLACE = 0x2
constant XCASE (line 2741) | XCASE = 0x4
constant XDP_COPY (line 2742) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2743) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2744) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2745) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2746) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2747) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2748) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2749) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2750) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2751) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2752) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2753) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2754) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2755) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2756) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2757) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2758) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2759) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2760) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2761) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2762) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2763) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2764) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2765) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2766) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2767) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2768) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2769) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2774) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2775) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2776) | EADDRINUSE = syscall.Errno(0x7d)
constant EADDRNOTAVAIL (line 2777) | EADDRNOTAVAIL = syscall.Errno(0x7e)
constant EADV (line 2778) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2779) | EAFNOSUPPORT = syscall.Errno(0x7c)
constant EAGAIN (line 2780) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2781) | EALREADY = syscall.Errno(0x95)
constant EBADE (line 2782) | EBADE = syscall.Errno(0x32)
constant EBADF (line 2783) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2784) | EBADFD = syscall.Errno(0x51)
constant EBADMSG (line 2785) | EBADMSG = syscall.Errno(0x4d)
constant EBADR (line 2786) | EBADR = syscall.Errno(0x33)
constant EBADRQC (line 2787) | EBADRQC = syscall.Errno(0x36)
constant EBADSLT (line 2788) | EBADSLT = syscall.Errno(0x37)
constant EBFONT (line 2789) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2790) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2791) | ECANCELED = syscall.Errno(0x9e)
constant ECHILD (line 2792) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2793) | ECHRNG = syscall.Errno(0x25)
constant ECOMM (line 2794) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2795) | ECONNABORTED = syscall.Errno(0x82)
constant ECONNREFUSED (line 2796) | ECONNREFUSED = syscall.Errno(0x92)
constant ECONNRESET (line 2797) | ECONNRESET = syscall.Errno(0x83)
constant EDEADLK (line 2798) | EDEADLK = syscall.Errno(0x2d)
constant EDEADLOCK (line 2799) | EDEADLOCK = syscall.Errno(0x38)
constant EDESTADDRREQ (line 2800) | EDESTADDRREQ = syscall.Errno(0x60)
constant EDOM (line 2801) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2802) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2803) | EDQUOT = syscall.Errno(0x46d)
constant EEXIST (line 2804) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2805) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2806) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2807) | EHOSTDOWN = syscall.Errno(0x93)
constant EHOSTUNREACH (line 2808) | EHOSTUNREACH = syscall.Errno(0x94)
constant EHWPOISON (line 2809) | EHWPOISON = syscall.Errno(0xa8)
constant EIDRM (line 2810) | EIDRM = syscall.Errno(0x24)
constant EILSEQ (line 2811) | EILSEQ = syscall.Errno(0x58)
constant EINIT (line 2812) | EINIT = syscall.Errno(0x8d)
constant EINPROGRESS (line 2813) | EINPROGRESS = syscall.Errno(0x96)
constant EINTR (line 2814) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2815) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2816) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2817) | EISCONN = syscall.Errno(0x85)
constant EISDIR (line 2818) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2819) | EISNAM = syscall.Errno(0x8b)
constant EKEYEXPIRED (line 2820) | EKEYEXPIRED = syscall.Errno(0xa2)
constant EKEYREJECTED (line 2821) | EKEYREJECTED = syscall.Errno(0xa4)
constant EKEYREVOKED (line 2822) | EKEYREVOKED = syscall.Errno(0xa3)
constant EL2HLT (line 2823) | EL2HLT = syscall.Errno(0x2c)
constant EL2NSYNC (line 2824) | EL2NSYNC = syscall.Errno(0x26)
constant EL3HLT (line 2825) | EL3HLT = syscall.Errno(0x27)
constant EL3RST (line 2826) | EL3RST = syscall.Errno(0x28)
constant ELIBACC (line 2827) | ELIBACC = syscall.Errno(0x53)
constant ELIBBAD (line 2828) | ELIBBAD = syscall.Errno(0x54)
constant ELIBEXEC (line 2829) | ELIBEXEC = syscall.Errno(0x57)
constant ELIBMAX (line 2830) | ELIBMAX = syscall.Errno(0x56)
constant ELIBSCN (line 2831) | ELIBSCN = syscall.Errno(0x55)
constant ELNRNG (line 2832) | ELNRNG = syscall.Errno(0x29)
constant ELOOP (line 2833) | ELOOP = syscall.Errno(0x5a)
constant EMEDIUMTYPE (line 2834) | EMEDIUMTYPE = syscall.Errno(0xa0)
constant EMFILE (line 2835) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2836) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2837) | EMSGSIZE = syscall.Errno(0x61)
constant EMULTIHOP (line 2838) | EMULTIHOP = syscall.Errno(0x4a)
constant ENAMETOOLONG (line 2839) | ENAMETOOLONG = syscall.Errno(0x4e)
constant ENAVAIL (line 2840) | ENAVAIL = syscall.Errno(0x8a)
constant ENETDOWN (line 2841) | ENETDOWN = syscall.Errno(0x7f)
constant ENETRESET (line 2842) | ENETRESET = syscall.Errno(0x81)
constant ENETUNREACH (line 2843) | ENETUNREACH = syscall.Errno(0x80)
constant ENFILE (line 2844) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2845) | ENOANO = syscall.Errno(0x35)
constant ENOBUFS (line 2846) | ENOBUFS = syscall.Errno(0x84)
constant ENOCSI (line 2847) | ENOCSI = syscall.Errno(0x2b)
constant ENODATA (line 2848) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2849) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2850) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2851) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2852) | ENOKEY = syscall.Errno(0xa1)
constant ENOLCK (line 2853) | ENOLCK = syscall.Errno(0x2e)
constant ENOLINK (line 2854) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2855) | ENOMEDIUM = syscall.Errno(0x9f)
constant ENOMEM (line 2856) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2857) | ENOMSG = syscall.Errno(0x23)
constant ENONET (line 2858) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2859) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2860) | ENOPROTOOPT = syscall.Errno(0x63)
constant ENOSPC (line 2861) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2862) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2863) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2864) | ENOSYS = syscall.Errno(0x59)
constant ENOTBLK (line 2865) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2866) | ENOTCONN = syscall.Errno(0x86)
constant ENOTDIR (line 2867) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2868) | ENOTEMPTY = syscall.Errno(0x5d)
constant ENOTNAM (line 2869) | ENOTNAM = syscall.Errno(0x89)
constant ENOTRECOVERABLE (line 2870) | ENOTRECOVERABLE = syscall.Errno(0xa6)
constant ENOTSOCK (line 2871) | ENOTSOCK = syscall.Errno(0x5f)
constant ENOTSUP (line 2872) | ENOTSUP = syscall.Errno(0x7a)
constant ENOTTY (line 2873) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2874) | ENOTUNIQ = syscall.Errno(0x50)
constant ENXIO (line 2875) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2876) | EOPNOTSUPP = syscall.Errno(0x7a)
constant EOVERFLOW (line 2877) | EOVERFLOW = syscall.Errno(0x4f)
constant EOWNERDEAD (line 2878) | EOWNERDEAD = syscall.Errno(0xa5)
constant EPERM (line 2879) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2880) | EPFNOSUPPORT = syscall.Errno(0x7b)
constant EPIPE (line 2881) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2882) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2883) | EPROTONOSUPPORT = syscall.Errno(0x78)
constant EPROTOTYPE (line 2884) | EPROTOTYPE = syscall.Errno(0x62)
constant ERANGE (line 2885) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2886) | EREMCHG = syscall.Errno(0x52)
constant EREMDEV (line 2887) | EREMDEV = syscall.Errno(0x8e)
constant EREMOTE (line 2888) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2889) | EREMOTEIO = syscall.Errno(0x8c)
constant ERESTART (line 2890) | ERESTART = syscall.Errno(0x5b)
constant ERFKILL (line 2891) | ERFKILL = syscall.Errno(0xa7)
constant EROFS (line 2892) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2893) | ESHUTDOWN = syscall.Errno(0x8f)
constant ESOCKTNOSUPPORT (line 2894) | ESOCKTNOSUPPORT = syscall.Errno(0x79)
constant ESPIPE (line 2895) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2896) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2897) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2898) | ESTALE = syscall.Errno(0x97)
constant ESTRPIPE (line 2899) | ESTRPIPE = syscall.Errno(0x5c)
constant ETIME (line 2900) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2901) | ETIMEDOUT = syscall.Errno(0x91)
constant ETOOMANYREFS (line 2902) | ETOOMANYREFS = syscall.Errno(0x90)
constant ETXTBSY (line 2903) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2904) | EUCLEAN = syscall.Errno(0x87)
constant EUNATCH (line 2905) | EUNATCH = syscall.Errno(0x2a)
constant EUSERS (line 2906) | EUSERS = syscall.Errno(0x5e)
constant EWOULDBLOCK (line 2907) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2908) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2909) | EXFULL = syscall.Errno(0x34)
constant SIGABRT (line 2914) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2915) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2916) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 2917) | SIGCHLD = syscall.Signal(0x12)
constant SIGCLD (line 2918) | SIGCLD = syscall.Signal(0x12)
constant SIGCONT (line 2919) | SIGCONT = syscall.Signal(0x19)
constant SIGEMT (line 2920) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 2921) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2922) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2923) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2924) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2925) | SIGIO = syscall.Signal(0x16)
constant SIGIOT (line 2926) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2927) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2928) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2929) | SIGPOLL = syscall.Signal(0x16)
constant SIGPROF (line 2930) | SIGPROF = syscall.Signal(0x1d)
constant SIGPWR (line 2931) | SIGPWR = syscall.Signal(0x13)
constant SIGQUIT (line 2932) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2933) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 2934) | SIGSTOP = syscall.Signal(0x17)
constant SIGSYS (line 2935) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 2936) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2937) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2938) | SIGTSTP = syscall.Signal(0x18)
constant SIGTTIN (line 2939) | SIGTTIN = syscall.Signal(0x1a)
constant SIGTTOU (line 2940) | SIGTTOU = syscall.Signal(0x1b)
constant SIGURG (line 2941) | SIGURG = syscall.Signal(0x15)
constant SIGUSR1 (line 2942) | SIGUSR1 = syscall.Signal(0x10)
constant SIGUSR2 (line 2943) | SIGUSR2 = syscall.Signal(0x11)
constant SIGVTALRM (line 2944) | SIGVTALRM = syscall.Signal(0x1c)
constant SIGWINCH (line 2945) | SIGWINCH = syscall.Signal(0x14)
constant SIGXCPU (line 2946) | SIGXCPU = syscall.Signal(0x1e)
constant SIGXFSZ (line 2947) | SIGXFSZ = syscall.Signal(0x1f)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x40081270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x80081271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x20001261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x20001265
constant BLKFRASET (line 183) | BLKFRASET = 0x20001264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x20001260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x40081272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x2000127b
constant BLKRAGET (line 187) | BLKRAGET = 0x20001263
constant BLKRASET (line 188) | BLKRASET = 0x20001262
constant BLKROGET (line 189) | BLKROGET = 0x2000125e
constant BLKROSET (line 190) | BLKROSET = 0x2000125d
constant BLKRRPART (line 191) | BLKRRPART = 0x2000125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x20001267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x20001266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x20001268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x80
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x2000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0xe
constant F_GETLK64 (line 713) | F_GETLK64 = 0xe
constant F_GETOWN (line 714) | F_GETOWN = 0x17
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0x6
constant F_SETLK64 (line 737) | F_SETLK64 = 0x6
constant F_SETLKW (line 738) | F_SETLKW = 0x7
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0x7
constant F_SETOWN (line 740) | F_SETOWN = 0x18
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x400
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x2
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x100
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x80
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x200
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x1000
constant IXON (line 1070) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x800
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x800
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x2000
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x4000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x1000
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x80000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x8000
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x20000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x400
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x10000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 1218) | MAP_RENAME = 0x800
constant MAP_SHARED (line 1219) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1220) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1221) | MAP_STACK = 0x40000
constant MAP_TYPE (line 1222) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1223) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1224) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1225) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1226) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1227) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1228) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1229) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1230) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1231) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1232) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1233) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1234) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1235) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1236) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1237) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1238) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1239) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1240) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1241) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1242) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1243) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1244) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1245) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1246) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1247) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1248) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1249) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1250) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1251) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1252) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1253) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1254) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1255) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1256) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1257) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1258) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1259) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1260) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1261) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1262) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1263) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1264) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1265) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1266) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1267) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1268) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1269) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1270) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1271) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1272) | MSG_FIN = 0x200
constant MSG_MORE (line 1273) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1274) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1275) | MSG_OOB = 0x1
constant MSG_PEEK (line 1276) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1277) | MSG_PROXY = 0x10
constant MSG_RST (line 1278) | MSG_RST = 0x1000
constant MSG_SYN (line 1279) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1280) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1281) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1282) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1283) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1284) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1285) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1286) | MS_ASYNC = 0x1
constant MS_BIND (line 1287) | MS_BIND = 0x1000
constant MS_BORN (line 1288) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1289) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1290) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1291) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1292) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1293) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1294) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1295) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1296) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1297) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1298) | MS_NOATIME = 0x400
constant MS_NODEV (line 1299) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1300) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1301) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1302) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1303) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1304) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1305) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1306) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1307) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1308) | MS_RDONLY = 0x1
constant MS_REC (line 1309) | MS_REC = 0x4000
constant MS_RELATIME (line 1310) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1311) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1312) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1313) | MS_SHARED = 0x100000
constant MS_SILENT (line 1314) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1315) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1316) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1317) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1318) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1319) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1320) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1321) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1322) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1323) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1324) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1325) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1326) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1327) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1328) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1329) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1330) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1331) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1332) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1333) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1334) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1335) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1336) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1337) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1338) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1339) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1340) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1341) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1342) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1343) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1344) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1345) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1346) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1347) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1348) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1349) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1350) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1351) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1352) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1353) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1354) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1355) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1356) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1357) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1358) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1359) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1360) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1361) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1362) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1363) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1364) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1365) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1366) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1367) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1368) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1369) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1370) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1371) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1372) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1373) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1374) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1375) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1376) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1377) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1378) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1379) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1380) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1381) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1382) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1383) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1384) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1385) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1386) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1387) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1388) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1389) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1390) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1391) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1392) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1393) | NL0 = 0x0
constant NL1 (line 1394) | NL1 = 0x100
constant NLA_ALIGNTO (line 1395) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1396) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1397) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1398) | NLA_HDRLEN = 0x4
constant NLDLY (line 1399) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1400) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1401) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1402) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1403) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1404) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1405) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1406) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1407) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1408) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1409) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1410) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1411) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1412) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1413) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1414) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1415) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1416) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1417) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1418) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1419) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1420) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1421) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1422) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1423) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1424) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1425) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1426) | NS_GET_NSTYPE = 0x2000b703
constant NS_GET_OWNER_UID (line 1427) | NS_GET_OWNER_UID = 0x2000b704
constant NS_GET_PARENT (line 1428) | NS_GET_PARENT = 0x2000b702
constant NS_GET_USERNS (line 1429) | NS_GET_USERNS = 0x2000b701
constant OCFS2_SUPER_MAGIC (line 1430) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1431) | OCRNL = 0x8
constant OFDEL (line 1432) | OFDEL = 0x80
constant OFILL (line 1433) | OFILL = 0x40
constant OLCUC (line 1434) | OLCUC = 0x2
constant ONLCR (line 1435) | ONLCR = 0x4
constant ONLRET (line 1436) | ONLRET = 0x20
constant ONOCR (line 1437) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1438) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1439) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1440) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1441) | O_ACCMODE = 0x3
constant O_APPEND (line 1442) | O_APPEND = 0x8
constant O_ASYNC (line 1443) | O_ASYNC = 0x1000
constant O_CLOEXEC (line 1444) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1445) | O_CREAT = 0x100
constant O_DIRECT (line 1446) | O_DIRECT = 0x8000
constant O_DIRECTORY (line 1447) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1448) | O_DSYNC = 0x10
constant O_EXCL (line 1449) | O_EXCL = 0x400
constant O_FSYNC (line 1450) | O_FSYNC = 0x4010
constant O_LARGEFILE (line 1451) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1452) | O_NDELAY = 0x80
constant O_NOATIME (line 1453) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1454) | O_NOCTTY = 0x800
constant O_NOFOLLOW (line 1455) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1456) | O_NONBLOCK = 0x80
constant O_PATH (line 1457) | O_PATH = 0x200000
constant O_RDONLY (line 1458) | O_RDONLY = 0x0
constant O_RDWR (line 1459) | O_RDWR = 0x2
constant O_RSYNC (line 1460) | O_RSYNC = 0x4010
constant O_SYNC (line 1461) | O_SYNC = 0x4010
constant O_TMPFILE (line 1462) | O_TMPFILE = 0x410000
constant O_TRUNC (line 1463) | O_TRUNC = 0x200
constant O_WRONLY (line 1464) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1465) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1466) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1467) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1468) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1469) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1470) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1471) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1472) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1473) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1474) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1475) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1476) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1477) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1478) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1479) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1480) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1481) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1482) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1483) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1484) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1485) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1486) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1487) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1488) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1489) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1490) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1491) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1492) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1493) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1494) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1495) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1496) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1497) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1498) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1499) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1500) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1501) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1502) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1503) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1504) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1505) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1506) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1507) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1508) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1509) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1510) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1511) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1512) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1513) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1514) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1515) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1516) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1517) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1518) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1519) | PARITY_NONE = 0x1
constant PARMRK (line 1520) | PARMRK = 0x8
constant PARODD (line 1521) | PARODD = 0x200
constant PENDIN (line 1522) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1523) | PERF_EVENT_IOC_DISABLE = 0x20002401
constant PERF_EVENT_IOC_ENABLE (line 1524) | PERF_EVENT_IOC_ENABLE = 0x20002400
constant PERF_EVENT_IOC_ID (line 1525) | PERF_EVENT_IOC_ID = 0x40082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1526) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1527) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409
constant PERF_EVENT_IOC_PERIOD (line 1528) | PERF_EVENT_IOC_PERIOD = 0x80082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1529) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1530) | PERF_EVENT_IOC_REFRESH = 0x20002402
constant PERF_EVENT_IOC_RESET (line 1531) | PERF_EVENT_IOC_RESET = 0x20002403
constant PERF_EVENT_IOC_SET_BPF (line 1532) | PERF_EVENT_IOC_SET_BPF = 0x80042408
constant PERF_EVENT_IOC_SET_FILTER (line 1533) | PERF_EVENT_IOC_SET_FILTER = 0x80082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1534) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405
constant PIPEFS_MAGIC (line 1535) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1536) | PPPIOCATTACH = 0x8004743d
constant PPPIOCATTCHAN (line 1537) | PPPIOCATTCHAN = 0x80047438
constant PPPIOCCONNECT (line 1538) | PPPIOCCONNECT = 0x8004743a
constant PPPIOCDETACH (line 1539) | PPPIOCDETACH = 0x8004743c
constant PPPIOCDISCONN (line 1540) | PPPIOCDISCONN = 0x20007439
constant PPPIOCGASYNCMAP (line 1541) | PPPIOCGASYNCMAP = 0x40047458
constant PPPIOCGCHAN (line 1542) | PPPIOCGCHAN = 0x40047437
constant PPPIOCGDEBUG (line 1543) | PPPIOCGDEBUG = 0x40047441
constant PPPIOCGFLAGS (line 1544) | PPPIOCGFLAGS = 0x4004745a
constant PPPIOCGIDLE (line 1545) | PPPIOCGIDLE = 0x4010743f
constant PPPIOCGL2TPSTATS (line 1546) | PPPIOCGL2TPSTATS = 0x40487436
constant PPPIOCGMRU (line 1547) | PPPIOCGMRU = 0x40047453
constant PPPIOCGNPMODE (line 1548) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1549) | PPPIOCGRASYNCMAP = 0x40047455
constant PPPIOCGUNIT (line 1550) | PPPIOCGUNIT = 0x40047456
constant PPPIOCGXASYNCMAP (line 1551) | PPPIOCGXASYNCMAP = 0x40207450
constant PPPIOCNEWUNIT (line 1552) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1553) | PPPIOCSACTIVE = 0x80107446
constant PPPIOCSASYNCMAP (line 1554) | PPPIOCSASYNCMAP = 0x80047457
constant PPPIOCSCOMPRESS (line 1555) | PPPIOCSCOMPRESS = 0x8010744d
constant PPPIOCSDEBUG (line 1556) | PPPIOCSDEBUG = 0x80047440
constant PPPIOCSFLAGS (line 1557) | PPPIOCSFLAGS = 0x80047459
constant PPPIOCSMAXCID (line 1558) | PPPIOCSMAXCID = 0x80047451
constant PPPIOCSMRRU (line 1559) | PPPIOCSMRRU = 0x8004743b
constant PPPIOCSMRU (line 1560) | PPPIOCSMRU = 0x80047452
constant PPPIOCSNPMODE (line 1561) | PPPIOCSNPMODE = 0x8008744b
constant PPPIOCSPASS (line 1562) | PPPIOCSPASS = 0x80107447
constant PPPIOCSRASYNCMAP (line 1563) | PPPIOCSRASYNCMAP = 0x80047454
constant PPPIOCSXASYNCMAP (line 1564) | PPPIOCSXASYNCMAP = 0x8020744f
constant PPPIOCXFERUNIT (line 1565) | PPPIOCXFERUNIT = 0x2000744e
constant PRIO_PGRP (line 1566) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1567) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1568) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1569) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1570) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1571) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1572) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1573) | PROT_NONE = 0x0
constant PROT_READ (line 1574) | PROT_READ = 0x1
constant PROT_WRITE (line 1575) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1576) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1577) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1578) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1579) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1580) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1581) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1582) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1583) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1584) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1585) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1586) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1587) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1588) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1589) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1590) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1591) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1592) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1593) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1594) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1595) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1596) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1597) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1598) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1599) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1600) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1601) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1602) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1603) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1604) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1605) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1606) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1607) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1608) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1609) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1610) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1611) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1612) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1613) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1614) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1615) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1616) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1617) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1618) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1619) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1620) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1621) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1622) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1623) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1624) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1625) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1626) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1627) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1628) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1629) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1630) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1631) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1632) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1633) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1634) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1635) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1636) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1637) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1638) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1639) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1640) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1641) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1642) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1643) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1644) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1645) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1646) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1647) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1648) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1649) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1650) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1651) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1652) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1653) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1654) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1655) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1656) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1657) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1658) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1659) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1660) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1661) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1662) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1663) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1664) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1665) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1666) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1667) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1668) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1669) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1670) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1671) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1672) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1673) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1674) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1675) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1676) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1677) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1678) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1679) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1680) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1681) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1682) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1683) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1684) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1685) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1686) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1687) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1688) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1689) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1690) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1691) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1692) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1693) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1694) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1695) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1696) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1697) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1698) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1699) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1700) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1701) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1702) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1703) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1704) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1705) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETFPREGS (line 1706) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETREGS (line 1707) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1708) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1709) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1710) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1711) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_GET_THREAD_AREA (line 1712) | PTRACE_GET_THREAD_AREA = 0x19
constant PTRACE_GET_THREAD_AREA_3264 (line 1713) | PTRACE_GET_THREAD_AREA_3264 = 0xc4
constant PTRACE_GET_WATCH_REGS (line 1714) | PTRACE_GET_WATCH_REGS = 0xd0
constant PTRACE_INTERRUPT (line 1715) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1716) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1717) | PTRACE_LISTEN = 0x4208
constant PTRACE_OLDSETOPTIONS (line 1718) | PTRACE_OLDSETOPTIONS = 0x15
constant PTRACE_O_EXITKILL (line 1719) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1720) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1721) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1722) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1723) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1724) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1725) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1726) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1727) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1728) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1729) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1730) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKDATA_3264 (line 1731) | PTRACE_PEEKDATA_3264 = 0xc1
constant PTRACE_PEEKSIGINFO (line 1732) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1733) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1734) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKTEXT_3264 (line 1735) | PTRACE_PEEKTEXT_3264 = 0xc0
constant PTRACE_PEEKUSR (line 1736) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1737) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKEDATA_3264 (line 1738) | PTRACE_POKEDATA_3264 = 0xc3
constant PTRACE_POKETEXT (line 1739) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKETEXT_3264 (line 1740) | PTRACE_POKETEXT_3264 = 0xc2
constant PTRACE_POKEUSR (line 1741) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1742) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1743) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1744) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETFPREGS (line 1745) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETOPTIONS (line 1746) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1747) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1748) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1749) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1750) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SET_THREAD_AREA (line 1751) | PTRACE_SET_THREAD_AREA = 0x1a
constant PTRACE_SET_WATCH_REGS (line 1752) | PTRACE_SET_WATCH_REGS = 0xd1
constant PTRACE_SINGLESTEP (line 1753) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1754) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1755) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1756) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1757) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1758) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_TRACEME (line 1759) | PTRACE_TRACEME = 0x0
constant QNX4_SUPER_MAGIC (line 1760) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1761) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1762) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1763) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1764) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1765) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1766) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1767) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1768) | RLIMIT_AS = 0x6
constant RLIMIT_CORE (line 1769) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1770) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1771) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1772) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1773) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1774) | RLIMIT_MEMLOCK = 0x9
constant RLIMIT_MSGQUEUE (line 1775) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1776) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1777) | RLIMIT_NOFILE = 0x5
constant RLIMIT_NPROC (line 1778) | RLIMIT_NPROC = 0x8
constant RLIMIT_RSS (line 1779) | RLIMIT_RSS = 0x7
constant RLIMIT_RTPRIO (line 1780) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1781) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1782) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1783) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1784) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1785) | RNDADDENTROPY = 0x80085203
constant RNDADDTOENTCNT (line 1786) | RNDADDTOENTCNT = 0x80045201
constant RNDCLEARPOOL (line 1787) | RNDCLEARPOOL = 0x20005206
constant RNDGETENTCNT (line 1788) | RNDGETENTCNT = 0x40045200
constant RNDGETPOOL (line 1789) | RNDGETPOOL = 0x40085202
constant RNDRESEEDCRNG (line 1790) | RNDRESEEDCRNG = 0x20005207
constant RNDZAPENTCNT (line 1791) | RNDZAPENTCNT = 0x20005204
constant RTAX_ADVMSS (line 1792) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1793) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1794) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1795) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1796) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1797) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1798) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1799) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1800) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1801) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1802) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1803) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1804) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1805) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1806) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1807) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1808) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1809) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1810) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1811) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1812) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1813) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1814) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1815) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1816) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1817) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1818) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1819) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1820) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1821) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1822) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1823) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1824) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1825) | RTC_AIE_OFF = 0x20007002
constant RTC_AIE_ON (line 1826) | RTC_AIE_ON = 0x20007001
constant RTC_ALM_READ (line 1827) | RTC_ALM_READ = 0x40247008
constant RTC_ALM_SET (line 1828) | RTC_ALM_SET = 0x80247007
constant RTC_EPOCH_READ (line 1829) | RTC_EPOCH_READ = 0x4008700d
constant RTC_EPOCH_SET (line 1830) | RTC_EPOCH_SET = 0x8008700e
constant RTC_IRQF (line 1831) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1832) | RTC_IRQP_READ = 0x4008700b
constant RTC_IRQP_SET (line 1833) | RTC_IRQP_SET = 0x8008700c
constant RTC_MAX_FREQ (line 1834) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1835) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1836) | RTC_PIE_OFF = 0x20007006
constant RTC_PIE_ON (line 1837) | RTC_PIE_ON = 0x20007005
constant RTC_PLL_GET (line 1838) | RTC_PLL_GET = 0x40207011
constant RTC_PLL_SET (line 1839) | RTC_PLL_SET = 0x80207012
constant RTC_RD_TIME (line 1840) | RTC_RD_TIME = 0x40247009
constant RTC_SET_TIME (line 1841) | RTC_SET_TIME = 0x8024700a
constant RTC_UF (line 1842) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1843) | RTC_UIE_OFF = 0x20007004
constant RTC_UIE_ON (line 1844) | RTC_UIE_ON = 0x20007003
constant RTC_VL_CLR (line 1845) | RTC_VL_CLR = 0x20007014
constant RTC_VL_READ (line 1846) | RTC_VL_READ = 0x40047013
constant RTC_WIE_OFF (line 1847) | RTC_WIE_OFF = 0x20007010
constant RTC_WIE_ON (line 1848) | RTC_WIE_ON = 0x2000700f
constant RTC_WKALM_RD (line 1849) | RTC_WKALM_RD = 0x40287010
constant RTC_WKALM_SET (line 1850) | RTC_WKALM_SET = 0x8028700f
constant RTF_ADDRCLASSMASK (line 1851) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1852) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1853) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1854) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1855) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1856) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1857) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1858) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1859) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1860) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1861) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1862) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1863) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1864) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1865) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1866) | RTF_MSS = 0x40
constant RTF_MTU (line 1867) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1868) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1869) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1870) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1871) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1872) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1873) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1874) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1875) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1876) | RTF_STATIC = 0x400
constant RTF_THROW (line 1877) | RTF_THROW = 0x2000
constant RTF_UP (line 1878) | RTF_UP = 0x1
constant RTF_WINDOW (line 1879) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1880) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1881) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1882) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1883) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1884) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1885) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1886) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1887) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1888) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1889) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1890) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1891) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1892) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1893) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1894) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1895) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1896) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1897) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1898) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1899) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1900) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1901) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1902) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1903) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1904) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1905) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1906) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1907) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1908) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1909) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1910) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1911) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1912) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1913) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1914) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1915) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1916) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1917) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1918) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1919) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1920) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1921) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1922) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1923) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1924) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1925) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1926) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1927) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1928) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1929) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1930) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1931) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1932) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1933) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1934) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1935) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1936) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1937) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1938) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1939) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1940) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1941) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1942) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1943) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1944) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1945) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1946) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1947) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1948) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1949) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1950) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1951) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1952) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1953) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1954) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1955) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1956) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1957) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1958) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1959) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1960) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1961) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1962) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1963) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1964) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1965) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1966) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1967) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1968) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1969) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1970) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1971) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1972) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1973) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1974) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1975) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1976) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1977) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1978) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1979) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1980) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1981) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1982) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1983) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1984) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1985) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1986) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1987) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1988) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1989) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1990) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1991) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1992) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 1993) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 1994) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 1995) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 1996) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 1997) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 1998) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 1999) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2000) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2001) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2002) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2003) | SFD_NONBLOCK = 0x80
constant SHUT_RD (line 2004) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2005) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2006) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2007) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2008) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2009) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2010) | SIOCATMARK = 0x40047307
constant SIOCBONDCHANGEACTIVE (line 2011) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2012) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2013) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2014) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2015) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2016) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2017) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2018) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2019) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2020) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2021) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2022) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2023) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2024) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2025) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2026) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2027) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2028) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2029) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2030) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2031) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2032) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2033) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2034) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2035) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2036) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2037) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2038) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2039) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2040) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2041) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2042) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2043) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2044) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2045) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2046) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2047) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2048) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2049) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2050) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2051) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2052) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2053) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2054) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2055) | SIOCGPGRP = 0x40047309
constant SIOCGPPPCSTATS (line 2056) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2057) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2058) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2059) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2060) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2061) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2062) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2063) | SIOCGSTAMPNS_NEW = 0x40108907
constant SIOCGSTAMPNS_OLD (line 2064) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2065) | SIOCGSTAMP_NEW = 0x40108906
constant SIOCGSTAMP_OLD (line 2066) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2067) | SIOCINQ = 0x467f
constant SIOCOUTQ (line 2068) | SIOCOUTQ = 0x7472
constant SIOCOUTQNSD (line 2069) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2070) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2071) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2072) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2073) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2074) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2075) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2076) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2077) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2078) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2079) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2080) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2081) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2082) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2083) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2084) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2085) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2086) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2087) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2088) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2089) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2090) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2091) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2092) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2093) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2094) | SIOCSPGRP = 0x80047308
constant SIOCSRARP (line 2095) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2096) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2097) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2098) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2099) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2100) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2101) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2102) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2103) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2104) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2105) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2106) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2107) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2108) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2109) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2110) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2111) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2112) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2113) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2114) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2115) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2116) | SOCK_DGRAM = 0x1
constant SOCK_IOC_TYPE (line 2117) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2118) | SOCK_NONBLOCK = 0x80
constant SOCK_PACKET (line 2119) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2120) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2121) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2122) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2123) | SOCK_STREAM = 0x2
constant SOL_AAL (line 2124) | SOL_AAL = 0x109
constant SOL_ALG (line 2125) | SOL_ALG = 0x117
constant SOL_ATM (line 2126) | SOL_ATM = 0x108
constant SOL_CAIF (line 2127) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2128) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2129) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2130) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2131) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2132) | SOL_IP = 0x0
constant SOL_IPV6 (line 2133) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2134) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2135) | SOL_IUCV = 0x115
constant SOL_KCM (line 2136) | SOL_KCM = 0x119
constant SOL_LLC (line 2137) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2138) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2139) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2140) | SOL_NFC = 0x118
constant SOL_PACKET (line 2141) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2142) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2143) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2144) | SOL_RAW = 0xff
constant SOL_RDS (line 2145) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2146) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2147) | SOL_SOCKET = 0xffff
constant SOL_TCP (line 2148) | SOL_TCP = 0x6
constant SOL_TIPC (line 2149) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2150) | SOL_TLS = 0x11a
constant SOL_X25 (line 2151) | SOL_X25 = 0x106
constant SOL_XDP (line 2152) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2153) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2154) | SO_ACCEPTCONN = 0x1009
constant SO_ATTACH_BPF (line 2155) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2156) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2157) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2158) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2159) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2160) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2161) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2162) | SO_BROADCAST = 0x20
constant SO_BSDCOMPAT (line 2163) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2164) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2165) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2166) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2167) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2168) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2169) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2170) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2171) | SO_DOMAIN = 0x1029
constant SO_DONTROUTE (line 2172) | SO_DONTROUTE = 0x10
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2173) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2174) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2175) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2176) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2177) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2178) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2179) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2180) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2181) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2182) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2183) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2184) | SO_ERROR = 0x1007
constant SO_GET_FILTER (line 2185) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2186) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2187) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2188) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 2189) | SO_LINGER = 0x80
constant SO_LOCK_FILTER (line 2190) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2191) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2192) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2193) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2194) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2195) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2196) | SO_OOBINLINE = 0x100
constant SO_PASSCRED (line 2197) | SO_PASSCRED = 0x11
constant SO_PASSSEC (line 2198) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2199) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2200) | SO_PEERCRED = 0x12
constant SO_PEERGROUPS (line 2201) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2202) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2203) | SO_PEERSEC = 0x1e
constant SO_PRIORITY (line 2204) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2205) | SO_PROTOCOL = 0x1028
constant SO_RCVBUF (line 2206) | SO_RCVBUF = 0x1002
constant SO_RCVBUFFORCE (line 2207) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2208) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 2209) | SO_RCVTIMEO = 0x1006
constant SO_RCVTIMEO_NEW (line 2210) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2211) | SO_RCVTIMEO_OLD = 0x1006
constant SO_REUSEADDR (line 2212) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 2213) | SO_REUSEPORT = 0x200
constant SO_RXQ_OVFL (line 2214) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2215) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2216) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2217) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2218) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2219) | SO_SNDBUF = 0x1001
constant SO_SNDBUFFORCE (line 2220) | SO_SNDBUFFORCE = 0x1f
constant SO_SNDLOWAT (line 2221) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 2222) | SO_SNDTIMEO = 0x1005
constant SO_SNDTIMEO_NEW (line 2223) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2224) | SO_SNDTIMEO_OLD = 0x1005
constant SO_STYLE (line 2225) | SO_STYLE = 0x1008
constant SO_TIMESTAMP (line 2226) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2227) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2228) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2229) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2230) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2231) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2232) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2233) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2234) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2235) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2236) | SO_TYPE = 0x1008
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2237) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2238) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2239) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2240) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2241) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2242) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2243) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2244) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2245) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2246) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2247) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2248) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2249) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2250) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2251) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2252) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2253) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2254) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2255) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2256) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2257) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2258) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2259) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2260) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2261) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2262) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2263) | STATX_CTIME = 0x80
constant STATX_GID (line 2264) | STATX_GID = 0x10
constant STATX_INO (line 2265) | STATX_INO = 0x100
constant STATX_MODE (line 2266) | STATX_MODE = 0x2
constant STATX_MTIME (line 2267) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2268) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2269) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2270) | STATX_TYPE = 0x1
constant STATX_UID (line 2271) | STATX_UID = 0x8
constant STATX__RESERVED (line 2272) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2273) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2274) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2275) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2276) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2277) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2278) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2279) | S_IEXEC = 0x40
constant S_IFBLK (line 2280) | S_IFBLK = 0x6000
constant S_IFCHR (line 2281) | S_IFCHR = 0x2000
constant S_IFDIR (line 2282) | S_IFDIR = 0x4000
constant S_IFIFO (line 2283) | S_IFIFO = 0x1000
constant S_IFLNK (line 2284) | S_IFLNK = 0xa000
constant S_IFMT (line 2285) | S_IFMT = 0xf000
constant S_IFREG (line 2286) | S_IFREG = 0x8000
constant S_IFSOCK (line 2287) | S_IFSOCK = 0xc000
constant S_IREAD (line 2288) | S_IREAD = 0x100
constant S_IRGRP (line 2289) | S_IRGRP = 0x20
constant S_IROTH (line 2290) | S_IROTH = 0x4
constant S_IRUSR (line 2291) | S_IRUSR = 0x100
constant S_IRWXG (line 2292) | S_IRWXG = 0x38
constant S_IRWXO (line 2293) | S_IRWXO = 0x7
constant S_IRWXU (line 2294) | S_IRWXU = 0x1c0
constant S_ISGID (line 2295) | S_ISGID = 0x400
constant S_ISUID (line 2296) | S_ISUID = 0x800
constant S_ISVTX (line 2297) | S_ISVTX = 0x200
constant S_IWGRP (line 2298) | S_IWGRP = 0x10
constant S_IWOTH (line 2299) | S_IWOTH = 0x2
constant S_IWRITE (line 2300) | S_IWRITE = 0x80
constant S_IWUSR (line 2301) | S_IWUSR = 0x80
constant S_IXGRP (line 2302) | S_IXGRP = 0x8
constant S_IXOTH (line 2303) | S_IXOTH = 0x1
constant S_IXUSR (line 2304) | S_IXUSR = 0x40
constant TAB0 (line 2305) | TAB0 = 0x0
constant TAB1 (line 2306) | TAB1 = 0x800
constant TAB2 (line 2307) | TAB2 = 0x1000
constant TAB3 (line 2308) | TAB3 = 0x1800
constant TABDLY (line 2309) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2310) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2311) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2312) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2313) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2314) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2315) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2316) | TCFLSH = 0x5407
constant TCGETA (line 2317) | TCGETA = 0x5401
constant TCGETS (line 2318) | TCGETS = 0x540d
constant TCGETS2 (line 2319) | TCGETS2 = 0x4030542a
constant TCIFLUSH (line 2320) | TCIFLUSH = 0x0
constant TCIOFF (line 2321) | TCIOFF = 0x2
constant TCIOFLUSH (line 2322) | TCIOFLUSH = 0x2
constant TCION (line 2323) | TCION = 0x3
constant TCOFLUSH (line 2324) | TCOFLUSH = 0x1
constant TCOOFF (line 2325) | TCOOFF = 0x0
constant TCOON (line 2326) | TCOON = 0x1
constant TCP_BPF_IW (line 2327) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2328) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2329) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2330) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2331) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2332) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2333) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2334) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2335) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2336) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2337) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2338) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2339) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2340) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2341) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2342) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2343) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2344) | TCP_INFO = 0xb
constant TCP_INQ (line 2345) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2346) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2347) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2348) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2349) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2350) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2351) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2352) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2353) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2354) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2355) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2356) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2357) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2358) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2359) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2360) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2361) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2362) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2363) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2364) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2365) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2366) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2367) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2368) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2369) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2370) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2371) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2372) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2373) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2374) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2375) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2376) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2377) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2378) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2379) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2380) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2381) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2382) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2383) | TCSAFLUSH = 0x5410
constant TCSBRK (line 2384) | TCSBRK = 0x5405
constant TCSBRKP (line 2385) | TCSBRKP = 0x5486
constant TCSETA (line 2386) | TCSETA = 0x5402
constant TCSETAF (line 2387) | TCSETAF = 0x5404
constant TCSETAW (line 2388) | TCSETAW = 0x5403
constant TCSETS (line 2389) | TCSETS = 0x540e
constant TCSETS2 (line 2390) | TCSETS2 = 0x8030542b
constant TCSETSF (line 2391) | TCSETSF = 0x5410
constant TCSETSF2 (line 2392) | TCSETSF2 = 0x8030542d
constant TCSETSW (line 2393) | TCSETSW = 0x540f
constant TCSETSW2 (line 2394) | TCSETSW2 = 0x8030542c
constant TCXONC (line 2395) | TCXONC = 0x5406
constant TIMER_ABSTIME (line 2396) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2397) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2398) | TIOCCONS = 0x80047478
constant TIOCEXCL (line 2399) | TIOCEXCL = 0x740d
constant TIOCGDEV (line 2400) | TIOCGDEV = 0x40045432
constant TIOCGETD (line 2401) | TIOCGETD = 0x7400
constant TIOCGETP (line 2402) | TIOCGETP = 0x7408
constant TIOCGEXCL (line 2403) | TIOCGEXCL = 0x40045440
constant TIOCGICOUNT (line 2404) | TIOCGICOUNT = 0x5492
constant TIOCGISO7816 (line 2405) | TIOCGISO7816 = 0x40285442
constant TIOCGLCKTRMIOS (line 2406) | TIOCGLCKTRMIOS = 0x548b
constant TIOCGLTC (line 2407) | TIOCGLTC = 0x7474
constant TIOCGPGRP (line 2408) | TIOCGPGRP = 0x40047477
constant TIOCGPKT (line 2409) | TIOCGPKT = 0x40045438
constant TIOCGPTLCK (line 2410) | TIOCGPTLCK = 0x40045439
constant TIOCGPTN (line 2411) | TIOCGPTN = 0x40045430
constant TIOCGPTPEER (line 2412) | TIOCGPTPEER = 0x20005441
constant TIOCGRS485 (line 2413) | TIOCGRS485 = 0x4020542e
constant TIOCGSERIAL (line 2414) | TIOCGSERIAL = 0x5484
constant TIOCGSID (line 2415) | TIOCGSID = 0x7416
constant TIOCGSOFTCAR (line 2416) | TIOCGSOFTCAR = 0x5481
constant TIOCGWINSZ (line 2417) | TIOCGWINSZ = 0x40087468
constant TIOCINQ (line 2418) | TIOCINQ = 0x467f
constant TIOCLINUX (line 2419) | TIOCLINUX = 0x5483
constant TIOCMBIC (line 2420) | TIOCMBIC = 0x741c
constant TIOCMBIS (line 2421) | TIOCMBIS = 0x741b
constant TIOCMGET (line 2422) | TIOCMGET = 0x741d
constant TIOCMIWAIT (line 2423) | TIOCMIWAIT = 0x5491
constant TIOCMSET (line 2424) | TIOCMSET = 0x741a
constant TIOCM_CAR (line 2425) | TIOCM_CAR = 0x100
constant TIOCM_CD (line 2426) | TIOCM_CD = 0x100
constant TIOCM_CTS (line 2427) | TIOCM_CTS = 0x40
constant TIOCM_DSR (line 2428) | TIOCM_DSR = 0x400
constant TIOCM_DTR (line 2429) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2430) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2431) | TIOCM_RI = 0x200
constant TIOCM_RNG (line 2432) | TIOCM_RNG = 0x200
constant TIOCM_RTS (line 2433) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2434) | TIOCM_SR = 0x20
constant TIOCM_ST (line 2435) | TIOCM_ST = 0x10
constant TIOCNOTTY (line 2436) | TIOCNOTTY = 0x5471
constant TIOCNXCL (line 2437) | TIOCNXCL = 0x740e
constant TIOCOUTQ (line 2438) | TIOCOUTQ = 0x7472
constant TIOCPKT (line 2439) | TIOCPKT = 0x5470
constant TIOCPKT_DATA (line 2440) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2441) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2442) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2443) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2444) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2445) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2446) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2447) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2448) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2449) | TIOCSCTTY = 0x5480
constant TIOCSERCONFIG (line 2450) | TIOCSERCONFIG = 0x5488
constant TIOCSERGETLSR (line 2451) | TIOCSERGETLSR = 0x548e
constant TIOCSERGETMULTI (line 2452) | TIOCSERGETMULTI = 0x548f
constant TIOCSERGSTRUCT (line 2453) | TIOCSERGSTRUCT = 0x548d
constant TIOCSERGWILD (line 2454) | TIOCSERGWILD = 0x5489
constant TIOCSERSETMULTI (line 2455) | TIOCSERSETMULTI = 0x5490
constant TIOCSERSWILD (line 2456) | TIOCSERSWILD = 0x548a
constant TIOCSER_TEMT (line 2457) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2458) | TIOCSETD = 0x7401
constant TIOCSETN (line 2459) | TIOCSETN = 0x740a
constant TIOCSETP (line 2460) | TIOCSETP = 0x7409
constant TIOCSIG (line 2461) | TIOCSIG = 0x80045436
constant TIOCSISO7816 (line 2462) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2463) | TIOCSLCKTRMIOS = 0x548c
constant TIOCSLTC (line 2464) | TIOCSLTC = 0x7475
constant TIOCSPGRP (line 2465) | TIOCSPGRP = 0x80047476
constant TIOCSPTLCK (line 2466) | TIOCSPTLCK = 0x80045431
constant TIOCSRS485 (line 2467) | TIOCSRS485 = 0xc020542f
constant TIOCSSERIAL (line 2468) | TIOCSSERIAL = 0x5485
constant TIOCSSOFTCAR (line 2469) | TIOCSSOFTCAR = 0x5482
constant TIOCSTI (line 2470) | TIOCSTI = 0x5472
constant TIOCSWINSZ (line 2471) | TIOCSWINSZ = 0x80087467
constant TIOCVHANGUP (line 2472) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2473) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2474) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2475) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2476) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2477) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2478) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2479) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2480) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2481) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2482) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2483) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2484) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2485) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2486) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2487) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2488) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2489) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2490) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2491) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2492) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2493) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2494) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2495) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2496) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2497) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2498) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2499) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2500) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2501) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2502) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2503) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2504) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2505) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2506) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2507) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2508) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2509) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2510) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2511) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2512) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2513) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2514) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2515) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2516) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2517) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2518) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2519) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2520) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2521) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2522) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2523) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2524) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2525) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2526) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2527) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2528) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2529) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2530) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2531) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2532) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2533) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2534) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2535) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2536) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2537) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2538) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2539) | TOSTOP = 0x8000
constant TPACKET_ALIGNMENT (line 2540) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2541) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2542) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2543) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2544) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2545) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2546) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2547) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2548) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2549) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2550) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2551) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2552) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2553) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2554) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2555) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2556) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2557) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2558) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2559) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2560) | TUNATTACHFILTER = 0x801054d5
constant TUNDETACHFILTER (line 2561) | TUNDETACHFILTER = 0x801054d6
constant TUNGETDEVNETNS (line 2562) | TUNGETDEVNETNS = 0x200054e3
constant TUNGETFEATURES (line 2563) | TUNGETFEATURES = 0x400454cf
constant TUNGETFILTER (line 2564) | TUNGETFILTER = 0x401054db
constant TUNGETIFF (line 2565) | TUNGETIFF = 0x400454d2
constant TUNGETSNDBUF (line 2566) | TUNGETSNDBUF = 0x400454d3
constant TUNGETVNETBE (line 2567) | TUNGETVNETBE = 0x400454df
constant TUNGETVNETHDRSZ (line 2568) | TUNGETVNETHDRSZ = 0x400454d7
constant TUNGETVNETLE (line 2569) | TUNGETVNETLE = 0x400454dd
constant TUNSETCARRIER (line 2570) | TUNSETCARRIER = 0x800454e2
constant TUNSETDEBUG (line 2571) | TUNSETDEBUG = 0x800454c9
constant TUNSETFILTEREBPF (line 2572) | TUNSETFILTEREBPF = 0x400454e1
constant TUNSETGROUP (line 2573) | TUNSETGROUP = 0x800454ce
constant TUNSETIFF (line 2574) | TUNSETIFF = 0x800454ca
constant TUNSETIFINDEX (line 2575) | TUNSETIFINDEX = 0x800454da
constant TUNSETLINK (line 2576) | TUNSETLINK = 0x800454cd
constant TUNSETNOCSUM (line 2577) | TUNSETNOCSUM = 0x800454c8
constant TUNSETOFFLOAD (line 2578) | TUNSETOFFLOAD = 0x800454d0
constant TUNSETOWNER (line 2579) | TUNSETOWNER = 0x800454cc
constant TUNSETPERSIST (line 2580) | TUNSETPERSIST = 0x800454cb
constant TUNSETQUEUE (line 2581) | TUNSETQUEUE = 0x800454d9
constant TUNSETSNDBUF (line 2582) | TUNSETSNDBUF = 0x800454d4
constant TUNSETSTEERINGEBPF (line 2583) | TUNSETSTEERINGEBPF = 0x400454e0
constant TUNSETTXFILTER (line 2584) | TUNSETTXFILTER = 0x800454d1
constant TUNSETVNETBE (line 2585) | TUNSETVNETBE = 0x800454de
constant TUNSETVNETHDRSZ (line 2586) | TUNSETVNETHDRSZ = 0x800454d8
constant TUNSETVNETLE (line 2587) | TUNSETVNETLE = 0x800454dc
constant UBI_IOCATT (line 2588) | UBI_IOCATT = 0x80186f40
constant UBI_IOCDET (line 2589) | UBI_IOCDET = 0x80046f41
constant UBI_IOCEBCH (line 2590) | UBI_IOCEBCH = 0x80044f02
constant UBI_IOCEBER (line 2591) | UBI_IOCEBER = 0x80044f01
constant UBI_IOCEBISMAP (line 2592) | UBI_IOCEBISMAP = 0x40044f05
constant UBI_IOCEBMAP (line 2593) | UBI_IOCEBMAP = 0x80084f03
constant UBI_IOCEBUNMAP (line 2594) | UBI_IOCEBUNMAP = 0x80044f04
constant UBI_IOCMKVOL (line 2595) | UBI_IOCMKVOL = 0x80986f00
constant UBI_IOCRMVOL (line 2596) | UBI_IOCRMVOL = 0x80046f01
constant UBI_IOCRNVOL (line 2597) | UBI_IOCRNVOL = 0x91106f03
constant UBI_IOCRPEB (line 2598) | UBI_IOCRPEB = 0x80046f04
constant UBI_IOCRSVOL (line 2599) | UBI_IOCRSVOL = 0x800c6f02
constant UBI_IOCSETVOLPROP (line 2600) | UBI_IOCSETVOLPROP = 0x80104f06
constant UBI_IOCSPEB (line 2601) | UBI_IOCSPEB = 0x80046f05
constant UBI_IOCVOLCRBLK (line 2602) | UBI_IOCVOLCRBLK = 0x80804f07
constant UBI_IOCVOLRMBLK (line 2603) | UBI_IOCVOLRMBLK = 0x20004f08
constant UBI_IOCVOLUP (line 2604) | UBI_IOCVOLUP = 0x80084f00
constant UDF_SUPER_MAGIC (line 2605) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2606) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2607) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2608) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2609) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2610) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2611) | VDISCARD = 0xd
constant VEOF (line 2612) | VEOF = 0x10
constant VEOL (line 2613) | VEOL = 0x11
constant VEOL2 (line 2614) | VEOL2 = 0x6
constant VERASE (line 2615) | VERASE = 0x2
constant VINTR (line 2616) | VINTR = 0x0
constant VKILL (line 2617) | VKILL = 0x3
constant VLNEXT (line 2618) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2619) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2620) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2621) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2622) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2623) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2624) | VMIN = 0x4
constant VM_SOCKETS_INVALID_VERSION (line 2625) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2626) | VQUIT = 0x1
constant VREPRINT (line 2627) | VREPRINT = 0xc
constant VSTART (line 2628) | VSTART = 0x8
constant VSTOP (line 2629) | VSTOP = 0x9
constant VSUSP (line 2630) | VSUSP = 0xa
constant VSWTC (line 2631) | VSWTC = 0x7
constant VSWTCH (line 2632) | VSWTCH = 0x7
constant VT0 (line 2633) | VT0 = 0x0
constant VT1 (line 2634) | VT1 = 0x4000
constant VTDLY (line 2635) | VTDLY = 0x4000
constant VTIME (line 2636) | VTIME = 0x5
constant VWERASE (line 2637) | VWERASE = 0xe
constant WALL (line 2638) | WALL = 0x40000000
constant WCLONE (line 2639) | WCLONE = 0x80000000
constant WCONTINUED (line 2640) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2641) | WDIOC_GETBOOTSTATUS = 0x40045702
constant WDIOC_GETPRETIMEOUT (line 2642) | WDIOC_GETPRETIMEOUT = 0x40045709
constant WDIOC_GETSTATUS (line 2643) | WDIOC_GETSTATUS = 0x40045701
constant WDIOC_GETSUPPORT (line 2644) | WDIOC_GETSUPPORT = 0x40285700
constant WDIOC_GETTEMP (line 2645) | WDIOC_GETTEMP = 0x40045703
constant WDIOC_GETTIMELEFT (line 2646) | WDIOC_GETTIMELEFT = 0x4004570a
constant WDIOC_GETTIMEOUT (line 2647) | WDIOC_GETTIMEOUT = 0x40045707
constant WDIOC_KEEPALIVE (line 2648) | WDIOC_KEEPALIVE = 0x40045705
constant WDIOC_SETOPTIONS (line 2649) | WDIOC_SETOPTIONS = 0x40045704
constant WDIOC_SETPRETIMEOUT (line 2650) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2651) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2652) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2653) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2654) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2655) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2656) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2657) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2658) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2659) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2660) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2661) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2662) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2663) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2664) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2665) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2666) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2667) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2668) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2669) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2670) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2671) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2672) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2673) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2674) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2675) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2676) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2677) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2678) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2679) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2680) | WIN_READ = 0x20
constant WIN_READDMA (line 2681) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2682) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2683) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2684) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2685) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2686) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2687) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2688) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2689) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2690) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2691) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2692) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2693) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2694) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2695) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2696) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2697) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2698) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2699) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2700) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2701) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2702) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2703) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2704) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2705) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2706) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2707) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2708) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2709) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2710) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2711) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2712) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2713) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2714) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2715) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2716) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2717) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2718) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2719) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2720) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2721) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2722) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2723) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2724) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2725) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2726) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2727) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2728) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2729) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2730) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2731) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2732) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2733) | WNOHANG = 0x1
constant WNOTHREAD (line 2734) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2735) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2736) | WORDSIZE = 0x40
constant WSTOPPED (line 2737) | WSTOPPED = 0x2
constant WUNTRACED (line 2738) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2739) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2740) | XATTR_REPLACE = 0x2
constant XCASE (line 2741) | XCASE = 0x4
constant XDP_COPY (line 2742) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2743) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2744) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2745) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2746) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2747) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2748) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2749) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2750) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2751) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2752) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2753) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2754) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2755) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2756) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2757) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2758) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2759) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2760) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2761) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2762) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2763) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2764) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2765) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2766) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2767) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2768) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2769) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2774) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2775) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2776) | EADDRINUSE = syscall.Errno(0x7d)
constant EADDRNOTAVAIL (line 2777) | EADDRNOTAVAIL = syscall.Errno(0x7e)
constant EADV (line 2778) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2779) | EAFNOSUPPORT = syscall.Errno(0x7c)
constant EAGAIN (line 2780) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2781) | EALREADY = syscall.Errno(0x95)
constant EBADE (line 2782) | EBADE = syscall.Errno(0x32)
constant EBADF (line 2783) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2784) | EBADFD = syscall.Errno(0x51)
constant EBADMSG (line 2785) | EBADMSG = syscall.Errno(0x4d)
constant EBADR (line 2786) | EBADR = syscall.Errno(0x33)
constant EBADRQC (line 2787) | EBADRQC = syscall.Errno(0x36)
constant EBADSLT (line 2788) | EBADSLT = syscall.Errno(0x37)
constant EBFONT (line 2789) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2790) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2791) | ECANCELED = syscall.Errno(0x9e)
constant ECHILD (line 2792) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2793) | ECHRNG = syscall.Errno(0x25)
constant ECOMM (line 2794) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2795) | ECONNABORTED = syscall.Errno(0x82)
constant ECONNREFUSED (line 2796) | ECONNREFUSED = syscall.Errno(0x92)
constant ECONNRESET (line 2797) | ECONNRESET = syscall.Errno(0x83)
constant EDEADLK (line 2798) | EDEADLK = syscall.Errno(0x2d)
constant EDEADLOCK (line 2799) | EDEADLOCK = syscall.Errno(0x38)
constant EDESTADDRREQ (line 2800) | EDESTADDRREQ = syscall.Errno(0x60)
constant EDOM (line 2801) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2802) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2803) | EDQUOT = syscall.Errno(0x46d)
constant EEXIST (line 2804) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2805) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2806) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2807) | EHOSTDOWN = syscall.Errno(0x93)
constant EHOSTUNREACH (line 2808) | EHOSTUNREACH = syscall.Errno(0x94)
constant EHWPOISON (line 2809) | EHWPOISON = syscall.Errno(0xa8)
constant EIDRM (line 2810) | EIDRM = syscall.Errno(0x24)
constant EILSEQ (line 2811) | EILSEQ = syscall.Errno(0x58)
constant EINIT (line 2812) | EINIT = syscall.Errno(0x8d)
constant EINPROGRESS (line 2813) | EINPROGRESS = syscall.Errno(0x96)
constant EINTR (line 2814) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2815) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2816) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2817) | EISCONN = syscall.Errno(0x85)
constant EISDIR (line 2818) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2819) | EISNAM = syscall.Errno(0x8b)
constant EKEYEXPIRED (line 2820) | EKEYEXPIRED = syscall.Errno(0xa2)
constant EKEYREJECTED (line 2821) | EKEYREJECTED = syscall.Errno(0xa4)
constant EKEYREVOKED (line 2822) | EKEYREVOKED = syscall.Errno(0xa3)
constant EL2HLT (line 2823) | EL2HLT = syscall.Errno(0x2c)
constant EL2NSYNC (line 2824) | EL2NSYNC = syscall.Errno(0x26)
constant EL3HLT (line 2825) | EL3HLT = syscall.Errno(0x27)
constant EL3RST (line 2826) | EL3RST = syscall.Errno(0x28)
constant ELIBACC (line 2827) | ELIBACC = syscall.Errno(0x53)
constant ELIBBAD (line 2828) | ELIBBAD = syscall.Errno(0x54)
constant ELIBEXEC (line 2829) | ELIBEXEC = syscall.Errno(0x57)
constant ELIBMAX (line 2830) | ELIBMAX = syscall.Errno(0x56)
constant ELIBSCN (line 2831) | ELIBSCN = syscall.Errno(0x55)
constant ELNRNG (line 2832) | ELNRNG = syscall.Errno(0x29)
constant ELOOP (line 2833) | ELOOP = syscall.Errno(0x5a)
constant EMEDIUMTYPE (line 2834) | EMEDIUMTYPE = syscall.Errno(0xa0)
constant EMFILE (line 2835) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2836) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2837) | EMSGSIZE = syscall.Errno(0x61)
constant EMULTIHOP (line 2838) | EMULTIHOP = syscall.Errno(0x4a)
constant ENAMETOOLONG (line 2839) | ENAMETOOLONG = syscall.Errno(0x4e)
constant ENAVAIL (line 2840) | ENAVAIL = syscall.Errno(0x8a)
constant ENETDOWN (line 2841) | ENETDOWN = syscall.Errno(0x7f)
constant ENETRESET (line 2842) | ENETRESET = syscall.Errno(0x81)
constant ENETUNREACH (line 2843) | ENETUNREACH = syscall.Errno(0x80)
constant ENFILE (line 2844) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2845) | ENOANO = syscall.Errno(0x35)
constant ENOBUFS (line 2846) | ENOBUFS = syscall.Errno(0x84)
constant ENOCSI (line 2847) | ENOCSI = syscall.Errno(0x2b)
constant ENODATA (line 2848) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2849) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2850) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2851) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2852) | ENOKEY = syscall.Errno(0xa1)
constant ENOLCK (line 2853) | ENOLCK = syscall.Errno(0x2e)
constant ENOLINK (line 2854) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2855) | ENOMEDIUM = syscall.Errno(0x9f)
constant ENOMEM (line 2856) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2857) | ENOMSG = syscall.Errno(0x23)
constant ENONET (line 2858) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2859) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2860) | ENOPROTOOPT = syscall.Errno(0x63)
constant ENOSPC (line 2861) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2862) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2863) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2864) | ENOSYS = syscall.Errno(0x59)
constant ENOTBLK (line 2865) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2866) | ENOTCONN = syscall.Errno(0x86)
constant ENOTDIR (line 2867) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2868) | ENOTEMPTY = syscall.Errno(0x5d)
constant ENOTNAM (line 2869) | ENOTNAM = syscall.Errno(0x89)
constant ENOTRECOVERABLE (line 2870) | ENOTRECOVERABLE = syscall.Errno(0xa6)
constant ENOTSOCK (line 2871) | ENOTSOCK = syscall.Errno(0x5f)
constant ENOTSUP (line 2872) | ENOTSUP = syscall.Errno(0x7a)
constant ENOTTY (line 2873) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2874) | ENOTUNIQ = syscall.Errno(0x50)
constant ENXIO (line 2875) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2876) | EOPNOTSUPP = syscall.Errno(0x7a)
constant EOVERFLOW (line 2877) | EOVERFLOW = syscall.Errno(0x4f)
constant EOWNERDEAD (line 2878) | EOWNERDEAD = syscall.Errno(0xa5)
constant EPERM (line 2879) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2880) | EPFNOSUPPORT = syscall.Errno(0x7b)
constant EPIPE (line 2881) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2882) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2883) | EPROTONOSUPPORT = syscall.Errno(0x78)
constant EPROTOTYPE (line 2884) | EPROTOTYPE = syscall.Errno(0x62)
constant ERANGE (line 2885) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2886) | EREMCHG = syscall.Errno(0x52)
constant EREMDEV (line 2887) | EREMDEV = syscall.Errno(0x8e)
constant EREMOTE (line 2888) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2889) | EREMOTEIO = syscall.Errno(0x8c)
constant ERESTART (line 2890) | ERESTART = syscall.Errno(0x5b)
constant ERFKILL (line 2891) | ERFKILL = syscall.Errno(0xa7)
constant EROFS (line 2892) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2893) | ESHUTDOWN = syscall.Errno(0x8f)
constant ESOCKTNOSUPPORT (line 2894) | ESOCKTNOSUPPORT = syscall.Errno(0x79)
constant ESPIPE (line 2895) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2896) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2897) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2898) | ESTALE = syscall.Errno(0x97)
constant ESTRPIPE (line 2899) | ESTRPIPE = syscall.Errno(0x5c)
constant ETIME (line 2900) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2901) | ETIMEDOUT = syscall.Errno(0x91)
constant ETOOMANYREFS (line 2902) | ETOOMANYREFS = syscall.Errno(0x90)
constant ETXTBSY (line 2903) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2904) | EUCLEAN = syscall.Errno(0x87)
constant EUNATCH (line 2905) | EUNATCH = syscall.Errno(0x2a)
constant EUSERS (line 2906) | EUSERS = syscall.Errno(0x5e)
constant EWOULDBLOCK (line 2907) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2908) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2909) | EXFULL = syscall.Errno(0x34)
constant SIGABRT (line 2914) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2915) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2916) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 2917) | SIGCHLD = syscall.Signal(0x12)
constant SIGCLD (line 2918) | SIGCLD = syscall.Signal(0x12)
constant SIGCONT (line 2919) | SIGCONT = syscall.Signal(0x19)
constant SIGEMT (line 2920) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 2921) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2922) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2923) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2924) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2925) | SIGIO = syscall.Signal(0x16)
constant SIGIOT (line 2926) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2927) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2928) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2929) | SIGPOLL = syscall.Signal(0x16)
constant SIGPROF (line 2930) | SIGPROF = syscall.Signal(0x1d)
constant SIGPWR (line 2931) | SIGPWR = syscall.Signal(0x13)
constant SIGQUIT (line 2932) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2933) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 2934) | SIGSTOP = syscall.Signal(0x17)
constant SIGSYS (line 2935) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 2936) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2937) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2938) | SIGTSTP = syscall.Signal(0x18)
constant SIGTTIN (line 2939) | SIGTTIN = syscall.Signal(0x1a)
constant SIGTTOU (line 2940) | SIGTTOU = syscall.Signal(0x1b)
constant SIGURG (line 2941) | SIGURG = syscall.Signal(0x15)
constant SIGUSR1 (line 2942) | SIGUSR1 = syscall.Signal(0x10)
constant SIGUSR2 (line 2943) | SIGUSR2 = syscall.Signal(0x11)
constant SIGVTALRM (line 2944) | SIGVTALRM = syscall.Signal(0x1c)
constant SIGWINCH (line 2945) | SIGWINCH = syscall.Signal(0x14)
constant SIGXCPU (line 2946) | SIGXCPU = syscall.Signal(0x1e)
constant SIGXFSZ (line 2947) | SIGXFSZ = syscall.Signal(0x1f)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x40041270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x80041271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x20001261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x20001265
constant BLKFRASET (line 183) | BLKFRASET = 0x20001264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x20001260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x40041272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x2000127b
constant BLKRAGET (line 187) | BLKRAGET = 0x20001263
constant BLKRASET (line 188) | BLKRASET = 0x20001262
constant BLKROGET (line 189) | BLKROGET = 0x2000125e
constant BLKROSET (line 190) | BLKROSET = 0x2000125d
constant BLKRRPART (line 191) | BLKRRPART = 0x2000125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x20001267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x20001266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x20001268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x80
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x2000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0x21
constant F_GETLK64 (line 713) | F_GETLK64 = 0x21
constant F_GETOWN (line 714) | F_GETOWN = 0x17
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0x22
constant F_SETLK64 (line 737) | F_SETLK64 = 0x22
constant F_SETLKW (line 738) | F_SETLKW = 0x23
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0x23
constant F_SETOWN (line 740) | F_SETOWN = 0x18
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x400
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x2
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x100
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x80
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x200
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x1000
constant IXON (line 1070) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x800
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x800
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x2000
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x4000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x1000
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x80000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x8000
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x20000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x400
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x10000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 1218) | MAP_RENAME = 0x800
constant MAP_SHARED (line 1219) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1220) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1221) | MAP_STACK = 0x40000
constant MAP_TYPE (line 1222) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1223) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1224) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1225) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1226) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1227) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1228) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1229) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1230) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1231) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1232) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1233) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1234) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1235) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1236) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1237) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1238) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1239) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1240) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1241) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1242) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1243) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1244) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1245) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1246) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1247) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1248) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1249) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1250) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1251) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1252) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1253) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1254) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1255) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1256) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1257) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1258) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1259) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1260) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1261) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1262) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1263) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1264) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1265) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1266) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1267) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1268) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1269) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1270) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1271) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1272) | MSG_FIN = 0x200
constant MSG_MORE (line 1273) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1274) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1275) | MSG_OOB = 0x1
constant MSG_PEEK (line 1276) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1277) | MSG_PROXY = 0x10
constant MSG_RST (line 1278) | MSG_RST = 0x1000
constant MSG_SYN (line 1279) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1280) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1281) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1282) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1283) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1284) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1285) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1286) | MS_ASYNC = 0x1
constant MS_BIND (line 1287) | MS_BIND = 0x1000
constant MS_BORN (line 1288) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1289) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1290) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1291) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1292) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1293) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1294) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1295) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1296) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1297) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1298) | MS_NOATIME = 0x400
constant MS_NODEV (line 1299) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1300) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1301) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1302) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1303) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1304) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1305) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1306) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1307) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1308) | MS_RDONLY = 0x1
constant MS_REC (line 1309) | MS_REC = 0x4000
constant MS_RELATIME (line 1310) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1311) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1312) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1313) | MS_SHARED = 0x100000
constant MS_SILENT (line 1314) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1315) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1316) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1317) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1318) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1319) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1320) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1321) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1322) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1323) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1324) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1325) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1326) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1327) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1328) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1329) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1330) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1331) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1332) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1333) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1334) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1335) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1336) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1337) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1338) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1339) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1340) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1341) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1342) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1343) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1344) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1345) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1346) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1347) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1348) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1349) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1350) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1351) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1352) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1353) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1354) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1355) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1356) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1357) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1358) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1359) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1360) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1361) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1362) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1363) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1364) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1365) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1366) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1367) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1368) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1369) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1370) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1371) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1372) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1373) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1374) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1375) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1376) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1377) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1378) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1379) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1380) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1381) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1382) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1383) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1384) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1385) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1386) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1387) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1388) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1389) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1390) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1391) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1392) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1393) | NL0 = 0x0
constant NL1 (line 1394) | NL1 = 0x100
constant NLA_ALIGNTO (line 1395) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1396) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1397) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1398) | NLA_HDRLEN = 0x4
constant NLDLY (line 1399) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1400) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1401) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1402) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1403) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1404) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1405) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1406) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1407) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1408) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1409) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1410) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1411) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1412) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1413) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1414) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1415) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1416) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1417) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1418) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1419) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1420) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1421) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1422) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1423) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1424) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1425) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1426) | NS_GET_NSTYPE = 0x2000b703
constant NS_GET_OWNER_UID (line 1427) | NS_GET_OWNER_UID = 0x2000b704
constant NS_GET_PARENT (line 1428) | NS_GET_PARENT = 0x2000b702
constant NS_GET_USERNS (line 1429) | NS_GET_USERNS = 0x2000b701
constant OCFS2_SUPER_MAGIC (line 1430) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1431) | OCRNL = 0x8
constant OFDEL (line 1432) | OFDEL = 0x80
constant OFILL (line 1433) | OFILL = 0x40
constant OLCUC (line 1434) | OLCUC = 0x2
constant ONLCR (line 1435) | ONLCR = 0x4
constant ONLRET (line 1436) | ONLRET = 0x20
constant ONOCR (line 1437) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1438) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1439) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1440) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1441) | O_ACCMODE = 0x3
constant O_APPEND (line 1442) | O_APPEND = 0x8
constant O_ASYNC (line 1443) | O_ASYNC = 0x1000
constant O_CLOEXEC (line 1444) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1445) | O_CREAT = 0x100
constant O_DIRECT (line 1446) | O_DIRECT = 0x8000
constant O_DIRECTORY (line 1447) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1448) | O_DSYNC = 0x10
constant O_EXCL (line 1449) | O_EXCL = 0x400
constant O_FSYNC (line 1450) | O_FSYNC = 0x4010
constant O_LARGEFILE (line 1451) | O_LARGEFILE = 0x2000
constant O_NDELAY (line 1452) | O_NDELAY = 0x80
constant O_NOATIME (line 1453) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1454) | O_NOCTTY = 0x800
constant O_NOFOLLOW (line 1455) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1456) | O_NONBLOCK = 0x80
constant O_PATH (line 1457) | O_PATH = 0x200000
constant O_RDONLY (line 1458) | O_RDONLY = 0x0
constant O_RDWR (line 1459) | O_RDWR = 0x2
constant O_RSYNC (line 1460) | O_RSYNC = 0x4010
constant O_SYNC (line 1461) | O_SYNC = 0x4010
constant O_TMPFILE (line 1462) | O_TMPFILE = 0x410000
constant O_TRUNC (line 1463) | O_TRUNC = 0x200
constant O_WRONLY (line 1464) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1465) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1466) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1467) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1468) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1469) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1470) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1471) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1472) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1473) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1474) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1475) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1476) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1477) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1478) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1479) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1480) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1481) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1482) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1483) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1484) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1485) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1486) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1487) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1488) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1489) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1490) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1491) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1492) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1493) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1494) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1495) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1496) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1497) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1498) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1499) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1500) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1501) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1502) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1503) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1504) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1505) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1506) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1507) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1508) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1509) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1510) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1511) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1512) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1513) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1514) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1515) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1516) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1517) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1518) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1519) | PARITY_NONE = 0x1
constant PARMRK (line 1520) | PARMRK = 0x8
constant PARODD (line 1521) | PARODD = 0x200
constant PENDIN (line 1522) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1523) | PERF_EVENT_IOC_DISABLE = 0x20002401
constant PERF_EVENT_IOC_ENABLE (line 1524) | PERF_EVENT_IOC_ENABLE = 0x20002400
constant PERF_EVENT_IOC_ID (line 1525) | PERF_EVENT_IOC_ID = 0x40042407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1526) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8004240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1527) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409
constant PERF_EVENT_IOC_PERIOD (line 1528) | PERF_EVENT_IOC_PERIOD = 0x80082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1529) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a
constant PERF_EVENT_IOC_REFRESH (line 1530) | PERF_EVENT_IOC_REFRESH = 0x20002402
constant PERF_EVENT_IOC_RESET (line 1531) | PERF_EVENT_IOC_RESET = 0x20002403
constant PERF_EVENT_IOC_SET_BPF (line 1532) | PERF_EVENT_IOC_SET_BPF = 0x80042408
constant PERF_EVENT_IOC_SET_FILTER (line 1533) | PERF_EVENT_IOC_SET_FILTER = 0x80042406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1534) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405
constant PIPEFS_MAGIC (line 1535) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1536) | PPPIOCATTACH = 0x8004743d
constant PPPIOCATTCHAN (line 1537) | PPPIOCATTCHAN = 0x80047438
constant PPPIOCCONNECT (line 1538) | PPPIOCCONNECT = 0x8004743a
constant PPPIOCDETACH (line 1539) | PPPIOCDETACH = 0x8004743c
constant PPPIOCDISCONN (line 1540) | PPPIOCDISCONN = 0x20007439
constant PPPIOCGASYNCMAP (line 1541) | PPPIOCGASYNCMAP = 0x40047458
constant PPPIOCGCHAN (line 1542) | PPPIOCGCHAN = 0x40047437
constant PPPIOCGDEBUG (line 1543) | PPPIOCGDEBUG = 0x40047441
constant PPPIOCGFLAGS (line 1544) | PPPIOCGFLAGS = 0x4004745a
constant PPPIOCGIDLE (line 1545) | PPPIOCGIDLE = 0x4008743f
constant PPPIOCGL2TPSTATS (line 1546) | PPPIOCGL2TPSTATS = 0x40487436
constant PPPIOCGMRU (line 1547) | PPPIOCGMRU = 0x40047453
constant PPPIOCGNPMODE (line 1548) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1549) | PPPIOCGRASYNCMAP = 0x40047455
constant PPPIOCGUNIT (line 1550) | PPPIOCGUNIT = 0x40047456
constant PPPIOCGXASYNCMAP (line 1551) | PPPIOCGXASYNCMAP = 0x40207450
constant PPPIOCNEWUNIT (line 1552) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1553) | PPPIOCSACTIVE = 0x80087446
constant PPPIOCSASYNCMAP (line 1554) | PPPIOCSASYNCMAP = 0x80047457
constant PPPIOCSCOMPRESS (line 1555) | PPPIOCSCOMPRESS = 0x800c744d
constant PPPIOCSDEBUG (line 1556) | PPPIOCSDEBUG = 0x80047440
constant PPPIOCSFLAGS (line 1557) | PPPIOCSFLAGS = 0x80047459
constant PPPIOCSMAXCID (line 1558) | PPPIOCSMAXCID = 0x80047451
constant PPPIOCSMRRU (line 1559) | PPPIOCSMRRU = 0x8004743b
constant PPPIOCSMRU (line 1560) | PPPIOCSMRU = 0x80047452
constant PPPIOCSNPMODE (line 1561) | PPPIOCSNPMODE = 0x8008744b
constant PPPIOCSPASS (line 1562) | PPPIOCSPASS = 0x80087447
constant PPPIOCSRASYNCMAP (line 1563) | PPPIOCSRASYNCMAP = 0x80047454
constant PPPIOCSXASYNCMAP (line 1564) | PPPIOCSXASYNCMAP = 0x8020744f
constant PPPIOCXFERUNIT (line 1565) | PPPIOCXFERUNIT = 0x2000744e
constant PRIO_PGRP (line 1566) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1567) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1568) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1569) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1570) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1571) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1572) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1573) | PROT_NONE = 0x0
constant PROT_READ (line 1574) | PROT_READ = 0x1
constant PROT_WRITE (line 1575) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1576) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1577) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1578) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1579) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1580) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1581) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1582) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1583) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1584) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1585) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1586) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1587) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1588) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1589) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1590) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1591) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1592) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1593) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1594) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1595) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1596) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1597) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1598) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1599) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1600) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1601) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1602) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1603) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1604) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1605) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1606) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1607) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1608) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1609) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1610) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1611) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1612) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1613) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1614) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1615) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1616) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1617) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1618) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1619) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1620) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1621) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1622) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1623) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1624) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1625) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1626) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1627) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1628) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1629) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1630) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1631) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1632) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1633) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1634) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1635) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1636) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1637) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1638) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1639) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1640) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1641) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1642) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1643) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1644) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1645) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1646) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1647) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1648) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1649) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1650) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1651) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1652) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1653) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1654) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1655) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1656) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1657) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1658) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1659) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1660) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1661) | PR_SET_PTRACER_ANY = 0xffffffff
constant PR_SET_SECCOMP (line 1662) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1663) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1664) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1665) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1666) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1667) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1668) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1669) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1670) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1671) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1672) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1673) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1674) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1675) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1676) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1677) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1678) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1679) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1680) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1681) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1682) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1683) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1684) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1685) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1686) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1687) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1688) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1689) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1690) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1691) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1692) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1693) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1694) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1695) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1696) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1697) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1698) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1699) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1700) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1701) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1702) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1703) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1704) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1705) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETFPREGS (line 1706) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETREGS (line 1707) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1708) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1709) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1710) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1711) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_GET_THREAD_AREA (line 1712) | PTRACE_GET_THREAD_AREA = 0x19
constant PTRACE_GET_THREAD_AREA_3264 (line 1713) | PTRACE_GET_THREAD_AREA_3264 = 0xc4
constant PTRACE_GET_WATCH_REGS (line 1714) | PTRACE_GET_WATCH_REGS = 0xd0
constant PTRACE_INTERRUPT (line 1715) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1716) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1717) | PTRACE_LISTEN = 0x4208
constant PTRACE_OLDSETOPTIONS (line 1718) | PTRACE_OLDSETOPTIONS = 0x15
constant PTRACE_O_EXITKILL (line 1719) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1720) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1721) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1722) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1723) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1724) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1725) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1726) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1727) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1728) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1729) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1730) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKDATA_3264 (line 1731) | PTRACE_PEEKDATA_3264 = 0xc1
constant PTRACE_PEEKSIGINFO (line 1732) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1733) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1734) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKTEXT_3264 (line 1735) | PTRACE_PEEKTEXT_3264 = 0xc0
constant PTRACE_PEEKUSR (line 1736) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1737) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKEDATA_3264 (line 1738) | PTRACE_POKEDATA_3264 = 0xc3
constant PTRACE_POKETEXT (line 1739) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKETEXT_3264 (line 1740) | PTRACE_POKETEXT_3264 = 0xc2
constant PTRACE_POKEUSR (line 1741) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1742) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1743) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1744) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETFPREGS (line 1745) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETOPTIONS (line 1746) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1747) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1748) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1749) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1750) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SET_THREAD_AREA (line 1751) | PTRACE_SET_THREAD_AREA = 0x1a
constant PTRACE_SET_WATCH_REGS (line 1752) | PTRACE_SET_WATCH_REGS = 0xd1
constant PTRACE_SINGLESTEP (line 1753) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1754) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1755) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1756) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1757) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1758) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_TRACEME (line 1759) | PTRACE_TRACEME = 0x0
constant QNX4_SUPER_MAGIC (line 1760) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1761) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1762) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1763) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1764) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1765) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1766) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1767) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1768) | RLIMIT_AS = 0x6
constant RLIMIT_CORE (line 1769) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1770) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1771) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1772) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1773) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1774) | RLIMIT_MEMLOCK = 0x9
constant RLIMIT_MSGQUEUE (line 1775) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1776) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1777) | RLIMIT_NOFILE = 0x5
constant RLIMIT_NPROC (line 1778) | RLIMIT_NPROC = 0x8
constant RLIMIT_RSS (line 1779) | RLIMIT_RSS = 0x7
constant RLIMIT_RTPRIO (line 1780) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1781) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1782) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1783) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1784) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1785) | RNDADDENTROPY = 0x80085203
constant RNDADDTOENTCNT (line 1786) | RNDADDTOENTCNT = 0x80045201
constant RNDCLEARPOOL (line 1787) | RNDCLEARPOOL = 0x20005206
constant RNDGETENTCNT (line 1788) | RNDGETENTCNT = 0x40045200
constant RNDGETPOOL (line 1789) | RNDGETPOOL = 0x40085202
constant RNDRESEEDCRNG (line 1790) | RNDRESEEDCRNG = 0x20005207
constant RNDZAPENTCNT (line 1791) | RNDZAPENTCNT = 0x20005204
constant RTAX_ADVMSS (line 1792) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1793) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1794) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1795) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1796) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1797) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1798) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1799) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1800) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1801) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1802) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1803) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1804) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1805) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1806) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1807) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1808) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1809) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1810) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1811) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1812) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1813) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1814) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1815) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1816) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1817) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1818) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1819) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1820) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1821) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1822) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1823) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1824) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1825) | RTC_AIE_OFF = 0x20007002
constant RTC_AIE_ON (line 1826) | RTC_AIE_ON = 0x20007001
constant RTC_ALM_READ (line 1827) | RTC_ALM_READ = 0x40247008
constant RTC_ALM_SET (line 1828) | RTC_ALM_SET = 0x80247007
constant RTC_EPOCH_READ (line 1829) | RTC_EPOCH_READ = 0x4004700d
constant RTC_EPOCH_SET (line 1830) | RTC_EPOCH_SET = 0x8004700e
constant RTC_IRQF (line 1831) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1832) | RTC_IRQP_READ = 0x4004700b
constant RTC_IRQP_SET (line 1833) | RTC_IRQP_SET = 0x8004700c
constant RTC_MAX_FREQ (line 1834) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1835) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1836) | RTC_PIE_OFF = 0x20007006
constant RTC_PIE_ON (line 1837) | RTC_PIE_ON = 0x20007005
constant RTC_PLL_GET (line 1838) | RTC_PLL_GET = 0x401c7011
constant RTC_PLL_SET (line 1839) | RTC_PLL_SET = 0x801c7012
constant RTC_RD_TIME (line 1840) | RTC_RD_TIME = 0x40247009
constant RTC_SET_TIME (line 1841) | RTC_SET_TIME = 0x8024700a
constant RTC_UF (line 1842) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1843) | RTC_UIE_OFF = 0x20007004
constant RTC_UIE_ON (line 1844) | RTC_UIE_ON = 0x20007003
constant RTC_VL_CLR (line 1845) | RTC_VL_CLR = 0x20007014
constant RTC_VL_READ (line 1846) | RTC_VL_READ = 0x40047013
constant RTC_WIE_OFF (line 1847) | RTC_WIE_OFF = 0x20007010
constant RTC_WIE_ON (line 1848) | RTC_WIE_ON = 0x2000700f
constant RTC_WKALM_RD (line 1849) | RTC_WKALM_RD = 0x40287010
constant RTC_WKALM_SET (line 1850) | RTC_WKALM_SET = 0x8028700f
constant RTF_ADDRCLASSMASK (line 1851) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1852) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1853) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1854) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1855) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1856) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1857) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1858) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1859) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1860) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1861) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1862) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1863) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1864) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1865) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1866) | RTF_MSS = 0x40
constant RTF_MTU (line 1867) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1868) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1869) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1870) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1871) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1872) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1873) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1874) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1875) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1876) | RTF_STATIC = 0x400
constant RTF_THROW (line 1877) | RTF_THROW = 0x2000
constant RTF_UP (line 1878) | RTF_UP = 0x1
constant RTF_WINDOW (line 1879) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1880) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1881) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1882) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1883) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1884) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1885) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1886) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1887) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1888) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1889) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1890) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1891) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1892) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1893) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1894) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1895) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1896) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1897) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1898) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1899) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1900) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1901) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1902) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1903) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1904) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1905) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1906) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1907) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1908) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1909) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1910) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1911) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1912) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1913) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1914) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1915) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1916) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1917) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1918) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1919) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1920) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1921) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1922) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1923) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1924) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1925) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1926) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1927) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1928) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1929) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1930) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1931) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1932) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1933) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1934) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1935) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1936) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1937) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1938) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1939) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1940) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1941) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1942) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1943) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1944) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1945) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1946) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1947) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1948) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1949) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1950) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1951) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1952) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1953) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1954) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1955) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1956) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1957) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1958) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1959) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1960) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1961) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1962) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1963) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1964) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1965) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1966) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1967) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1968) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1969) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1970) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1971) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1972) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1973) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1974) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1975) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1976) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1977) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1978) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1979) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1980) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1981) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1982) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1983) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1984) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1985) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1986) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1987) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1988) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1989) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1990) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1991) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1992) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 1993) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 1994) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 1995) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 1996) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 1997) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 1998) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 1999) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2000) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2001) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2002) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2003) | SFD_NONBLOCK = 0x80
constant SHUT_RD (line 2004) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2005) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2006) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2007) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2008) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2009) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2010) | SIOCATMARK = 0x40047307
constant SIOCBONDCHANGEACTIVE (line 2011) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2012) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2013) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2014) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2015) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2016) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2017) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2018) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2019) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2020) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2021) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2022) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2023) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2024) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2025) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2026) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2027) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2028) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2029) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2030) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2031) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2032) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2033) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2034) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2035) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2036) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2037) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2038) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2039) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2040) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2041) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2042) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2043) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2044) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2045) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2046) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2047) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2048) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2049) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2050) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2051) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2052) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2053) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2054) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2055) | SIOCGPGRP = 0x40047309
constant SIOCGPPPCSTATS (line 2056) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2057) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2058) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2059) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2060) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2061) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2062) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2063) | SIOCGSTAMPNS_NEW = 0x40108907
constant SIOCGSTAMPNS_OLD (line 2064) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2065) | SIOCGSTAMP_NEW = 0x40108906
constant SIOCGSTAMP_OLD (line 2066) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2067) | SIOCINQ = 0x467f
constant SIOCOUTQ (line 2068) | SIOCOUTQ = 0x7472
constant SIOCOUTQNSD (line 2069) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2070) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2071) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2072) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2073) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2074) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2075) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2076) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2077) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2078) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2079) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2080) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2081) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2082) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2083) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2084) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2085) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2086) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2087) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2088) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2089) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2090) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2091) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2092) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2093) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2094) | SIOCSPGRP = 0x80047308
constant SIOCSRARP (line 2095) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2096) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2097) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2098) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2099) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2100) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2101) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2102) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2103) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2104) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2105) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2106) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2107) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2108) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2109) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2110) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2111) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2112) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2113) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2114) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2115) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2116) | SOCK_DGRAM = 0x1
constant SOCK_IOC_TYPE (line 2117) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2118) | SOCK_NONBLOCK = 0x80
constant SOCK_PACKET (line 2119) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2120) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2121) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2122) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2123) | SOCK_STREAM = 0x2
constant SOL_AAL (line 2124) | SOL_AAL = 0x109
constant SOL_ALG (line 2125) | SOL_ALG = 0x117
constant SOL_ATM (line 2126) | SOL_ATM = 0x108
constant SOL_CAIF (line 2127) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2128) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2129) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2130) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2131) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2132) | SOL_IP = 0x0
constant SOL_IPV6 (line 2133) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2134) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2135) | SOL_IUCV = 0x115
constant SOL_KCM (line 2136) | SOL_KCM = 0x119
constant SOL_LLC (line 2137) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2138) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2139) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2140) | SOL_NFC = 0x118
constant SOL_PACKET (line 2141) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2142) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2143) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2144) | SOL_RAW = 0xff
constant SOL_RDS (line 2145) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2146) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2147) | SOL_SOCKET = 0xffff
constant SOL_TCP (line 2148) | SOL_TCP = 0x6
constant SOL_TIPC (line 2149) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2150) | SOL_TLS = 0x11a
constant SOL_X25 (line 2151) | SOL_X25 = 0x106
constant SOL_XDP (line 2152) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2153) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2154) | SO_ACCEPTCONN = 0x1009
constant SO_ATTACH_BPF (line 2155) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2156) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2157) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2158) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2159) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2160) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2161) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2162) | SO_BROADCAST = 0x20
constant SO_BSDCOMPAT (line 2163) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2164) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2165) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2166) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2167) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2168) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2169) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2170) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2171) | SO_DOMAIN = 0x1029
constant SO_DONTROUTE (line 2172) | SO_DONTROUTE = 0x10
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2173) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2174) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2175) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2176) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2177) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2178) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2179) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2180) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2181) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2182) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2183) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2184) | SO_ERROR = 0x1007
constant SO_GET_FILTER (line 2185) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2186) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2187) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2188) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 2189) | SO_LINGER = 0x80
constant SO_LOCK_FILTER (line 2190) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2191) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2192) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2193) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2194) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2195) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2196) | SO_OOBINLINE = 0x100
constant SO_PASSCRED (line 2197) | SO_PASSCRED = 0x11
constant SO_PASSSEC (line 2198) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2199) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2200) | SO_PEERCRED = 0x12
constant SO_PEERGROUPS (line 2201) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2202) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2203) | SO_PEERSEC = 0x1e
constant SO_PRIORITY (line 2204) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2205) | SO_PROTOCOL = 0x1028
constant SO_RCVBUF (line 2206) | SO_RCVBUF = 0x1002
constant SO_RCVBUFFORCE (line 2207) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2208) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 2209) | SO_RCVTIMEO = 0x1006
constant SO_RCVTIMEO_NEW (line 2210) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2211) | SO_RCVTIMEO_OLD = 0x1006
constant SO_REUSEADDR (line 2212) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 2213) | SO_REUSEPORT = 0x200
constant SO_RXQ_OVFL (line 2214) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2215) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2216) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2217) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2218) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2219) | SO_SNDBUF = 0x1001
constant SO_SNDBUFFORCE (line 2220) | SO_SNDBUFFORCE = 0x1f
constant SO_SNDLOWAT (line 2221) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 2222) | SO_SNDTIMEO = 0x1005
constant SO_SNDTIMEO_NEW (line 2223) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2224) | SO_SNDTIMEO_OLD = 0x1005
constant SO_STYLE (line 2225) | SO_STYLE = 0x1008
constant SO_TIMESTAMP (line 2226) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2227) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2228) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2229) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2230) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2231) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2232) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2233) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2234) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2235) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2236) | SO_TYPE = 0x1008
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2237) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2238) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2239) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2240) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2241) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2242) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2243) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2244) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2245) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2246) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2247) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2248) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2249) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2250) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2251) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2252) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2253) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2254) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2255) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2256) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2257) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2258) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2259) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2260) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2261) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2262) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2263) | STATX_CTIME = 0x80
constant STATX_GID (line 2264) | STATX_GID = 0x10
constant STATX_INO (line 2265) | STATX_INO = 0x100
constant STATX_MODE (line 2266) | STATX_MODE = 0x2
constant STATX_MTIME (line 2267) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2268) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2269) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2270) | STATX_TYPE = 0x1
constant STATX_UID (line 2271) | STATX_UID = 0x8
constant STATX__RESERVED (line 2272) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2273) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2274) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2275) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2276) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2277) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2278) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2279) | S_IEXEC = 0x40
constant S_IFBLK (line 2280) | S_IFBLK = 0x6000
constant S_IFCHR (line 2281) | S_IFCHR = 0x2000
constant S_IFDIR (line 2282) | S_IFDIR = 0x4000
constant S_IFIFO (line 2283) | S_IFIFO = 0x1000
constant S_IFLNK (line 2284) | S_IFLNK = 0xa000
constant S_IFMT (line 2285) | S_IFMT = 0xf000
constant S_IFREG (line 2286) | S_IFREG = 0x8000
constant S_IFSOCK (line 2287) | S_IFSOCK = 0xc000
constant S_IREAD (line 2288) | S_IREAD = 0x100
constant S_IRGRP (line 2289) | S_IRGRP = 0x20
constant S_IROTH (line 2290) | S_IROTH = 0x4
constant S_IRUSR (line 2291) | S_IRUSR = 0x100
constant S_IRWXG (line 2292) | S_IRWXG = 0x38
constant S_IRWXO (line 2293) | S_IRWXO = 0x7
constant S_IRWXU (line 2294) | S_IRWXU = 0x1c0
constant S_ISGID (line 2295) | S_ISGID = 0x400
constant S_ISUID (line 2296) | S_ISUID = 0x800
constant S_ISVTX (line 2297) | S_ISVTX = 0x200
constant S_IWGRP (line 2298) | S_IWGRP = 0x10
constant S_IWOTH (line 2299) | S_IWOTH = 0x2
constant S_IWRITE (line 2300) | S_IWRITE = 0x80
constant S_IWUSR (line 2301) | S_IWUSR = 0x80
constant S_IXGRP (line 2302) | S_IXGRP = 0x8
constant S_IXOTH (line 2303) | S_IXOTH = 0x1
constant S_IXUSR (line 2304) | S_IXUSR = 0x40
constant TAB0 (line 2305) | TAB0 = 0x0
constant TAB1 (line 2306) | TAB1 = 0x800
constant TAB2 (line 2307) | TAB2 = 0x1000
constant TAB3 (line 2308) | TAB3 = 0x1800
constant TABDLY (line 2309) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2310) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2311) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2312) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2313) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2314) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2315) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2316) | TCFLSH = 0x5407
constant TCGETA (line 2317) | TCGETA = 0x5401
constant TCGETS (line 2318) | TCGETS = 0x540d
constant TCGETS2 (line 2319) | TCGETS2 = 0x4030542a
constant TCIFLUSH (line 2320) | TCIFLUSH = 0x0
constant TCIOFF (line 2321) | TCIOFF = 0x2
constant TCIOFLUSH (line 2322) | TCIOFLUSH = 0x2
constant TCION (line 2323) | TCION = 0x3
constant TCOFLUSH (line 2324) | TCOFLUSH = 0x1
constant TCOOFF (line 2325) | TCOOFF = 0x0
constant TCOON (line 2326) | TCOON = 0x1
constant TCP_BPF_IW (line 2327) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2328) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2329) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2330) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2331) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2332) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2333) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2334) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2335) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2336) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2337) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2338) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2339) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2340) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2341) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2342) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2343) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2344) | TCP_INFO = 0xb
constant TCP_INQ (line 2345) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2346) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2347) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2348) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2349) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2350) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2351) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2352) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2353) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2354) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2355) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2356) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2357) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2358) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2359) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2360) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2361) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2362) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2363) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2364) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2365) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2366) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2367) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2368) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2369) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2370) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2371) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2372) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2373) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2374) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2375) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2376) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2377) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2378) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2379) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2380) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2381) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2382) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2383) | TCSAFLUSH = 0x5410
constant TCSBRK (line 2384) | TCSBRK = 0x5405
constant TCSBRKP (line 2385) | TCSBRKP = 0x5486
constant TCSETA (line 2386) | TCSETA = 0x5402
constant TCSETAF (line 2387) | TCSETAF = 0x5404
constant TCSETAW (line 2388) | TCSETAW = 0x5403
constant TCSETS (line 2389) | TCSETS = 0x540e
constant TCSETS2 (line 2390) | TCSETS2 = 0x8030542b
constant TCSETSF (line 2391) | TCSETSF = 0x5410
constant TCSETSF2 (line 2392) | TCSETSF2 = 0x8030542d
constant TCSETSW (line 2393) | TCSETSW = 0x540f
constant TCSETSW2 (line 2394) | TCSETSW2 = 0x8030542c
constant TCXONC (line 2395) | TCXONC = 0x5406
constant TIMER_ABSTIME (line 2396) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2397) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2398) | TIOCCONS = 0x80047478
constant TIOCEXCL (line 2399) | TIOCEXCL = 0x740d
constant TIOCGDEV (line 2400) | TIOCGDEV = 0x40045432
constant TIOCGETD (line 2401) | TIOCGETD = 0x7400
constant TIOCGETP (line 2402) | TIOCGETP = 0x7408
constant TIOCGEXCL (line 2403) | TIOCGEXCL = 0x40045440
constant TIOCGICOUNT (line 2404) | TIOCGICOUNT = 0x5492
constant TIOCGISO7816 (line 2405) | TIOCGISO7816 = 0x40285442
constant TIOCGLCKTRMIOS (line 2406) | TIOCGLCKTRMIOS = 0x548b
constant TIOCGLTC (line 2407) | TIOCGLTC = 0x7474
constant TIOCGPGRP (line 2408) | TIOCGPGRP = 0x40047477
constant TIOCGPKT (line 2409) | TIOCGPKT = 0x40045438
constant TIOCGPTLCK (line 2410) | TIOCGPTLCK = 0x40045439
constant TIOCGPTN (line 2411) | TIOCGPTN = 0x40045430
constant TIOCGPTPEER (line 2412) | TIOCGPTPEER = 0x20005441
constant TIOCGRS485 (line 2413) | TIOCGRS485 = 0x4020542e
constant TIOCGSERIAL (line 2414) | TIOCGSERIAL = 0x5484
constant TIOCGSID (line 2415) | TIOCGSID = 0x7416
constant TIOCGSOFTCAR (line 2416) | TIOCGSOFTCAR = 0x5481
constant TIOCGWINSZ (line 2417) | TIOCGWINSZ = 0x40087468
constant TIOCINQ (line 2418) | TIOCINQ = 0x467f
constant TIOCLINUX (line 2419) | TIOCLINUX = 0x5483
constant TIOCMBIC (line 2420) | TIOCMBIC = 0x741c
constant TIOCMBIS (line 2421) | TIOCMBIS = 0x741b
constant TIOCMGET (line 2422) | TIOCMGET = 0x741d
constant TIOCMIWAIT (line 2423) | TIOCMIWAIT = 0x5491
constant TIOCMSET (line 2424) | TIOCMSET = 0x741a
constant TIOCM_CAR (line 2425) | TIOCM_CAR = 0x100
constant TIOCM_CD (line 2426) | TIOCM_CD = 0x100
constant TIOCM_CTS (line 2427) | TIOCM_CTS = 0x40
constant TIOCM_DSR (line 2428) | TIOCM_DSR = 0x400
constant TIOCM_DTR (line 2429) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2430) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2431) | TIOCM_RI = 0x200
constant TIOCM_RNG (line 2432) | TIOCM_RNG = 0x200
constant TIOCM_RTS (line 2433) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2434) | TIOCM_SR = 0x20
constant TIOCM_ST (line 2435) | TIOCM_ST = 0x10
constant TIOCNOTTY (line 2436) | TIOCNOTTY = 0x5471
constant TIOCNXCL (line 2437) | TIOCNXCL = 0x740e
constant TIOCOUTQ (line 2438) | TIOCOUTQ = 0x7472
constant TIOCPKT (line 2439) | TIOCPKT = 0x5470
constant TIOCPKT_DATA (line 2440) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2441) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2442) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2443) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2444) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2445) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2446) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2447) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2448) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2449) | TIOCSCTTY = 0x5480
constant TIOCSERCONFIG (line 2450) | TIOCSERCONFIG = 0x5488
constant TIOCSERGETLSR (line 2451) | TIOCSERGETLSR = 0x548e
constant TIOCSERGETMULTI (line 2452) | TIOCSERGETMULTI = 0x548f
constant TIOCSERGSTRUCT (line 2453) | TIOCSERGSTRUCT = 0x548d
constant TIOCSERGWILD (line 2454) | TIOCSERGWILD = 0x5489
constant TIOCSERSETMULTI (line 2455) | TIOCSERSETMULTI = 0x5490
constant TIOCSERSWILD (line 2456) | TIOCSERSWILD = 0x548a
constant TIOCSER_TEMT (line 2457) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2458) | TIOCSETD = 0x7401
constant TIOCSETN (line 2459) | TIOCSETN = 0x740a
constant TIOCSETP (line 2460) | TIOCSETP = 0x7409
constant TIOCSIG (line 2461) | TIOCSIG = 0x80045436
constant TIOCSISO7816 (line 2462) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2463) | TIOCSLCKTRMIOS = 0x548c
constant TIOCSLTC (line 2464) | TIOCSLTC = 0x7475
constant TIOCSPGRP (line 2465) | TIOCSPGRP = 0x80047476
constant TIOCSPTLCK (line 2466) | TIOCSPTLCK = 0x80045431
constant TIOCSRS485 (line 2467) | TIOCSRS485 = 0xc020542f
constant TIOCSSERIAL (line 2468) | TIOCSSERIAL = 0x5485
constant TIOCSSOFTCAR (line 2469) | TIOCSSOFTCAR = 0x5482
constant TIOCSTI (line 2470) | TIOCSTI = 0x5472
constant TIOCSWINSZ (line 2471) | TIOCSWINSZ = 0x80087467
constant TIOCVHANGUP (line 2472) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2473) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2474) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2475) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2476) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2477) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2478) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2479) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2480) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2481) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2482) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2483) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2484) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2485) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2486) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2487) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2488) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2489) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2490) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2491) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2492) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2493) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2494) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2495) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2496) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2497) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2498) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2499) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2500) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2501) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2502) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2503) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2504) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2505) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2506) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2507) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2508) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2509) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2510) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2511) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2512) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2513) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2514) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2515) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2516) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2517) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2518) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2519) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2520) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2521) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2522) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2523) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2524) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2525) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2526) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2527) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2528) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2529) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2530) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2531) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2532) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2533) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2534) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2535) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2536) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2537) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2538) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2539) | TOSTOP = 0x8000
constant TPACKET_ALIGNMENT (line 2540) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2541) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2542) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2543) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2544) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2545) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2546) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2547) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2548) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2549) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2550) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2551) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2552) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2553) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2554) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2555) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2556) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2557) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2558) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2559) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2560) | TUNATTACHFILTER = 0x800854d5
constant TUNDETACHFILTER (line 2561) | TUNDETACHFILTER = 0x800854d6
constant TUNGETDEVNETNS (line 2562) | TUNGETDEVNETNS = 0x200054e3
constant TUNGETFEATURES (line 2563) | TUNGETFEATURES = 0x400454cf
constant TUNGETFILTER (line 2564) | TUNGETFILTER = 0x400854db
constant TUNGETIFF (line 2565) | TUNGETIFF = 0x400454d2
constant TUNGETSNDBUF (line 2566) | TUNGETSNDBUF = 0x400454d3
constant TUNGETVNETBE (line 2567) | TUNGETVNETBE = 0x400454df
constant TUNGETVNETHDRSZ (line 2568) | TUNGETVNETHDRSZ = 0x400454d7
constant TUNGETVNETLE (line 2569) | TUNGETVNETLE = 0x400454dd
constant TUNSETCARRIER (line 2570) | TUNSETCARRIER = 0x800454e2
constant TUNSETDEBUG (line 2571) | TUNSETDEBUG = 0x800454c9
constant TUNSETFILTEREBPF (line 2572) | TUNSETFILTEREBPF = 0x400454e1
constant TUNSETGROUP (line 2573) | TUNSETGROUP = 0x800454ce
constant TUNSETIFF (line 2574) | TUNSETIFF = 0x800454ca
constant TUNSETIFINDEX (line 2575) | TUNSETIFINDEX = 0x800454da
constant TUNSETLINK (line 2576) | TUNSETLINK = 0x800454cd
constant TUNSETNOCSUM (line 2577) | TUNSETNOCSUM = 0x800454c8
constant TUNSETOFFLOAD (line 2578) | TUNSETOFFLOAD = 0x800454d0
constant TUNSETOWNER (line 2579) | TUNSETOWNER = 0x800454cc
constant TUNSETPERSIST (line 2580) | TUNSETPERSIST = 0x800454cb
constant TUNSETQUEUE (line 2581) | TUNSETQUEUE = 0x800454d9
constant TUNSETSNDBUF (line 2582) | TUNSETSNDBUF = 0x800454d4
constant TUNSETSTEERINGEBPF (line 2583) | TUNSETSTEERINGEBPF = 0x400454e0
constant TUNSETTXFILTER (line 2584) | TUNSETTXFILTER = 0x800454d1
constant TUNSETVNETBE (line 2585) | TUNSETVNETBE = 0x800454de
constant TUNSETVNETHDRSZ (line 2586) | TUNSETVNETHDRSZ = 0x800454d8
constant TUNSETVNETLE (line 2587) | TUNSETVNETLE = 0x800454dc
constant UBI_IOCATT (line 2588) | UBI_IOCATT = 0x80186f40
constant UBI_IOCDET (line 2589) | UBI_IOCDET = 0x80046f41
constant UBI_IOCEBCH (line 2590) | UBI_IOCEBCH = 0x80044f02
constant UBI_IOCEBER (line 2591) | UBI_IOCEBER = 0x80044f01
constant UBI_IOCEBISMAP (line 2592) | UBI_IOCEBISMAP = 0x40044f05
constant UBI_IOCEBMAP (line 2593) | UBI_IOCEBMAP = 0x80084f03
constant UBI_IOCEBUNMAP (line 2594) | UBI_IOCEBUNMAP = 0x80044f04
constant UBI_IOCMKVOL (line 2595) | UBI_IOCMKVOL = 0x80986f00
constant UBI_IOCRMVOL (line 2596) | UBI_IOCRMVOL = 0x80046f01
constant UBI_IOCRNVOL (line 2597) | UBI_IOCRNVOL = 0x91106f03
constant UBI_IOCRPEB (line 2598) | UBI_IOCRPEB = 0x80046f04
constant UBI_IOCRSVOL (line 2599) | UBI_IOCRSVOL = 0x800c6f02
constant UBI_IOCSETVOLPROP (line 2600) | UBI_IOCSETVOLPROP = 0x80104f06
constant UBI_IOCSPEB (line 2601) | UBI_IOCSPEB = 0x80046f05
constant UBI_IOCVOLCRBLK (line 2602) | UBI_IOCVOLCRBLK = 0x80804f07
constant UBI_IOCVOLRMBLK (line 2603) | UBI_IOCVOLRMBLK = 0x20004f08
constant UBI_IOCVOLUP (line 2604) | UBI_IOCVOLUP = 0x80084f00
constant UDF_SUPER_MAGIC (line 2605) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2606) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2607) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2608) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2609) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2610) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2611) | VDISCARD = 0xd
constant VEOF (line 2612) | VEOF = 0x10
constant VEOL (line 2613) | VEOL = 0x11
constant VEOL2 (line 2614) | VEOL2 = 0x6
constant VERASE (line 2615) | VERASE = 0x2
constant VINTR (line 2616) | VINTR = 0x0
constant VKILL (line 2617) | VKILL = 0x3
constant VLNEXT (line 2618) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2619) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2620) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2621) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2622) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2623) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2624) | VMIN = 0x4
constant VM_SOCKETS_INVALID_VERSION (line 2625) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2626) | VQUIT = 0x1
constant VREPRINT (line 2627) | VREPRINT = 0xc
constant VSTART (line 2628) | VSTART = 0x8
constant VSTOP (line 2629) | VSTOP = 0x9
constant VSUSP (line 2630) | VSUSP = 0xa
constant VSWTC (line 2631) | VSWTC = 0x7
constant VSWTCH (line 2632) | VSWTCH = 0x7
constant VT0 (line 2633) | VT0 = 0x0
constant VT1 (line 2634) | VT1 = 0x4000
constant VTDLY (line 2635) | VTDLY = 0x4000
constant VTIME (line 2636) | VTIME = 0x5
constant VWERASE (line 2637) | VWERASE = 0xe
constant WALL (line 2638) | WALL = 0x40000000
constant WCLONE (line 2639) | WCLONE = 0x80000000
constant WCONTINUED (line 2640) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2641) | WDIOC_GETBOOTSTATUS = 0x40045702
constant WDIOC_GETPRETIMEOUT (line 2642) | WDIOC_GETPRETIMEOUT = 0x40045709
constant WDIOC_GETSTATUS (line 2643) | WDIOC_GETSTATUS = 0x40045701
constant WDIOC_GETSUPPORT (line 2644) | WDIOC_GETSUPPORT = 0x40285700
constant WDIOC_GETTEMP (line 2645) | WDIOC_GETTEMP = 0x40045703
constant WDIOC_GETTIMELEFT (line 2646) | WDIOC_GETTIMELEFT = 0x4004570a
constant WDIOC_GETTIMEOUT (line 2647) | WDIOC_GETTIMEOUT = 0x40045707
constant WDIOC_KEEPALIVE (line 2648) | WDIOC_KEEPALIVE = 0x40045705
constant WDIOC_SETOPTIONS (line 2649) | WDIOC_SETOPTIONS = 0x40045704
constant WDIOC_SETPRETIMEOUT (line 2650) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2651) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2652) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2653) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2654) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2655) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2656) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2657) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2658) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2659) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2660) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2661) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2662) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2663) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2664) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2665) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2666) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2667) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2668) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2669) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2670) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2671) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2672) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2673) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2674) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2675) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2676) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2677) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2678) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2679) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2680) | WIN_READ = 0x20
constant WIN_READDMA (line 2681) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2682) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2683) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2684) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2685) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2686) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2687) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2688) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2689) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2690) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2691) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2692) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2693) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2694) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2695) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2696) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2697) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2698) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2699) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2700) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2701) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2702) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2703) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2704) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2705) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2706) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2707) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2708) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2709) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2710) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2711) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2712) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2713) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2714) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2715) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2716) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2717) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2718) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2719) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2720) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2721) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2722) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2723) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2724) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2725) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2726) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2727) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2728) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2729) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2730) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2731) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2732) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2733) | WNOHANG = 0x1
constant WNOTHREAD (line 2734) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2735) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2736) | WORDSIZE = 0x20
constant WSTOPPED (line 2737) | WSTOPPED = 0x2
constant WUNTRACED (line 2738) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2739) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2740) | XATTR_REPLACE = 0x2
constant XCASE (line 2741) | XCASE = 0x4
constant XDP_COPY (line 2742) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2743) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2744) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2745) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2746) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2747) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2748) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2749) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2750) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2751) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2752) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2753) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2754) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2755) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2756) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2757) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2758) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2759) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2760) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2761) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2762) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2763) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2764) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2765) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2766) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2767) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2768) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2769) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2774) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2775) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2776) | EADDRINUSE = syscall.Errno(0x7d)
constant EADDRNOTAVAIL (line 2777) | EADDRNOTAVAIL = syscall.Errno(0x7e)
constant EADV (line 2778) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2779) | EAFNOSUPPORT = syscall.Errno(0x7c)
constant EAGAIN (line 2780) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2781) | EALREADY = syscall.Errno(0x95)
constant EBADE (line 2782) | EBADE = syscall.Errno(0x32)
constant EBADF (line 2783) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2784) | EBADFD = syscall.Errno(0x51)
constant EBADMSG (line 2785) | EBADMSG = syscall.Errno(0x4d)
constant EBADR (line 2786) | EBADR = syscall.Errno(0x33)
constant EBADRQC (line 2787) | EBADRQC = syscall.Errno(0x36)
constant EBADSLT (line 2788) | EBADSLT = syscall.Errno(0x37)
constant EBFONT (line 2789) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2790) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2791) | ECANCELED = syscall.Errno(0x9e)
constant ECHILD (line 2792) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2793) | ECHRNG = syscall.Errno(0x25)
constant ECOMM (line 2794) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2795) | ECONNABORTED = syscall.Errno(0x82)
constant ECONNREFUSED (line 2796) | ECONNREFUSED = syscall.Errno(0x92)
constant ECONNRESET (line 2797) | ECONNRESET = syscall.Errno(0x83)
constant EDEADLK (line 2798) | EDEADLK = syscall.Errno(0x2d)
constant EDEADLOCK (line 2799) | EDEADLOCK = syscall.Errno(0x38)
constant EDESTADDRREQ (line 2800) | EDESTADDRREQ = syscall.Errno(0x60)
constant EDOM (line 2801) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2802) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2803) | EDQUOT = syscall.Errno(0x46d)
constant EEXIST (line 2804) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2805) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2806) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2807) | EHOSTDOWN = syscall.Errno(0x93)
constant EHOSTUNREACH (line 2808) | EHOSTUNREACH = syscall.Errno(0x94)
constant EHWPOISON (line 2809) | EHWPOISON = syscall.Errno(0xa8)
constant EIDRM (line 2810) | EIDRM = syscall.Errno(0x24)
constant EILSEQ (line 2811) | EILSEQ = syscall.Errno(0x58)
constant EINIT (line 2812) | EINIT = syscall.Errno(0x8d)
constant EINPROGRESS (line 2813) | EINPROGRESS = syscall.Errno(0x96)
constant EINTR (line 2814) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2815) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2816) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2817) | EISCONN = syscall.Errno(0x85)
constant EISDIR (line 2818) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2819) | EISNAM = syscall.Errno(0x8b)
constant EKEYEXPIRED (line 2820) | EKEYEXPIRED = syscall.Errno(0xa2)
constant EKEYREJECTED (line 2821) | EKEYREJECTED = syscall.Errno(0xa4)
constant EKEYREVOKED (line 2822) | EKEYREVOKED = syscall.Errno(0xa3)
constant EL2HLT (line 2823) | EL2HLT = syscall.Errno(0x2c)
constant EL2NSYNC (line 2824) | EL2NSYNC = syscall.Errno(0x26)
constant EL3HLT (line 2825) | EL3HLT = syscall.Errno(0x27)
constant EL3RST (line 2826) | EL3RST = syscall.Errno(0x28)
constant ELIBACC (line 2827) | ELIBACC = syscall.Errno(0x53)
constant ELIBBAD (line 2828) | ELIBBAD = syscall.Errno(0x54)
constant ELIBEXEC (line 2829) | ELIBEXEC = syscall.Errno(0x57)
constant ELIBMAX (line 2830) | ELIBMAX = syscall.Errno(0x56)
constant ELIBSCN (line 2831) | ELIBSCN = syscall.Errno(0x55)
constant ELNRNG (line 2832) | ELNRNG = syscall.Errno(0x29)
constant ELOOP (line 2833) | ELOOP = syscall.Errno(0x5a)
constant EMEDIUMTYPE (line 2834) | EMEDIUMTYPE = syscall.Errno(0xa0)
constant EMFILE (line 2835) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2836) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2837) | EMSGSIZE = syscall.Errno(0x61)
constant EMULTIHOP (line 2838) | EMULTIHOP = syscall.Errno(0x4a)
constant ENAMETOOLONG (line 2839) | ENAMETOOLONG = syscall.Errno(0x4e)
constant ENAVAIL (line 2840) | ENAVAIL = syscall.Errno(0x8a)
constant ENETDOWN (line 2841) | ENETDOWN = syscall.Errno(0x7f)
constant ENETRESET (line 2842) | ENETRESET = syscall.Errno(0x81)
constant ENETUNREACH (line 2843) | ENETUNREACH = syscall.Errno(0x80)
constant ENFILE (line 2844) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2845) | ENOANO = syscall.Errno(0x35)
constant ENOBUFS (line 2846) | ENOBUFS = syscall.Errno(0x84)
constant ENOCSI (line 2847) | ENOCSI = syscall.Errno(0x2b)
constant ENODATA (line 2848) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2849) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2850) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2851) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2852) | ENOKEY = syscall.Errno(0xa1)
constant ENOLCK (line 2853) | ENOLCK = syscall.Errno(0x2e)
constant ENOLINK (line 2854) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2855) | ENOMEDIUM = syscall.Errno(0x9f)
constant ENOMEM (line 2856) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2857) | ENOMSG = syscall.Errno(0x23)
constant ENONET (line 2858) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2859) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2860) | ENOPROTOOPT = syscall.Errno(0x63)
constant ENOSPC (line 2861) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2862) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2863) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2864) | ENOSYS = syscall.Errno(0x59)
constant ENOTBLK (line 2865) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2866) | ENOTCONN = syscall.Errno(0x86)
constant ENOTDIR (line 2867) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2868) | ENOTEMPTY = syscall.Errno(0x5d)
constant ENOTNAM (line 2869) | ENOTNAM = syscall.Errno(0x89)
constant ENOTRECOVERABLE (line 2870) | ENOTRECOVERABLE = syscall.Errno(0xa6)
constant ENOTSOCK (line 2871) | ENOTSOCK = syscall.Errno(0x5f)
constant ENOTSUP (line 2872) | ENOTSUP = syscall.Errno(0x7a)
constant ENOTTY (line 2873) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2874) | ENOTUNIQ = syscall.Errno(0x50)
constant ENXIO (line 2875) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2876) | EOPNOTSUPP = syscall.Errno(0x7a)
constant EOVERFLOW (line 2877) | EOVERFLOW = syscall.Errno(0x4f)
constant EOWNERDEAD (line 2878) | EOWNERDEAD = syscall.Errno(0xa5)
constant EPERM (line 2879) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2880) | EPFNOSUPPORT = syscall.Errno(0x7b)
constant EPIPE (line 2881) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2882) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2883) | EPROTONOSUPPORT = syscall.Errno(0x78)
constant EPROTOTYPE (line 2884) | EPROTOTYPE = syscall.Errno(0x62)
constant ERANGE (line 2885) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2886) | EREMCHG = syscall.Errno(0x52)
constant EREMDEV (line 2887) | EREMDEV = syscall.Errno(0x8e)
constant EREMOTE (line 2888) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2889) | EREMOTEIO = syscall.Errno(0x8c)
constant ERESTART (line 2890) | ERESTART = syscall.Errno(0x5b)
constant ERFKILL (line 2891) | ERFKILL = syscall.Errno(0xa7)
constant EROFS (line 2892) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2893) | ESHUTDOWN = syscall.Errno(0x8f)
constant ESOCKTNOSUPPORT (line 2894) | ESOCKTNOSUPPORT = syscall.Errno(0x79)
constant ESPIPE (line 2895) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2896) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2897) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2898) | ESTALE = syscall.Errno(0x97)
constant ESTRPIPE (line 2899) | ESTRPIPE = syscall.Errno(0x5c)
constant ETIME (line 2900) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2901) | ETIMEDOUT = syscall.Errno(0x91)
constant ETOOMANYREFS (line 2902) | ETOOMANYREFS = syscall.Errno(0x90)
constant ETXTBSY (line 2903) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2904) | EUCLEAN = syscall.Errno(0x87)
constant EUNATCH (line 2905) | EUNATCH = syscall.Errno(0x2a)
constant EUSERS (line 2906) | EUSERS = syscall.Errno(0x5e)
constant EWOULDBLOCK (line 2907) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2908) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2909) | EXFULL = syscall.Errno(0x34)
constant SIGABRT (line 2914) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2915) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2916) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 2917) | SIGCHLD = syscall.Signal(0x12)
constant SIGCLD (line 2918) | SIGCLD = syscall.Signal(0x12)
constant SIGCONT (line 2919) | SIGCONT = syscall.Signal(0x19)
constant SIGEMT (line 2920) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 2921) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2922) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2923) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2924) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2925) | SIGIO = syscall.Signal(0x16)
constant SIGIOT (line 2926) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2927) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2928) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2929) | SIGPOLL = syscall.Signal(0x16)
constant SIGPROF (line 2930) | SIGPROF = syscall.Signal(0x1d)
constant SIGPWR (line 2931) | SIGPWR = syscall.Signal(0x13)
constant SIGQUIT (line 2932) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2933) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 2934) | SIGSTOP = syscall.Signal(0x17)
constant SIGSYS (line 2935) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 2936) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2937) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2938) | SIGTSTP = syscall.Signal(0x18)
constant SIGTTIN (line 2939) | SIGTTIN = syscall.Signal(0x1a)
constant SIGTTOU (line 2940) | SIGTTOU = syscall.Signal(0x1b)
constant SIGURG (line 2941) | SIGURG = syscall.Signal(0x15)
constant SIGUSR1 (line 2942) | SIGUSR1 = syscall.Signal(0x10)
constant SIGUSR2 (line 2943) | SIGUSR2 = syscall.Signal(0x11)
constant SIGVTALRM (line 2944) | SIGVTALRM = syscall.Signal(0x1c)
constant SIGWINCH (line 2945) | SIGWINCH = syscall.Signal(0x14)
constant SIGXCPU (line 2946) | SIGXCPU = syscall.Signal(0x1e)
constant SIGXFSZ (line 2947) | SIGXFSZ = syscall.Signal(0x1f)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x17
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x11
constant B1152000 (line 148) | B1152000 = 0x18
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x19
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x1a
constant B230400 (line 157) | B230400 = 0x12
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x1b
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x1c
constant B3500000 (line 162) | B3500000 = 0x1d
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x1e
constant B460800 (line 165) | B460800 = 0x13
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x14
constant B57600 (line 169) | B57600 = 0x10
constant B576000 (line 170) | B576000 = 0x15
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x16
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x40081270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x80081271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x20001261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x20001265
constant BLKFRASET (line 183) | BLKFRASET = 0x20001264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x20001260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x40081272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x2000127b
constant BLKRAGET (line 187) | BLKRAGET = 0x20001263
constant BLKRASET (line 188) | BLKRASET = 0x20001262
constant BLKROGET (line 189) | BLKROGET = 0x2000125e
constant BLKROSET (line 190) | BLKROSET = 0x2000125d
constant BLKRRPART (line 191) | BLKRRPART = 0x2000125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x20001267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x20001266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x20001268
constant BOTHER (line 195) | BOTHER = 0x1f
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x8000
constant BSDLY (line 328) | BSDLY = 0x8000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0xff
constant CBAUDEX (line 391) | CBAUDEX = 0x0
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0xff0000
constant CLOCAL (line 396) | CLOCAL = 0x8000
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x1000
constant CR2 (line 441) | CR2 = 0x2000
constant CR3 (line 442) | CR3 = 0x3000
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x3000
constant CREAD (line 445) | CREAD = 0x800
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x100
constant CS7 (line 453) | CS7 = 0x200
constant CS8 (line 454) | CS8 = 0x300
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x300
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x400
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x40
constant ECHOE (line 477) | ECHOE = 0x2
constant ECHOK (line 478) | ECHOK = 0x4
constant ECHOKE (line 479) | ECHOKE = 0x1
constant ECHONL (line 480) | ECHONL = 0x10
constant ECHOPRT (line 481) | ECHOPRT = 0x20
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x800
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x4000
constant FFDLY (line 679) | FFDLY = 0x4000
constant FLUSHO (line 680) | FLUSHO = 0x800000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0x5
constant F_GETLK64 (line 713) | F_GETLK64 = 0xc
constant F_GETOWN (line 714) | F_GETOWN = 0x9
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0x6
constant F_SETLK64 (line 737) | F_SETLK64 = 0xd
constant F_SETLKW (line 738) | F_SETLKW = 0x7
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0xe
constant F_SETOWN (line 740) | F_SETOWN = 0x8
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x4000
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x100
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x400
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x800
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x80
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x1000
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x400
constant IXON (line 1070) | IXON = 0x200
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x100
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x80
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x40
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 1218) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1219) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1220) | MAP_STACK = 0x20000
constant MAP_TYPE (line 1221) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1222) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1223) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1224) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1225) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1226) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1227) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1228) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1229) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1230) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1231) | MCL_CURRENT = 0x2000
constant MCL_FUTURE (line 1232) | MCL_FUTURE = 0x4000
constant MCL_ONFAULT (line 1233) | MCL_ONFAULT = 0x8000
constant MFD_ALLOW_SEALING (line 1234) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1235) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1236) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1237) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1238) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1239) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1240) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1241) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1242) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1243) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1244) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1245) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1246) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1247) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1248) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1249) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1250) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1251) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1252) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1253) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1254) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1255) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1256) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1257) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1258) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1259) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1260) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1261) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1262) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1263) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1264) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1265) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1266) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1267) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1268) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1269) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1270) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1271) | MSG_FIN = 0x200
constant MSG_MORE (line 1272) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1273) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1274) | MSG_OOB = 0x1
constant MSG_PEEK (line 1275) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1276) | MSG_PROXY = 0x10
constant MSG_RST (line 1277) | MSG_RST = 0x1000
constant MSG_SYN (line 1278) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1279) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1280) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1281) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1282) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1283) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1284) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1285) | MS_ASYNC = 0x1
constant MS_BIND (line 1286) | MS_BIND = 0x1000
constant MS_BORN (line 1287) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1288) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1289) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1290) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1291) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1292) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1293) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1294) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1295) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1296) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1297) | MS_NOATIME = 0x400
constant MS_NODEV (line 1298) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1299) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1300) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1301) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1302) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1303) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1304) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1305) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1306) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1307) | MS_RDONLY = 0x1
constant MS_REC (line 1308) | MS_REC = 0x4000
constant MS_RELATIME (line 1309) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1310) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1311) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1312) | MS_SHARED = 0x100000
constant MS_SILENT (line 1313) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1314) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1315) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1316) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1317) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1318) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1319) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1320) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1321) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1322) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1323) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1324) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1325) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1326) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1327) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1328) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1329) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1330) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1331) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1332) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1333) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1334) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1335) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1336) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1337) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1338) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1339) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1340) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1341) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1342) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1343) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1344) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1345) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1346) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1347) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1348) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1349) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1350) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1351) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1352) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1353) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1354) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1355) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1356) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1357) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1358) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1359) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1360) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1361) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1362) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1363) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1364) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1365) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1366) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1367) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1368) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1369) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1370) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1371) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1372) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1373) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1374) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1375) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1376) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1377) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1378) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1379) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1380) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1381) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1382) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1383) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1384) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1385) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1386) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1387) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1388) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1389) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1390) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1391) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1392) | NL0 = 0x0
constant NL1 (line 1393) | NL1 = 0x100
constant NL2 (line 1394) | NL2 = 0x200
constant NL3 (line 1395) | NL3 = 0x300
constant NLA_ALIGNTO (line 1396) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1397) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1398) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1399) | NLA_HDRLEN = 0x4
constant NLDLY (line 1400) | NLDLY = 0x300
constant NLMSG_ALIGNTO (line 1401) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1402) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1403) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1404) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1405) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1406) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1407) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1408) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1409) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1410) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1411) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1412) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1413) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1414) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1415) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1416) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1417) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1418) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1419) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1420) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1421) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1422) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1423) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1424) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1425) | NOFLSH = 0x80000000
constant NSFS_MAGIC (line 1426) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1427) | NS_GET_NSTYPE = 0x2000b703
constant NS_GET_OWNER_UID (line 1428) | NS_GET_OWNER_UID = 0x2000b704
constant NS_GET_PARENT (line 1429) | NS_GET_PARENT = 0x2000b702
constant NS_GET_USERNS (line 1430) | NS_GET_USERNS = 0x2000b701
constant OCFS2_SUPER_MAGIC (line 1431) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1432) | OCRNL = 0x8
constant OFDEL (line 1433) | OFDEL = 0x80
constant OFILL (line 1434) | OFILL = 0x40
constant OLCUC (line 1435) | OLCUC = 0x4
constant ONLCR (line 1436) | ONLCR = 0x2
constant ONLRET (line 1437) | ONLRET = 0x20
constant ONOCR (line 1438) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1439) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1440) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1441) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1442) | O_ACCMODE = 0x3
constant O_APPEND (line 1443) | O_APPEND = 0x400
constant O_ASYNC (line 1444) | O_ASYNC = 0x2000
constant O_CLOEXEC (line 1445) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1446) | O_CREAT = 0x40
constant O_DIRECT (line 1447) | O_DIRECT = 0x20000
constant O_DIRECTORY (line 1448) | O_DIRECTORY = 0x4000
constant O_DSYNC (line 1449) | O_DSYNC = 0x1000
constant O_EXCL (line 1450) | O_EXCL = 0x80
constant O_FSYNC (line 1451) | O_FSYNC = 0x101000
constant O_LARGEFILE (line 1452) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1453) | O_NDELAY = 0x800
constant O_NOATIME (line 1454) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1455) | O_NOCTTY = 0x100
constant O_NOFOLLOW (line 1456) | O_NOFOLLOW = 0x8000
constant O_NONBLOCK (line 1457) | O_NONBLOCK = 0x800
constant O_PATH (line 1458) | O_PATH = 0x200000
constant O_RDONLY (line 1459) | O_RDONLY = 0x0
constant O_RDWR (line 1460) | O_RDWR = 0x2
constant O_RSYNC (line 1461) | O_RSYNC = 0x101000
constant O_SYNC (line 1462) | O_SYNC = 0x101000
constant O_TMPFILE (line 1463) | O_TMPFILE = 0x404000
constant O_TRUNC (line 1464) | O_TRUNC = 0x200
constant O_WRONLY (line 1465) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1466) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1467) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1468) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1469) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1470) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1471) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1472) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1473) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1474) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1475) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1476) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1477) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1478) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1479) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1480) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1481) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1482) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1483) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1484) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1485) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1486) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1487) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1488) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1489) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1490) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1491) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1492) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1493) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1494) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1495) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1496) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1497) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1498) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1499) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1500) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1501) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1502) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1503) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1504) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1505) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1506) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1507) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1508) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1509) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1510) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1511) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1512) | PARENB = 0x1000
constant PARITY_CRC16_PR0 (line 1513) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1514) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1515) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1516) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1517) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1518) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1519) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1520) | PARITY_NONE = 0x1
constant PARMRK (line 1521) | PARMRK = 0x8
constant PARODD (line 1522) | PARODD = 0x2000
constant PENDIN (line 1523) | PENDIN = 0x20000000
constant PERF_EVENT_IOC_DISABLE (line 1524) | PERF_EVENT_IOC_DISABLE = 0x20002401
constant PERF_EVENT_IOC_ENABLE (line 1525) | PERF_EVENT_IOC_ENABLE = 0x20002400
constant PERF_EVENT_IOC_ID (line 1526) | PERF_EVENT_IOC_ID = 0x40082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1527) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1528) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409
constant PERF_EVENT_IOC_PERIOD (line 1529) | PERF_EVENT_IOC_PERIOD = 0x80082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1530) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1531) | PERF_EVENT_IOC_REFRESH = 0x20002402
constant PERF_EVENT_IOC_RESET (line 1532) | PERF_EVENT_IOC_RESET = 0x20002403
constant PERF_EVENT_IOC_SET_BPF (line 1533) | PERF_EVENT_IOC_SET_BPF = 0x80042408
constant PERF_EVENT_IOC_SET_FILTER (line 1534) | PERF_EVENT_IOC_SET_FILTER = 0x80082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1535) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405
constant PIPEFS_MAGIC (line 1536) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1537) | PPPIOCATTACH = 0x8004743d
constant PPPIOCATTCHAN (line 1538) | PPPIOCATTCHAN = 0x80047438
constant PPPIOCCONNECT (line 1539) | PPPIOCCONNECT = 0x8004743a
constant PPPIOCDETACH (line 1540) | PPPIOCDETACH = 0x8004743c
constant PPPIOCDISCONN (line 1541) | PPPIOCDISCONN = 0x20007439
constant PPPIOCGASYNCMAP (line 1542) | PPPIOCGASYNCMAP = 0x40047458
constant PPPIOCGCHAN (line 1543) | PPPIOCGCHAN = 0x40047437
constant PPPIOCGDEBUG (line 1544) | PPPIOCGDEBUG = 0x40047441
constant PPPIOCGFLAGS (line 1545) | PPPIOCGFLAGS = 0x4004745a
constant PPPIOCGIDLE (line 1546) | PPPIOCGIDLE = 0x4010743f
constant PPPIOCGL2TPSTATS (line 1547) | PPPIOCGL2TPSTATS = 0x40487436
constant PPPIOCGMRU (line 1548) | PPPIOCGMRU = 0x40047453
constant PPPIOCGNPMODE (line 1549) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1550) | PPPIOCGRASYNCMAP = 0x40047455
constant PPPIOCGUNIT (line 1551) | PPPIOCGUNIT = 0x40047456
constant PPPIOCGXASYNCMAP (line 1552) | PPPIOCGXASYNCMAP = 0x40207450
constant PPPIOCNEWUNIT (line 1553) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1554) | PPPIOCSACTIVE = 0x80107446
constant PPPIOCSASYNCMAP (line 1555) | PPPIOCSASYNCMAP = 0x80047457
constant PPPIOCSCOMPRESS (line 1556) | PPPIOCSCOMPRESS = 0x8010744d
constant PPPIOCSDEBUG (line 1557) | PPPIOCSDEBUG = 0x80047440
constant PPPIOCSFLAGS (line 1558) | PPPIOCSFLAGS = 0x80047459
constant PPPIOCSMAXCID (line 1559) | PPPIOCSMAXCID = 0x80047451
constant PPPIOCSMRRU (line 1560) | PPPIOCSMRRU = 0x8004743b
constant PPPIOCSMRU (line 1561) | PPPIOCSMRU = 0x80047452
constant PPPIOCSNPMODE (line 1562) | PPPIOCSNPMODE = 0x8008744b
constant PPPIOCSPASS (line 1563) | PPPIOCSPASS = 0x80107447
constant PPPIOCSRASYNCMAP (line 1564) | PPPIOCSRASYNCMAP = 0x80047454
constant PPPIOCSXASYNCMAP (line 1565) | PPPIOCSXASYNCMAP = 0x8020744f
constant PPPIOCXFERUNIT (line 1566) | PPPIOCXFERUNIT = 0x2000744e
constant PRIO_PGRP (line 1567) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1568) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1569) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1570) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1571) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1572) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1573) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1574) | PROT_NONE = 0x0
constant PROT_READ (line 1575) | PROT_READ = 0x1
constant PROT_SAO (line 1576) | PROT_SAO = 0x10
constant PROT_WRITE (line 1577) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1578) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1579) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1580) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1581) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1582) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1583) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1584) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1585) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1586) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1587) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1588) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1589) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1590) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1591) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1592) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1593) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1594) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1595) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1596) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1597) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1598) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1599) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1600) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1601) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1602) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1603) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1604) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1605) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1606) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1607) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1608) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1609) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1610) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1611) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1612) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1613) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1614) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1615) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1616) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1617) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1618) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1619) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1620) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1621) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1622) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1623) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1624) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1625) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1626) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1627) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1628) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1629) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1630) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1631) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1632) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1633) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1634) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1635) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1636) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1637) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1638) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1639) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1640) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1641) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1642) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1643) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1644) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1645) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1646) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1647) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1648) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1649) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1650) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1651) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1652) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1653) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1654) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1655) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1656) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1657) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1658) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1659) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1660) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1661) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1662) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1663) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1664) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1665) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1666) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1667) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1668) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1669) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1670) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1671) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1672) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1673) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1674) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1675) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1676) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1677) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1678) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1679) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1680) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1681) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1682) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1683) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1684) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1685) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1686) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1687) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1688) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1689) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1690) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1691) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1692) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1693) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1694) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1695) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1696) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1697) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1698) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1699) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1700) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1701) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1702) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1703) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1704) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1705) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1706) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1707) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETEVRREGS (line 1708) | PTRACE_GETEVRREGS = 0x14
constant PTRACE_GETFPREGS (line 1709) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETREGS (line 1710) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGS64 (line 1711) | PTRACE_GETREGS64 = 0x16
constant PTRACE_GETREGSET (line 1712) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1713) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1714) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GETVRREGS (line 1715) | PTRACE_GETVRREGS = 0x12
constant PTRACE_GETVSRREGS (line 1716) | PTRACE_GETVSRREGS = 0x1b
constant PTRACE_GET_DEBUGREG (line 1717) | PTRACE_GET_DEBUGREG = 0x19
constant PTRACE_GET_SYSCALL_INFO (line 1718) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_INTERRUPT (line 1719) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1720) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1721) | PTRACE_LISTEN = 0x4208
constant PTRACE_O_EXITKILL (line 1722) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1723) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1724) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1725) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1726) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1727) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1728) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1729) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1730) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1731) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1732) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1733) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKSIGINFO (line 1734) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1735) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1736) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKUSR (line 1737) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1738) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKETEXT (line 1739) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKEUSR (line 1740) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1741) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1742) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1743) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETEVRREGS (line 1744) | PTRACE_SETEVRREGS = 0x15
constant PTRACE_SETFPREGS (line 1745) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETOPTIONS (line 1746) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1747) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGS64 (line 1748) | PTRACE_SETREGS64 = 0x17
constant PTRACE_SETREGSET (line 1749) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1750) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1751) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SETVRREGS (line 1752) | PTRACE_SETVRREGS = 0x13
constant PTRACE_SETVSRREGS (line 1753) | PTRACE_SETVSRREGS = 0x1c
constant PTRACE_SET_DEBUGREG (line 1754) | PTRACE_SET_DEBUGREG = 0x1a
constant PTRACE_SINGLEBLOCK (line 1755) | PTRACE_SINGLEBLOCK = 0x100
constant PTRACE_SINGLESTEP (line 1756) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1757) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1758) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1759) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1760) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1761) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_SYSEMU (line 1762) | PTRACE_SYSEMU = 0x1d
constant PTRACE_SYSEMU_SINGLESTEP (line 1763) | PTRACE_SYSEMU_SINGLESTEP = 0x1e
constant PTRACE_TRACEME (line 1764) | PTRACE_TRACEME = 0x0
constant PT_CCR (line 1765) | PT_CCR = 0x26
constant PT_CTR (line 1766) | PT_CTR = 0x23
constant PT_DAR (line 1767) | PT_DAR = 0x29
constant PT_DSCR (line 1768) | PT_DSCR = 0x2c
constant PT_DSISR (line 1769) | PT_DSISR = 0x2a
constant PT_FPR0 (line 1770) | PT_FPR0 = 0x30
constant PT_FPSCR (line 1771) | PT_FPSCR = 0x50
constant PT_LNK (line 1772) | PT_LNK = 0x24
constant PT_MSR (line 1773) | PT_MSR = 0x21
constant PT_NIP (line 1774) | PT_NIP = 0x20
constant PT_ORIG_R3 (line 1775) | PT_ORIG_R3 = 0x22
constant PT_R0 (line 1776) | PT_R0 = 0x0
constant PT_R1 (line 1777) | PT_R1 = 0x1
constant PT_R10 (line 1778) | PT_R10 = 0xa
constant PT_R11 (line 1779) | PT_R11 = 0xb
constant PT_R12 (line 1780) | PT_R12 = 0xc
constant PT_R13 (line 1781) | PT_R13 = 0xd
constant PT_R14 (line 1782) | PT_R14 = 0xe
constant PT_R15 (line 1783) | PT_R15 = 0xf
constant PT_R16 (line 1784) | PT_R16 = 0x10
constant PT_R17 (line 1785) | PT_R17 = 0x11
constant PT_R18 (line 1786) | PT_R18 = 0x12
constant PT_R19 (line 1787) | PT_R19 = 0x13
constant PT_R2 (line 1788) | PT_R2 = 0x2
constant PT_R20 (line 1789) | PT_R20 = 0x14
constant PT_R21 (line 1790) | PT_R21 = 0x15
constant PT_R22 (line 1791) | PT_R22 = 0x16
constant PT_R23 (line 1792) | PT_R23 = 0x17
constant PT_R24 (line 1793) | PT_R24 = 0x18
constant PT_R25 (line 1794) | PT_R25 = 0x19
constant PT_R26 (line 1795) | PT_R26 = 0x1a
constant PT_R27 (line 1796) | PT_R27 = 0x1b
constant PT_R28 (line 1797) | PT_R28 = 0x1c
constant PT_R29 (line 1798) | PT_R29 = 0x1d
constant PT_R3 (line 1799) | PT_R3 = 0x3
constant PT_R30 (line 1800) | PT_R30 = 0x1e
constant PT_R31 (line 1801) | PT_R31 = 0x1f
constant PT_R4 (line 1802) | PT_R4 = 0x4
constant PT_R5 (line 1803) | PT_R5 = 0x5
constant PT_R6 (line 1804) | PT_R6 = 0x6
constant PT_R7 (line 1805) | PT_R7 = 0x7
constant PT_R8 (line 1806) | PT_R8 = 0x8
constant PT_R9 (line 1807) | PT_R9 = 0x9
constant PT_REGS_COUNT (line 1808) | PT_REGS_COUNT = 0x2c
constant PT_RESULT (line 1809) | PT_RESULT = 0x2b
constant PT_SOFTE (line 1810) | PT_SOFTE = 0x27
constant PT_TRAP (line 1811) | PT_TRAP = 0x28
constant PT_VR0 (line 1812) | PT_VR0 = 0x52
constant PT_VRSAVE (line 1813) | PT_VRSAVE = 0x94
constant PT_VSCR (line 1814) | PT_VSCR = 0x93
constant PT_VSR0 (line 1815) | PT_VSR0 = 0x96
constant PT_VSR31 (line 1816) | PT_VSR31 = 0xd4
constant PT_XER (line 1817) | PT_XER = 0x25
constant QNX4_SUPER_MAGIC (line 1818) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1819) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1820) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1821) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1822) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1823) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1824) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1825) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1826) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1827) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1828) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1829) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1830) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1831) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1832) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1833) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1834) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1835) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 1836) | RLIMIT_NPROC = 0x6
constant RLIMIT_RSS (line 1837) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1838) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1839) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1840) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1841) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1842) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1843) | RNDADDENTROPY = 0x80085203
constant RNDADDTOENTCNT (line 1844) | RNDADDTOENTCNT = 0x80045201
constant RNDCLEARPOOL (line 1845) | RNDCLEARPOOL = 0x20005206
constant RNDGETENTCNT (line 1846) | RNDGETENTCNT = 0x40045200
constant RNDGETPOOL (line 1847) | RNDGETPOOL = 0x40085202
constant RNDRESEEDCRNG (line 1848) | RNDRESEEDCRNG = 0x20005207
constant RNDZAPENTCNT (line 1849) | RNDZAPENTCNT = 0x20005204
constant RTAX_ADVMSS (line 1850) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1851) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1852) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1853) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1854) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1855) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1856) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1857) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1858) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1859) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1860) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1861) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1862) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1863) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1864) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1865) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1866) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1867) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1868) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1869) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1870) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1871) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1872) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1873) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1874) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1875) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1876) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1877) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1878) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1879) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1880) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1881) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1882) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1883) | RTC_AIE_OFF = 0x20007002
constant RTC_AIE_ON (line 1884) | RTC_AIE_ON = 0x20007001
constant RTC_ALM_READ (line 1885) | RTC_ALM_READ = 0x40247008
constant RTC_ALM_SET (line 1886) | RTC_ALM_SET = 0x80247007
constant RTC_EPOCH_READ (line 1887) | RTC_EPOCH_READ = 0x4008700d
constant RTC_EPOCH_SET (line 1888) | RTC_EPOCH_SET = 0x8008700e
constant RTC_IRQF (line 1889) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1890) | RTC_IRQP_READ = 0x4008700b
constant RTC_IRQP_SET (line 1891) | RTC_IRQP_SET = 0x8008700c
constant RTC_MAX_FREQ (line 1892) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1893) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1894) | RTC_PIE_OFF = 0x20007006
constant RTC_PIE_ON (line 1895) | RTC_PIE_ON = 0x20007005
constant RTC_PLL_GET (line 1896) | RTC_PLL_GET = 0x40207011
constant RTC_PLL_SET (line 1897) | RTC_PLL_SET = 0x80207012
constant RTC_RD_TIME (line 1898) | RTC_RD_TIME = 0x40247009
constant RTC_SET_TIME (line 1899) | RTC_SET_TIME = 0x8024700a
constant RTC_UF (line 1900) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1901) | RTC_UIE_OFF = 0x20007004
constant RTC_UIE_ON (line 1902) | RTC_UIE_ON = 0x20007003
constant RTC_VL_CLR (line 1903) | RTC_VL_CLR = 0x20007014
constant RTC_VL_READ (line 1904) | RTC_VL_READ = 0x40047013
constant RTC_WIE_OFF (line 1905) | RTC_WIE_OFF = 0x20007010
constant RTC_WIE_ON (line 1906) | RTC_WIE_ON = 0x2000700f
constant RTC_WKALM_RD (line 1907) | RTC_WKALM_RD = 0x40287010
constant RTC_WKALM_SET (line 1908) | RTC_WKALM_SET = 0x8028700f
constant RTF_ADDRCLASSMASK (line 1909) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1910) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1911) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1912) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1913) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1914) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1915) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1916) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1917) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1918) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1919) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1920) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1921) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1922) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1923) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1924) | RTF_MSS = 0x40
constant RTF_MTU (line 1925) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1926) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1927) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1928) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1929) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1930) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1931) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1932) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1933) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1934) | RTF_STATIC = 0x400
constant RTF_THROW (line 1935) | RTF_THROW = 0x2000
constant RTF_UP (line 1936) | RTF_UP = 0x1
constant RTF_WINDOW (line 1937) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1938) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1939) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1940) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1941) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1942) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1943) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1944) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1945) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1946) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1947) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1948) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1949) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1950) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1951) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1952) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1953) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1954) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1955) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1956) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1957) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1958) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1959) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1960) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1961) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1962) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1963) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1964) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1965) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1966) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1967) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1968) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1969) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1970) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1971) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1972) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1973) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1974) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1975) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1976) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1977) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1978) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1979) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1980) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1981) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1982) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1983) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1984) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1985) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1986) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1987) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1988) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1989) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1990) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1991) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1992) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1993) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1994) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1995) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1996) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1997) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1998) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1999) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 2000) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 2001) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 2002) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 2003) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 2004) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 2005) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 2006) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 2007) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 2008) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 2009) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 2010) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 2011) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 2012) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 2013) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 2014) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 2015) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 2016) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 2017) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 2018) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 2019) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 2020) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 2021) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 2022) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 2023) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 2024) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 2025) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 2026) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 2027) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 2028) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 2029) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 2030) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 2031) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 2032) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 2033) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 2034) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 2035) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 2036) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 2037) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 2038) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 2039) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 2040) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 2041) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 2042) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 2043) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 2044) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 2045) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 2046) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 2047) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 2048) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 2049) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 2050) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 2051) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 2052) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 2053) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 2054) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 2055) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 2056) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 2057) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2058) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2059) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2060) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2061) | SFD_NONBLOCK = 0x800
constant SHUT_RD (line 2062) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2063) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2064) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2065) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2066) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2067) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2068) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 2069) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2070) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2071) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2072) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2073) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2074) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2075) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2076) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2077) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2078) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2079) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2080) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2081) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2082) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2083) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2084) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2085) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2086) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2087) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2088) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2089) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2090) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2091) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2092) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2093) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2094) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2095) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2096) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2097) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2098) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2099) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2100) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2101) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2102) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2103) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2104) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2105) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2106) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2107) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2108) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2109) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2110) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2111) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2112) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2113) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2114) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2115) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2116) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2117) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2118) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2119) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2120) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2121) | SIOCGSTAMPNS_NEW = 0x40108907
constant SIOCGSTAMPNS_OLD (line 2122) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2123) | SIOCGSTAMP_NEW = 0x40108906
constant SIOCGSTAMP_OLD (line 2124) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2125) | SIOCINQ = 0x4004667f
constant SIOCOUTQ (line 2126) | SIOCOUTQ = 0x40047473
constant SIOCOUTQNSD (line 2127) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2128) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2129) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2130) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2131) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2132) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2133) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2134) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2135) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2136) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2137) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2138) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2139) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2140) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2141) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2142) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2143) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2144) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2145) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2146) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2147) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2148) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2149) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2150) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2151) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2152) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2153) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2154) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2155) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2156) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2157) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2158) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2159) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2160) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2161) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2162) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2163) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2164) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2165) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2166) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2167) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2168) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2169) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2170) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2171) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2172) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2173) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2174) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2175) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2176) | SOCK_NONBLOCK = 0x800
constant SOCK_PACKET (line 2177) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2178) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2179) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2180) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2181) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2182) | SOL_AAL = 0x109
constant SOL_ALG (line 2183) | SOL_ALG = 0x117
constant SOL_ATM (line 2184) | SOL_ATM = 0x108
constant SOL_CAIF (line 2185) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2186) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2187) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2188) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2189) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2190) | SOL_IP = 0x0
constant SOL_IPV6 (line 2191) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2192) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2193) | SOL_IUCV = 0x115
constant SOL_KCM (line 2194) | SOL_KCM = 0x119
constant SOL_LLC (line 2195) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2196) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2197) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2198) | SOL_NFC = 0x118
constant SOL_PACKET (line 2199) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2200) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2201) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2202) | SOL_RAW = 0xff
constant SOL_RDS (line 2203) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2204) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2205) | SOL_SOCKET = 0x1
constant SOL_TCP (line 2206) | SOL_TCP = 0x6
constant SOL_TIPC (line 2207) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2208) | SOL_TLS = 0x11a
constant SOL_X25 (line 2209) | SOL_X25 = 0x106
constant SOL_XDP (line 2210) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2211) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2212) | SO_ACCEPTCONN = 0x1e
constant SO_ATTACH_BPF (line 2213) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2214) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2215) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2216) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2217) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2218) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2219) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2220) | SO_BROADCAST = 0x6
constant SO_BSDCOMPAT (line 2221) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2222) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2223) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2224) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2225) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2226) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2227) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2228) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2229) | SO_DOMAIN = 0x27
constant SO_DONTROUTE (line 2230) | SO_DONTROUTE = 0x5
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2231) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2232) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2233) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2234) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2235) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2236) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2237) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2238) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2239) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2240) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2241) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2242) | SO_ERROR = 0x4
constant SO_GET_FILTER (line 2243) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2244) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2245) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2246) | SO_KEEPALIVE = 0x9
constant SO_LINGER (line 2247) | SO_LINGER = 0xd
constant SO_LOCK_FILTER (line 2248) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2249) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2250) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2251) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2252) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2253) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2254) | SO_OOBINLINE = 0xa
constant SO_PASSCRED (line 2255) | SO_PASSCRED = 0x14
constant SO_PASSSEC (line 2256) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2257) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2258) | SO_PEERCRED = 0x15
constant SO_PEERGROUPS (line 2259) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2260) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2261) | SO_PEERSEC = 0x1f
constant SO_PRIORITY (line 2262) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2263) | SO_PROTOCOL = 0x26
constant SO_RCVBUF (line 2264) | SO_RCVBUF = 0x8
constant SO_RCVBUFFORCE (line 2265) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2266) | SO_RCVLOWAT = 0x10
constant SO_RCVTIMEO (line 2267) | SO_RCVTIMEO = 0x12
constant SO_RCVTIMEO_NEW (line 2268) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2269) | SO_RCVTIMEO_OLD = 0x12
constant SO_REUSEADDR (line 2270) | SO_REUSEADDR = 0x2
constant SO_REUSEPORT (line 2271) | SO_REUSEPORT = 0xf
constant SO_RXQ_OVFL (line 2272) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2273) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2274) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2275) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2276) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2277) | SO_SNDBUF = 0x7
constant SO_SNDBUFFORCE (line 2278) | SO_SNDBUFFORCE = 0x20
constant SO_SNDLOWAT (line 2279) | SO_SNDLOWAT = 0x11
constant SO_SNDTIMEO (line 2280) | SO_SNDTIMEO = 0x13
constant SO_SNDTIMEO_NEW (line 2281) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2282) | SO_SNDTIMEO_OLD = 0x13
constant SO_TIMESTAMP (line 2283) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2284) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2285) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2286) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2287) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2288) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2289) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2290) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2291) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2292) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2293) | SO_TYPE = 0x3
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2294) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2295) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2296) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2297) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2298) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2299) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2300) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2301) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2302) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2303) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2304) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2305) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2306) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2307) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2308) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2309) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2310) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2311) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2312) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2313) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2314) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2315) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2316) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2317) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2318) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2319) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2320) | STATX_CTIME = 0x80
constant STATX_GID (line 2321) | STATX_GID = 0x10
constant STATX_INO (line 2322) | STATX_INO = 0x100
constant STATX_MODE (line 2323) | STATX_MODE = 0x2
constant STATX_MTIME (line 2324) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2325) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2326) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2327) | STATX_TYPE = 0x1
constant STATX_UID (line 2328) | STATX_UID = 0x8
constant STATX__RESERVED (line 2329) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2330) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2331) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2332) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2333) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2334) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2335) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2336) | S_IEXEC = 0x40
constant S_IFBLK (line 2337) | S_IFBLK = 0x6000
constant S_IFCHR (line 2338) | S_IFCHR = 0x2000
constant S_IFDIR (line 2339) | S_IFDIR = 0x4000
constant S_IFIFO (line 2340) | S_IFIFO = 0x1000
constant S_IFLNK (line 2341) | S_IFLNK = 0xa000
constant S_IFMT (line 2342) | S_IFMT = 0xf000
constant S_IFREG (line 2343) | S_IFREG = 0x8000
constant S_IFSOCK (line 2344) | S_IFSOCK = 0xc000
constant S_IREAD (line 2345) | S_IREAD = 0x100
constant S_IRGRP (line 2346) | S_IRGRP = 0x20
constant S_IROTH (line 2347) | S_IROTH = 0x4
constant S_IRUSR (line 2348) | S_IRUSR = 0x100
constant S_IRWXG (line 2349) | S_IRWXG = 0x38
constant S_IRWXO (line 2350) | S_IRWXO = 0x7
constant S_IRWXU (line 2351) | S_IRWXU = 0x1c0
constant S_ISGID (line 2352) | S_ISGID = 0x400
constant S_ISUID (line 2353) | S_ISUID = 0x800
constant S_ISVTX (line 2354) | S_ISVTX = 0x200
constant S_IWGRP (line 2355) | S_IWGRP = 0x10
constant S_IWOTH (line 2356) | S_IWOTH = 0x2
constant S_IWRITE (line 2357) | S_IWRITE = 0x80
constant S_IWUSR (line 2358) | S_IWUSR = 0x80
constant S_IXGRP (line 2359) | S_IXGRP = 0x8
constant S_IXOTH (line 2360) | S_IXOTH = 0x1
constant S_IXUSR (line 2361) | S_IXUSR = 0x40
constant TAB0 (line 2362) | TAB0 = 0x0
constant TAB1 (line 2363) | TAB1 = 0x400
constant TAB2 (line 2364) | TAB2 = 0x800
constant TAB3 (line 2365) | TAB3 = 0xc00
constant TABDLY (line 2366) | TABDLY = 0xc00
constant TASKSTATS_CMD_ATTR_MAX (line 2367) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2368) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2369) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2370) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2371) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2372) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2373) | TCFLSH = 0x2000741f
constant TCGETA (line 2374) | TCGETA = 0x40147417
constant TCGETS (line 2375) | TCGETS = 0x402c7413
constant TCIFLUSH (line 2376) | TCIFLUSH = 0x0
constant TCIOFF (line 2377) | TCIOFF = 0x2
constant TCIOFLUSH (line 2378) | TCIOFLUSH = 0x2
constant TCION (line 2379) | TCION = 0x3
constant TCOFLUSH (line 2380) | TCOFLUSH = 0x1
constant TCOOFF (line 2381) | TCOOFF = 0x0
constant TCOON (line 2382) | TCOON = 0x1
constant TCP_BPF_IW (line 2383) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2384) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2385) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2386) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2387) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2388) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2389) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2390) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2391) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2392) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2393) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2394) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2395) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2396) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2397) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2398) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2399) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2400) | TCP_INFO = 0xb
constant TCP_INQ (line 2401) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2402) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2403) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2404) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2405) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2406) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2407) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2408) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2409) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2410) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2411) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2412) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2413) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2414) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2415) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2416) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2417) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2418) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2419) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2420) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2421) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2422) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2423) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2424) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2425) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2426) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2427) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2428) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2429) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2430) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2431) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2432) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2433) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2434) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2435) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2436) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2437) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2438) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2439) | TCSAFLUSH = 0x2
constant TCSBRK (line 2440) | TCSBRK = 0x2000741d
constant TCSBRKP (line 2441) | TCSBRKP = 0x5425
constant TCSETA (line 2442) | TCSETA = 0x80147418
constant TCSETAF (line 2443) | TCSETAF = 0x8014741c
constant TCSETAW (line 2444) | TCSETAW = 0x80147419
constant TCSETS (line 2445) | TCSETS = 0x802c7414
constant TCSETSF (line 2446) | TCSETSF = 0x802c7416
constant TCSETSW (line 2447) | TCSETSW = 0x802c7415
constant TCXONC (line 2448) | TCXONC = 0x2000741e
constant TIMER_ABSTIME (line 2449) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2450) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2451) | TIOCCONS = 0x541d
constant TIOCEXCL (line 2452) | TIOCEXCL = 0x540c
constant TIOCGDEV (line 2453) | TIOCGDEV = 0x40045432
constant TIOCGETC (line 2454) | TIOCGETC = 0x40067412
constant TIOCGETD (line 2455) | TIOCGETD = 0x5424
constant TIOCGETP (line 2456) | TIOCGETP = 0x40067408
constant TIOCGEXCL (line 2457) | TIOCGEXCL = 0x40045440
constant TIOCGICOUNT (line 2458) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2459) | TIOCGISO7816 = 0x40285442
constant TIOCGLCKTRMIOS (line 2460) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGLTC (line 2461) | TIOCGLTC = 0x40067474
constant TIOCGPGRP (line 2462) | TIOCGPGRP = 0x40047477
constant TIOCGPKT (line 2463) | TIOCGPKT = 0x40045438
constant TIOCGPTLCK (line 2464) | TIOCGPTLCK = 0x40045439
constant TIOCGPTN (line 2465) | TIOCGPTN = 0x40045430
constant TIOCGPTPEER (line 2466) | TIOCGPTPEER = 0x20005441
constant TIOCGRS485 (line 2467) | TIOCGRS485 = 0x542e
constant TIOCGSERIAL (line 2468) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2469) | TIOCGSID = 0x5429
constant TIOCGSOFTCAR (line 2470) | TIOCGSOFTCAR = 0x5419
constant TIOCGWINSZ (line 2471) | TIOCGWINSZ = 0x40087468
constant TIOCINQ (line 2472) | TIOCINQ = 0x4004667f
constant TIOCLINUX (line 2473) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2474) | TIOCMBIC = 0x5417
constant TIOCMBIS (line 2475) | TIOCMBIS = 0x5416
constant TIOCMGET (line 2476) | TIOCMGET = 0x5415
constant TIOCMIWAIT (line 2477) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2478) | TIOCMSET = 0x5418
constant TIOCM_CAR (line 2479) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2480) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2481) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2482) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2483) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2484) | TIOCM_LE = 0x1
constant TIOCM_LOOP (line 2485) | TIOCM_LOOP = 0x8000
constant TIOCM_OUT1 (line 2486) | TIOCM_OUT1 = 0x2000
constant TIOCM_OUT2 (line 2487) | TIOCM_OUT2 = 0x4000
constant TIOCM_RI (line 2488) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2489) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2490) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2491) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2492) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2493) | TIOCNOTTY = 0x5422
constant TIOCNXCL (line 2494) | TIOCNXCL = 0x540d
constant TIOCOUTQ (line 2495) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 2496) | TIOCPKT = 0x5420
constant TIOCPKT_DATA (line 2497) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2498) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2499) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2500) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2501) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2502) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2503) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2504) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2505) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2506) | TIOCSCTTY = 0x540e
constant TIOCSERCONFIG (line 2507) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2508) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2509) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2510) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2511) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2512) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2513) | TIOCSERSWILD = 0x5455
constant TIOCSER_TEMT (line 2514) | TIOCSER_TEMT = 0x1
constant TIOCSETC (line 2515) | TIOCSETC = 0x80067411
constant TIOCSETD (line 2516) | TIOCSETD = 0x5423
constant TIOCSETN (line 2517) | TIOCSETN = 0x8006740a
constant TIOCSETP (line 2518) | TIOCSETP = 0x80067409
constant TIOCSIG (line 2519) | TIOCSIG = 0x80045436
constant TIOCSISO7816 (line 2520) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2521) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSLTC (line 2522) | TIOCSLTC = 0x80067475
constant TIOCSPGRP (line 2523) | TIOCSPGRP = 0x80047476
constant TIOCSPTLCK (line 2524) | TIOCSPTLCK = 0x80045431
constant TIOCSRS485 (line 2525) | TIOCSRS485 = 0x542f
constant TIOCSSERIAL (line 2526) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2527) | TIOCSSOFTCAR = 0x541a
constant TIOCSTART (line 2528) | TIOCSTART = 0x2000746e
constant TIOCSTI (line 2529) | TIOCSTI = 0x5412
constant TIOCSTOP (line 2530) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 2531) | TIOCSWINSZ = 0x80087467
constant TIOCVHANGUP (line 2532) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2533) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2534) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2535) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2536) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2537) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2538) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2539) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2540) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2541) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2542) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2543) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2544) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2545) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2546) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2547) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2548) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2549) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2550) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2551) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2552) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2553) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2554) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2555) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2556) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2557) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2558) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2559) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2560) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2561) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2562) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2563) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2564) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2565) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2566) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2567) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2568) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2569) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2570) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2571) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2572) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2573) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2574) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2575) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2576) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2577) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2578) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2579) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2580) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2581) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2582) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2583) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2584) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2585) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2586) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2587) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2588) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2589) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2590) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2591) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2592) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2593) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2594) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2595) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2596) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2597) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2598) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2599) | TOSTOP = 0x400000
constant TPACKET_ALIGNMENT (line 2600) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2601) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2602) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2603) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2604) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2605) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2606) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2607) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2608) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2609) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2610) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2611) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2612) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2613) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2614) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2615) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2616) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2617) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2618) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2619) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2620) | TUNATTACHFILTER = 0x801054d5
constant TUNDETACHFILTER (line 2621) | TUNDETACHFILTER = 0x801054d6
constant TUNGETDEVNETNS (line 2622) | TUNGETDEVNETNS = 0x200054e3
constant TUNGETFEATURES (line 2623) | TUNGETFEATURES = 0x400454cf
constant TUNGETFILTER (line 2624) | TUNGETFILTER = 0x401054db
constant TUNGETIFF (line 2625) | TUNGETIFF = 0x400454d2
constant TUNGETSNDBUF (line 2626) | TUNGETSNDBUF = 0x400454d3
constant TUNGETVNETBE (line 2627) | TUNGETVNETBE = 0x400454df
constant TUNGETVNETHDRSZ (line 2628) | TUNGETVNETHDRSZ = 0x400454d7
constant TUNGETVNETLE (line 2629) | TUNGETVNETLE = 0x400454dd
constant TUNSETCARRIER (line 2630) | TUNSETCARRIER = 0x800454e2
constant TUNSETDEBUG (line 2631) | TUNSETDEBUG = 0x800454c9
constant TUNSETFILTEREBPF (line 2632) | TUNSETFILTEREBPF = 0x400454e1
constant TUNSETGROUP (line 2633) | TUNSETGROUP = 0x800454ce
constant TUNSETIFF (line 2634) | TUNSETIFF = 0x800454ca
constant TUNSETIFINDEX (line 2635) | TUNSETIFINDEX = 0x800454da
constant TUNSETLINK (line 2636) | TUNSETLINK = 0x800454cd
constant TUNSETNOCSUM (line 2637) | TUNSETNOCSUM = 0x800454c8
constant TUNSETOFFLOAD (line 2638) | TUNSETOFFLOAD = 0x800454d0
constant TUNSETOWNER (line 2639) | TUNSETOWNER = 0x800454cc
constant TUNSETPERSIST (line 2640) | TUNSETPERSIST = 0x800454cb
constant TUNSETQUEUE (line 2641) | TUNSETQUEUE = 0x800454d9
constant TUNSETSNDBUF (line 2642) | TUNSETSNDBUF = 0x800454d4
constant TUNSETSTEERINGEBPF (line 2643) | TUNSETSTEERINGEBPF = 0x400454e0
constant TUNSETTXFILTER (line 2644) | TUNSETTXFILTER = 0x800454d1
constant TUNSETVNETBE (line 2645) | TUNSETVNETBE = 0x800454de
constant TUNSETVNETHDRSZ (line 2646) | TUNSETVNETHDRSZ = 0x800454d8
constant TUNSETVNETLE (line 2647) | TUNSETVNETLE = 0x800454dc
constant UBI_IOCATT (line 2648) | UBI_IOCATT = 0x80186f40
constant UBI_IOCDET (line 2649) | UBI_IOCDET = 0x80046f41
constant UBI_IOCEBCH (line 2650) | UBI_IOCEBCH = 0x80044f02
constant UBI_IOCEBER (line 2651) | UBI_IOCEBER = 0x80044f01
constant UBI_IOCEBISMAP (line 2652) | UBI_IOCEBISMAP = 0x40044f05
constant UBI_IOCEBMAP (line 2653) | UBI_IOCEBMAP = 0x80084f03
constant UBI_IOCEBUNMAP (line 2654) | UBI_IOCEBUNMAP = 0x80044f04
constant UBI_IOCMKVOL (line 2655) | UBI_IOCMKVOL = 0x80986f00
constant UBI_IOCRMVOL (line 2656) | UBI_IOCRMVOL = 0x80046f01
constant UBI_IOCRNVOL (line 2657) | UBI_IOCRNVOL = 0x91106f03
constant UBI_IOCRPEB (line 2658) | UBI_IOCRPEB = 0x80046f04
constant UBI_IOCRSVOL (line 2659) | UBI_IOCRSVOL = 0x800c6f02
constant UBI_IOCSETVOLPROP (line 2660) | UBI_IOCSETVOLPROP = 0x80104f06
constant UBI_IOCSPEB (line 2661) | UBI_IOCSPEB = 0x80046f05
constant UBI_IOCVOLCRBLK (line 2662) | UBI_IOCVOLCRBLK = 0x80804f07
constant UBI_IOCVOLRMBLK (line 2663) | UBI_IOCVOLRMBLK = 0x20004f08
constant UBI_IOCVOLUP (line 2664) | UBI_IOCVOLUP = 0x80084f00
constant UDF_SUPER_MAGIC (line 2665) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2666) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2667) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2668) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2669) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2670) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2671) | VDISCARD = 0x10
constant VEOF (line 2672) | VEOF = 0x4
constant VEOL (line 2673) | VEOL = 0x6
constant VEOL2 (line 2674) | VEOL2 = 0x8
constant VERASE (line 2675) | VERASE = 0x2
constant VINTR (line 2676) | VINTR = 0x0
constant VKILL (line 2677) | VKILL = 0x3
constant VLNEXT (line 2678) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2679) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2680) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2681) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2682) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2683) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2684) | VMIN = 0x5
constant VM_SOCKETS_INVALID_VERSION (line 2685) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2686) | VQUIT = 0x1
constant VREPRINT (line 2687) | VREPRINT = 0xb
constant VSTART (line 2688) | VSTART = 0xd
constant VSTOP (line 2689) | VSTOP = 0xe
constant VSUSP (line 2690) | VSUSP = 0xc
constant VSWTC (line 2691) | VSWTC = 0x9
constant VT0 (line 2692) | VT0 = 0x0
constant VT1 (line 2693) | VT1 = 0x10000
constant VTDLY (line 2694) | VTDLY = 0x10000
constant VTIME (line 2695) | VTIME = 0x7
constant VWERASE (line 2696) | VWERASE = 0xa
constant WALL (line 2697) | WALL = 0x40000000
constant WCLONE (line 2698) | WCLONE = 0x80000000
constant WCONTINUED (line 2699) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2700) | WDIOC_GETBOOTSTATUS = 0x40045702
constant WDIOC_GETPRETIMEOUT (line 2701) | WDIOC_GETPRETIMEOUT = 0x40045709
constant WDIOC_GETSTATUS (line 2702) | WDIOC_GETSTATUS = 0x40045701
constant WDIOC_GETSUPPORT (line 2703) | WDIOC_GETSUPPORT = 0x40285700
constant WDIOC_GETTEMP (line 2704) | WDIOC_GETTEMP = 0x40045703
constant WDIOC_GETTIMELEFT (line 2705) | WDIOC_GETTIMELEFT = 0x4004570a
constant WDIOC_GETTIMEOUT (line 2706) | WDIOC_GETTIMEOUT = 0x40045707
constant WDIOC_KEEPALIVE (line 2707) | WDIOC_KEEPALIVE = 0x40045705
constant WDIOC_SETOPTIONS (line 2708) | WDIOC_SETOPTIONS = 0x40045704
constant WDIOC_SETPRETIMEOUT (line 2709) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2710) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2711) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2712) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2713) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2714) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2715) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2716) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2717) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2718) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2719) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2720) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2721) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2722) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2723) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2724) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2725) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2726) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2727) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2728) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2729) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2730) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2731) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2732) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2733) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2734) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2735) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2736) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2737) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2738) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2739) | WIN_READ = 0x20
constant WIN_READDMA (line 2740) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2741) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2742) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2743) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2744) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2745) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2746) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2747) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2748) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2749) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2750) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2751) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2752) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2753) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2754) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2755) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2756) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2757) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2758) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2759) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2760) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2761) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2762) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2763) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2764) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2765) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2766) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2767) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2768) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2769) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2770) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2771) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2772) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2773) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2774) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2775) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2776) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2777) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2778) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2779) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2780) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2781) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2782) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2783) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2784) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2785) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2786) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2787) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2788) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2789) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2790) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2791) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2792) | WNOHANG = 0x1
constant WNOTHREAD (line 2793) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2794) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2795) | WORDSIZE = 0x40
constant WSTOPPED (line 2796) | WSTOPPED = 0x2
constant WUNTRACED (line 2797) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2798) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2799) | XATTR_REPLACE = 0x2
constant XCASE (line 2800) | XCASE = 0x4000
constant XDP_COPY (line 2801) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2802) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2803) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2804) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2805) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2806) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2807) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2808) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2809) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2810) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2811) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2812) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2813) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2814) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2815) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2816) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2817) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2818) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2819) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2820) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2821) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2822) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2823) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2824) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2825) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2826) | XTABS = 0xc00
constant Z3FOLD_MAGIC (line 2827) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2828) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2833) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2834) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2835) | EADDRINUSE = syscall.Errno(0x62)
constant EADDRNOTAVAIL (line 2836) | EADDRNOTAVAIL = syscall.Errno(0x63)
constant EADV (line 2837) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2838) | EAFNOSUPPORT = syscall.Errno(0x61)
constant EAGAIN (line 2839) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2840) | EALREADY = syscall.Errno(0x72)
constant EBADE (line 2841) | EBADE = syscall.Errno(0x34)
constant EBADF (line 2842) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2843) | EBADFD = syscall.Errno(0x4d)
constant EBADMSG (line 2844) | EBADMSG = syscall.Errno(0x4a)
constant EBADR (line 2845) | EBADR = syscall.Errno(0x35)
constant EBADRQC (line 2846) | EBADRQC = syscall.Errno(0x38)
constant EBADSLT (line 2847) | EBADSLT = syscall.Errno(0x39)
constant EBFONT (line 2848) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2849) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2850) | ECANCELED = syscall.Errno(0x7d)
constant ECHILD (line 2851) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2852) | ECHRNG = syscall.Errno(0x2c)
constant ECOMM (line 2853) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2854) | ECONNABORTED = syscall.Errno(0x67)
constant ECONNREFUSED (line 2855) | ECONNREFUSED = syscall.Errno(0x6f)
constant ECONNRESET (line 2856) | ECONNRESET = syscall.Errno(0x68)
constant EDEADLK (line 2857) | EDEADLK = syscall.Errno(0x23)
constant EDEADLOCK (line 2858) | EDEADLOCK = syscall.Errno(0x3a)
constant EDESTADDRREQ (line 2859) | EDESTADDRREQ = syscall.Errno(0x59)
constant EDOM (line 2860) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2861) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2862) | EDQUOT = syscall.Errno(0x7a)
constant EEXIST (line 2863) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2864) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2865) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2866) | EHOSTDOWN = syscall.Errno(0x70)
constant EHOSTUNREACH (line 2867) | EHOSTUNREACH = syscall.Errno(0x71)
constant EHWPOISON (line 2868) | EHWPOISON = syscall.Errno(0x85)
constant EIDRM (line 2869) | EIDRM = syscall.Errno(0x2b)
constant EILSEQ (line 2870) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 2871) | EINPROGRESS = syscall.Errno(0x73)
constant EINTR (line 2872) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2873) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2874) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2875) | EISCONN = syscall.Errno(0x6a)
constant EISDIR (line 2876) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2877) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2878) | EKEYEXPIRED = syscall.Errno(0x7f)
constant EKEYREJECTED (line 2879) | EKEYREJECTED = syscall.Errno(0x81)
constant EKEYREVOKED (line 2880) | EKEYREVOKED = syscall.Errno(0x80)
constant EL2HLT (line 2881) | EL2HLT = syscall.Errno(0x33)
constant EL2NSYNC (line 2882) | EL2NSYNC = syscall.Errno(0x2d)
constant EL3HLT (line 2883) | EL3HLT = syscall.Errno(0x2e)
constant EL3RST (line 2884) | EL3RST = syscall.Errno(0x2f)
constant ELIBACC (line 2885) | ELIBACC = syscall.Errno(0x4f)
constant ELIBBAD (line 2886) | ELIBBAD = syscall.Errno(0x50)
constant ELIBEXEC (line 2887) | ELIBEXEC = syscall.Errno(0x53)
constant ELIBMAX (line 2888) | ELIBMAX = syscall.Errno(0x52)
constant ELIBSCN (line 2889) | ELIBSCN = syscall.Errno(0x51)
constant ELNRNG (line 2890) | ELNRNG = syscall.Errno(0x30)
constant ELOOP (line 2891) | ELOOP = syscall.Errno(0x28)
constant EMEDIUMTYPE (line 2892) | EMEDIUMTYPE = syscall.Errno(0x7c)
constant EMFILE (line 2893) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2894) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2895) | EMSGSIZE = syscall.Errno(0x5a)
constant EMULTIHOP (line 2896) | EMULTIHOP = syscall.Errno(0x48)
constant ENAMETOOLONG (line 2897) | ENAMETOOLONG = syscall.Errno(0x24)
constant ENAVAIL (line 2898) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2899) | ENETDOWN = syscall.Errno(0x64)
constant ENETRESET (line 2900) | ENETRESET = syscall.Errno(0x66)
constant ENETUNREACH (line 2901) | ENETUNREACH = syscall.Errno(0x65)
constant ENFILE (line 2902) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2903) | ENOANO = syscall.Errno(0x37)
constant ENOBUFS (line 2904) | ENOBUFS = syscall.Errno(0x69)
constant ENOCSI (line 2905) | ENOCSI = syscall.Errno(0x32)
constant ENODATA (line 2906) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2907) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2908) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2909) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2910) | ENOKEY = syscall.Errno(0x7e)
constant ENOLCK (line 2911) | ENOLCK = syscall.Errno(0x25)
constant ENOLINK (line 2912) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2913) | ENOMEDIUM = syscall.Errno(0x7b)
constant ENOMEM (line 2914) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2915) | ENOMSG = syscall.Errno(0x2a)
constant ENONET (line 2916) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2917) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2918) | ENOPROTOOPT = syscall.Errno(0x5c)
constant ENOSPC (line 2919) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2920) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2921) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2922) | ENOSYS = syscall.Errno(0x26)
constant ENOTBLK (line 2923) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2924) | ENOTCONN = syscall.Errno(0x6b)
constant ENOTDIR (line 2925) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2926) | ENOTEMPTY = syscall.Errno(0x27)
constant ENOTNAM (line 2927) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2928) | ENOTRECOVERABLE = syscall.Errno(0x83)
constant ENOTSOCK (line 2929) | ENOTSOCK = syscall.Errno(0x58)
constant ENOTSUP (line 2930) | ENOTSUP = syscall.Errno(0x5f)
constant ENOTTY (line 2931) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2932) | ENOTUNIQ = syscall.Errno(0x4c)
constant ENXIO (line 2933) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2934) | EOPNOTSUPP = syscall.Errno(0x5f)
constant EOVERFLOW (line 2935) | EOVERFLOW = syscall.Errno(0x4b)
constant EOWNERDEAD (line 2936) | EOWNERDEAD = syscall.Errno(0x82)
constant EPERM (line 2937) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2938) | EPFNOSUPPORT = syscall.Errno(0x60)
constant EPIPE (line 2939) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2940) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2941) | EPROTONOSUPPORT = syscall.Errno(0x5d)
constant EPROTOTYPE (line 2942) | EPROTOTYPE = syscall.Errno(0x5b)
constant ERANGE (line 2943) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2944) | EREMCHG = syscall.Errno(0x4e)
constant EREMOTE (line 2945) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2946) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2947) | ERESTART = syscall.Errno(0x55)
constant ERFKILL (line 2948) | ERFKILL = syscall.Errno(0x84)
constant EROFS (line 2949) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2950) | ESHUTDOWN = syscall.Errno(0x6c)
constant ESOCKTNOSUPPORT (line 2951) | ESOCKTNOSUPPORT = syscall.Errno(0x5e)
constant ESPIPE (line 2952) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2953) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2954) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2955) | ESTALE = syscall.Errno(0x74)
constant ESTRPIPE (line 2956) | ESTRPIPE = syscall.Errno(0x56)
constant ETIME (line 2957) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2958) | ETIMEDOUT = syscall.Errno(0x6e)
constant ETOOMANYREFS (line 2959) | ETOOMANYREFS = syscall.Errno(0x6d)
constant ETXTBSY (line 2960) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2961) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2962) | EUNATCH = syscall.Errno(0x31)
constant EUSERS (line 2963) | EUSERS = syscall.Errno(0x57)
constant EWOULDBLOCK (line 2964) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2965) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2966) | EXFULL = syscall.Errno(0x36)
constant SIGABRT (line 2971) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2972) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2973) | SIGBUS = syscall.Signal(0x7)
constant SIGCHLD (line 2974) | SIGCHLD = syscall.Signal(0x11)
constant SIGCLD (line 2975) | SIGCLD = syscall.Signal(0x11)
constant SIGCONT (line 2976) | SIGCONT = syscall.Signal(0x12)
constant SIGFPE (line 2977) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2978) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2979) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2980) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2981) | SIGIO = syscall.Signal(0x1d)
constant SIGIOT (line 2982) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2983) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2984) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2985) | SIGPOLL = syscall.Signal(0x1d)
constant SIGPROF (line 2986) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2987) | SIGPWR = syscall.Signal(0x1e)
constant SIGQUIT (line 2988) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2989) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTKFLT (line 2990) | SIGSTKFLT = syscall.Signal(0x10)
constant SIGSTOP (line 2991) | SIGSTOP = syscall.Signal(0x13)
constant SIGSYS (line 2992) | SIGSYS = syscall.Signal(0x1f)
constant SIGTERM (line 2993) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2994) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2995) | SIGTSTP = syscall.Signal(0x14)
constant SIGTTIN (line 2996) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2997) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2998) | SIGURG = syscall.Signal(0x17)
constant SIGUSR1 (line 2999) | SIGUSR1 = syscall.Signal(0xa)
constant SIGUSR2 (line 3000) | SIGUSR2 = syscall.Signal(0xc)
constant SIGVTALRM (line 3001) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 3002) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 3003) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 3004) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x17
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x11
constant B1152000 (line 148) | B1152000 = 0x18
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x19
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x1a
constant B230400 (line 157) | B230400 = 0x12
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x1b
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x1c
constant B3500000 (line 162) | B3500000 = 0x1d
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x1e
constant B460800 (line 165) | B460800 = 0x13
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x14
constant B57600 (line 169) | B57600 = 0x10
constant B576000 (line 170) | B576000 = 0x15
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x16
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x40081270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x80081271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x20001261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x20001265
constant BLKFRASET (line 183) | BLKFRASET = 0x20001264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x20001260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x40081272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x2000127b
constant BLKRAGET (line 187) | BLKRAGET = 0x20001263
constant BLKRASET (line 188) | BLKRASET = 0x20001262
constant BLKROGET (line 189) | BLKROGET = 0x2000125e
constant BLKROSET (line 190) | BLKROSET = 0x2000125d
constant BLKRRPART (line 191) | BLKRRPART = 0x2000125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x20001267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x20001266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x20001268
constant BOTHER (line 195) | BOTHER = 0x1f
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x8000
constant BSDLY (line 328) | BSDLY = 0x8000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0xff
constant CBAUDEX (line 391) | CBAUDEX = 0x0
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0xff0000
constant CLOCAL (line 396) | CLOCAL = 0x8000
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x1000
constant CR2 (line 441) | CR2 = 0x2000
constant CR3 (line 442) | CR3 = 0x3000
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x3000
constant CREAD (line 445) | CREAD = 0x800
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x100
constant CS7 (line 453) | CS7 = 0x200
constant CS8 (line 454) | CS8 = 0x300
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x300
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x400
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x40
constant ECHOE (line 477) | ECHOE = 0x2
constant ECHOK (line 478) | ECHOK = 0x4
constant ECHOKE (line 479) | ECHOKE = 0x1
constant ECHONL (line 480) | ECHONL = 0x10
constant ECHOPRT (line 481) | ECHOPRT = 0x20
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x800
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x4000
constant FFDLY (line 679) | FFDLY = 0x4000
constant FLUSHO (line 680) | FLUSHO = 0x800000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0x5
constant F_GETLK64 (line 713) | F_GETLK64 = 0xc
constant F_GETOWN (line 714) | F_GETOWN = 0x9
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0x6
constant F_SETLK64 (line 737) | F_SETLK64 = 0xd
constant F_SETLKW (line 738) | F_SETLKW = 0x7
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0xe
constant F_SETOWN (line 740) | F_SETOWN = 0x8
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x4000
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x100
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x400
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x800
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x80
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x1000
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x400
constant IXON (line 1070) | IXON = 0x200
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x100
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x80
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x40
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 1218) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1219) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1220) | MAP_STACK = 0x20000
constant MAP_TYPE (line 1221) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1222) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1223) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1224) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1225) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1226) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1227) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1228) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1229) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1230) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1231) | MCL_CURRENT = 0x2000
constant MCL_FUTURE (line 1232) | MCL_FUTURE = 0x4000
constant MCL_ONFAULT (line 1233) | MCL_ONFAULT = 0x8000
constant MFD_ALLOW_SEALING (line 1234) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1235) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1236) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1237) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1238) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1239) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1240) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1241) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1242) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1243) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1244) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1245) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1246) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1247) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1248) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1249) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1250) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1251) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1252) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1253) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1254) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1255) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1256) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1257) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1258) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1259) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1260) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1261) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1262) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1263) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1264) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1265) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1266) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1267) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1268) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1269) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1270) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1271) | MSG_FIN = 0x200
constant MSG_MORE (line 1272) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1273) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1274) | MSG_OOB = 0x1
constant MSG_PEEK (line 1275) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1276) | MSG_PROXY = 0x10
constant MSG_RST (line 1277) | MSG_RST = 0x1000
constant MSG_SYN (line 1278) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1279) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1280) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1281) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1282) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1283) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1284) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1285) | MS_ASYNC = 0x1
constant MS_BIND (line 1286) | MS_BIND = 0x1000
constant MS_BORN (line 1287) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1288) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1289) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1290) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1291) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1292) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1293) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1294) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1295) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1296) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1297) | MS_NOATIME = 0x400
constant MS_NODEV (line 1298) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1299) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1300) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1301) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1302) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1303) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1304) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1305) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1306) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1307) | MS_RDONLY = 0x1
constant MS_REC (line 1308) | MS_REC = 0x4000
constant MS_RELATIME (line 1309) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1310) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1311) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1312) | MS_SHARED = 0x100000
constant MS_SILENT (line 1313) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1314) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1315) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1316) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1317) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1318) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1319) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1320) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1321) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1322) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1323) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1324) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1325) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1326) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1327) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1328) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1329) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1330) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1331) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1332) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1333) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1334) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1335) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1336) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1337) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1338) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1339) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1340) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1341) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1342) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1343) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1344) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1345) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1346) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1347) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1348) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1349) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1350) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1351) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1352) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1353) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1354) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1355) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1356) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1357) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1358) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1359) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1360) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1361) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1362) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1363) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1364) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1365) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1366) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1367) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1368) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1369) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1370) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1371) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1372) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1373) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1374) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1375) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1376) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1377) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1378) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1379) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1380) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1381) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1382) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1383) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1384) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1385) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1386) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1387) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1388) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1389) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1390) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1391) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1392) | NL0 = 0x0
constant NL1 (line 1393) | NL1 = 0x100
constant NL2 (line 1394) | NL2 = 0x200
constant NL3 (line 1395) | NL3 = 0x300
constant NLA_ALIGNTO (line 1396) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1397) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1398) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1399) | NLA_HDRLEN = 0x4
constant NLDLY (line 1400) | NLDLY = 0x300
constant NLMSG_ALIGNTO (line 1401) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1402) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1403) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1404) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1405) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1406) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1407) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1408) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1409) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1410) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1411) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1412) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1413) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1414) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1415) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1416) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1417) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1418) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1419) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1420) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1421) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1422) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1423) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1424) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1425) | NOFLSH = 0x80000000
constant NSFS_MAGIC (line 1426) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1427) | NS_GET_NSTYPE = 0x2000b703
constant NS_GET_OWNER_UID (line 1428) | NS_GET_OWNER_UID = 0x2000b704
constant NS_GET_PARENT (line 1429) | NS_GET_PARENT = 0x2000b702
constant NS_GET_USERNS (line 1430) | NS_GET_USERNS = 0x2000b701
constant OCFS2_SUPER_MAGIC (line 1431) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1432) | OCRNL = 0x8
constant OFDEL (line 1433) | OFDEL = 0x80
constant OFILL (line 1434) | OFILL = 0x40
constant OLCUC (line 1435) | OLCUC = 0x4
constant ONLCR (line 1436) | ONLCR = 0x2
constant ONLRET (line 1437) | ONLRET = 0x20
constant ONOCR (line 1438) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1439) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1440) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1441) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1442) | O_ACCMODE = 0x3
constant O_APPEND (line 1443) | O_APPEND = 0x400
constant O_ASYNC (line 1444) | O_ASYNC = 0x2000
constant O_CLOEXEC (line 1445) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1446) | O_CREAT = 0x40
constant O_DIRECT (line 1447) | O_DIRECT = 0x20000
constant O_DIRECTORY (line 1448) | O_DIRECTORY = 0x4000
constant O_DSYNC (line 1449) | O_DSYNC = 0x1000
constant O_EXCL (line 1450) | O_EXCL = 0x80
constant O_FSYNC (line 1451) | O_FSYNC = 0x101000
constant O_LARGEFILE (line 1452) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1453) | O_NDELAY = 0x800
constant O_NOATIME (line 1454) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1455) | O_NOCTTY = 0x100
constant O_NOFOLLOW (line 1456) | O_NOFOLLOW = 0x8000
constant O_NONBLOCK (line 1457) | O_NONBLOCK = 0x800
constant O_PATH (line 1458) | O_PATH = 0x200000
constant O_RDONLY (line 1459) | O_RDONLY = 0x0
constant O_RDWR (line 1460) | O_RDWR = 0x2
constant O_RSYNC (line 1461) | O_RSYNC = 0x101000
constant O_SYNC (line 1462) | O_SYNC = 0x101000
constant O_TMPFILE (line 1463) | O_TMPFILE = 0x404000
constant O_TRUNC (line 1464) | O_TRUNC = 0x200
constant O_WRONLY (line 1465) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1466) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1467) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1468) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1469) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1470) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1471) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1472) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1473) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1474) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1475) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1476) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1477) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1478) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1479) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1480) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1481) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1482) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1483) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1484) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1485) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1486) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1487) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1488) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1489) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1490) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1491) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1492) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1493) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1494) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1495) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1496) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1497) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1498) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1499) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1500) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1501) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1502) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1503) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1504) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1505) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1506) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1507) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1508) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1509) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1510) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1511) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1512) | PARENB = 0x1000
constant PARITY_CRC16_PR0 (line 1513) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1514) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1515) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1516) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1517) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1518) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1519) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1520) | PARITY_NONE = 0x1
constant PARMRK (line 1521) | PARMRK = 0x8
constant PARODD (line 1522) | PARODD = 0x2000
constant PENDIN (line 1523) | PENDIN = 0x20000000
constant PERF_EVENT_IOC_DISABLE (line 1524) | PERF_EVENT_IOC_DISABLE = 0x20002401
constant PERF_EVENT_IOC_ENABLE (line 1525) | PERF_EVENT_IOC_ENABLE = 0x20002400
constant PERF_EVENT_IOC_ID (line 1526) | PERF_EVENT_IOC_ID = 0x40082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1527) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1528) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409
constant PERF_EVENT_IOC_PERIOD (line 1529) | PERF_EVENT_IOC_PERIOD = 0x80082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1530) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1531) | PERF_EVENT_IOC_REFRESH = 0x20002402
constant PERF_EVENT_IOC_RESET (line 1532) | PERF_EVENT_IOC_RESET = 0x20002403
constant PERF_EVENT_IOC_SET_BPF (line 1533) | PERF_EVENT_IOC_SET_BPF = 0x80042408
constant PERF_EVENT_IOC_SET_FILTER (line 1534) | PERF_EVENT_IOC_SET_FILTER = 0x80082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1535) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405
constant PIPEFS_MAGIC (line 1536) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1537) | PPPIOCATTACH = 0x8004743d
constant PPPIOCATTCHAN (line 1538) | PPPIOCATTCHAN = 0x80047438
constant PPPIOCCONNECT (line 1539) | PPPIOCCONNECT = 0x8004743a
constant PPPIOCDETACH (line 1540) | PPPIOCDETACH = 0x8004743c
constant PPPIOCDISCONN (line 1541) | PPPIOCDISCONN = 0x20007439
constant PPPIOCGASYNCMAP (line 1542) | PPPIOCGASYNCMAP = 0x40047458
constant PPPIOCGCHAN (line 1543) | PPPIOCGCHAN = 0x40047437
constant PPPIOCGDEBUG (line 1544) | PPPIOCGDEBUG = 0x40047441
constant PPPIOCGFLAGS (line 1545) | PPPIOCGFLAGS = 0x4004745a
constant PPPIOCGIDLE (line 1546) | PPPIOCGIDLE = 0x4010743f
constant PPPIOCGL2TPSTATS (line 1547) | PPPIOCGL2TPSTATS = 0x40487436
constant PPPIOCGMRU (line 1548) | PPPIOCGMRU = 0x40047453
constant PPPIOCGNPMODE (line 1549) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1550) | PPPIOCGRASYNCMAP = 0x40047455
constant PPPIOCGUNIT (line 1551) | PPPIOCGUNIT = 0x40047456
constant PPPIOCGXASYNCMAP (line 1552) | PPPIOCGXASYNCMAP = 0x40207450
constant PPPIOCNEWUNIT (line 1553) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1554) | PPPIOCSACTIVE = 0x80107446
constant PPPIOCSASYNCMAP (line 1555) | PPPIOCSASYNCMAP = 0x80047457
constant PPPIOCSCOMPRESS (line 1556) | PPPIOCSCOMPRESS = 0x8010744d
constant PPPIOCSDEBUG (line 1557) | PPPIOCSDEBUG = 0x80047440
constant PPPIOCSFLAGS (line 1558) | PPPIOCSFLAGS = 0x80047459
constant PPPIOCSMAXCID (line 1559) | PPPIOCSMAXCID = 0x80047451
constant PPPIOCSMRRU (line 1560) | PPPIOCSMRRU = 0x8004743b
constant PPPIOCSMRU (line 1561) | PPPIOCSMRU = 0x80047452
constant PPPIOCSNPMODE (line 1562) | PPPIOCSNPMODE = 0x8008744b
constant PPPIOCSPASS (line 1563) | PPPIOCSPASS = 0x80107447
constant PPPIOCSRASYNCMAP (line 1564) | PPPIOCSRASYNCMAP = 0x80047454
constant PPPIOCSXASYNCMAP (line 1565) | PPPIOCSXASYNCMAP = 0x8020744f
constant PPPIOCXFERUNIT (line 1566) | PPPIOCXFERUNIT = 0x2000744e
constant PRIO_PGRP (line 1567) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1568) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1569) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1570) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1571) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1572) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1573) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1574) | PROT_NONE = 0x0
constant PROT_READ (line 1575) | PROT_READ = 0x1
constant PROT_SAO (line 1576) | PROT_SAO = 0x10
constant PROT_WRITE (line 1577) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1578) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1579) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1580) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1581) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1582) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1583) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1584) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1585) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1586) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1587) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1588) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1589) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1590) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1591) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1592) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1593) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1594) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1595) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1596) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1597) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1598) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1599) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1600) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1601) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1602) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1603) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1604) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1605) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1606) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1607) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1608) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1609) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1610) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1611) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1612) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1613) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1614) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1615) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1616) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1617) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1618) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1619) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1620) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1621) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1622) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1623) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1624) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1625) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1626) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1627) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1628) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1629) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1630) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1631) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1632) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1633) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1634) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1635) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1636) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1637) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1638) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1639) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1640) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1641) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1642) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1643) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1644) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1645) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1646) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1647) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1648) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1649) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1650) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1651) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1652) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1653) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1654) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1655) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1656) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1657) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1658) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1659) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1660) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1661) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1662) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1663) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1664) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1665) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1666) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1667) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1668) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1669) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1670) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1671) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1672) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1673) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1674) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1675) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1676) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1677) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1678) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1679) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1680) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1681) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1682) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1683) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1684) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1685) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1686) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1687) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1688) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1689) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1690) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1691) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1692) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1693) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1694) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1695) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1696) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1697) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1698) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1699) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1700) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1701) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1702) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1703) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1704) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1705) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1706) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1707) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETEVRREGS (line 1708) | PTRACE_GETEVRREGS = 0x14
constant PTRACE_GETFPREGS (line 1709) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETREGS (line 1710) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGS64 (line 1711) | PTRACE_GETREGS64 = 0x16
constant PTRACE_GETREGSET (line 1712) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1713) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1714) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GETVRREGS (line 1715) | PTRACE_GETVRREGS = 0x12
constant PTRACE_GETVSRREGS (line 1716) | PTRACE_GETVSRREGS = 0x1b
constant PTRACE_GET_DEBUGREG (line 1717) | PTRACE_GET_DEBUGREG = 0x19
constant PTRACE_GET_SYSCALL_INFO (line 1718) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_INTERRUPT (line 1719) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1720) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1721) | PTRACE_LISTEN = 0x4208
constant PTRACE_O_EXITKILL (line 1722) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1723) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1724) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1725) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1726) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1727) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1728) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1729) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1730) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1731) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1732) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1733) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKSIGINFO (line 1734) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1735) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1736) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKUSR (line 1737) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1738) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKETEXT (line 1739) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKEUSR (line 1740) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1741) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1742) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1743) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETEVRREGS (line 1744) | PTRACE_SETEVRREGS = 0x15
constant PTRACE_SETFPREGS (line 1745) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETOPTIONS (line 1746) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1747) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGS64 (line 1748) | PTRACE_SETREGS64 = 0x17
constant PTRACE_SETREGSET (line 1749) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1750) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1751) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SETVRREGS (line 1752) | PTRACE_SETVRREGS = 0x13
constant PTRACE_SETVSRREGS (line 1753) | PTRACE_SETVSRREGS = 0x1c
constant PTRACE_SET_DEBUGREG (line 1754) | PTRACE_SET_DEBUGREG = 0x1a
constant PTRACE_SINGLEBLOCK (line 1755) | PTRACE_SINGLEBLOCK = 0x100
constant PTRACE_SINGLESTEP (line 1756) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1757) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1758) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1759) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1760) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1761) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_SYSEMU (line 1762) | PTRACE_SYSEMU = 0x1d
constant PTRACE_SYSEMU_SINGLESTEP (line 1763) | PTRACE_SYSEMU_SINGLESTEP = 0x1e
constant PTRACE_TRACEME (line 1764) | PTRACE_TRACEME = 0x0
constant PT_CCR (line 1765) | PT_CCR = 0x26
constant PT_CTR (line 1766) | PT_CTR = 0x23
constant PT_DAR (line 1767) | PT_DAR = 0x29
constant PT_DSCR (line 1768) | PT_DSCR = 0x2c
constant PT_DSISR (line 1769) | PT_DSISR = 0x2a
constant PT_FPR0 (line 1770) | PT_FPR0 = 0x30
constant PT_FPSCR (line 1771) | PT_FPSCR = 0x50
constant PT_LNK (line 1772) | PT_LNK = 0x24
constant PT_MSR (line 1773) | PT_MSR = 0x21
constant PT_NIP (line 1774) | PT_NIP = 0x20
constant PT_ORIG_R3 (line 1775) | PT_ORIG_R3 = 0x22
constant PT_R0 (line 1776) | PT_R0 = 0x0
constant PT_R1 (line 1777) | PT_R1 = 0x1
constant PT_R10 (line 1778) | PT_R10 = 0xa
constant PT_R11 (line 1779) | PT_R11 = 0xb
constant PT_R12 (line 1780) | PT_R12 = 0xc
constant PT_R13 (line 1781) | PT_R13 = 0xd
constant PT_R14 (line 1782) | PT_R14 = 0xe
constant PT_R15 (line 1783) | PT_R15 = 0xf
constant PT_R16 (line 1784) | PT_R16 = 0x10
constant PT_R17 (line 1785) | PT_R17 = 0x11
constant PT_R18 (line 1786) | PT_R18 = 0x12
constant PT_R19 (line 1787) | PT_R19 = 0x13
constant PT_R2 (line 1788) | PT_R2 = 0x2
constant PT_R20 (line 1789) | PT_R20 = 0x14
constant PT_R21 (line 1790) | PT_R21 = 0x15
constant PT_R22 (line 1791) | PT_R22 = 0x16
constant PT_R23 (line 1792) | PT_R23 = 0x17
constant PT_R24 (line 1793) | PT_R24 = 0x18
constant PT_R25 (line 1794) | PT_R25 = 0x19
constant PT_R26 (line 1795) | PT_R26 = 0x1a
constant PT_R27 (line 1796) | PT_R27 = 0x1b
constant PT_R28 (line 1797) | PT_R28 = 0x1c
constant PT_R29 (line 1798) | PT_R29 = 0x1d
constant PT_R3 (line 1799) | PT_R3 = 0x3
constant PT_R30 (line 1800) | PT_R30 = 0x1e
constant PT_R31 (line 1801) | PT_R31 = 0x1f
constant PT_R4 (line 1802) | PT_R4 = 0x4
constant PT_R5 (line 1803) | PT_R5 = 0x5
constant PT_R6 (line 1804) | PT_R6 = 0x6
constant PT_R7 (line 1805) | PT_R7 = 0x7
constant PT_R8 (line 1806) | PT_R8 = 0x8
constant PT_R9 (line 1807) | PT_R9 = 0x9
constant PT_REGS_COUNT (line 1808) | PT_REGS_COUNT = 0x2c
constant PT_RESULT (line 1809) | PT_RESULT = 0x2b
constant PT_SOFTE (line 1810) | PT_SOFTE = 0x27
constant PT_TRAP (line 1811) | PT_TRAP = 0x28
constant PT_VR0 (line 1812) | PT_VR0 = 0x52
constant PT_VRSAVE (line 1813) | PT_VRSAVE = 0x94
constant PT_VSCR (line 1814) | PT_VSCR = 0x93
constant PT_VSR0 (line 1815) | PT_VSR0 = 0x96
constant PT_VSR31 (line 1816) | PT_VSR31 = 0xd4
constant PT_XER (line 1817) | PT_XER = 0x25
constant QNX4_SUPER_MAGIC (line 1818) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1819) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1820) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1821) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1822) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1823) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1824) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1825) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1826) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1827) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1828) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1829) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1830) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1831) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1832) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1833) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1834) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1835) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 1836) | RLIMIT_NPROC = 0x6
constant RLIMIT_RSS (line 1837) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1838) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1839) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1840) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1841) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1842) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1843) | RNDADDENTROPY = 0x80085203
constant RNDADDTOENTCNT (line 1844) | RNDADDTOENTCNT = 0x80045201
constant RNDCLEARPOOL (line 1845) | RNDCLEARPOOL = 0x20005206
constant RNDGETENTCNT (line 1846) | RNDGETENTCNT = 0x40045200
constant RNDGETPOOL (line 1847) | RNDGETPOOL = 0x40085202
constant RNDRESEEDCRNG (line 1848) | RNDRESEEDCRNG = 0x20005207
constant RNDZAPENTCNT (line 1849) | RNDZAPENTCNT = 0x20005204
constant RTAX_ADVMSS (line 1850) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1851) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1852) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1853) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1854) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1855) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1856) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1857) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1858) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1859) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1860) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1861) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1862) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1863) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1864) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1865) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1866) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1867) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1868) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1869) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1870) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1871) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1872) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1873) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1874) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1875) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1876) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1877) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1878) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1879) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1880) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1881) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1882) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1883) | RTC_AIE_OFF = 0x20007002
constant RTC_AIE_ON (line 1884) | RTC_AIE_ON = 0x20007001
constant RTC_ALM_READ (line 1885) | RTC_ALM_READ = 0x40247008
constant RTC_ALM_SET (line 1886) | RTC_ALM_SET = 0x80247007
constant RTC_EPOCH_READ (line 1887) | RTC_EPOCH_READ = 0x4008700d
constant RTC_EPOCH_SET (line 1888) | RTC_EPOCH_SET = 0x8008700e
constant RTC_IRQF (line 1889) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1890) | RTC_IRQP_READ = 0x4008700b
constant RTC_IRQP_SET (line 1891) | RTC_IRQP_SET = 0x8008700c
constant RTC_MAX_FREQ (line 1892) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1893) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1894) | RTC_PIE_OFF = 0x20007006
constant RTC_PIE_ON (line 1895) | RTC_PIE_ON = 0x20007005
constant RTC_PLL_GET (line 1896) | RTC_PLL_GET = 0x40207011
constant RTC_PLL_SET (line 1897) | RTC_PLL_SET = 0x80207012
constant RTC_RD_TIME (line 1898) | RTC_RD_TIME = 0x40247009
constant RTC_SET_TIME (line 1899) | RTC_SET_TIME = 0x8024700a
constant RTC_UF (line 1900) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1901) | RTC_UIE_OFF = 0x20007004
constant RTC_UIE_ON (line 1902) | RTC_UIE_ON = 0x20007003
constant RTC_VL_CLR (line 1903) | RTC_VL_CLR = 0x20007014
constant RTC_VL_READ (line 1904) | RTC_VL_READ = 0x40047013
constant RTC_WIE_OFF (line 1905) | RTC_WIE_OFF = 0x20007010
constant RTC_WIE_ON (line 1906) | RTC_WIE_ON = 0x2000700f
constant RTC_WKALM_RD (line 1907) | RTC_WKALM_RD = 0x40287010
constant RTC_WKALM_SET (line 1908) | RTC_WKALM_SET = 0x8028700f
constant RTF_ADDRCLASSMASK (line 1909) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1910) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1911) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1912) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1913) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1914) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1915) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1916) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1917) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1918) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1919) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1920) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1921) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1922) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1923) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1924) | RTF_MSS = 0x40
constant RTF_MTU (line 1925) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1926) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1927) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1928) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1929) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1930) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1931) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1932) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1933) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1934) | RTF_STATIC = 0x400
constant RTF_THROW (line 1935) | RTF_THROW = 0x2000
constant RTF_UP (line 1936) | RTF_UP = 0x1
constant RTF_WINDOW (line 1937) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1938) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1939) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1940) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1941) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1942) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1943) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1944) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1945) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1946) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1947) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1948) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1949) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1950) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1951) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1952) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1953) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1954) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1955) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1956) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1957) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1958) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1959) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1960) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1961) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1962) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1963) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1964) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1965) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1966) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1967) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1968) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1969) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1970) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1971) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1972) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1973) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1974) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1975) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1976) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1977) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1978) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1979) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1980) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1981) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1982) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1983) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1984) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1985) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1986) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1987) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1988) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1989) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1990) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1991) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1992) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1993) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1994) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1995) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1996) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1997) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1998) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1999) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 2000) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 2001) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 2002) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 2003) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 2004) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 2005) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 2006) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 2007) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 2008) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 2009) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 2010) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 2011) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 2012) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 2013) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 2014) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 2015) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 2016) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 2017) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 2018) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 2019) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 2020) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 2021) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 2022) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 2023) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 2024) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 2025) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 2026) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 2027) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 2028) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 2029) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 2030) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 2031) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 2032) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 2033) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 2034) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 2035) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 2036) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 2037) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 2038) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 2039) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 2040) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 2041) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 2042) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 2043) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 2044) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 2045) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 2046) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 2047) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 2048) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 2049) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 2050) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 2051) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 2052) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 2053) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 2054) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 2055) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 2056) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 2057) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2058) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2059) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2060) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2061) | SFD_NONBLOCK = 0x800
constant SHUT_RD (line 2062) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2063) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2064) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2065) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2066) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2067) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2068) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 2069) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2070) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2071) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2072) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2073) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2074) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2075) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2076) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2077) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2078) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2079) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2080) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2081) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2082) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2083) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2084) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2085) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2086) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2087) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2088) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2089) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2090) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2091) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2092) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2093) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2094) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2095) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2096) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2097) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2098) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2099) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2100) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2101) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2102) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2103) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2104) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2105) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2106) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2107) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2108) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2109) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2110) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2111) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2112) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2113) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2114) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2115) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2116) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2117) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2118) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2119) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2120) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2121) | SIOCGSTAMPNS_NEW = 0x40108907
constant SIOCGSTAMPNS_OLD (line 2122) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2123) | SIOCGSTAMP_NEW = 0x40108906
constant SIOCGSTAMP_OLD (line 2124) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2125) | SIOCINQ = 0x4004667f
constant SIOCOUTQ (line 2126) | SIOCOUTQ = 0x40047473
constant SIOCOUTQNSD (line 2127) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2128) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2129) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2130) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2131) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2132) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2133) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2134) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2135) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2136) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2137) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2138) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2139) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2140) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2141) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2142) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2143) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2144) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2145) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2146) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2147) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2148) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2149) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2150) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2151) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2152) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2153) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2154) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2155) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2156) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2157) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2158) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2159) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2160) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2161) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2162) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2163) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2164) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2165) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2166) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2167) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2168) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2169) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2170) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2171) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2172) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2173) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2174) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2175) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2176) | SOCK_NONBLOCK = 0x800
constant SOCK_PACKET (line 2177) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2178) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2179) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2180) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2181) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2182) | SOL_AAL = 0x109
constant SOL_ALG (line 2183) | SOL_ALG = 0x117
constant SOL_ATM (line 2184) | SOL_ATM = 0x108
constant SOL_CAIF (line 2185) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2186) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2187) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2188) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2189) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2190) | SOL_IP = 0x0
constant SOL_IPV6 (line 2191) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2192) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2193) | SOL_IUCV = 0x115
constant SOL_KCM (line 2194) | SOL_KCM = 0x119
constant SOL_LLC (line 2195) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2196) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2197) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2198) | SOL_NFC = 0x118
constant SOL_PACKET (line 2199) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2200) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2201) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2202) | SOL_RAW = 0xff
constant SOL_RDS (line 2203) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2204) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2205) | SOL_SOCKET = 0x1
constant SOL_TCP (line 2206) | SOL_TCP = 0x6
constant SOL_TIPC (line 2207) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2208) | SOL_TLS = 0x11a
constant SOL_X25 (line 2209) | SOL_X25 = 0x106
constant SOL_XDP (line 2210) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2211) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2212) | SO_ACCEPTCONN = 0x1e
constant SO_ATTACH_BPF (line 2213) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2214) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2215) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2216) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2217) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2218) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2219) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2220) | SO_BROADCAST = 0x6
constant SO_BSDCOMPAT (line 2221) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2222) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2223) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2224) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2225) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2226) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2227) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2228) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2229) | SO_DOMAIN = 0x27
constant SO_DONTROUTE (line 2230) | SO_DONTROUTE = 0x5
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2231) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2232) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2233) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2234) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2235) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2236) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2237) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2238) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2239) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2240) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2241) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2242) | SO_ERROR = 0x4
constant SO_GET_FILTER (line 2243) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2244) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2245) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2246) | SO_KEEPALIVE = 0x9
constant SO_LINGER (line 2247) | SO_LINGER = 0xd
constant SO_LOCK_FILTER (line 2248) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2249) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2250) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2251) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2252) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2253) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2254) | SO_OOBINLINE = 0xa
constant SO_PASSCRED (line 2255) | SO_PASSCRED = 0x14
constant SO_PASSSEC (line 2256) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2257) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2258) | SO_PEERCRED = 0x15
constant SO_PEERGROUPS (line 2259) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2260) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2261) | SO_PEERSEC = 0x1f
constant SO_PRIORITY (line 2262) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2263) | SO_PROTOCOL = 0x26
constant SO_RCVBUF (line 2264) | SO_RCVBUF = 0x8
constant SO_RCVBUFFORCE (line 2265) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2266) | SO_RCVLOWAT = 0x10
constant SO_RCVTIMEO (line 2267) | SO_RCVTIMEO = 0x12
constant SO_RCVTIMEO_NEW (line 2268) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2269) | SO_RCVTIMEO_OLD = 0x12
constant SO_REUSEADDR (line 2270) | SO_REUSEADDR = 0x2
constant SO_REUSEPORT (line 2271) | SO_REUSEPORT = 0xf
constant SO_RXQ_OVFL (line 2272) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2273) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2274) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2275) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2276) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2277) | SO_SNDBUF = 0x7
constant SO_SNDBUFFORCE (line 2278) | SO_SNDBUFFORCE = 0x20
constant SO_SNDLOWAT (line 2279) | SO_SNDLOWAT = 0x11
constant SO_SNDTIMEO (line 2280) | SO_SNDTIMEO = 0x13
constant SO_SNDTIMEO_NEW (line 2281) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2282) | SO_SNDTIMEO_OLD = 0x13
constant SO_TIMESTAMP (line 2283) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2284) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2285) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2286) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2287) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2288) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2289) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2290) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2291) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2292) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2293) | SO_TYPE = 0x3
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2294) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2295) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2296) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2297) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2298) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2299) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2300) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2301) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2302) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2303) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2304) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2305) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2306) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2307) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2308) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2309) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2310) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2311) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2312) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2313) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2314) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2315) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2316) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2317) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2318) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2319) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2320) | STATX_CTIME = 0x80
constant STATX_GID (line 2321) | STATX_GID = 0x10
constant STATX_INO (line 2322) | STATX_INO = 0x100
constant STATX_MODE (line 2323) | STATX_MODE = 0x2
constant STATX_MTIME (line 2324) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2325) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2326) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2327) | STATX_TYPE = 0x1
constant STATX_UID (line 2328) | STATX_UID = 0x8
constant STATX__RESERVED (line 2329) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2330) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2331) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2332) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2333) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2334) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2335) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2336) | S_IEXEC = 0x40
constant S_IFBLK (line 2337) | S_IFBLK = 0x6000
constant S_IFCHR (line 2338) | S_IFCHR = 0x2000
constant S_IFDIR (line 2339) | S_IFDIR = 0x4000
constant S_IFIFO (line 2340) | S_IFIFO = 0x1000
constant S_IFLNK (line 2341) | S_IFLNK = 0xa000
constant S_IFMT (line 2342) | S_IFMT = 0xf000
constant S_IFREG (line 2343) | S_IFREG = 0x8000
constant S_IFSOCK (line 2344) | S_IFSOCK = 0xc000
constant S_IREAD (line 2345) | S_IREAD = 0x100
constant S_IRGRP (line 2346) | S_IRGRP = 0x20
constant S_IROTH (line 2347) | S_IROTH = 0x4
constant S_IRUSR (line 2348) | S_IRUSR = 0x100
constant S_IRWXG (line 2349) | S_IRWXG = 0x38
constant S_IRWXO (line 2350) | S_IRWXO = 0x7
constant S_IRWXU (line 2351) | S_IRWXU = 0x1c0
constant S_ISGID (line 2352) | S_ISGID = 0x400
constant S_ISUID (line 2353) | S_ISUID = 0x800
constant S_ISVTX (line 2354) | S_ISVTX = 0x200
constant S_IWGRP (line 2355) | S_IWGRP = 0x10
constant S_IWOTH (line 2356) | S_IWOTH = 0x2
constant S_IWRITE (line 2357) | S_IWRITE = 0x80
constant S_IWUSR (line 2358) | S_IWUSR = 0x80
constant S_IXGRP (line 2359) | S_IXGRP = 0x8
constant S_IXOTH (line 2360) | S_IXOTH = 0x1
constant S_IXUSR (line 2361) | S_IXUSR = 0x40
constant TAB0 (line 2362) | TAB0 = 0x0
constant TAB1 (line 2363) | TAB1 = 0x400
constant TAB2 (line 2364) | TAB2 = 0x800
constant TAB3 (line 2365) | TAB3 = 0xc00
constant TABDLY (line 2366) | TABDLY = 0xc00
constant TASKSTATS_CMD_ATTR_MAX (line 2367) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2368) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2369) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2370) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2371) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2372) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2373) | TCFLSH = 0x2000741f
constant TCGETA (line 2374) | TCGETA = 0x40147417
constant TCGETS (line 2375) | TCGETS = 0x402c7413
constant TCIFLUSH (line 2376) | TCIFLUSH = 0x0
constant TCIOFF (line 2377) | TCIOFF = 0x2
constant TCIOFLUSH (line 2378) | TCIOFLUSH = 0x2
constant TCION (line 2379) | TCION = 0x3
constant TCOFLUSH (line 2380) | TCOFLUSH = 0x1
constant TCOOFF (line 2381) | TCOOFF = 0x0
constant TCOON (line 2382) | TCOON = 0x1
constant TCP_BPF_IW (line 2383) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2384) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2385) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2386) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2387) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2388) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2389) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2390) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2391) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2392) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2393) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2394) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2395) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2396) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2397) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2398) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2399) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2400) | TCP_INFO = 0xb
constant TCP_INQ (line 2401) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2402) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2403) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2404) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2405) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2406) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2407) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2408) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2409) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2410) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2411) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2412) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2413) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2414) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2415) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2416) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2417) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2418) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2419) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2420) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2421) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2422) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2423) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2424) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2425) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2426) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2427) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2428) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2429) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2430) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2431) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2432) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2433) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2434) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2435) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2436) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2437) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2438) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2439) | TCSAFLUSH = 0x2
constant TCSBRK (line 2440) | TCSBRK = 0x2000741d
constant TCSBRKP (line 2441) | TCSBRKP = 0x5425
constant TCSETA (line 2442) | TCSETA = 0x80147418
constant TCSETAF (line 2443) | TCSETAF = 0x8014741c
constant TCSETAW (line 2444) | TCSETAW = 0x80147419
constant TCSETS (line 2445) | TCSETS = 0x802c7414
constant TCSETSF (line 2446) | TCSETSF = 0x802c7416
constant TCSETSW (line 2447) | TCSETSW = 0x802c7415
constant TCXONC (line 2448) | TCXONC = 0x2000741e
constant TIMER_ABSTIME (line 2449) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2450) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2451) | TIOCCONS = 0x541d
constant TIOCEXCL (line 2452) | TIOCEXCL = 0x540c
constant TIOCGDEV (line 2453) | TIOCGDEV = 0x40045432
constant TIOCGETC (line 2454) | TIOCGETC = 0x40067412
constant TIOCGETD (line 2455) | TIOCGETD = 0x5424
constant TIOCGETP (line 2456) | TIOCGETP = 0x40067408
constant TIOCGEXCL (line 2457) | TIOCGEXCL = 0x40045440
constant TIOCGICOUNT (line 2458) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2459) | TIOCGISO7816 = 0x40285442
constant TIOCGLCKTRMIOS (line 2460) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGLTC (line 2461) | TIOCGLTC = 0x40067474
constant TIOCGPGRP (line 2462) | TIOCGPGRP = 0x40047477
constant TIOCGPKT (line 2463) | TIOCGPKT = 0x40045438
constant TIOCGPTLCK (line 2464) | TIOCGPTLCK = 0x40045439
constant TIOCGPTN (line 2465) | TIOCGPTN = 0x40045430
constant TIOCGPTPEER (line 2466) | TIOCGPTPEER = 0x20005441
constant TIOCGRS485 (line 2467) | TIOCGRS485 = 0x542e
constant TIOCGSERIAL (line 2468) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2469) | TIOCGSID = 0x5429
constant TIOCGSOFTCAR (line 2470) | TIOCGSOFTCAR = 0x5419
constant TIOCGWINSZ (line 2471) | TIOCGWINSZ = 0x40087468
constant TIOCINQ (line 2472) | TIOCINQ = 0x4004667f
constant TIOCLINUX (line 2473) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2474) | TIOCMBIC = 0x5417
constant TIOCMBIS (line 2475) | TIOCMBIS = 0x5416
constant TIOCMGET (line 2476) | TIOCMGET = 0x5415
constant TIOCMIWAIT (line 2477) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2478) | TIOCMSET = 0x5418
constant TIOCM_CAR (line 2479) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2480) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2481) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2482) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2483) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2484) | TIOCM_LE = 0x1
constant TIOCM_LOOP (line 2485) | TIOCM_LOOP = 0x8000
constant TIOCM_OUT1 (line 2486) | TIOCM_OUT1 = 0x2000
constant TIOCM_OUT2 (line 2487) | TIOCM_OUT2 = 0x4000
constant TIOCM_RI (line 2488) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2489) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2490) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2491) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2492) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2493) | TIOCNOTTY = 0x5422
constant TIOCNXCL (line 2494) | TIOCNXCL = 0x540d
constant TIOCOUTQ (line 2495) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 2496) | TIOCPKT = 0x5420
constant TIOCPKT_DATA (line 2497) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2498) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2499) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2500) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2501) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2502) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2503) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2504) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2505) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2506) | TIOCSCTTY = 0x540e
constant TIOCSERCONFIG (line 2507) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2508) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2509) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2510) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2511) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2512) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2513) | TIOCSERSWILD = 0x5455
constant TIOCSER_TEMT (line 2514) | TIOCSER_TEMT = 0x1
constant TIOCSETC (line 2515) | TIOCSETC = 0x80067411
constant TIOCSETD (line 2516) | TIOCSETD = 0x5423
constant TIOCSETN (line 2517) | TIOCSETN = 0x8006740a
constant TIOCSETP (line 2518) | TIOCSETP = 0x80067409
constant TIOCSIG (line 2519) | TIOCSIG = 0x80045436
constant TIOCSISO7816 (line 2520) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2521) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSLTC (line 2522) | TIOCSLTC = 0x80067475
constant TIOCSPGRP (line 2523) | TIOCSPGRP = 0x80047476
constant TIOCSPTLCK (line 2524) | TIOCSPTLCK = 0x80045431
constant TIOCSRS485 (line 2525) | TIOCSRS485 = 0x542f
constant TIOCSSERIAL (line 2526) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2527) | TIOCSSOFTCAR = 0x541a
constant TIOCSTART (line 2528) | TIOCSTART = 0x2000746e
constant TIOCSTI (line 2529) | TIOCSTI = 0x5412
constant TIOCSTOP (line 2530) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 2531) | TIOCSWINSZ = 0x80087467
constant TIOCVHANGUP (line 2532) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2533) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2534) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2535) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2536) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2537) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2538) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2539) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2540) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2541) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2542) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2543) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2544) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2545) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2546) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2547) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2548) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2549) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2550) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2551) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2552) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2553) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2554) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2555) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2556) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2557) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2558) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2559) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2560) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2561) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2562) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2563) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2564) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2565) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2566) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2567) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2568) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2569) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2570) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2571) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2572) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2573) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2574) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2575) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2576) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2577) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2578) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2579) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2580) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2581) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2582) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2583) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2584) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2585) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2586) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2587) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2588) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2589) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2590) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2591) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2592) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2593) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2594) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2595) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2596) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2597) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2598) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2599) | TOSTOP = 0x400000
constant TPACKET_ALIGNMENT (line 2600) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2601) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2602) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2603) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2604) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2605) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2606) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2607) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2608) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2609) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2610) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2611) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2612) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2613) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2614) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2615) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2616) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2617) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2618) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2619) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2620) | TUNATTACHFILTER = 0x801054d5
constant TUNDETACHFILTER (line 2621) | TUNDETACHFILTER = 0x801054d6
constant TUNGETDEVNETNS (line 2622) | TUNGETDEVNETNS = 0x200054e3
constant TUNGETFEATURES (line 2623) | TUNGETFEATURES = 0x400454cf
constant TUNGETFILTER (line 2624) | TUNGETFILTER = 0x401054db
constant TUNGETIFF (line 2625) | TUNGETIFF = 0x400454d2
constant TUNGETSNDBUF (line 2626) | TUNGETSNDBUF = 0x400454d3
constant TUNGETVNETBE (line 2627) | TUNGETVNETBE = 0x400454df
constant TUNGETVNETHDRSZ (line 2628) | TUNGETVNETHDRSZ = 0x400454d7
constant TUNGETVNETLE (line 2629) | TUNGETVNETLE = 0x400454dd
constant TUNSETCARRIER (line 2630) | TUNSETCARRIER = 0x800454e2
constant TUNSETDEBUG (line 2631) | TUNSETDEBUG = 0x800454c9
constant TUNSETFILTEREBPF (line 2632) | TUNSETFILTEREBPF = 0x400454e1
constant TUNSETGROUP (line 2633) | TUNSETGROUP = 0x800454ce
constant TUNSETIFF (line 2634) | TUNSETIFF = 0x800454ca
constant TUNSETIFINDEX (line 2635) | TUNSETIFINDEX = 0x800454da
constant TUNSETLINK (line 2636) | TUNSETLINK = 0x800454cd
constant TUNSETNOCSUM (line 2637) | TUNSETNOCSUM = 0x800454c8
constant TUNSETOFFLOAD (line 2638) | TUNSETOFFLOAD = 0x800454d0
constant TUNSETOWNER (line 2639) | TUNSETOWNER = 0x800454cc
constant TUNSETPERSIST (line 2640) | TUNSETPERSIST = 0x800454cb
constant TUNSETQUEUE (line 2641) | TUNSETQUEUE = 0x800454d9
constant TUNSETSNDBUF (line 2642) | TUNSETSNDBUF = 0x800454d4
constant TUNSETSTEERINGEBPF (line 2643) | TUNSETSTEERINGEBPF = 0x400454e0
constant TUNSETTXFILTER (line 2644) | TUNSETTXFILTER = 0x800454d1
constant TUNSETVNETBE (line 2645) | TUNSETVNETBE = 0x800454de
constant TUNSETVNETHDRSZ (line 2646) | TUNSETVNETHDRSZ = 0x800454d8
constant TUNSETVNETLE (line 2647) | TUNSETVNETLE = 0x800454dc
constant UBI_IOCATT (line 2648) | UBI_IOCATT = 0x80186f40
constant UBI_IOCDET (line 2649) | UBI_IOCDET = 0x80046f41
constant UBI_IOCEBCH (line 2650) | UBI_IOCEBCH = 0x80044f02
constant UBI_IOCEBER (line 2651) | UBI_IOCEBER = 0x80044f01
constant UBI_IOCEBISMAP (line 2652) | UBI_IOCEBISMAP = 0x40044f05
constant UBI_IOCEBMAP (line 2653) | UBI_IOCEBMAP = 0x80084f03
constant UBI_IOCEBUNMAP (line 2654) | UBI_IOCEBUNMAP = 0x80044f04
constant UBI_IOCMKVOL (line 2655) | UBI_IOCMKVOL = 0x80986f00
constant UBI_IOCRMVOL (line 2656) | UBI_IOCRMVOL = 0x80046f01
constant UBI_IOCRNVOL (line 2657) | UBI_IOCRNVOL = 0x91106f03
constant UBI_IOCRPEB (line 2658) | UBI_IOCRPEB = 0x80046f04
constant UBI_IOCRSVOL (line 2659) | UBI_IOCRSVOL = 0x800c6f02
constant UBI_IOCSETVOLPROP (line 2660) | UBI_IOCSETVOLPROP = 0x80104f06
constant UBI_IOCSPEB (line 2661) | UBI_IOCSPEB = 0x80046f05
constant UBI_IOCVOLCRBLK (line 2662) | UBI_IOCVOLCRBLK = 0x80804f07
constant UBI_IOCVOLRMBLK (line 2663) | UBI_IOCVOLRMBLK = 0x20004f08
constant UBI_IOCVOLUP (line 2664) | UBI_IOCVOLUP = 0x80084f00
constant UDF_SUPER_MAGIC (line 2665) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2666) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2667) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2668) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2669) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2670) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2671) | VDISCARD = 0x10
constant VEOF (line 2672) | VEOF = 0x4
constant VEOL (line 2673) | VEOL = 0x6
constant VEOL2 (line 2674) | VEOL2 = 0x8
constant VERASE (line 2675) | VERASE = 0x2
constant VINTR (line 2676) | VINTR = 0x0
constant VKILL (line 2677) | VKILL = 0x3
constant VLNEXT (line 2678) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2679) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2680) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2681) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2682) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2683) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2684) | VMIN = 0x5
constant VM_SOCKETS_INVALID_VERSION (line 2685) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2686) | VQUIT = 0x1
constant VREPRINT (line 2687) | VREPRINT = 0xb
constant VSTART (line 2688) | VSTART = 0xd
constant VSTOP (line 2689) | VSTOP = 0xe
constant VSUSP (line 2690) | VSUSP = 0xc
constant VSWTC (line 2691) | VSWTC = 0x9
constant VT0 (line 2692) | VT0 = 0x0
constant VT1 (line 2693) | VT1 = 0x10000
constant VTDLY (line 2694) | VTDLY = 0x10000
constant VTIME (line 2695) | VTIME = 0x7
constant VWERASE (line 2696) | VWERASE = 0xa
constant WALL (line 2697) | WALL = 0x40000000
constant WCLONE (line 2698) | WCLONE = 0x80000000
constant WCONTINUED (line 2699) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2700) | WDIOC_GETBOOTSTATUS = 0x40045702
constant WDIOC_GETPRETIMEOUT (line 2701) | WDIOC_GETPRETIMEOUT = 0x40045709
constant WDIOC_GETSTATUS (line 2702) | WDIOC_GETSTATUS = 0x40045701
constant WDIOC_GETSUPPORT (line 2703) | WDIOC_GETSUPPORT = 0x40285700
constant WDIOC_GETTEMP (line 2704) | WDIOC_GETTEMP = 0x40045703
constant WDIOC_GETTIMELEFT (line 2705) | WDIOC_GETTIMELEFT = 0x4004570a
constant WDIOC_GETTIMEOUT (line 2706) | WDIOC_GETTIMEOUT = 0x40045707
constant WDIOC_KEEPALIVE (line 2707) | WDIOC_KEEPALIVE = 0x40045705
constant WDIOC_SETOPTIONS (line 2708) | WDIOC_SETOPTIONS = 0x40045704
constant WDIOC_SETPRETIMEOUT (line 2709) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2710) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2711) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2712) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2713) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2714) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2715) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2716) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2717) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2718) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2719) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2720) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2721) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2722) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2723) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2724) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2725) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2726) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2727) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2728) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2729) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2730) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2731) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2732) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2733) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2734) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2735) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2736) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2737) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2738) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2739) | WIN_READ = 0x20
constant WIN_READDMA (line 2740) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2741) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2742) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2743) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2744) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2745) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2746) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2747) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2748) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2749) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2750) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2751) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2752) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2753) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2754) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2755) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2756) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2757) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2758) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2759) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2760) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2761) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2762) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2763) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2764) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2765) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2766) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2767) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2768) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2769) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2770) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2771) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2772) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2773) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2774) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2775) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2776) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2777) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2778) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2779) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2780) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2781) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2782) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2783) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2784) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2785) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2786) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2787) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2788) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2789) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2790) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2791) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2792) | WNOHANG = 0x1
constant WNOTHREAD (line 2793) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2794) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2795) | WORDSIZE = 0x40
constant WSTOPPED (line 2796) | WSTOPPED = 0x2
constant WUNTRACED (line 2797) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2798) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2799) | XATTR_REPLACE = 0x2
constant XCASE (line 2800) | XCASE = 0x4000
constant XDP_COPY (line 2801) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2802) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2803) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2804) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2805) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2806) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2807) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2808) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2809) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2810) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2811) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2812) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2813) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2814) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2815) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2816) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2817) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2818) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2819) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2820) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2821) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2822) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2823) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2824) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2825) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2826) | XTABS = 0xc00
constant Z3FOLD_MAGIC (line 2827) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2828) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2833) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2834) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2835) | EADDRINUSE = syscall.Errno(0x62)
constant EADDRNOTAVAIL (line 2836) | EADDRNOTAVAIL = syscall.Errno(0x63)
constant EADV (line 2837) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2838) | EAFNOSUPPORT = syscall.Errno(0x61)
constant EAGAIN (line 2839) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2840) | EALREADY = syscall.Errno(0x72)
constant EBADE (line 2841) | EBADE = syscall.Errno(0x34)
constant EBADF (line 2842) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2843) | EBADFD = syscall.Errno(0x4d)
constant EBADMSG (line 2844) | EBADMSG = syscall.Errno(0x4a)
constant EBADR (line 2845) | EBADR = syscall.Errno(0x35)
constant EBADRQC (line 2846) | EBADRQC = syscall.Errno(0x38)
constant EBADSLT (line 2847) | EBADSLT = syscall.Errno(0x39)
constant EBFONT (line 2848) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2849) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2850) | ECANCELED = syscall.Errno(0x7d)
constant ECHILD (line 2851) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2852) | ECHRNG = syscall.Errno(0x2c)
constant ECOMM (line 2853) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2854) | ECONNABORTED = syscall.Errno(0x67)
constant ECONNREFUSED (line 2855) | ECONNREFUSED = syscall.Errno(0x6f)
constant ECONNRESET (line 2856) | ECONNRESET = syscall.Errno(0x68)
constant EDEADLK (line 2857) | EDEADLK = syscall.Errno(0x23)
constant EDEADLOCK (line 2858) | EDEADLOCK = syscall.Errno(0x3a)
constant EDESTADDRREQ (line 2859) | EDESTADDRREQ = syscall.Errno(0x59)
constant EDOM (line 2860) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2861) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2862) | EDQUOT = syscall.Errno(0x7a)
constant EEXIST (line 2863) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2864) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2865) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2866) | EHOSTDOWN = syscall.Errno(0x70)
constant EHOSTUNREACH (line 2867) | EHOSTUNREACH = syscall.Errno(0x71)
constant EHWPOISON (line 2868) | EHWPOISON = syscall.Errno(0x85)
constant EIDRM (line 2869) | EIDRM = syscall.Errno(0x2b)
constant EILSEQ (line 2870) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 2871) | EINPROGRESS = syscall.Errno(0x73)
constant EINTR (line 2872) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2873) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2874) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2875) | EISCONN = syscall.Errno(0x6a)
constant EISDIR (line 2876) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2877) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2878) | EKEYEXPIRED = syscall.Errno(0x7f)
constant EKEYREJECTED (line 2879) | EKEYREJECTED = syscall.Errno(0x81)
constant EKEYREVOKED (line 2880) | EKEYREVOKED = syscall.Errno(0x80)
constant EL2HLT (line 2881) | EL2HLT = syscall.Errno(0x33)
constant EL2NSYNC (line 2882) | EL2NSYNC = syscall.Errno(0x2d)
constant EL3HLT (line 2883) | EL3HLT = syscall.Errno(0x2e)
constant EL3RST (line 2884) | EL3RST = syscall.Errno(0x2f)
constant ELIBACC (line 2885) | ELIBACC = syscall.Errno(0x4f)
constant ELIBBAD (line 2886) | ELIBBAD = syscall.Errno(0x50)
constant ELIBEXEC (line 2887) | ELIBEXEC = syscall.Errno(0x53)
constant ELIBMAX (line 2888) | ELIBMAX = syscall.Errno(0x52)
constant ELIBSCN (line 2889) | ELIBSCN = syscall.Errno(0x51)
constant ELNRNG (line 2890) | ELNRNG = syscall.Errno(0x30)
constant ELOOP (line 2891) | ELOOP = syscall.Errno(0x28)
constant EMEDIUMTYPE (line 2892) | EMEDIUMTYPE = syscall.Errno(0x7c)
constant EMFILE (line 2893) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2894) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2895) | EMSGSIZE = syscall.Errno(0x5a)
constant EMULTIHOP (line 2896) | EMULTIHOP = syscall.Errno(0x48)
constant ENAMETOOLONG (line 2897) | ENAMETOOLONG = syscall.Errno(0x24)
constant ENAVAIL (line 2898) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2899) | ENETDOWN = syscall.Errno(0x64)
constant ENETRESET (line 2900) | ENETRESET = syscall.Errno(0x66)
constant ENETUNREACH (line 2901) | ENETUNREACH = syscall.Errno(0x65)
constant ENFILE (line 2902) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2903) | ENOANO = syscall.Errno(0x37)
constant ENOBUFS (line 2904) | ENOBUFS = syscall.Errno(0x69)
constant ENOCSI (line 2905) | ENOCSI = syscall.Errno(0x32)
constant ENODATA (line 2906) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2907) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2908) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2909) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2910) | ENOKEY = syscall.Errno(0x7e)
constant ENOLCK (line 2911) | ENOLCK = syscall.Errno(0x25)
constant ENOLINK (line 2912) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2913) | ENOMEDIUM = syscall.Errno(0x7b)
constant ENOMEM (line 2914) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2915) | ENOMSG = syscall.Errno(0x2a)
constant ENONET (line 2916) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2917) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2918) | ENOPROTOOPT = syscall.Errno(0x5c)
constant ENOSPC (line 2919) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2920) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2921) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2922) | ENOSYS = syscall.Errno(0x26)
constant ENOTBLK (line 2923) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2924) | ENOTCONN = syscall.Errno(0x6b)
constant ENOTDIR (line 2925) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2926) | ENOTEMPTY = syscall.Errno(0x27)
constant ENOTNAM (line 2927) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2928) | ENOTRECOVERABLE = syscall.Errno(0x83)
constant ENOTSOCK (line 2929) | ENOTSOCK = syscall.Errno(0x58)
constant ENOTSUP (line 2930) | ENOTSUP = syscall.Errno(0x5f)
constant ENOTTY (line 2931) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2932) | ENOTUNIQ = syscall.Errno(0x4c)
constant ENXIO (line 2933) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2934) | EOPNOTSUPP = syscall.Errno(0x5f)
constant EOVERFLOW (line 2935) | EOVERFLOW = syscall.Errno(0x4b)
constant EOWNERDEAD (line 2936) | EOWNERDEAD = syscall.Errno(0x82)
constant EPERM (line 2937) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2938) | EPFNOSUPPORT = syscall.Errno(0x60)
constant EPIPE (line 2939) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2940) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2941) | EPROTONOSUPPORT = syscall.Errno(0x5d)
constant EPROTOTYPE (line 2942) | EPROTOTYPE = syscall.Errno(0x5b)
constant ERANGE (line 2943) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2944) | EREMCHG = syscall.Errno(0x4e)
constant EREMOTE (line 2945) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2946) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2947) | ERESTART = syscall.Errno(0x55)
constant ERFKILL (line 2948) | ERFKILL = syscall.Errno(0x84)
constant EROFS (line 2949) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2950) | ESHUTDOWN = syscall.Errno(0x6c)
constant ESOCKTNOSUPPORT (line 2951) | ESOCKTNOSUPPORT = syscall.Errno(0x5e)
constant ESPIPE (line 2952) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2953) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2954) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2955) | ESTALE = syscall.Errno(0x74)
constant ESTRPIPE (line 2956) | ESTRPIPE = syscall.Errno(0x56)
constant ETIME (line 2957) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2958) | ETIMEDOUT = syscall.Errno(0x6e)
constant ETOOMANYREFS (line 2959) | ETOOMANYREFS = syscall.Errno(0x6d)
constant ETXTBSY (line 2960) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2961) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2962) | EUNATCH = syscall.Errno(0x31)
constant EUSERS (line 2963) | EUSERS = syscall.Errno(0x57)
constant EWOULDBLOCK (line 2964) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2965) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2966) | EXFULL = syscall.Errno(0x36)
constant SIGABRT (line 2971) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2972) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2973) | SIGBUS = syscall.Signal(0x7)
constant SIGCHLD (line 2974) | SIGCHLD = syscall.Signal(0x11)
constant SIGCLD (line 2975) | SIGCLD = syscall.Signal(0x11)
constant SIGCONT (line 2976) | SIGCONT = syscall.Signal(0x12)
constant SIGFPE (line 2977) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2978) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2979) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2980) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2981) | SIGIO = syscall.Signal(0x1d)
constant SIGIOT (line 2982) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2983) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2984) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2985) | SIGPOLL = syscall.Signal(0x1d)
constant SIGPROF (line 2986) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2987) | SIGPWR = syscall.Signal(0x1e)
constant SIGQUIT (line 2988) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2989) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTKFLT (line 2990) | SIGSTKFLT = syscall.Signal(0x10)
constant SIGSTOP (line 2991) | SIGSTOP = syscall.Signal(0x13)
constant SIGSYS (line 2992) | SIGSYS = syscall.Signal(0x1f)
constant SIGTERM (line 2993) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2994) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2995) | SIGTSTP = syscall.Signal(0x14)
constant SIGTTIN (line 2996) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2997) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2998) | SIGURG = syscall.Signal(0x17)
constant SIGUSR1 (line 2999) | SIGUSR1 = syscall.Signal(0xa)
constant SIGUSR2 (line 3000) | SIGUSR2 = syscall.Signal(0xc)
constant SIGVTALRM (line 3001) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 3002) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 3003) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 3004) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x80081270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x40081271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x1261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x1265
constant BLKFRASET (line 183) | BLKFRASET = 0x1264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x1260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x80081272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x127b
constant BLKRAGET (line 187) | BLKRAGET = 0x1263
constant BLKRASET (line 188) | BLKRASET = 0x1262
constant BLKROGET (line 189) | BLKROGET = 0x125e
constant BLKROSET (line 190) | BLKROSET = 0x125d
constant BLKRRPART (line 191) | BLKRRPART = 0x125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x1267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x1266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x1268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x800
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x1000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0x5
constant F_GETLK64 (line 713) | F_GETLK64 = 0x5
constant F_GETOWN (line 714) | F_GETOWN = 0x9
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0x6
constant F_SETLK64 (line 737) | F_SETLK64 = 0x6
constant F_SETLKW (line 738) | F_SETLKW = 0x7
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0x7
constant F_SETOWN (line 740) | F_SETOWN = 0x8
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x400
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x2
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x8000
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x800
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x200
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x1000
constant IXON (line 1070) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x100
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x2000
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x4000
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 1218) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1219) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1220) | MAP_STACK = 0x20000
constant MAP_SYNC (line 1221) | MAP_SYNC = 0x80000
constant MAP_TYPE (line 1222) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1223) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1224) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1225) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1226) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1227) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1228) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1229) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1230) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1231) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1232) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1233) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1234) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1235) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1236) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1237) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1238) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1239) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1240) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1241) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1242) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1243) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1244) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1245) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1246) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1247) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1248) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1249) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1250) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1251) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1252) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1253) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1254) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1255) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1256) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1257) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1258) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1259) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1260) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1261) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1262) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1263) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1264) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1265) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1266) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1267) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1268) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1269) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1270) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1271) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1272) | MSG_FIN = 0x200
constant MSG_MORE (line 1273) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1274) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1275) | MSG_OOB = 0x1
constant MSG_PEEK (line 1276) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1277) | MSG_PROXY = 0x10
constant MSG_RST (line 1278) | MSG_RST = 0x1000
constant MSG_SYN (line 1279) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1280) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1281) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1282) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1283) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1284) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1285) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1286) | MS_ASYNC = 0x1
constant MS_BIND (line 1287) | MS_BIND = 0x1000
constant MS_BORN (line 1288) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1289) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1290) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1291) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1292) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1293) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1294) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1295) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1296) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1297) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1298) | MS_NOATIME = 0x400
constant MS_NODEV (line 1299) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1300) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1301) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1302) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1303) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1304) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1305) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1306) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1307) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1308) | MS_RDONLY = 0x1
constant MS_REC (line 1309) | MS_REC = 0x4000
constant MS_RELATIME (line 1310) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1311) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1312) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1313) | MS_SHARED = 0x100000
constant MS_SILENT (line 1314) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1315) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1316) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1317) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1318) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1319) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1320) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1321) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1322) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1323) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1324) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1325) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1326) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1327) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1328) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1329) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1330) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1331) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1332) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1333) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1334) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1335) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1336) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1337) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1338) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1339) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1340) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1341) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1342) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1343) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1344) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1345) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1346) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1347) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1348) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1349) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1350) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1351) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1352) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1353) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1354) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1355) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1356) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1357) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1358) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1359) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1360) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1361) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1362) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1363) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1364) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1365) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1366) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1367) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1368) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1369) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1370) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1371) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1372) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1373) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1374) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1375) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1376) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1377) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1378) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1379) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1380) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1381) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1382) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1383) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1384) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1385) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1386) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1387) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1388) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1389) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1390) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1391) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1392) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1393) | NL0 = 0x0
constant NL1 (line 1394) | NL1 = 0x100
constant NLA_ALIGNTO (line 1395) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1396) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1397) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1398) | NLA_HDRLEN = 0x4
constant NLDLY (line 1399) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1400) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1401) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1402) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1403) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1404) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1405) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1406) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1407) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1408) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1409) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1410) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1411) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1412) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1413) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1414) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1415) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1416) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1417) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1418) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1419) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1420) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1421) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1422) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1423) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1424) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1425) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1426) | NS_GET_NSTYPE = 0xb703
constant NS_GET_OWNER_UID (line 1427) | NS_GET_OWNER_UID = 0xb704
constant NS_GET_PARENT (line 1428) | NS_GET_PARENT = 0xb702
constant NS_GET_USERNS (line 1429) | NS_GET_USERNS = 0xb701
constant OCFS2_SUPER_MAGIC (line 1430) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1431) | OCRNL = 0x8
constant OFDEL (line 1432) | OFDEL = 0x80
constant OFILL (line 1433) | OFILL = 0x40
constant OLCUC (line 1434) | OLCUC = 0x2
constant ONLCR (line 1435) | ONLCR = 0x4
constant ONLRET (line 1436) | ONLRET = 0x20
constant ONOCR (line 1437) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1438) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1439) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1440) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1441) | O_ACCMODE = 0x3
constant O_APPEND (line 1442) | O_APPEND = 0x400
constant O_ASYNC (line 1443) | O_ASYNC = 0x2000
constant O_CLOEXEC (line 1444) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1445) | O_CREAT = 0x40
constant O_DIRECT (line 1446) | O_DIRECT = 0x4000
constant O_DIRECTORY (line 1447) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1448) | O_DSYNC = 0x1000
constant O_EXCL (line 1449) | O_EXCL = 0x80
constant O_FSYNC (line 1450) | O_FSYNC = 0x101000
constant O_LARGEFILE (line 1451) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1452) | O_NDELAY = 0x800
constant O_NOATIME (line 1453) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1454) | O_NOCTTY = 0x100
constant O_NOFOLLOW (line 1455) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1456) | O_NONBLOCK = 0x800
constant O_PATH (line 1457) | O_PATH = 0x200000
constant O_RDONLY (line 1458) | O_RDONLY = 0x0
constant O_RDWR (line 1459) | O_RDWR = 0x2
constant O_RSYNC (line 1460) | O_RSYNC = 0x101000
constant O_SYNC (line 1461) | O_SYNC = 0x101000
constant O_TMPFILE (line 1462) | O_TMPFILE = 0x410000
constant O_TRUNC (line 1463) | O_TRUNC = 0x200
constant O_WRONLY (line 1464) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1465) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1466) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1467) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1468) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1469) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1470) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1471) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1472) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1473) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1474) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1475) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1476) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1477) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1478) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1479) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1480) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1481) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1482) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1483) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1484) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1485) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1486) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1487) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1488) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1489) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1490) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1491) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1492) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1493) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1494) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1495) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1496) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1497) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1498) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1499) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1500) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1501) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1502) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1503) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1504) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1505) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1506) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1507) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1508) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1509) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1510) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1511) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1512) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1513) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1514) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1515) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1516) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1517) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1518) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1519) | PARITY_NONE = 0x1
constant PARMRK (line 1520) | PARMRK = 0x8
constant PARODD (line 1521) | PARODD = 0x200
constant PENDIN (line 1522) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1523) | PERF_EVENT_IOC_DISABLE = 0x2401
constant PERF_EVENT_IOC_ENABLE (line 1524) | PERF_EVENT_IOC_ENABLE = 0x2400
constant PERF_EVENT_IOC_ID (line 1525) | PERF_EVENT_IOC_ID = 0x80082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1526) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1527) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409
constant PERF_EVENT_IOC_PERIOD (line 1528) | PERF_EVENT_IOC_PERIOD = 0x40082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1529) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1530) | PERF_EVENT_IOC_REFRESH = 0x2402
constant PERF_EVENT_IOC_RESET (line 1531) | PERF_EVENT_IOC_RESET = 0x2403
constant PERF_EVENT_IOC_SET_BPF (line 1532) | PERF_EVENT_IOC_SET_BPF = 0x40042408
constant PERF_EVENT_IOC_SET_FILTER (line 1533) | PERF_EVENT_IOC_SET_FILTER = 0x40082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1534) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405
constant PIPEFS_MAGIC (line 1535) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1536) | PPPIOCATTACH = 0x4004743d
constant PPPIOCATTCHAN (line 1537) | PPPIOCATTCHAN = 0x40047438
constant PPPIOCCONNECT (line 1538) | PPPIOCCONNECT = 0x4004743a
constant PPPIOCDETACH (line 1539) | PPPIOCDETACH = 0x4004743c
constant PPPIOCDISCONN (line 1540) | PPPIOCDISCONN = 0x7439
constant PPPIOCGASYNCMAP (line 1541) | PPPIOCGASYNCMAP = 0x80047458
constant PPPIOCGCHAN (line 1542) | PPPIOCGCHAN = 0x80047437
constant PPPIOCGDEBUG (line 1543) | PPPIOCGDEBUG = 0x80047441
constant PPPIOCGFLAGS (line 1544) | PPPIOCGFLAGS = 0x8004745a
constant PPPIOCGIDLE (line 1545) | PPPIOCGIDLE = 0x8010743f
constant PPPIOCGL2TPSTATS (line 1546) | PPPIOCGL2TPSTATS = 0x80487436
constant PPPIOCGMRU (line 1547) | PPPIOCGMRU = 0x80047453
constant PPPIOCGNPMODE (line 1548) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1549) | PPPIOCGRASYNCMAP = 0x80047455
constant PPPIOCGUNIT (line 1550) | PPPIOCGUNIT = 0x80047456
constant PPPIOCGXASYNCMAP (line 1551) | PPPIOCGXASYNCMAP = 0x80207450
constant PPPIOCNEWUNIT (line 1552) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1553) | PPPIOCSACTIVE = 0x40107446
constant PPPIOCSASYNCMAP (line 1554) | PPPIOCSASYNCMAP = 0x40047457
constant PPPIOCSCOMPRESS (line 1555) | PPPIOCSCOMPRESS = 0x4010744d
constant PPPIOCSDEBUG (line 1556) | PPPIOCSDEBUG = 0x40047440
constant PPPIOCSFLAGS (line 1557) | PPPIOCSFLAGS = 0x40047459
constant PPPIOCSMAXCID (line 1558) | PPPIOCSMAXCID = 0x40047451
constant PPPIOCSMRRU (line 1559) | PPPIOCSMRRU = 0x4004743b
constant PPPIOCSMRU (line 1560) | PPPIOCSMRU = 0x40047452
constant PPPIOCSNPMODE (line 1561) | PPPIOCSNPMODE = 0x4008744b
constant PPPIOCSPASS (line 1562) | PPPIOCSPASS = 0x40107447
constant PPPIOCSRASYNCMAP (line 1563) | PPPIOCSRASYNCMAP = 0x40047454
constant PPPIOCSXASYNCMAP (line 1564) | PPPIOCSXASYNCMAP = 0x4020744f
constant PPPIOCXFERUNIT (line 1565) | PPPIOCXFERUNIT = 0x744e
constant PRIO_PGRP (line 1566) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1567) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1568) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1569) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1570) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1571) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1572) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1573) | PROT_NONE = 0x0
constant PROT_READ (line 1574) | PROT_READ = 0x1
constant PROT_WRITE (line 1575) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1576) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1577) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1578) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1579) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1580) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1581) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1582) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1583) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1584) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1585) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1586) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1587) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1588) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1589) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1590) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1591) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1592) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1593) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1594) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1595) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1596) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1597) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1598) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1599) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1600) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1601) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1602) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1603) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1604) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1605) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1606) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1607) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1608) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1609) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1610) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1611) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1612) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1613) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1614) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1615) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1616) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1617) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1618) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1619) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1620) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1621) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1622) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1623) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1624) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1625) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1626) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1627) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1628) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1629) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1630) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1631) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1632) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1633) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1634) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1635) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1636) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1637) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1638) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1639) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1640) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1641) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1642) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1643) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1644) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1645) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1646) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1647) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1648) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1649) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1650) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1651) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1652) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1653) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1654) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1655) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1656) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1657) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1658) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1659) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1660) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1661) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1662) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1663) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1664) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1665) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1666) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1667) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1668) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1669) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1670) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1671) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1672) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1673) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1674) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1675) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1676) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1677) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1678) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1679) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1680) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1681) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1682) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1683) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1684) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1685) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1686) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1687) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1688) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1689) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1690) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1691) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1692) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1693) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1694) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1695) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1696) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1697) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1698) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1699) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1700) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1701) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1702) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1703) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1704) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1705) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETREGS (line 1706) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1707) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1708) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1709) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1710) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_INTERRUPT (line 1711) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1712) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1713) | PTRACE_LISTEN = 0x4208
constant PTRACE_O_EXITKILL (line 1714) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1715) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1716) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1717) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1718) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1719) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1720) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1721) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1722) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1723) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1724) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1725) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKSIGINFO (line 1726) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1727) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1728) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKUSR (line 1729) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1730) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKETEXT (line 1731) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKEUSR (line 1732) | PTRACE_POKEUSR = 0x6
constant PTRACE_SECCOMP_GET_FILTER (line 1733) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1734) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1735) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETOPTIONS (line 1736) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1737) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1738) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1739) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1740) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SINGLESTEP (line 1741) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1742) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1743) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1744) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1745) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1746) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_TRACEME (line 1747) | PTRACE_TRACEME = 0x0
constant QNX4_SUPER_MAGIC (line 1748) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1749) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1750) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1751) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1752) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1753) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1754) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1755) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1756) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1757) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1758) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1759) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1760) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1761) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1762) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1763) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1764) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1765) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 1766) | RLIMIT_NPROC = 0x6
constant RLIMIT_RSS (line 1767) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1768) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1769) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1770) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1771) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1772) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1773) | RNDADDENTROPY = 0x40085203
constant RNDADDTOENTCNT (line 1774) | RNDADDTOENTCNT = 0x40045201
constant RNDCLEARPOOL (line 1775) | RNDCLEARPOOL = 0x5206
constant RNDGETENTCNT (line 1776) | RNDGETENTCNT = 0x80045200
constant RNDGETPOOL (line 1777) | RNDGETPOOL = 0x80085202
constant RNDRESEEDCRNG (line 1778) | RNDRESEEDCRNG = 0x5207
constant RNDZAPENTCNT (line 1779) | RNDZAPENTCNT = 0x5204
constant RTAX_ADVMSS (line 1780) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1781) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1782) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1783) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1784) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1785) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1786) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1787) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1788) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1789) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1790) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1791) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1792) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1793) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1794) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1795) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1796) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1797) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1798) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1799) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1800) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1801) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1802) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1803) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1804) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1805) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1806) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1807) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1808) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1809) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1810) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1811) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1812) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1813) | RTC_AIE_OFF = 0x7002
constant RTC_AIE_ON (line 1814) | RTC_AIE_ON = 0x7001
constant RTC_ALM_READ (line 1815) | RTC_ALM_READ = 0x80247008
constant RTC_ALM_SET (line 1816) | RTC_ALM_SET = 0x40247007
constant RTC_EPOCH_READ (line 1817) | RTC_EPOCH_READ = 0x8008700d
constant RTC_EPOCH_SET (line 1818) | RTC_EPOCH_SET = 0x4008700e
constant RTC_IRQF (line 1819) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1820) | RTC_IRQP_READ = 0x8008700b
constant RTC_IRQP_SET (line 1821) | RTC_IRQP_SET = 0x4008700c
constant RTC_MAX_FREQ (line 1822) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1823) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1824) | RTC_PIE_OFF = 0x7006
constant RTC_PIE_ON (line 1825) | RTC_PIE_ON = 0x7005
constant RTC_PLL_GET (line 1826) | RTC_PLL_GET = 0x80207011
constant RTC_PLL_SET (line 1827) | RTC_PLL_SET = 0x40207012
constant RTC_RD_TIME (line 1828) | RTC_RD_TIME = 0x80247009
constant RTC_SET_TIME (line 1829) | RTC_SET_TIME = 0x4024700a
constant RTC_UF (line 1830) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1831) | RTC_UIE_OFF = 0x7004
constant RTC_UIE_ON (line 1832) | RTC_UIE_ON = 0x7003
constant RTC_VL_CLR (line 1833) | RTC_VL_CLR = 0x7014
constant RTC_VL_READ (line 1834) | RTC_VL_READ = 0x80047013
constant RTC_WIE_OFF (line 1835) | RTC_WIE_OFF = 0x7010
constant RTC_WIE_ON (line 1836) | RTC_WIE_ON = 0x700f
constant RTC_WKALM_RD (line 1837) | RTC_WKALM_RD = 0x80287010
constant RTC_WKALM_SET (line 1838) | RTC_WKALM_SET = 0x4028700f
constant RTF_ADDRCLASSMASK (line 1839) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1840) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1841) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1842) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1843) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1844) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1845) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1846) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1847) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1848) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1849) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1850) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1851) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1852) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1853) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1854) | RTF_MSS = 0x40
constant RTF_MTU (line 1855) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1856) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1857) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1858) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1859) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1860) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1861) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1862) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1863) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1864) | RTF_STATIC = 0x400
constant RTF_THROW (line 1865) | RTF_THROW = 0x2000
constant RTF_UP (line 1866) | RTF_UP = 0x1
constant RTF_WINDOW (line 1867) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1868) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1869) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1870) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1871) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1872) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1873) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1874) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1875) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1876) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1877) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1878) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1879) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1880) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1881) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1882) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1883) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1884) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1885) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1886) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1887) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1888) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1889) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1890) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1891) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1892) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1893) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1894) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1895) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1896) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1897) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1898) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1899) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1900) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1901) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1902) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1903) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1904) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1905) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1906) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1907) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1908) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1909) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1910) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1911) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1912) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1913) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1914) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1915) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1916) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1917) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1918) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1919) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1920) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1921) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1922) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1923) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1924) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1925) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1926) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1927) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1928) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1929) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1930) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1931) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1932) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1933) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1934) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 1935) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 1936) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 1937) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 1938) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 1939) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 1940) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 1941) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 1942) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 1943) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 1944) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 1945) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 1946) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 1947) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 1948) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 1949) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 1950) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 1951) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 1952) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 1953) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 1954) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 1955) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 1956) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 1957) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 1958) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 1959) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 1960) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 1961) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 1962) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 1963) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 1964) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 1965) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 1966) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 1967) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 1968) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 1969) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 1970) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 1971) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 1972) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1973) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1974) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 1975) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 1976) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1977) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 1978) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 1979) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 1980) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 1981) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 1982) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 1983) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 1984) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 1985) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 1986) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 1987) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 1988) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 1989) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 1990) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 1991) | SFD_NONBLOCK = 0x800
constant SHUT_RD (line 1992) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1993) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1994) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 1995) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 1996) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 1997) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 1998) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 1999) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2000) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2001) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2002) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2003) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2004) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2005) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2006) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2007) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2008) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2009) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2010) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2011) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2012) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2013) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2014) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2015) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2016) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2017) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2018) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2019) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2020) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2021) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2022) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2023) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2024) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2025) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2026) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2027) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2028) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2029) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2030) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2031) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2032) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2033) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2034) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2035) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2036) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2037) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2038) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2039) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2040) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2041) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2042) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2043) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2044) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2045) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2046) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2047) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2048) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2049) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2050) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2051) | SIOCGSTAMPNS_NEW = 0x80108907
constant SIOCGSTAMPNS_OLD (line 2052) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2053) | SIOCGSTAMP_NEW = 0x80108906
constant SIOCGSTAMP_OLD (line 2054) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2055) | SIOCINQ = 0x541b
constant SIOCOUTQ (line 2056) | SIOCOUTQ = 0x5411
constant SIOCOUTQNSD (line 2057) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2058) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2059) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2060) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2061) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2062) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2063) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2064) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2065) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2066) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2067) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2068) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2069) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2070) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2071) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2072) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2073) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2074) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2075) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2076) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2077) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2078) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2079) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2080) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2081) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2082) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2083) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2084) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2085) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2086) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2087) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2088) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2089) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2090) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2091) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2092) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2093) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2094) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2095) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2096) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2097) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2098) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2099) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2100) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2101) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2102) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2103) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2104) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2105) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2106) | SOCK_NONBLOCK = 0x800
constant SOCK_PACKET (line 2107) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2108) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2109) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2110) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2111) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2112) | SOL_AAL = 0x109
constant SOL_ALG (line 2113) | SOL_ALG = 0x117
constant SOL_ATM (line 2114) | SOL_ATM = 0x108
constant SOL_CAIF (line 2115) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2116) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2117) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2118) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2119) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2120) | SOL_IP = 0x0
constant SOL_IPV6 (line 2121) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2122) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2123) | SOL_IUCV = 0x115
constant SOL_KCM (line 2124) | SOL_KCM = 0x119
constant SOL_LLC (line 2125) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2126) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2127) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2128) | SOL_NFC = 0x118
constant SOL_PACKET (line 2129) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2130) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2131) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2132) | SOL_RAW = 0xff
constant SOL_RDS (line 2133) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2134) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2135) | SOL_SOCKET = 0x1
constant SOL_TCP (line 2136) | SOL_TCP = 0x6
constant SOL_TIPC (line 2137) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2138) | SOL_TLS = 0x11a
constant SOL_X25 (line 2139) | SOL_X25 = 0x106
constant SOL_XDP (line 2140) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2141) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2142) | SO_ACCEPTCONN = 0x1e
constant SO_ATTACH_BPF (line 2143) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2144) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2145) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2146) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2147) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2148) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2149) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2150) | SO_BROADCAST = 0x6
constant SO_BSDCOMPAT (line 2151) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2152) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2153) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2154) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2155) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2156) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2157) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2158) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2159) | SO_DOMAIN = 0x27
constant SO_DONTROUTE (line 2160) | SO_DONTROUTE = 0x5
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2161) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2162) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2163) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2164) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2165) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2166) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2167) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2168) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2169) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2170) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2171) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2172) | SO_ERROR = 0x4
constant SO_GET_FILTER (line 2173) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2174) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2175) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2176) | SO_KEEPALIVE = 0x9
constant SO_LINGER (line 2177) | SO_LINGER = 0xd
constant SO_LOCK_FILTER (line 2178) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2179) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2180) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2181) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2182) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2183) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2184) | SO_OOBINLINE = 0xa
constant SO_PASSCRED (line 2185) | SO_PASSCRED = 0x10
constant SO_PASSSEC (line 2186) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2187) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2188) | SO_PEERCRED = 0x11
constant SO_PEERGROUPS (line 2189) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2190) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2191) | SO_PEERSEC = 0x1f
constant SO_PRIORITY (line 2192) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2193) | SO_PROTOCOL = 0x26
constant SO_RCVBUF (line 2194) | SO_RCVBUF = 0x8
constant SO_RCVBUFFORCE (line 2195) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2196) | SO_RCVLOWAT = 0x12
constant SO_RCVTIMEO (line 2197) | SO_RCVTIMEO = 0x14
constant SO_RCVTIMEO_NEW (line 2198) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2199) | SO_RCVTIMEO_OLD = 0x14
constant SO_REUSEADDR (line 2200) | SO_REUSEADDR = 0x2
constant SO_REUSEPORT (line 2201) | SO_REUSEPORT = 0xf
constant SO_RXQ_OVFL (line 2202) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2203) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2204) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2205) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2206) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2207) | SO_SNDBUF = 0x7
constant SO_SNDBUFFORCE (line 2208) | SO_SNDBUFFORCE = 0x20
constant SO_SNDLOWAT (line 2209) | SO_SNDLOWAT = 0x13
constant SO_SNDTIMEO (line 2210) | SO_SNDTIMEO = 0x15
constant SO_SNDTIMEO_NEW (line 2211) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2212) | SO_SNDTIMEO_OLD = 0x15
constant SO_TIMESTAMP (line 2213) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2214) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2215) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2216) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2217) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2218) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2219) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2220) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2221) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2222) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2223) | SO_TYPE = 0x3
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2224) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2225) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2226) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2227) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2228) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2229) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2230) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2231) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2232) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2233) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2234) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2235) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2236) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2237) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2238) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2239) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2240) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2241) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2242) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2243) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2244) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2245) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2246) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2247) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2248) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2249) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2250) | STATX_CTIME = 0x80
constant STATX_GID (line 2251) | STATX_GID = 0x10
constant STATX_INO (line 2252) | STATX_INO = 0x100
constant STATX_MODE (line 2253) | STATX_MODE = 0x2
constant STATX_MTIME (line 2254) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2255) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2256) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2257) | STATX_TYPE = 0x1
constant STATX_UID (line 2258) | STATX_UID = 0x8
constant STATX__RESERVED (line 2259) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2260) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2261) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2262) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2263) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2264) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2265) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2266) | S_IEXEC = 0x40
constant S_IFBLK (line 2267) | S_IFBLK = 0x6000
constant S_IFCHR (line 2268) | S_IFCHR = 0x2000
constant S_IFDIR (line 2269) | S_IFDIR = 0x4000
constant S_IFIFO (line 2270) | S_IFIFO = 0x1000
constant S_IFLNK (line 2271) | S_IFLNK = 0xa000
constant S_IFMT (line 2272) | S_IFMT = 0xf000
constant S_IFREG (line 2273) | S_IFREG = 0x8000
constant S_IFSOCK (line 2274) | S_IFSOCK = 0xc000
constant S_IREAD (line 2275) | S_IREAD = 0x100
constant S_IRGRP (line 2276) | S_IRGRP = 0x20
constant S_IROTH (line 2277) | S_IROTH = 0x4
constant S_IRUSR (line 2278) | S_IRUSR = 0x100
constant S_IRWXG (line 2279) | S_IRWXG = 0x38
constant S_IRWXO (line 2280) | S_IRWXO = 0x7
constant S_IRWXU (line 2281) | S_IRWXU = 0x1c0
constant S_ISGID (line 2282) | S_ISGID = 0x400
constant S_ISUID (line 2283) | S_ISUID = 0x800
constant S_ISVTX (line 2284) | S_ISVTX = 0x200
constant S_IWGRP (line 2285) | S_IWGRP = 0x10
constant S_IWOTH (line 2286) | S_IWOTH = 0x2
constant S_IWRITE (line 2287) | S_IWRITE = 0x80
constant S_IWUSR (line 2288) | S_IWUSR = 0x80
constant S_IXGRP (line 2289) | S_IXGRP = 0x8
constant S_IXOTH (line 2290) | S_IXOTH = 0x1
constant S_IXUSR (line 2291) | S_IXUSR = 0x40
constant TAB0 (line 2292) | TAB0 = 0x0
constant TAB1 (line 2293) | TAB1 = 0x800
constant TAB2 (line 2294) | TAB2 = 0x1000
constant TAB3 (line 2295) | TAB3 = 0x1800
constant TABDLY (line 2296) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2297) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2298) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2299) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2300) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2301) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2302) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2303) | TCFLSH = 0x540b
constant TCGETA (line 2304) | TCGETA = 0x5405
constant TCGETS (line 2305) | TCGETS = 0x5401
constant TCGETS2 (line 2306) | TCGETS2 = 0x802c542a
constant TCGETX (line 2307) | TCGETX = 0x5432
constant TCIFLUSH (line 2308) | TCIFLUSH = 0x0
constant TCIOFF (line 2309) | TCIOFF = 0x2
constant TCIOFLUSH (line 2310) | TCIOFLUSH = 0x2
constant TCION (line 2311) | TCION = 0x3
constant TCOFLUSH (line 2312) | TCOFLUSH = 0x1
constant TCOOFF (line 2313) | TCOOFF = 0x0
constant TCOON (line 2314) | TCOON = 0x1
constant TCP_BPF_IW (line 2315) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2316) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2317) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2318) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2319) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2320) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2321) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2322) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2323) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2324) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2325) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2326) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2327) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2328) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2329) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2330) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2331) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2332) | TCP_INFO = 0xb
constant TCP_INQ (line 2333) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2334) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2335) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2336) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2337) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2338) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2339) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2340) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2341) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2342) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2343) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2344) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2345) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2346) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2347) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2348) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2349) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2350) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2351) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2352) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2353) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2354) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2355) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2356) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2357) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2358) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2359) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2360) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2361) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2362) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2363) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2364) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2365) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2366) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2367) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2368) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2369) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2370) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2371) | TCSAFLUSH = 0x2
constant TCSBRK (line 2372) | TCSBRK = 0x5409
constant TCSBRKP (line 2373) | TCSBRKP = 0x5425
constant TCSETA (line 2374) | TCSETA = 0x5406
constant TCSETAF (line 2375) | TCSETAF = 0x5408
constant TCSETAW (line 2376) | TCSETAW = 0x5407
constant TCSETS (line 2377) | TCSETS = 0x5402
constant TCSETS2 (line 2378) | TCSETS2 = 0x402c542b
constant TCSETSF (line 2379) | TCSETSF = 0x5404
constant TCSETSF2 (line 2380) | TCSETSF2 = 0x402c542d
constant TCSETSW (line 2381) | TCSETSW = 0x5403
constant TCSETSW2 (line 2382) | TCSETSW2 = 0x402c542c
constant TCSETX (line 2383) | TCSETX = 0x5433
constant TCSETXF (line 2384) | TCSETXF = 0x5434
constant TCSETXW (line 2385) | TCSETXW = 0x5435
constant TCXONC (line 2386) | TCXONC = 0x540a
constant TIMER_ABSTIME (line 2387) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2388) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2389) | TIOCCONS = 0x541d
constant TIOCEXCL (line 2390) | TIOCEXCL = 0x540c
constant TIOCGDEV (line 2391) | TIOCGDEV = 0x80045432
constant TIOCGETD (line 2392) | TIOCGETD = 0x5424
constant TIOCGEXCL (line 2393) | TIOCGEXCL = 0x80045440
constant TIOCGICOUNT (line 2394) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2395) | TIOCGISO7816 = 0x80285442
constant TIOCGLCKTRMIOS (line 2396) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGPGRP (line 2397) | TIOCGPGRP = 0x540f
constant TIOCGPKT (line 2398) | TIOCGPKT = 0x80045438
constant TIOCGPTLCK (line 2399) | TIOCGPTLCK = 0x80045439
constant TIOCGPTN (line 2400) | TIOCGPTN = 0x80045430
constant TIOCGPTPEER (line 2401) | TIOCGPTPEER = 0x5441
constant TIOCGRS485 (line 2402) | TIOCGRS485 = 0x542e
constant TIOCGSERIAL (line 2403) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2404) | TIOCGSID = 0x5429
constant TIOCGSOFTCAR (line 2405) | TIOCGSOFTCAR = 0x5419
constant TIOCGWINSZ (line 2406) | TIOCGWINSZ = 0x5413
constant TIOCINQ (line 2407) | TIOCINQ = 0x541b
constant TIOCLINUX (line 2408) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2409) | TIOCMBIC = 0x5417
constant TIOCMBIS (line 2410) | TIOCMBIS = 0x5416
constant TIOCMGET (line 2411) | TIOCMGET = 0x5415
constant TIOCMIWAIT (line 2412) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2413) | TIOCMSET = 0x5418
constant TIOCM_CAR (line 2414) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2415) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2416) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2417) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2418) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2419) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2420) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2421) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2422) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2423) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2424) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2425) | TIOCNOTTY = 0x5422
constant TIOCNXCL (line 2426) | TIOCNXCL = 0x540d
constant TIOCOUTQ (line 2427) | TIOCOUTQ = 0x5411
constant TIOCPKT (line 2428) | TIOCPKT = 0x5420
constant TIOCPKT_DATA (line 2429) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2430) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2431) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2432) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2433) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2434) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2435) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2436) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2437) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2438) | TIOCSCTTY = 0x540e
constant TIOCSERCONFIG (line 2439) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2440) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2441) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2442) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2443) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2444) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2445) | TIOCSERSWILD = 0x5455
constant TIOCSER_TEMT (line 2446) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2447) | TIOCSETD = 0x5423
constant TIOCSIG (line 2448) | TIOCSIG = 0x40045436
constant TIOCSISO7816 (line 2449) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2450) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSPGRP (line 2451) | TIOCSPGRP = 0x5410
constant TIOCSPTLCK (line 2452) | TIOCSPTLCK = 0x40045431
constant TIOCSRS485 (line 2453) | TIOCSRS485 = 0x542f
constant TIOCSSERIAL (line 2454) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2455) | TIOCSSOFTCAR = 0x541a
constant TIOCSTI (line 2456) | TIOCSTI = 0x5412
constant TIOCSWINSZ (line 2457) | TIOCSWINSZ = 0x5414
constant TIOCVHANGUP (line 2458) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2459) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2460) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2461) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2462) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2463) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2464) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2465) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2466) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2467) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2468) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2469) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2470) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2471) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2472) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2473) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2474) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2475) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2476) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2477) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2478) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2479) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2480) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2481) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2482) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2483) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2484) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2485) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2486) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2487) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2488) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2489) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2490) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2491) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2492) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2493) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2494) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2495) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2496) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2497) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2498) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2499) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2500) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2501) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2502) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2503) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2504) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2505) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2506) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2507) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2508) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2509) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2510) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2511) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2512) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2513) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2514) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2515) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2516) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2517) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2518) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2519) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2520) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2521) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2522) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2523) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2524) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2525) | TOSTOP = 0x100
constant TPACKET_ALIGNMENT (line 2526) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2527) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2528) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2529) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2530) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2531) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2532) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2533) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2534) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2535) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2536) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2537) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2538) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2539) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2540) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2541) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2542) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2543) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2544) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2545) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2546) | TUNATTACHFILTER = 0x401054d5
constant TUNDETACHFILTER (line 2547) | TUNDETACHFILTER = 0x401054d6
constant TUNGETDEVNETNS (line 2548) | TUNGETDEVNETNS = 0x54e3
constant TUNGETFEATURES (line 2549) | TUNGETFEATURES = 0x800454cf
constant TUNGETFILTER (line 2550) | TUNGETFILTER = 0x801054db
constant TUNGETIFF (line 2551) | TUNGETIFF = 0x800454d2
constant TUNGETSNDBUF (line 2552) | TUNGETSNDBUF = 0x800454d3
constant TUNGETVNETBE (line 2553) | TUNGETVNETBE = 0x800454df
constant TUNGETVNETHDRSZ (line 2554) | TUNGETVNETHDRSZ = 0x800454d7
constant TUNGETVNETLE (line 2555) | TUNGETVNETLE = 0x800454dd
constant TUNSETCARRIER (line 2556) | TUNSETCARRIER = 0x400454e2
constant TUNSETDEBUG (line 2557) | TUNSETDEBUG = 0x400454c9
constant TUNSETFILTEREBPF (line 2558) | TUNSETFILTEREBPF = 0x800454e1
constant TUNSETGROUP (line 2559) | TUNSETGROUP = 0x400454ce
constant TUNSETIFF (line 2560) | TUNSETIFF = 0x400454ca
constant TUNSETIFINDEX (line 2561) | TUNSETIFINDEX = 0x400454da
constant TUNSETLINK (line 2562) | TUNSETLINK = 0x400454cd
constant TUNSETNOCSUM (line 2563) | TUNSETNOCSUM = 0x400454c8
constant TUNSETOFFLOAD (line 2564) | TUNSETOFFLOAD = 0x400454d0
constant TUNSETOWNER (line 2565) | TUNSETOWNER = 0x400454cc
constant TUNSETPERSIST (line 2566) | TUNSETPERSIST = 0x400454cb
constant TUNSETQUEUE (line 2567) | TUNSETQUEUE = 0x400454d9
constant TUNSETSNDBUF (line 2568) | TUNSETSNDBUF = 0x400454d4
constant TUNSETSTEERINGEBPF (line 2569) | TUNSETSTEERINGEBPF = 0x800454e0
constant TUNSETTXFILTER (line 2570) | TUNSETTXFILTER = 0x400454d1
constant TUNSETVNETBE (line 2571) | TUNSETVNETBE = 0x400454de
constant TUNSETVNETHDRSZ (line 2572) | TUNSETVNETHDRSZ = 0x400454d8
constant TUNSETVNETLE (line 2573) | TUNSETVNETLE = 0x400454dc
constant UBI_IOCATT (line 2574) | UBI_IOCATT = 0x40186f40
constant UBI_IOCDET (line 2575) | UBI_IOCDET = 0x40046f41
constant UBI_IOCEBCH (line 2576) | UBI_IOCEBCH = 0x40044f02
constant UBI_IOCEBER (line 2577) | UBI_IOCEBER = 0x40044f01
constant UBI_IOCEBISMAP (line 2578) | UBI_IOCEBISMAP = 0x80044f05
constant UBI_IOCEBMAP (line 2579) | UBI_IOCEBMAP = 0x40084f03
constant UBI_IOCEBUNMAP (line 2580) | UBI_IOCEBUNMAP = 0x40044f04
constant UBI_IOCMKVOL (line 2581) | UBI_IOCMKVOL = 0x40986f00
constant UBI_IOCRMVOL (line 2582) | UBI_IOCRMVOL = 0x40046f01
constant UBI_IOCRNVOL (line 2583) | UBI_IOCRNVOL = 0x51106f03
constant UBI_IOCRPEB (line 2584) | UBI_IOCRPEB = 0x40046f04
constant UBI_IOCRSVOL (line 2585) | UBI_IOCRSVOL = 0x400c6f02
constant UBI_IOCSETVOLPROP (line 2586) | UBI_IOCSETVOLPROP = 0x40104f06
constant UBI_IOCSPEB (line 2587) | UBI_IOCSPEB = 0x40046f05
constant UBI_IOCVOLCRBLK (line 2588) | UBI_IOCVOLCRBLK = 0x40804f07
constant UBI_IOCVOLRMBLK (line 2589) | UBI_IOCVOLRMBLK = 0x4f08
constant UBI_IOCVOLUP (line 2590) | UBI_IOCVOLUP = 0x40084f00
constant UDF_SUPER_MAGIC (line 2591) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2592) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2593) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2594) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2595) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2596) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2597) | VDISCARD = 0xd
constant VEOF (line 2598) | VEOF = 0x4
constant VEOL (line 2599) | VEOL = 0xb
constant VEOL2 (line 2600) | VEOL2 = 0x10
constant VERASE (line 2601) | VERASE = 0x2
constant VINTR (line 2602) | VINTR = 0x0
constant VKILL (line 2603) | VKILL = 0x3
constant VLNEXT (line 2604) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2605) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2606) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2607) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2608) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2609) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2610) | VMIN = 0x6
constant VM_SOCKETS_INVALID_VERSION (line 2611) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2612) | VQUIT = 0x1
constant VREPRINT (line 2613) | VREPRINT = 0xc
constant VSTART (line 2614) | VSTART = 0x8
constant VSTOP (line 2615) | VSTOP = 0x9
constant VSUSP (line 2616) | VSUSP = 0xa
constant VSWTC (line 2617) | VSWTC = 0x7
constant VT0 (line 2618) | VT0 = 0x0
constant VT1 (line 2619) | VT1 = 0x4000
constant VTDLY (line 2620) | VTDLY = 0x4000
constant VTIME (line 2621) | VTIME = 0x5
constant VWERASE (line 2622) | VWERASE = 0xe
constant WALL (line 2623) | WALL = 0x40000000
constant WCLONE (line 2624) | WCLONE = 0x80000000
constant WCONTINUED (line 2625) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2626) | WDIOC_GETBOOTSTATUS = 0x80045702
constant WDIOC_GETPRETIMEOUT (line 2627) | WDIOC_GETPRETIMEOUT = 0x80045709
constant WDIOC_GETSTATUS (line 2628) | WDIOC_GETSTATUS = 0x80045701
constant WDIOC_GETSUPPORT (line 2629) | WDIOC_GETSUPPORT = 0x80285700
constant WDIOC_GETTEMP (line 2630) | WDIOC_GETTEMP = 0x80045703
constant WDIOC_GETTIMELEFT (line 2631) | WDIOC_GETTIMELEFT = 0x8004570a
constant WDIOC_GETTIMEOUT (line 2632) | WDIOC_GETTIMEOUT = 0x80045707
constant WDIOC_KEEPALIVE (line 2633) | WDIOC_KEEPALIVE = 0x80045705
constant WDIOC_SETOPTIONS (line 2634) | WDIOC_SETOPTIONS = 0x80045704
constant WDIOC_SETPRETIMEOUT (line 2635) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2636) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2637) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2638) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2639) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2640) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2641) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2642) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2643) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2644) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2645) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2646) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2647) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2648) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2649) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2650) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2651) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2652) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2653) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2654) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2655) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2656) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2657) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2658) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2659) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2660) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2661) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2662) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2663) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2664) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2665) | WIN_READ = 0x20
constant WIN_READDMA (line 2666) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2667) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2668) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2669) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2670) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2671) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2672) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2673) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2674) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2675) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2676) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2677) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2678) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2679) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2680) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2681) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2682) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2683) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2684) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2685) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2686) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2687) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2688) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2689) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2690) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2691) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2692) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2693) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2694) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2695) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2696) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2697) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2698) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2699) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2700) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2701) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2702) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2703) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2704) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2705) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2706) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2707) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2708) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2709) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2710) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2711) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2712) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2713) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2714) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2715) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2716) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2717) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2718) | WNOHANG = 0x1
constant WNOTHREAD (line 2719) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2720) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2721) | WORDSIZE = 0x40
constant WSTOPPED (line 2722) | WSTOPPED = 0x2
constant WUNTRACED (line 2723) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2724) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2725) | XATTR_REPLACE = 0x2
constant XCASE (line 2726) | XCASE = 0x4
constant XDP_COPY (line 2727) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2728) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2729) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2730) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2731) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2732) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2733) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2734) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2735) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2736) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2737) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2738) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2739) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2740) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2741) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2742) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2743) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2744) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2745) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2746) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2747) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2748) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2749) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2750) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2751) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2752) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2753) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2754) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2759) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2760) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2761) | EADDRINUSE = syscall.Errno(0x62)
constant EADDRNOTAVAIL (line 2762) | EADDRNOTAVAIL = syscall.Errno(0x63)
constant EADV (line 2763) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2764) | EAFNOSUPPORT = syscall.Errno(0x61)
constant EAGAIN (line 2765) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2766) | EALREADY = syscall.Errno(0x72)
constant EBADE (line 2767) | EBADE = syscall.Errno(0x34)
constant EBADF (line 2768) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2769) | EBADFD = syscall.Errno(0x4d)
constant EBADMSG (line 2770) | EBADMSG = syscall.Errno(0x4a)
constant EBADR (line 2771) | EBADR = syscall.Errno(0x35)
constant EBADRQC (line 2772) | EBADRQC = syscall.Errno(0x38)
constant EBADSLT (line 2773) | EBADSLT = syscall.Errno(0x39)
constant EBFONT (line 2774) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2775) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2776) | ECANCELED = syscall.Errno(0x7d)
constant ECHILD (line 2777) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2778) | ECHRNG = syscall.Errno(0x2c)
constant ECOMM (line 2779) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2780) | ECONNABORTED = syscall.Errno(0x67)
constant ECONNREFUSED (line 2781) | ECONNREFUSED = syscall.Errno(0x6f)
constant ECONNRESET (line 2782) | ECONNRESET = syscall.Errno(0x68)
constant EDEADLK (line 2783) | EDEADLK = syscall.Errno(0x23)
constant EDEADLOCK (line 2784) | EDEADLOCK = syscall.Errno(0x23)
constant EDESTADDRREQ (line 2785) | EDESTADDRREQ = syscall.Errno(0x59)
constant EDOM (line 2786) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2787) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2788) | EDQUOT = syscall.Errno(0x7a)
constant EEXIST (line 2789) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2790) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2791) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2792) | EHOSTDOWN = syscall.Errno(0x70)
constant EHOSTUNREACH (line 2793) | EHOSTUNREACH = syscall.Errno(0x71)
constant EHWPOISON (line 2794) | EHWPOISON = syscall.Errno(0x85)
constant EIDRM (line 2795) | EIDRM = syscall.Errno(0x2b)
constant EILSEQ (line 2796) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 2797) | EINPROGRESS = syscall.Errno(0x73)
constant EINTR (line 2798) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2799) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2800) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2801) | EISCONN = syscall.Errno(0x6a)
constant EISDIR (line 2802) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2803) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2804) | EKEYEXPIRED = syscall.Errno(0x7f)
constant EKEYREJECTED (line 2805) | EKEYREJECTED = syscall.Errno(0x81)
constant EKEYREVOKED (line 2806) | EKEYREVOKED = syscall.Errno(0x80)
constant EL2HLT (line 2807) | EL2HLT = syscall.Errno(0x33)
constant EL2NSYNC (line 2808) | EL2NSYNC = syscall.Errno(0x2d)
constant EL3HLT (line 2809) | EL3HLT = syscall.Errno(0x2e)
constant EL3RST (line 2810) | EL3RST = syscall.Errno(0x2f)
constant ELIBACC (line 2811) | ELIBACC = syscall.Errno(0x4f)
constant ELIBBAD (line 2812) | ELIBBAD = syscall.Errno(0x50)
constant ELIBEXEC (line 2813) | ELIBEXEC = syscall.Errno(0x53)
constant ELIBMAX (line 2814) | ELIBMAX = syscall.Errno(0x52)
constant ELIBSCN (line 2815) | ELIBSCN = syscall.Errno(0x51)
constant ELNRNG (line 2816) | ELNRNG = syscall.Errno(0x30)
constant ELOOP (line 2817) | ELOOP = syscall.Errno(0x28)
constant EMEDIUMTYPE (line 2818) | EMEDIUMTYPE = syscall.Errno(0x7c)
constant EMFILE (line 2819) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2820) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2821) | EMSGSIZE = syscall.Errno(0x5a)
constant EMULTIHOP (line 2822) | EMULTIHOP = syscall.Errno(0x48)
constant ENAMETOOLONG (line 2823) | ENAMETOOLONG = syscall.Errno(0x24)
constant ENAVAIL (line 2824) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2825) | ENETDOWN = syscall.Errno(0x64)
constant ENETRESET (line 2826) | ENETRESET = syscall.Errno(0x66)
constant ENETUNREACH (line 2827) | ENETUNREACH = syscall.Errno(0x65)
constant ENFILE (line 2828) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2829) | ENOANO = syscall.Errno(0x37)
constant ENOBUFS (line 2830) | ENOBUFS = syscall.Errno(0x69)
constant ENOCSI (line 2831) | ENOCSI = syscall.Errno(0x32)
constant ENODATA (line 2832) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2833) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2834) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2835) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2836) | ENOKEY = syscall.Errno(0x7e)
constant ENOLCK (line 2837) | ENOLCK = syscall.Errno(0x25)
constant ENOLINK (line 2838) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2839) | ENOMEDIUM = syscall.Errno(0x7b)
constant ENOMEM (line 2840) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2841) | ENOMSG = syscall.Errno(0x2a)
constant ENONET (line 2842) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2843) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2844) | ENOPROTOOPT = syscall.Errno(0x5c)
constant ENOSPC (line 2845) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2846) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2847) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2848) | ENOSYS = syscall.Errno(0x26)
constant ENOTBLK (line 2849) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2850) | ENOTCONN = syscall.Errno(0x6b)
constant ENOTDIR (line 2851) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2852) | ENOTEMPTY = syscall.Errno(0x27)
constant ENOTNAM (line 2853) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2854) | ENOTRECOVERABLE = syscall.Errno(0x83)
constant ENOTSOCK (line 2855) | ENOTSOCK = syscall.Errno(0x58)
constant ENOTSUP (line 2856) | ENOTSUP = syscall.Errno(0x5f)
constant ENOTTY (line 2857) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2858) | ENOTUNIQ = syscall.Errno(0x4c)
constant ENXIO (line 2859) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2860) | EOPNOTSUPP = syscall.Errno(0x5f)
constant EOVERFLOW (line 2861) | EOVERFLOW = syscall.Errno(0x4b)
constant EOWNERDEAD (line 2862) | EOWNERDEAD = syscall.Errno(0x82)
constant EPERM (line 2863) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2864) | EPFNOSUPPORT = syscall.Errno(0x60)
constant EPIPE (line 2865) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2866) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2867) | EPROTONOSUPPORT = syscall.Errno(0x5d)
constant EPROTOTYPE (line 2868) | EPROTOTYPE = syscall.Errno(0x5b)
constant ERANGE (line 2869) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2870) | EREMCHG = syscall.Errno(0x4e)
constant EREMOTE (line 2871) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2872) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2873) | ERESTART = syscall.Errno(0x55)
constant ERFKILL (line 2874) | ERFKILL = syscall.Errno(0x84)
constant EROFS (line 2875) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2876) | ESHUTDOWN = syscall.Errno(0x6c)
constant ESOCKTNOSUPPORT (line 2877) | ESOCKTNOSUPPORT = syscall.Errno(0x5e)
constant ESPIPE (line 2878) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2879) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2880) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2881) | ESTALE = syscall.Errno(0x74)
constant ESTRPIPE (line 2882) | ESTRPIPE = syscall.Errno(0x56)
constant ETIME (line 2883) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2884) | ETIMEDOUT = syscall.Errno(0x6e)
constant ETOOMANYREFS (line 2885) | ETOOMANYREFS = syscall.Errno(0x6d)
constant ETXTBSY (line 2886) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2887) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2888) | EUNATCH = syscall.Errno(0x31)
constant EUSERS (line 2889) | EUSERS = syscall.Errno(0x57)
constant EWOULDBLOCK (line 2890) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2891) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2892) | EXFULL = syscall.Errno(0x36)
constant SIGABRT (line 2897) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2898) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2899) | SIGBUS = syscall.Signal(0x7)
constant SIGCHLD (line 2900) | SIGCHLD = syscall.Signal(0x11)
constant SIGCLD (line 2901) | SIGCLD = syscall.Signal(0x11)
constant SIGCONT (line 2902) | SIGCONT = syscall.Signal(0x12)
constant SIGFPE (line 2903) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2904) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2905) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2906) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2907) | SIGIO = syscall.Signal(0x1d)
constant SIGIOT (line 2908) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2909) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2910) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2911) | SIGPOLL = syscall.Signal(0x1d)
constant SIGPROF (line 2912) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2913) | SIGPWR = syscall.Signal(0x1e)
constant SIGQUIT (line 2914) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2915) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTKFLT (line 2916) | SIGSTKFLT = syscall.Signal(0x10)
constant SIGSTOP (line 2917) | SIGSTOP = syscall.Signal(0x13)
constant SIGSYS (line 2918) | SIGSYS = syscall.Signal(0x1f)
constant SIGTERM (line 2919) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2920) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2921) | SIGTSTP = syscall.Signal(0x14)
constant SIGTTIN (line 2922) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2923) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2924) | SIGURG = syscall.Signal(0x17)
constant SIGUSR1 (line 2925) | SIGUSR1 = syscall.Signal(0xa)
constant SIGUSR2 (line 2926) | SIGUSR2 = syscall.Signal(0xc)
constant SIGVTALRM (line 2927) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 2928) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 2929) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 2930) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant AUTOFS_SUPER_MAGIC (line 143) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 144) | B0 = 0x0
constant B1000000 (line 145) | B1000000 = 0x1008
constant B110 (line 146) | B110 = 0x3
constant B115200 (line 147) | B115200 = 0x1002
constant B1152000 (line 148) | B1152000 = 0x1009
constant B1200 (line 149) | B1200 = 0x9
constant B134 (line 150) | B134 = 0x4
constant B150 (line 151) | B150 = 0x5
constant B1500000 (line 152) | B1500000 = 0x100a
constant B1800 (line 153) | B1800 = 0xa
constant B19200 (line 154) | B19200 = 0xe
constant B200 (line 155) | B200 = 0x6
constant B2000000 (line 156) | B2000000 = 0x100b
constant B230400 (line 157) | B230400 = 0x1003
constant B2400 (line 158) | B2400 = 0xb
constant B2500000 (line 159) | B2500000 = 0x100c
constant B300 (line 160) | B300 = 0x7
constant B3000000 (line 161) | B3000000 = 0x100d
constant B3500000 (line 162) | B3500000 = 0x100e
constant B38400 (line 163) | B38400 = 0xf
constant B4000000 (line 164) | B4000000 = 0x100f
constant B460800 (line 165) | B460800 = 0x1004
constant B4800 (line 166) | B4800 = 0xc
constant B50 (line 167) | B50 = 0x1
constant B500000 (line 168) | B500000 = 0x1005
constant B57600 (line 169) | B57600 = 0x1001
constant B576000 (line 170) | B576000 = 0x1006
constant B600 (line 171) | B600 = 0x8
constant B75 (line 172) | B75 = 0x2
constant B921600 (line 173) | B921600 = 0x1007
constant B9600 (line 174) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 175) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 176) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 177) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 178) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 179) | BLKBSZGET = 0x80081270
constant BLKBSZSET (line 180) | BLKBSZSET = 0x40081271
constant BLKFLSBUF (line 181) | BLKFLSBUF = 0x1261
constant BLKFRAGET (line 182) | BLKFRAGET = 0x1265
constant BLKFRASET (line 183) | BLKFRASET = 0x1264
constant BLKGETSIZE (line 184) | BLKGETSIZE = 0x1260
constant BLKGETSIZE64 (line 185) | BLKGETSIZE64 = 0x80081272
constant BLKPBSZGET (line 186) | BLKPBSZGET = 0x127b
constant BLKRAGET (line 187) | BLKRAGET = 0x1263
constant BLKRASET (line 188) | BLKRASET = 0x1262
constant BLKROGET (line 189) | BLKROGET = 0x125e
constant BLKROSET (line 190) | BLKROSET = 0x125d
constant BLKRRPART (line 191) | BLKRRPART = 0x125f
constant BLKSECTGET (line 192) | BLKSECTGET = 0x1267
constant BLKSECTSET (line 193) | BLKSECTSET = 0x1266
constant BLKSSZGET (line 194) | BLKSSZGET = 0x1268
constant BOTHER (line 195) | BOTHER = 0x1000
constant BPF_A (line 196) | BPF_A = 0x10
constant BPF_ABS (line 197) | BPF_ABS = 0x20
constant BPF_ADD (line 198) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 199) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 200) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 201) | BPF_ALU = 0x4
constant BPF_ALU64 (line 202) | BPF_ALU64 = 0x7
constant BPF_AND (line 203) | BPF_AND = 0x50
constant BPF_ANY (line 204) | BPF_ANY = 0x0
constant BPF_ARSH (line 205) | BPF_ARSH = 0xc0
constant BPF_B (line 206) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 207) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 208) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 209) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 210) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 211) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 212) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 213) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 214) | BPF_DIV = 0x30
constant BPF_DW (line 215) | BPF_DW = 0x18
constant BPF_END (line 216) | BPF_END = 0xd0
constant BPF_EXIST (line 217) | BPF_EXIST = 0x2
constant BPF_EXIT (line 218) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 219) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 220) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 221) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 222) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 223) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 224) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 225) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 226) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 227) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 228) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 229) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 230) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 231) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 232) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 233) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 234) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 235) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 236) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 237) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 238) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 239) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 240) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 241) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 242) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 243) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 244) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 245) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 246) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 247) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 248) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 249) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 250) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 251) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 252) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 253) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 254) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 255) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 256) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 257) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 258) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 259) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 260) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 261) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 262) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 263) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 264) | BPF_H = 0x8
constant BPF_IMM (line 265) | BPF_IMM = 0x0
constant BPF_IND (line 266) | BPF_IND = 0x40
constant BPF_JA (line 267) | BPF_JA = 0x0
constant BPF_JEQ (line 268) | BPF_JEQ = 0x10
constant BPF_JGE (line 269) | BPF_JGE = 0x30
constant BPF_JGT (line 270) | BPF_JGT = 0x20
constant BPF_JLE (line 271) | BPF_JLE = 0xb0
constant BPF_JLT (line 272) | BPF_JLT = 0xa0
constant BPF_JMP (line 273) | BPF_JMP = 0x5
constant BPF_JMP32 (line 274) | BPF_JMP32 = 0x6
constant BPF_JNE (line 275) | BPF_JNE = 0x50
constant BPF_JSET (line 276) | BPF_JSET = 0x40
constant BPF_JSGE (line 277) | BPF_JSGE = 0x70
constant BPF_JSGT (line 278) | BPF_JSGT = 0x60
constant BPF_JSLE (line 279) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 280) | BPF_JSLT = 0xc0
constant BPF_K (line 281) | BPF_K = 0x0
constant BPF_LD (line 282) | BPF_LD = 0x0
constant BPF_LDX (line 283) | BPF_LDX = 0x1
constant BPF_LEN (line 284) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 285) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 286) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 287) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 288) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 289) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 290) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 291) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 292) | BPF_MISC = 0x7
constant BPF_MOD (line 293) | BPF_MOD = 0x90
constant BPF_MOV (line 294) | BPF_MOV = 0xb0
constant BPF_MSH (line 295) | BPF_MSH = 0xa0
constant BPF_MUL (line 296) | BPF_MUL = 0x20
constant BPF_NEG (line 297) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 298) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 299) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 300) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 301) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 302) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 303) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 304) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 305) | BPF_RET = 0x6
constant BPF_RSH (line 306) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 307) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 308) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 309) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 310) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 311) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 312) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 313) | BPF_ST = 0x2
constant BPF_STX (line 314) | BPF_STX = 0x3
constant BPF_SUB (line 315) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 316) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 317) | BPF_TAX = 0x0
constant BPF_TO_BE (line 318) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 319) | BPF_TO_LE = 0x0
constant BPF_TXA (line 320) | BPF_TXA = 0x80
constant BPF_W (line 321) | BPF_W = 0x0
constant BPF_X (line 322) | BPF_X = 0x8
constant BPF_XADD (line 323) | BPF_XADD = 0xc0
constant BPF_XOR (line 324) | BPF_XOR = 0xa0
constant BRKINT (line 325) | BRKINT = 0x2
constant BS0 (line 326) | BS0 = 0x0
constant BS1 (line 327) | BS1 = 0x2000
constant BSDLY (line 328) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 329) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 330) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 331) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 332) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 333) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 334) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 335) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 336) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 337) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 338) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 339) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 340) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 341) | CAN_MCNET = 0x5
constant CAN_MTU (line 342) | CAN_MTU = 0x10
constant CAN_NPROTO (line 343) | CAN_NPROTO = 0x7
constant CAN_RAW (line 344) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 345) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 346) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 347) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 348) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 349) | CAN_TP16 = 0x3
constant CAN_TP20 (line 350) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 351) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 352) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 353) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 354) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 355) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 356) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 357) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 358) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 359) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 360) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 361) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 362) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 363) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 364) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 365) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 366) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 367) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 368) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 369) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 370) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 371) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 372) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 373) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 374) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 375) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 376) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 377) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 378) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 379) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 380) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 381) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 382) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 383) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 384) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 385) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 386) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 387) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 388) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 389) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 390) | CBAUD = 0x100f
constant CBAUDEX (line 391) | CBAUDEX = 0x1000
constant CFLUSH (line 392) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 393) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 394) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 395) | CIBAUD = 0x100f0000
constant CLOCAL (line 396) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 397) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 398) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 399) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 400) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 401) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 402) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 403) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 404) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 405) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 406) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 407) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 408) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 409) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 410) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 411) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 412) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 413) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 414) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 415) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 416) | CLONE_FILES = 0x400
constant CLONE_FS (line 417) | CLONE_FS = 0x200
constant CLONE_IO (line 418) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 419) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 420) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 421) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 422) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 423) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 424) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 425) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 426) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 427) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 428) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 429) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 430) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 431) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 432) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 433) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 434) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 435) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 436) | CLONE_VM = 0x100
constant CMSPAR (line 437) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 438) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 439) | CR0 = 0x0
constant CR1 (line 440) | CR1 = 0x200
constant CR2 (line 441) | CR2 = 0x400
constant CR3 (line 442) | CR3 = 0x600
constant CRAMFS_MAGIC (line 443) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 444) | CRDLY = 0x600
constant CREAD (line 445) | CREAD = 0x80
constant CRTSCTS (line 446) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 447) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 448) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 449) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 450) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 451) | CS5 = 0x0
constant CS6 (line 452) | CS6 = 0x10
constant CS7 (line 453) | CS7 = 0x20
constant CS8 (line 454) | CS8 = 0x30
constant CSIGNAL (line 455) | CSIGNAL = 0xff
constant CSIZE (line 456) | CSIZE = 0x30
constant CSTART (line 457) | CSTART = 0x11
constant CSTATUS (line 458) | CSTATUS = 0x0
constant CSTOP (line 459) | CSTOP = 0x13
constant CSTOPB (line 460) | CSTOPB = 0x40
constant CSUSP (line 461) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 462) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 463) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 464) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 465) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 466) | DT_BLK = 0x6
constant DT_CHR (line 467) | DT_CHR = 0x2
constant DT_DIR (line 468) | DT_DIR = 0x4
constant DT_FIFO (line 469) | DT_FIFO = 0x1
constant DT_LNK (line 470) | DT_LNK = 0xa
constant DT_REG (line 471) | DT_REG = 0x8
constant DT_SOCK (line 472) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 473) | DT_UNKNOWN = 0x0
constant DT_WHT (line 474) | DT_WHT = 0xe
constant ECHO (line 475) | ECHO = 0x8
constant ECHOCTL (line 476) | ECHOCTL = 0x200
constant ECHOE (line 477) | ECHOE = 0x10
constant ECHOK (line 478) | ECHOK = 0x20
constant ECHOKE (line 479) | ECHOKE = 0x800
constant ECHONL (line 480) | ECHONL = 0x40
constant ECHOPRT (line 481) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 482) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 483) | EFD_CLOEXEC = 0x80000
constant EFD_NONBLOCK (line 484) | EFD_NONBLOCK = 0x800
constant EFD_SEMAPHORE (line 485) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 486) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 487) | EFS_SUPER_MAGIC = 0x414a53
constant ENCODING_DEFAULT (line 488) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 489) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 490) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 491) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 492) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 493) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 494) | EPOLLERR = 0x8
constant EPOLLET (line 495) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 496) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 497) | EPOLLHUP = 0x10
constant EPOLLIN (line 498) | EPOLLIN = 0x1
constant EPOLLMSG (line 499) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 500) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 501) | EPOLLOUT = 0x4
constant EPOLLPRI (line 502) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 503) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 504) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 505) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 506) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 507) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 508) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 509) | EPOLL_CLOEXEC = 0x80000
constant EPOLL_CTL_ADD (line 510) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 511) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 512) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 513) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 514) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 515) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 516) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 517) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 518) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 519) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 520) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 521) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 522) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 523) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 524) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 525) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 526) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 527) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 528) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 529) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 530) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 531) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 532) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 533) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 534) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 535) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 536) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 537) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 538) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 539) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 540) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 541) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 542) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 543) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 544) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 545) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 546) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 547) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 548) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 549) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 550) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 551) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 552) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 553) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 554) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 555) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 556) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 557) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 558) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 559) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 560) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 561) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 562) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 563) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 564) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 565) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 566) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 567) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 568) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 569) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 570) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 571) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 572) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 573) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 574) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 575) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 576) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 577) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 578) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 579) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 580) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 581) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 582) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 583) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 584) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 585) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 586) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 587) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 588) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 589) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 590) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 591) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 592) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 593) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 594) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 595) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 596) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 597) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 598) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 599) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 600) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 601) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 602) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 603) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 604) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 605) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 606) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 607) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 608) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 609) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 610) | EXTA = 0xe
constant EXTB (line 611) | EXTB = 0xf
constant EXTPROC (line 612) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 613) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 614) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 615) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 616) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 617) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 618) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 619) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 620) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 621) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 622) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 623) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 624) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 625) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 626) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 627) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 628) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 629) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 630) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 631) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 632) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 633) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 634) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 635) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 636) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 637) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 638) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 639) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 640) | FAN_CREATE = 0x100
constant FAN_DELETE (line 641) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 642) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 643) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 644) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 645) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 646) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 647) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 648) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 649) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 650) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 651) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 652) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 653) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 654) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 655) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 656) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 657) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 658) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 659) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 660) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 661) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 662) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 663) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 664) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 665) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 666) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 667) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 668) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 669) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 670) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 671) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 672) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 673) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 674) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 675) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 676) | FD_SETSIZE = 0x400
constant FF0 (line 677) | FF0 = 0x0
constant FF1 (line 678) | FF1 = 0x8000
constant FFDLY (line 679) | FFDLY = 0x8000
constant FLUSHO (line 680) | FLUSHO = 0x1000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 681) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 682) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 683) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 684) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 685) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 686) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 687) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 688) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 689) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 690) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 691) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 692) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 693) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 694) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 695) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 696) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 697) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 698) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 699) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 700) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 701) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 702) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 703) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 704) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 705) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 706) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 707) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 708) | F_EXLCK = 0x4
constant F_GETFD (line 709) | F_GETFD = 0x1
constant F_GETFL (line 710) | F_GETFL = 0x3
constant F_GETLEASE (line 711) | F_GETLEASE = 0x401
constant F_GETLK (line 712) | F_GETLK = 0x5
constant F_GETLK64 (line 713) | F_GETLK64 = 0x5
constant F_GETOWN (line 714) | F_GETOWN = 0x9
constant F_GETOWN_EX (line 715) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 716) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 717) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 718) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 719) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 720) | F_GET_SEALS = 0x40a
constant F_LOCK (line 721) | F_LOCK = 0x1
constant F_NOTIFY (line 722) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 723) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 724) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 725) | F_OFD_SETLKW = 0x26
constant F_OK (line 726) | F_OK = 0x0
constant F_RDLCK (line 727) | F_RDLCK = 0x0
constant F_SEAL_FUTURE_WRITE (line 728) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 729) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 730) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 731) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 732) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 733) | F_SETFD = 0x2
constant F_SETFL (line 734) | F_SETFL = 0x4
constant F_SETLEASE (line 735) | F_SETLEASE = 0x400
constant F_SETLK (line 736) | F_SETLK = 0x6
constant F_SETLK64 (line 737) | F_SETLK64 = 0x6
constant F_SETLKW (line 738) | F_SETLKW = 0x7
constant F_SETLKW64 (line 739) | F_SETLKW64 = 0x7
constant F_SETOWN (line 740) | F_SETOWN = 0x8
constant F_SETOWN_EX (line 741) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 742) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 743) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 744) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 745) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 746) | F_SHLCK = 0x8
constant F_TEST (line 747) | F_TEST = 0x3
constant F_TLOCK (line 748) | F_TLOCK = 0x2
constant F_ULOCK (line 749) | F_ULOCK = 0x0
constant F_UNLCK (line 750) | F_UNLCK = 0x2
constant F_WRLCK (line 751) | F_WRLCK = 0x1
constant GENL_ADMIN_PERM (line 752) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 753) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 754) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 755) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 756) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 757) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 758) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 759) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 760) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 761) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 762) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 763) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 764) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 765) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 766) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 767) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 768) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 769) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 770) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 771) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 772) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 773) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 774) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 775) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 776) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 777) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 778) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 779) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 780) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 781) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 782) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 783) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 784) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 785) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 786) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 787) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 788) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 789) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 790) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 791) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 792) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 793) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 794) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 795) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 796) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 797) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 798) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 799) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 800) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 801) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 802) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 803) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 804) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 805) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 806) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 807) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 808) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 809) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 810) | HUPCL = 0x400
constant IBSHIFT (line 811) | IBSHIFT = 0x10
constant ICANON (line 812) | ICANON = 0x2
constant ICMPV6_FILTER (line 813) | ICMPV6_FILTER = 0x1
constant ICRNL (line 814) | ICRNL = 0x100
constant IEXTEN (line 815) | IEXTEN = 0x8000
constant IFA_F_DADFAILED (line 816) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 817) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 818) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 819) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 820) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 821) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 822) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 823) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 824) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 825) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 826) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 827) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 828) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 829) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 830) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 831) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 832) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 833) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 834) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 835) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 836) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 837) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 838) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 839) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 840) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 841) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 842) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 843) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 844) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 845) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 846) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 847) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 848) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 849) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 850) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 851) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 852) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 853) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 854) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 855) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 856) | IFF_SLAVE = 0x800
constant IFF_TAP (line 857) | IFF_TAP = 0x2
constant IFF_TUN (line 858) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 859) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 860) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 861) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 862) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 863) | IFNAMSIZ = 0x10
constant IGNBRK (line 864) | IGNBRK = 0x1
constant IGNCR (line 865) | IGNCR = 0x80
constant IGNPAR (line 866) | IGNPAR = 0x4
constant IMAXBEL (line 867) | IMAXBEL = 0x2000
constant INLCR (line 868) | INLCR = 0x40
constant INPCK (line 869) | INPCK = 0x10
constant IN_ACCESS (line 870) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 871) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 872) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 873) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 874) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 875) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 876) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 877) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 878) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 879) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 880) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 881) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 882) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 883) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 884) | IN_CLOEXEC = 0x80000
constant IN_CLOSE (line 885) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 886) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 887) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 888) | IN_CREATE = 0x100
constant IN_DELETE (line 889) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 890) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 891) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 892) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 893) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 894) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 895) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 896) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 897) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 898) | IN_MODIFY = 0x2
constant IN_MOVE (line 899) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 900) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 901) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 902) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 903) | IN_NONBLOCK = 0x800
constant IN_ONESHOT (line 904) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 905) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 906) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 907) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 908) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 909) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9
constant IPPROTO_AH (line 910) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 911) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 912) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 913) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 914) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 915) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 916) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 917) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 918) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 919) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 920) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 921) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 922) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 923) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 924) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 925) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 926) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 927) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 928) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 929) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 930) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 931) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 932) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 933) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 934) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 935) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 936) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 937) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 938) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 939) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 940) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 941) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 942) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 943) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 944) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 945) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 946) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 947) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 948) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 949) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 950) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 951) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 952) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 953) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 954) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 955) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 956) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 957) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 958) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 959) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 960) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 961) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 962) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 963) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 964) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 965) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 966) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 967) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 968) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 969) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 970) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 971) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 972) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 973) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 974) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 975) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 976) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 977) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 978) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 979) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 980) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 981) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 982) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 983) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 984) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 985) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 986) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 987) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 988) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 989) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 990) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 991) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 992) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 993) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 994) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 995) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 996) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 997) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 998) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 999) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1000) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1001) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1002) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1003) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1004) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1005) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1006) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1007) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1008) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1009) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1010) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1011) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1012) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1013) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1014) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1015) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1016) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1017) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1018) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1019) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1020) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1021) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1022) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1023) | IP_MF = 0x2000
constant IP_MINTTL (line 1024) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1025) | IP_MSFILTER = 0x29
constant IP_MSS (line 1026) | IP_MSS = 0x240
constant IP_MTU (line 1027) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1028) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1029) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1030) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1031) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1032) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1033) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1034) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1035) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1036) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1037) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1038) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1039) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1040) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1041) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1042) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1043) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1044) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1045) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1046) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1047) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1048) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1049) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1050) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1051) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1052) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1053) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1054) | IP_RETOPTS = 0x7
constant IP_RF (line 1055) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1056) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1057) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1058) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1059) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1060) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1061) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1062) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1063) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1064) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1065) | ISTRIP = 0x20
constant IUCLC (line 1066) | IUCLC = 0x200
constant IUTF8 (line 1067) | IUTF8 = 0x4000
constant IXANY (line 1068) | IXANY = 0x800
constant IXOFF (line 1069) | IXOFF = 0x1000
constant IXON (line 1070) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1071) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1072) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1073) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1074) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1075) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1076) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1077) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1078) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1079) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1080) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1081) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1082) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1083) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1084) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1085) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1086) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1087) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1088) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1089) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1090) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1091) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1092) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1093) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1094) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1095) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1096) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1097) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1098) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1099) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1100) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1101) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1102) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1103) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1104) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1105) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1106) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1107) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1108) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1109) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1110) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1111) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1112) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1113) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1114) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1115) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1116) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1117) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1118) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1119) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1120) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1121) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1122) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1123) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1124) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1125) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1126) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1127) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1128) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1129) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1130) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1131) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1132) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1133) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1134) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1135) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1136) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1137) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1138) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1139) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1140) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1141) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1142) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1143) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1144) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1145) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1146) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1147) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1148) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1149) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1150) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1151) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1152) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1153) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1154) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1155) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1156) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1157) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1158) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1159) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1160) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1161) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1162) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1163) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1164) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1165) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1166) | LOCK_EX = 0x2
constant LOCK_NB (line 1167) | LOCK_NB = 0x4
constant LOCK_SH (line 1168) | LOCK_SH = 0x1
constant LOCK_UN (line 1169) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1170) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1171) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1172) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1173) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1174) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1175) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1176) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1177) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1178) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1179) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1180) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1181) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1182) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1183) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1184) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1185) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1186) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1187) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1188) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1189) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1190) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1191) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1192) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1193) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1194) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1195) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1196) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1197) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1198) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1199) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1200) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1201) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1202) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1203) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1204) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1205) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1206) | MAP_FILE = 0x0
constant MAP_FIXED (line 1207) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1208) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1209) | MAP_GROWSDOWN = 0x100
constant MAP_HUGETLB (line 1210) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1211) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1212) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1213) | MAP_LOCKED = 0x2000
constant MAP_NONBLOCK (line 1214) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1215) | MAP_NORESERVE = 0x4000
constant MAP_POPULATE (line 1216) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1217) | MAP_PRIVATE = 0x2
constant MAP_SHARED (line 1218) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1219) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1220) | MAP_STACK = 0x20000
constant MAP_SYNC (line 1221) | MAP_SYNC = 0x80000
constant MAP_TYPE (line 1222) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1223) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1224) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1225) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1226) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1227) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1228) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1229) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1230) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1231) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1232) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1233) | MCL_FUTURE = 0x2
constant MCL_ONFAULT (line 1234) | MCL_ONFAULT = 0x4
constant MFD_ALLOW_SEALING (line 1235) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1236) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1237) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1238) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1239) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1240) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1241) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1242) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1243) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1244) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1245) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1246) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1247) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1248) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1249) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1250) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1251) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1252) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1253) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1254) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1255) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1256) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1257) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1258) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1259) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1260) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1261) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1262) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1263) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1264) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1265) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1266) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1267) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1268) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1269) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1270) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1271) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1272) | MSG_FIN = 0x200
constant MSG_MORE (line 1273) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1274) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1275) | MSG_OOB = 0x1
constant MSG_PEEK (line 1276) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1277) | MSG_PROXY = 0x10
constant MSG_RST (line 1278) | MSG_RST = 0x1000
constant MSG_SYN (line 1279) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1280) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1281) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1282) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1283) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1284) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1285) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1286) | MS_ASYNC = 0x1
constant MS_BIND (line 1287) | MS_BIND = 0x1000
constant MS_BORN (line 1288) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1289) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1290) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1291) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1292) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1293) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1294) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1295) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1296) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1297) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1298) | MS_NOATIME = 0x400
constant MS_NODEV (line 1299) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1300) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1301) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1302) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1303) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1304) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1305) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1306) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1307) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1308) | MS_RDONLY = 0x1
constant MS_REC (line 1309) | MS_REC = 0x4000
constant MS_RELATIME (line 1310) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1311) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1312) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1313) | MS_SHARED = 0x100000
constant MS_SILENT (line 1314) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1315) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1316) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1317) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1318) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1319) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1320) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1321) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1322) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1323) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1324) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1325) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1326) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1327) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1328) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1329) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1330) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1331) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1332) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1333) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1334) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1335) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1336) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1337) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1338) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1339) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1340) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1341) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1342) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1343) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1344) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1345) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1346) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1347) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1348) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1349) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1350) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1351) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1352) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1353) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1354) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1355) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1356) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1357) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1358) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1359) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1360) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1361) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1362) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1363) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1364) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1365) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1366) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1367) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1368) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1369) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1370) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1371) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1372) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1373) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1374) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1375) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1376) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1377) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1378) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1379) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1380) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1381) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1382) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1383) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1384) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1385) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1386) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1387) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1388) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1389) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1390) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1391) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1392) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1393) | NL0 = 0x0
constant NL1 (line 1394) | NL1 = 0x100
constant NLA_ALIGNTO (line 1395) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1396) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1397) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1398) | NLA_HDRLEN = 0x4
constant NLDLY (line 1399) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1400) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1401) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1402) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1403) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1404) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1405) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1406) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1407) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1408) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1409) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1410) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1411) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1412) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1413) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1414) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1415) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1416) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1417) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1418) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1419) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1420) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1421) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1422) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1423) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1424) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1425) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1426) | NS_GET_NSTYPE = 0xb703
constant NS_GET_OWNER_UID (line 1427) | NS_GET_OWNER_UID = 0xb704
constant NS_GET_PARENT (line 1428) | NS_GET_PARENT = 0xb702
constant NS_GET_USERNS (line 1429) | NS_GET_USERNS = 0xb701
constant OCFS2_SUPER_MAGIC (line 1430) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1431) | OCRNL = 0x8
constant OFDEL (line 1432) | OFDEL = 0x80
constant OFILL (line 1433) | OFILL = 0x40
constant OLCUC (line 1434) | OLCUC = 0x2
constant ONLCR (line 1435) | ONLCR = 0x4
constant ONLRET (line 1436) | ONLRET = 0x20
constant ONOCR (line 1437) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1438) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1439) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1440) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1441) | O_ACCMODE = 0x3
constant O_APPEND (line 1442) | O_APPEND = 0x400
constant O_ASYNC (line 1443) | O_ASYNC = 0x2000
constant O_CLOEXEC (line 1444) | O_CLOEXEC = 0x80000
constant O_CREAT (line 1445) | O_CREAT = 0x40
constant O_DIRECT (line 1446) | O_DIRECT = 0x4000
constant O_DIRECTORY (line 1447) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1448) | O_DSYNC = 0x1000
constant O_EXCL (line 1449) | O_EXCL = 0x80
constant O_FSYNC (line 1450) | O_FSYNC = 0x101000
constant O_LARGEFILE (line 1451) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1452) | O_NDELAY = 0x800
constant O_NOATIME (line 1453) | O_NOATIME = 0x40000
constant O_NOCTTY (line 1454) | O_NOCTTY = 0x100
constant O_NOFOLLOW (line 1455) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1456) | O_NONBLOCK = 0x800
constant O_PATH (line 1457) | O_PATH = 0x200000
constant O_RDONLY (line 1458) | O_RDONLY = 0x0
constant O_RDWR (line 1459) | O_RDWR = 0x2
constant O_RSYNC (line 1460) | O_RSYNC = 0x101000
constant O_SYNC (line 1461) | O_SYNC = 0x101000
constant O_TMPFILE (line 1462) | O_TMPFILE = 0x410000
constant O_TRUNC (line 1463) | O_TRUNC = 0x200
constant O_WRONLY (line 1464) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1465) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1466) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1467) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1468) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1469) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1470) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1471) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1472) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1473) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1474) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1475) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1476) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1477) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1478) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1479) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1480) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1481) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1482) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1483) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1484) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1485) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1486) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1487) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1488) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1489) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1490) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1491) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1492) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1493) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1494) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1495) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1496) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1497) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1498) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1499) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1500) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1501) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1502) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1503) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1504) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1505) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1506) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1507) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1508) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1509) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1510) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1511) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1512) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1513) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1514) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1515) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1516) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1517) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1518) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1519) | PARITY_NONE = 0x1
constant PARMRK (line 1520) | PARMRK = 0x8
constant PARODD (line 1521) | PARODD = 0x200
constant PENDIN (line 1522) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1523) | PERF_EVENT_IOC_DISABLE = 0x2401
constant PERF_EVENT_IOC_ENABLE (line 1524) | PERF_EVENT_IOC_ENABLE = 0x2400
constant PERF_EVENT_IOC_ID (line 1525) | PERF_EVENT_IOC_ID = 0x80082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1526) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1527) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409
constant PERF_EVENT_IOC_PERIOD (line 1528) | PERF_EVENT_IOC_PERIOD = 0x40082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1529) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1530) | PERF_EVENT_IOC_REFRESH = 0x2402
constant PERF_EVENT_IOC_RESET (line 1531) | PERF_EVENT_IOC_RESET = 0x2403
constant PERF_EVENT_IOC_SET_BPF (line 1532) | PERF_EVENT_IOC_SET_BPF = 0x40042408
constant PERF_EVENT_IOC_SET_FILTER (line 1533) | PERF_EVENT_IOC_SET_FILTER = 0x40082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1534) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405
constant PIPEFS_MAGIC (line 1535) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1536) | PPPIOCATTACH = 0x4004743d
constant PPPIOCATTCHAN (line 1537) | PPPIOCATTCHAN = 0x40047438
constant PPPIOCCONNECT (line 1538) | PPPIOCCONNECT = 0x4004743a
constant PPPIOCDETACH (line 1539) | PPPIOCDETACH = 0x4004743c
constant PPPIOCDISCONN (line 1540) | PPPIOCDISCONN = 0x7439
constant PPPIOCGASYNCMAP (line 1541) | PPPIOCGASYNCMAP = 0x80047458
constant PPPIOCGCHAN (line 1542) | PPPIOCGCHAN = 0x80047437
constant PPPIOCGDEBUG (line 1543) | PPPIOCGDEBUG = 0x80047441
constant PPPIOCGFLAGS (line 1544) | PPPIOCGFLAGS = 0x8004745a
constant PPPIOCGIDLE (line 1545) | PPPIOCGIDLE = 0x8010743f
constant PPPIOCGL2TPSTATS (line 1546) | PPPIOCGL2TPSTATS = 0x80487436
constant PPPIOCGMRU (line 1547) | PPPIOCGMRU = 0x80047453
constant PPPIOCGNPMODE (line 1548) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1549) | PPPIOCGRASYNCMAP = 0x80047455
constant PPPIOCGUNIT (line 1550) | PPPIOCGUNIT = 0x80047456
constant PPPIOCGXASYNCMAP (line 1551) | PPPIOCGXASYNCMAP = 0x80207450
constant PPPIOCNEWUNIT (line 1552) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1553) | PPPIOCSACTIVE = 0x40107446
constant PPPIOCSASYNCMAP (line 1554) | PPPIOCSASYNCMAP = 0x40047457
constant PPPIOCSCOMPRESS (line 1555) | PPPIOCSCOMPRESS = 0x4010744d
constant PPPIOCSDEBUG (line 1556) | PPPIOCSDEBUG = 0x40047440
constant PPPIOCSFLAGS (line 1557) | PPPIOCSFLAGS = 0x40047459
constant PPPIOCSMAXCID (line 1558) | PPPIOCSMAXCID = 0x40047451
constant PPPIOCSMRRU (line 1559) | PPPIOCSMRRU = 0x4004743b
constant PPPIOCSMRU (line 1560) | PPPIOCSMRU = 0x40047452
constant PPPIOCSNPMODE (line 1561) | PPPIOCSNPMODE = 0x4008744b
constant PPPIOCSPASS (line 1562) | PPPIOCSPASS = 0x40107447
constant PPPIOCSRASYNCMAP (line 1563) | PPPIOCSRASYNCMAP = 0x40047454
constant PPPIOCSXASYNCMAP (line 1564) | PPPIOCSXASYNCMAP = 0x4020744f
constant PPPIOCXFERUNIT (line 1565) | PPPIOCXFERUNIT = 0x744e
constant PRIO_PGRP (line 1566) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1567) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1568) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1569) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1570) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1571) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1572) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1573) | PROT_NONE = 0x0
constant PROT_READ (line 1574) | PROT_READ = 0x1
constant PROT_WRITE (line 1575) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1576) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1577) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1578) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1579) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1580) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1581) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1582) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1583) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1584) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1585) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1586) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1587) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1588) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1589) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1590) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1591) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1592) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1593) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1594) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1595) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1596) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1597) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1598) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1599) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1600) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1601) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1602) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1603) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1604) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1605) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1606) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1607) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1608) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1609) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1610) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1611) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1612) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1613) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1614) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1615) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1616) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1617) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1618) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1619) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1620) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1621) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1622) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1623) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1624) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1625) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1626) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1627) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1628) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1629) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1630) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1631) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1632) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1633) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1634) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1635) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1636) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1637) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1638) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1639) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1640) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1641) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1642) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1643) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1644) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1645) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1646) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1647) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1648) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1649) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1650) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1651) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1652) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1653) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1654) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1655) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1656) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1657) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1658) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1659) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1660) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1661) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1662) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1663) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1664) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1665) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1666) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1667) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1668) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1669) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1670) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1671) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1672) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1673) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1674) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1675) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1676) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1677) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1678) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1679) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1680) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1681) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1682) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1683) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1684) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1685) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1686) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1687) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1688) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1689) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1690) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1691) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1692) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1693) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1694) | PTRACE_DETACH = 0x11
constant PTRACE_DISABLE_TE (line 1695) | PTRACE_DISABLE_TE = 0x5010
constant PTRACE_ENABLE_TE (line 1696) | PTRACE_ENABLE_TE = 0x5009
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1697) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1698) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1699) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1700) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1701) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1702) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1703) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1704) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1705) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1706) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1707) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETREGS (line 1708) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGSET (line 1709) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1710) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1711) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_LAST_BREAK (line 1712) | PTRACE_GET_LAST_BREAK = 0x5006
constant PTRACE_GET_SYSCALL_INFO (line 1713) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_INTERRUPT (line 1714) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1715) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1716) | PTRACE_LISTEN = 0x4208
constant PTRACE_OLDSETOPTIONS (line 1717) | PTRACE_OLDSETOPTIONS = 0x15
constant PTRACE_O_EXITKILL (line 1718) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1719) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1720) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1721) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1722) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1723) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1724) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1725) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1726) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1727) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1728) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1729) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKDATA_AREA (line 1730) | PTRACE_PEEKDATA_AREA = 0x5003
constant PTRACE_PEEKSIGINFO (line 1731) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1732) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1733) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKTEXT_AREA (line 1734) | PTRACE_PEEKTEXT_AREA = 0x5002
constant PTRACE_PEEKUSR (line 1735) | PTRACE_PEEKUSR = 0x3
constant PTRACE_PEEKUSR_AREA (line 1736) | PTRACE_PEEKUSR_AREA = 0x5000
constant PTRACE_PEEK_SYSTEM_CALL (line 1737) | PTRACE_PEEK_SYSTEM_CALL = 0x5007
constant PTRACE_POKEDATA (line 1738) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKEDATA_AREA (line 1739) | PTRACE_POKEDATA_AREA = 0x5005
constant PTRACE_POKETEXT (line 1740) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKETEXT_AREA (line 1741) | PTRACE_POKETEXT_AREA = 0x5004
constant PTRACE_POKEUSR (line 1742) | PTRACE_POKEUSR = 0x6
constant PTRACE_POKEUSR_AREA (line 1743) | PTRACE_POKEUSR_AREA = 0x5001
constant PTRACE_POKE_SYSTEM_CALL (line 1744) | PTRACE_POKE_SYSTEM_CALL = 0x5008
constant PTRACE_PROT (line 1745) | PTRACE_PROT = 0x15
constant PTRACE_SECCOMP_GET_FILTER (line 1746) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1747) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1748) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETOPTIONS (line 1749) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1750) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGSET (line 1751) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1752) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1753) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SINGLEBLOCK (line 1754) | PTRACE_SINGLEBLOCK = 0xc
constant PTRACE_SINGLESTEP (line 1755) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SYSCALL (line 1756) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1757) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1758) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1759) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1760) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_TE_ABORT_RAND (line 1761) | PTRACE_TE_ABORT_RAND = 0x5011
constant PTRACE_TRACEME (line 1762) | PTRACE_TRACEME = 0x0
constant PT_ACR0 (line 1763) | PT_ACR0 = 0x90
constant PT_ACR1 (line 1764) | PT_ACR1 = 0x94
constant PT_ACR10 (line 1765) | PT_ACR10 = 0xb8
constant PT_ACR11 (line 1766) | PT_ACR11 = 0xbc
constant PT_ACR12 (line 1767) | PT_ACR12 = 0xc0
constant PT_ACR13 (line 1768) | PT_ACR13 = 0xc4
constant PT_ACR14 (line 1769) | PT_ACR14 = 0xc8
constant PT_ACR15 (line 1770) | PT_ACR15 = 0xcc
constant PT_ACR2 (line 1771) | PT_ACR2 = 0x98
constant PT_ACR3 (line 1772) | PT_ACR3 = 0x9c
constant PT_ACR4 (line 1773) | PT_ACR4 = 0xa0
constant PT_ACR5 (line 1774) | PT_ACR5 = 0xa4
constant PT_ACR6 (line 1775) | PT_ACR6 = 0xa8
constant PT_ACR7 (line 1776) | PT_ACR7 = 0xac
constant PT_ACR8 (line 1777) | PT_ACR8 = 0xb0
constant PT_ACR9 (line 1778) | PT_ACR9 = 0xb4
constant PT_CR_10 (line 1779) | PT_CR_10 = 0x168
constant PT_CR_11 (line 1780) | PT_CR_11 = 0x170
constant PT_CR_9 (line 1781) | PT_CR_9 = 0x160
constant PT_ENDREGS (line 1782) | PT_ENDREGS = 0x1af
constant PT_FPC (line 1783) | PT_FPC = 0xd8
constant PT_FPR0 (line 1784) | PT_FPR0 = 0xe0
constant PT_FPR1 (line 1785) | PT_FPR1 = 0xe8
constant PT_FPR10 (line 1786) | PT_FPR10 = 0x130
constant PT_FPR11 (line 1787) | PT_FPR11 = 0x138
constant PT_FPR12 (line 1788) | PT_FPR12 = 0x140
constant PT_FPR13 (line 1789) | PT_FPR13 = 0x148
constant PT_FPR14 (line 1790) | PT_FPR14 = 0x150
constant PT_FPR15 (line 1791) | PT_FPR15 = 0x158
constant PT_FPR2 (line 1792) | PT_FPR2 = 0xf0
constant PT_FPR3 (line 1793) | PT_FPR3 = 0xf8
constant PT_FPR4 (line 1794) | PT_FPR4 = 0x100
constant PT_FPR5 (line 1795) | PT_FPR5 = 0x108
constant PT_FPR6 (line 1796) | PT_FPR6 = 0x110
constant PT_FPR7 (line 1797) | PT_FPR7 = 0x118
constant PT_FPR8 (line 1798) | PT_FPR8 = 0x120
constant PT_FPR9 (line 1799) | PT_FPR9 = 0x128
constant PT_GPR0 (line 1800) | PT_GPR0 = 0x10
constant PT_GPR1 (line 1801) | PT_GPR1 = 0x18
constant PT_GPR10 (line 1802) | PT_GPR10 = 0x60
constant PT_GPR11 (line 1803) | PT_GPR11 = 0x68
constant PT_GPR12 (line 1804) | PT_GPR12 = 0x70
constant PT_GPR13 (line 1805) | PT_GPR13 = 0x78
constant PT_GPR14 (line 1806) | PT_GPR14 = 0x80
constant PT_GPR15 (line 1807) | PT_GPR15 = 0x88
constant PT_GPR2 (line 1808) | PT_GPR2 = 0x20
constant PT_GPR3 (line 1809) | PT_GPR3 = 0x28
constant PT_GPR4 (line 1810) | PT_GPR4 = 0x30
constant PT_GPR5 (line 1811) | PT_GPR5 = 0x38
constant PT_GPR6 (line 1812) | PT_GPR6 = 0x40
constant PT_GPR7 (line 1813) | PT_GPR7 = 0x48
constant PT_GPR8 (line 1814) | PT_GPR8 = 0x50
constant PT_GPR9 (line 1815) | PT_GPR9 = 0x58
constant PT_IEEE_IP (line 1816) | PT_IEEE_IP = 0x1a8
constant PT_LASTOFF (line 1817) | PT_LASTOFF = 0x1a8
constant PT_ORIGGPR2 (line 1818) | PT_ORIGGPR2 = 0xd0
constant PT_PSWADDR (line 1819) | PT_PSWADDR = 0x8
constant PT_PSWMASK (line 1820) | PT_PSWMASK = 0x0
constant QNX4_SUPER_MAGIC (line 1821) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1822) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1823) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1824) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1825) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1826) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1827) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1828) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1829) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1830) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1831) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1832) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1833) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1834) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1835) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1836) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1837) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1838) | RLIMIT_NOFILE = 0x7
constant RLIMIT_NPROC (line 1839) | RLIMIT_NPROC = 0x6
constant RLIMIT_RSS (line 1840) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1841) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1842) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1843) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1844) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1845) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1846) | RNDADDENTROPY = 0x40085203
constant RNDADDTOENTCNT (line 1847) | RNDADDTOENTCNT = 0x40045201
constant RNDCLEARPOOL (line 1848) | RNDCLEARPOOL = 0x5206
constant RNDGETENTCNT (line 1849) | RNDGETENTCNT = 0x80045200
constant RNDGETPOOL (line 1850) | RNDGETPOOL = 0x80085202
constant RNDRESEEDCRNG (line 1851) | RNDRESEEDCRNG = 0x5207
constant RNDZAPENTCNT (line 1852) | RNDZAPENTCNT = 0x5204
constant RTAX_ADVMSS (line 1853) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1854) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1855) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1856) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1857) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1858) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1859) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1860) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1861) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1862) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1863) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1864) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1865) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1866) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1867) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1868) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1869) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1870) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1871) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1872) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1873) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1874) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1875) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1876) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1877) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1878) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1879) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1880) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1881) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1882) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1883) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1884) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1885) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1886) | RTC_AIE_OFF = 0x7002
constant RTC_AIE_ON (line 1887) | RTC_AIE_ON = 0x7001
constant RTC_ALM_READ (line 1888) | RTC_ALM_READ = 0x80247008
constant RTC_ALM_SET (line 1889) | RTC_ALM_SET = 0x40247007
constant RTC_EPOCH_READ (line 1890) | RTC_EPOCH_READ = 0x8008700d
constant RTC_EPOCH_SET (line 1891) | RTC_EPOCH_SET = 0x4008700e
constant RTC_IRQF (line 1892) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1893) | RTC_IRQP_READ = 0x8008700b
constant RTC_IRQP_SET (line 1894) | RTC_IRQP_SET = 0x4008700c
constant RTC_MAX_FREQ (line 1895) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1896) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1897) | RTC_PIE_OFF = 0x7006
constant RTC_PIE_ON (line 1898) | RTC_PIE_ON = 0x7005
constant RTC_PLL_GET (line 1899) | RTC_PLL_GET = 0x80207011
constant RTC_PLL_SET (line 1900) | RTC_PLL_SET = 0x40207012
constant RTC_RD_TIME (line 1901) | RTC_RD_TIME = 0x80247009
constant RTC_SET_TIME (line 1902) | RTC_SET_TIME = 0x4024700a
constant RTC_UF (line 1903) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1904) | RTC_UIE_OFF = 0x7004
constant RTC_UIE_ON (line 1905) | RTC_UIE_ON = 0x7003
constant RTC_VL_CLR (line 1906) | RTC_VL_CLR = 0x7014
constant RTC_VL_READ (line 1907) | RTC_VL_READ = 0x80047013
constant RTC_WIE_OFF (line 1908) | RTC_WIE_OFF = 0x7010
constant RTC_WIE_ON (line 1909) | RTC_WIE_ON = 0x700f
constant RTC_WKALM_RD (line 1910) | RTC_WKALM_RD = 0x80287010
constant RTC_WKALM_SET (line 1911) | RTC_WKALM_SET = 0x4028700f
constant RTF_ADDRCLASSMASK (line 1912) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1913) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1914) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1915) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1916) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1917) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1918) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1919) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1920) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1921) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1922) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1923) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1924) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1925) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1926) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1927) | RTF_MSS = 0x40
constant RTF_MTU (line 1928) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1929) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1930) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1931) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1932) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1933) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1934) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1935) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1936) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1937) | RTF_STATIC = 0x400
constant RTF_THROW (line 1938) | RTF_THROW = 0x2000
constant RTF_UP (line 1939) | RTF_UP = 0x1
constant RTF_WINDOW (line 1940) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1941) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1942) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1943) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1944) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1945) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1946) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1947) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1948) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1949) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1950) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1951) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1952) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1953) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1954) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1955) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1956) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1957) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1958) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1959) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1960) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1961) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1962) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1963) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1964) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1965) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1966) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1967) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1968) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1969) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1970) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1971) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1972) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1973) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1974) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1975) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1976) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1977) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1978) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1979) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1980) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1981) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1982) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1983) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1984) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1985) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1986) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1987) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1988) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1989) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1990) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1991) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1992) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1993) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1994) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1995) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1996) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1997) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1998) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1999) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 2000) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 2001) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 2002) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 2003) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 2004) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 2005) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 2006) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 2007) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 2008) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 2009) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 2010) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 2011) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 2012) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 2013) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 2014) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 2015) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 2016) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 2017) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 2018) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 2019) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 2020) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 2021) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 2022) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 2023) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 2024) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 2025) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 2026) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 2027) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 2028) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 2029) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 2030) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 2031) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 2032) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 2033) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 2034) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 2035) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 2036) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 2037) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 2038) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 2039) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 2040) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 2041) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 2042) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 2043) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 2044) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 2045) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 2046) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 2047) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 2048) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 2049) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 2050) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 2051) | SCM_TIMESTAMPING = 0x25
constant SCM_TIMESTAMPING_OPT_STATS (line 2052) | SCM_TIMESTAMPING_OPT_STATS = 0x36
constant SCM_TIMESTAMPING_PKTINFO (line 2053) | SCM_TIMESTAMPING_PKTINFO = 0x3a
constant SCM_TIMESTAMPNS (line 2054) | SCM_TIMESTAMPNS = 0x23
constant SCM_TXTIME (line 2055) | SCM_TXTIME = 0x3d
constant SCM_WIFI_STATUS (line 2056) | SCM_WIFI_STATUS = 0x29
constant SC_LOG_FLUSH (line 2057) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 2058) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 2059) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 2060) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2061) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2062) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2063) | SFD_CLOEXEC = 0x80000
constant SFD_NONBLOCK (line 2064) | SFD_NONBLOCK = 0x800
constant SHUT_RD (line 2065) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2066) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2067) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2068) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2069) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2070) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2071) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 2072) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2073) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2074) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2075) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2076) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2077) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2078) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2079) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2080) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2081) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2082) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2083) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2084) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2085) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2086) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2087) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2088) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2089) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2090) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2091) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2092) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2093) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2094) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2095) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2096) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2097) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2098) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2099) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2100) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2101) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2102) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2103) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2104) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2105) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2106) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2107) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2108) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2109) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2110) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2111) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2112) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2113) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2114) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2115) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2116) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2117) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2118) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2119) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2120) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2121) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2122) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2123) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2124) | SIOCGSTAMPNS_NEW = 0x80108907
constant SIOCGSTAMPNS_OLD (line 2125) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2126) | SIOCGSTAMP_NEW = 0x80108906
constant SIOCGSTAMP_OLD (line 2127) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2128) | SIOCINQ = 0x541b
constant SIOCOUTQ (line 2129) | SIOCOUTQ = 0x5411
constant SIOCOUTQNSD (line 2130) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2131) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2132) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2133) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2134) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2135) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2136) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2137) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2138) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2139) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2140) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2141) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2142) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2143) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2144) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2145) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2146) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2147) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2148) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2149) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2150) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2151) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2152) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2153) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2154) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2155) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2156) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2157) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2158) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2159) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2160) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2161) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2162) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2163) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2164) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2165) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2166) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2167) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2168) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2169) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2170) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2171) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2172) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2173) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2174) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2175) | SOCK_CLOEXEC = 0x80000
constant SOCK_DCCP (line 2176) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2177) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2178) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2179) | SOCK_NONBLOCK = 0x800
constant SOCK_PACKET (line 2180) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2181) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2182) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2183) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2184) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2185) | SOL_AAL = 0x109
constant SOL_ALG (line 2186) | SOL_ALG = 0x117
constant SOL_ATM (line 2187) | SOL_ATM = 0x108
constant SOL_CAIF (line 2188) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2189) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2190) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2191) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2192) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2193) | SOL_IP = 0x0
constant SOL_IPV6 (line 2194) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2195) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2196) | SOL_IUCV = 0x115
constant SOL_KCM (line 2197) | SOL_KCM = 0x119
constant SOL_LLC (line 2198) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2199) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2200) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2201) | SOL_NFC = 0x118
constant SOL_PACKET (line 2202) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2203) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2204) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2205) | SOL_RAW = 0xff
constant SOL_RDS (line 2206) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2207) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2208) | SOL_SOCKET = 0x1
constant SOL_TCP (line 2209) | SOL_TCP = 0x6
constant SOL_TIPC (line 2210) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2211) | SOL_TLS = 0x11a
constant SOL_X25 (line 2212) | SOL_X25 = 0x106
constant SOL_XDP (line 2213) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2214) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2215) | SO_ACCEPTCONN = 0x1e
constant SO_ATTACH_BPF (line 2216) | SO_ATTACH_BPF = 0x32
constant SO_ATTACH_FILTER (line 2217) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2218) | SO_ATTACH_REUSEPORT_CBPF = 0x33
constant SO_ATTACH_REUSEPORT_EBPF (line 2219) | SO_ATTACH_REUSEPORT_EBPF = 0x34
constant SO_BINDTODEVICE (line 2220) | SO_BINDTODEVICE = 0x19
constant SO_BINDTOIFINDEX (line 2221) | SO_BINDTOIFINDEX = 0x3e
constant SO_BPF_EXTENSIONS (line 2222) | SO_BPF_EXTENSIONS = 0x30
constant SO_BROADCAST (line 2223) | SO_BROADCAST = 0x6
constant SO_BSDCOMPAT (line 2224) | SO_BSDCOMPAT = 0xe
constant SO_BUSY_POLL (line 2225) | SO_BUSY_POLL = 0x2e
constant SO_CNX_ADVICE (line 2226) | SO_CNX_ADVICE = 0x35
constant SO_COOKIE (line 2227) | SO_COOKIE = 0x39
constant SO_DEBUG (line 2228) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2229) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2230) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2231) | SO_DETACH_REUSEPORT_BPF = 0x44
constant SO_DOMAIN (line 2232) | SO_DOMAIN = 0x27
constant SO_DONTROUTE (line 2233) | SO_DONTROUTE = 0x5
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2234) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2235) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2236) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2237) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2238) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2239) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2240) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2241) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2242) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2243) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2244) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2245) | SO_ERROR = 0x4
constant SO_GET_FILTER (line 2246) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2247) | SO_INCOMING_CPU = 0x31
constant SO_INCOMING_NAPI_ID (line 2248) | SO_INCOMING_NAPI_ID = 0x38
constant SO_KEEPALIVE (line 2249) | SO_KEEPALIVE = 0x9
constant SO_LINGER (line 2250) | SO_LINGER = 0xd
constant SO_LOCK_FILTER (line 2251) | SO_LOCK_FILTER = 0x2c
constant SO_MARK (line 2252) | SO_MARK = 0x24
constant SO_MAX_PACING_RATE (line 2253) | SO_MAX_PACING_RATE = 0x2f
constant SO_MEMINFO (line 2254) | SO_MEMINFO = 0x37
constant SO_NOFCS (line 2255) | SO_NOFCS = 0x2b
constant SO_NO_CHECK (line 2256) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2257) | SO_OOBINLINE = 0xa
constant SO_PASSCRED (line 2258) | SO_PASSCRED = 0x10
constant SO_PASSSEC (line 2259) | SO_PASSSEC = 0x22
constant SO_PEEK_OFF (line 2260) | SO_PEEK_OFF = 0x2a
constant SO_PEERCRED (line 2261) | SO_PEERCRED = 0x11
constant SO_PEERGROUPS (line 2262) | SO_PEERGROUPS = 0x3b
constant SO_PEERNAME (line 2263) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2264) | SO_PEERSEC = 0x1f
constant SO_PRIORITY (line 2265) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2266) | SO_PROTOCOL = 0x26
constant SO_RCVBUF (line 2267) | SO_RCVBUF = 0x8
constant SO_RCVBUFFORCE (line 2268) | SO_RCVBUFFORCE = 0x21
constant SO_RCVLOWAT (line 2269) | SO_RCVLOWAT = 0x12
constant SO_RCVTIMEO (line 2270) | SO_RCVTIMEO = 0x14
constant SO_RCVTIMEO_NEW (line 2271) | SO_RCVTIMEO_NEW = 0x42
constant SO_RCVTIMEO_OLD (line 2272) | SO_RCVTIMEO_OLD = 0x14
constant SO_REUSEADDR (line 2273) | SO_REUSEADDR = 0x2
constant SO_REUSEPORT (line 2274) | SO_REUSEPORT = 0xf
constant SO_RXQ_OVFL (line 2275) | SO_RXQ_OVFL = 0x28
constant SO_SECURITY_AUTHENTICATION (line 2276) | SO_SECURITY_AUTHENTICATION = 0x16
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2277) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2278) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17
constant SO_SELECT_ERR_QUEUE (line 2279) | SO_SELECT_ERR_QUEUE = 0x2d
constant SO_SNDBUF (line 2280) | SO_SNDBUF = 0x7
constant SO_SNDBUFFORCE (line 2281) | SO_SNDBUFFORCE = 0x20
constant SO_SNDLOWAT (line 2282) | SO_SNDLOWAT = 0x13
constant SO_SNDTIMEO (line 2283) | SO_SNDTIMEO = 0x15
constant SO_SNDTIMEO_NEW (line 2284) | SO_SNDTIMEO_NEW = 0x43
constant SO_SNDTIMEO_OLD (line 2285) | SO_SNDTIMEO_OLD = 0x15
constant SO_TIMESTAMP (line 2286) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2287) | SO_TIMESTAMPING = 0x25
constant SO_TIMESTAMPING_NEW (line 2288) | SO_TIMESTAMPING_NEW = 0x41
constant SO_TIMESTAMPING_OLD (line 2289) | SO_TIMESTAMPING_OLD = 0x25
constant SO_TIMESTAMPNS (line 2290) | SO_TIMESTAMPNS = 0x23
constant SO_TIMESTAMPNS_NEW (line 2291) | SO_TIMESTAMPNS_NEW = 0x40
constant SO_TIMESTAMPNS_OLD (line 2292) | SO_TIMESTAMPNS_OLD = 0x23
constant SO_TIMESTAMP_NEW (line 2293) | SO_TIMESTAMP_NEW = 0x3f
constant SO_TIMESTAMP_OLD (line 2294) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2295) | SO_TXTIME = 0x3d
constant SO_TYPE (line 2296) | SO_TYPE = 0x3
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2297) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2298) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2299) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2300) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2301) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2302) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2303) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2304) | SO_WIFI_STATUS = 0x29
constant SO_ZEROCOPY (line 2305) | SO_ZEROCOPY = 0x3c
constant SPLICE_F_GIFT (line 2306) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2307) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2308) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2309) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2310) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2311) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2312) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2313) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2314) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2315) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2316) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2317) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2318) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2319) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2320) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2321) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2322) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2323) | STATX_CTIME = 0x80
constant STATX_GID (line 2324) | STATX_GID = 0x10
constant STATX_INO (line 2325) | STATX_INO = 0x100
constant STATX_MODE (line 2326) | STATX_MODE = 0x2
constant STATX_MTIME (line 2327) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2328) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2329) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2330) | STATX_TYPE = 0x1
constant STATX_UID (line 2331) | STATX_UID = 0x8
constant STATX__RESERVED (line 2332) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2333) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2334) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2335) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2336) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2337) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2338) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2339) | S_IEXEC = 0x40
constant S_IFBLK (line 2340) | S_IFBLK = 0x6000
constant S_IFCHR (line 2341) | S_IFCHR = 0x2000
constant S_IFDIR (line 2342) | S_IFDIR = 0x4000
constant S_IFIFO (line 2343) | S_IFIFO = 0x1000
constant S_IFLNK (line 2344) | S_IFLNK = 0xa000
constant S_IFMT (line 2345) | S_IFMT = 0xf000
constant S_IFREG (line 2346) | S_IFREG = 0x8000
constant S_IFSOCK (line 2347) | S_IFSOCK = 0xc000
constant S_IREAD (line 2348) | S_IREAD = 0x100
constant S_IRGRP (line 2349) | S_IRGRP = 0x20
constant S_IROTH (line 2350) | S_IROTH = 0x4
constant S_IRUSR (line 2351) | S_IRUSR = 0x100
constant S_IRWXG (line 2352) | S_IRWXG = 0x38
constant S_IRWXO (line 2353) | S_IRWXO = 0x7
constant S_IRWXU (line 2354) | S_IRWXU = 0x1c0
constant S_ISGID (line 2355) | S_ISGID = 0x400
constant S_ISUID (line 2356) | S_ISUID = 0x800
constant S_ISVTX (line 2357) | S_ISVTX = 0x200
constant S_IWGRP (line 2358) | S_IWGRP = 0x10
constant S_IWOTH (line 2359) | S_IWOTH = 0x2
constant S_IWRITE (line 2360) | S_IWRITE = 0x80
constant S_IWUSR (line 2361) | S_IWUSR = 0x80
constant S_IXGRP (line 2362) | S_IXGRP = 0x8
constant S_IXOTH (line 2363) | S_IXOTH = 0x1
constant S_IXUSR (line 2364) | S_IXUSR = 0x40
constant TAB0 (line 2365) | TAB0 = 0x0
constant TAB1 (line 2366) | TAB1 = 0x800
constant TAB2 (line 2367) | TAB2 = 0x1000
constant TAB3 (line 2368) | TAB3 = 0x1800
constant TABDLY (line 2369) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2370) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2371) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2372) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2373) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2374) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2375) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2376) | TCFLSH = 0x540b
constant TCGETA (line 2377) | TCGETA = 0x5405
constant TCGETS (line 2378) | TCGETS = 0x5401
constant TCGETS2 (line 2379) | TCGETS2 = 0x802c542a
constant TCGETX (line 2380) | TCGETX = 0x5432
constant TCIFLUSH (line 2381) | TCIFLUSH = 0x0
constant TCIOFF (line 2382) | TCIOFF = 0x2
constant TCIOFLUSH (line 2383) | TCIOFLUSH = 0x2
constant TCION (line 2384) | TCION = 0x3
constant TCOFLUSH (line 2385) | TCOFLUSH = 0x1
constant TCOOFF (line 2386) | TCOOFF = 0x0
constant TCOON (line 2387) | TCOON = 0x1
constant TCP_BPF_IW (line 2388) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2389) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2390) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2391) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2392) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2393) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2394) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2395) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2396) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2397) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2398) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2399) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2400) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2401) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2402) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2403) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2404) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2405) | TCP_INFO = 0xb
constant TCP_INQ (line 2406) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2407) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2408) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2409) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2410) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2411) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2412) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2413) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2414) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2415) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2416) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2417) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2418) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2419) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2420) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2421) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2422) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2423) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2424) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2425) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2426) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2427) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2428) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2429) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2430) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2431) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2432) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2433) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2434) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2435) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2436) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2437) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2438) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2439) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2440) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2441) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2442) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2443) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2444) | TCSAFLUSH = 0x2
constant TCSBRK (line 2445) | TCSBRK = 0x5409
constant TCSBRKP (line 2446) | TCSBRKP = 0x5425
constant TCSETA (line 2447) | TCSETA = 0x5406
constant TCSETAF (line 2448) | TCSETAF = 0x5408
constant TCSETAW (line 2449) | TCSETAW = 0x5407
constant TCSETS (line 2450) | TCSETS = 0x5402
constant TCSETS2 (line 2451) | TCSETS2 = 0x402c542b
constant TCSETSF (line 2452) | TCSETSF = 0x5404
constant TCSETSF2 (line 2453) | TCSETSF2 = 0x402c542d
constant TCSETSW (line 2454) | TCSETSW = 0x5403
constant TCSETSW2 (line 2455) | TCSETSW2 = 0x402c542c
constant TCSETX (line 2456) | TCSETX = 0x5433
constant TCSETXF (line 2457) | TCSETXF = 0x5434
constant TCSETXW (line 2458) | TCSETXW = 0x5435
constant TCXONC (line 2459) | TCXONC = 0x540a
constant TIMER_ABSTIME (line 2460) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2461) | TIOCCBRK = 0x5428
constant TIOCCONS (line 2462) | TIOCCONS = 0x541d
constant TIOCEXCL (line 2463) | TIOCEXCL = 0x540c
constant TIOCGDEV (line 2464) | TIOCGDEV = 0x80045432
constant TIOCGETD (line 2465) | TIOCGETD = 0x5424
constant TIOCGEXCL (line 2466) | TIOCGEXCL = 0x80045440
constant TIOCGICOUNT (line 2467) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2468) | TIOCGISO7816 = 0x80285442
constant TIOCGLCKTRMIOS (line 2469) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGPGRP (line 2470) | TIOCGPGRP = 0x540f
constant TIOCGPKT (line 2471) | TIOCGPKT = 0x80045438
constant TIOCGPTLCK (line 2472) | TIOCGPTLCK = 0x80045439
constant TIOCGPTN (line 2473) | TIOCGPTN = 0x80045430
constant TIOCGPTPEER (line 2474) | TIOCGPTPEER = 0x5441
constant TIOCGRS485 (line 2475) | TIOCGRS485 = 0x542e
constant TIOCGSERIAL (line 2476) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2477) | TIOCGSID = 0x5429
constant TIOCGSOFTCAR (line 2478) | TIOCGSOFTCAR = 0x5419
constant TIOCGWINSZ (line 2479) | TIOCGWINSZ = 0x5413
constant TIOCINQ (line 2480) | TIOCINQ = 0x541b
constant TIOCLINUX (line 2481) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2482) | TIOCMBIC = 0x5417
constant TIOCMBIS (line 2483) | TIOCMBIS = 0x5416
constant TIOCMGET (line 2484) | TIOCMGET = 0x5415
constant TIOCMIWAIT (line 2485) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2486) | TIOCMSET = 0x5418
constant TIOCM_CAR (line 2487) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2488) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2489) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2490) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2491) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2492) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2493) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2494) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2495) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2496) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2497) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2498) | TIOCNOTTY = 0x5422
constant TIOCNXCL (line 2499) | TIOCNXCL = 0x540d
constant TIOCOUTQ (line 2500) | TIOCOUTQ = 0x5411
constant TIOCPKT (line 2501) | TIOCPKT = 0x5420
constant TIOCPKT_DATA (line 2502) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2503) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2504) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2505) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2506) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2507) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2508) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2509) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2510) | TIOCSBRK = 0x5427
constant TIOCSCTTY (line 2511) | TIOCSCTTY = 0x540e
constant TIOCSERCONFIG (line 2512) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2513) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2514) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2515) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2516) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2517) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2518) | TIOCSERSWILD = 0x5455
constant TIOCSER_TEMT (line 2519) | TIOCSER_TEMT = 0x1
constant TIOCSETD (line 2520) | TIOCSETD = 0x5423
constant TIOCSIG (line 2521) | TIOCSIG = 0x40045436
constant TIOCSISO7816 (line 2522) | TIOCSISO7816 = 0xc0285443
constant TIOCSLCKTRMIOS (line 2523) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSPGRP (line 2524) | TIOCSPGRP = 0x5410
constant TIOCSPTLCK (line 2525) | TIOCSPTLCK = 0x40045431
constant TIOCSRS485 (line 2526) | TIOCSRS485 = 0x542f
constant TIOCSSERIAL (line 2527) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2528) | TIOCSSOFTCAR = 0x541a
constant TIOCSTI (line 2529) | TIOCSTI = 0x5412
constant TIOCSWINSZ (line 2530) | TIOCSWINSZ = 0x5414
constant TIOCVHANGUP (line 2531) | TIOCVHANGUP = 0x5437
constant TIPC_ADDR_ID (line 2532) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2533) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2534) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2535) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2536) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2537) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2538) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2539) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2540) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2541) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2542) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2543) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2544) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2545) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2546) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2547) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2548) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2549) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2550) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2551) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2552) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2553) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2554) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2555) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2556) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2557) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2558) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2559) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2560) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2561) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2562) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2563) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2564) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2565) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2566) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2567) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2568) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2569) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2570) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2571) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2572) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2573) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2574) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2575) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2576) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2577) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2578) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2579) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2580) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2581) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2582) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2583) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2584) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2585) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2586) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2587) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2588) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2589) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2590) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2591) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2592) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2593) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2594) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2595) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2596) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2597) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2598) | TOSTOP = 0x100
constant TPACKET_ALIGNMENT (line 2599) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2600) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2601) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2602) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2603) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2604) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2605) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2606) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2607) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2608) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2609) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2610) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2611) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2612) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2613) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2614) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2615) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2616) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2617) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2618) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2619) | TUNATTACHFILTER = 0x401054d5
constant TUNDETACHFILTER (line 2620) | TUNDETACHFILTER = 0x401054d6
constant TUNGETDEVNETNS (line 2621) | TUNGETDEVNETNS = 0x54e3
constant TUNGETFEATURES (line 2622) | TUNGETFEATURES = 0x800454cf
constant TUNGETFILTER (line 2623) | TUNGETFILTER = 0x801054db
constant TUNGETIFF (line 2624) | TUNGETIFF = 0x800454d2
constant TUNGETSNDBUF (line 2625) | TUNGETSNDBUF = 0x800454d3
constant TUNGETVNETBE (line 2626) | TUNGETVNETBE = 0x800454df
constant TUNGETVNETHDRSZ (line 2627) | TUNGETVNETHDRSZ = 0x800454d7
constant TUNGETVNETLE (line 2628) | TUNGETVNETLE = 0x800454dd
constant TUNSETCARRIER (line 2629) | TUNSETCARRIER = 0x400454e2
constant TUNSETDEBUG (line 2630) | TUNSETDEBUG = 0x400454c9
constant TUNSETFILTEREBPF (line 2631) | TUNSETFILTEREBPF = 0x800454e1
constant TUNSETGROUP (line 2632) | TUNSETGROUP = 0x400454ce
constant TUNSETIFF (line 2633) | TUNSETIFF = 0x400454ca
constant TUNSETIFINDEX (line 2634) | TUNSETIFINDEX = 0x400454da
constant TUNSETLINK (line 2635) | TUNSETLINK = 0x400454cd
constant TUNSETNOCSUM (line 2636) | TUNSETNOCSUM = 0x400454c8
constant TUNSETOFFLOAD (line 2637) | TUNSETOFFLOAD = 0x400454d0
constant TUNSETOWNER (line 2638) | TUNSETOWNER = 0x400454cc
constant TUNSETPERSIST (line 2639) | TUNSETPERSIST = 0x400454cb
constant TUNSETQUEUE (line 2640) | TUNSETQUEUE = 0x400454d9
constant TUNSETSNDBUF (line 2641) | TUNSETSNDBUF = 0x400454d4
constant TUNSETSTEERINGEBPF (line 2642) | TUNSETSTEERINGEBPF = 0x800454e0
constant TUNSETTXFILTER (line 2643) | TUNSETTXFILTER = 0x400454d1
constant TUNSETVNETBE (line 2644) | TUNSETVNETBE = 0x400454de
constant TUNSETVNETHDRSZ (line 2645) | TUNSETVNETHDRSZ = 0x400454d8
constant TUNSETVNETLE (line 2646) | TUNSETVNETLE = 0x400454dc
constant UBI_IOCATT (line 2647) | UBI_IOCATT = 0x40186f40
constant UBI_IOCDET (line 2648) | UBI_IOCDET = 0x40046f41
constant UBI_IOCEBCH (line 2649) | UBI_IOCEBCH = 0x40044f02
constant UBI_IOCEBER (line 2650) | UBI_IOCEBER = 0x40044f01
constant UBI_IOCEBISMAP (line 2651) | UBI_IOCEBISMAP = 0x80044f05
constant UBI_IOCEBMAP (line 2652) | UBI_IOCEBMAP = 0x40084f03
constant UBI_IOCEBUNMAP (line 2653) | UBI_IOCEBUNMAP = 0x40044f04
constant UBI_IOCMKVOL (line 2654) | UBI_IOCMKVOL = 0x40986f00
constant UBI_IOCRMVOL (line 2655) | UBI_IOCRMVOL = 0x40046f01
constant UBI_IOCRNVOL (line 2656) | UBI_IOCRNVOL = 0x51106f03
constant UBI_IOCRPEB (line 2657) | UBI_IOCRPEB = 0x40046f04
constant UBI_IOCRSVOL (line 2658) | UBI_IOCRSVOL = 0x400c6f02
constant UBI_IOCSETVOLPROP (line 2659) | UBI_IOCSETVOLPROP = 0x40104f06
constant UBI_IOCSPEB (line 2660) | UBI_IOCSPEB = 0x40046f05
constant UBI_IOCVOLCRBLK (line 2661) | UBI_IOCVOLCRBLK = 0x40804f07
constant UBI_IOCVOLRMBLK (line 2662) | UBI_IOCVOLRMBLK = 0x4f08
constant UBI_IOCVOLUP (line 2663) | UBI_IOCVOLUP = 0x40084f00
constant UDF_SUPER_MAGIC (line 2664) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2665) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2666) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2667) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2668) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2669) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2670) | VDISCARD = 0xd
constant VEOF (line 2671) | VEOF = 0x4
constant VEOL (line 2672) | VEOL = 0xb
constant VEOL2 (line 2673) | VEOL2 = 0x10
constant VERASE (line 2674) | VERASE = 0x2
constant VINTR (line 2675) | VINTR = 0x0
constant VKILL (line 2676) | VKILL = 0x3
constant VLNEXT (line 2677) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2678) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2679) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2680) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2681) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2682) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2683) | VMIN = 0x6
constant VM_SOCKETS_INVALID_VERSION (line 2684) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2685) | VQUIT = 0x1
constant VREPRINT (line 2686) | VREPRINT = 0xc
constant VSTART (line 2687) | VSTART = 0x8
constant VSTOP (line 2688) | VSTOP = 0x9
constant VSUSP (line 2689) | VSUSP = 0xa
constant VSWTC (line 2690) | VSWTC = 0x7
constant VT0 (line 2691) | VT0 = 0x0
constant VT1 (line 2692) | VT1 = 0x4000
constant VTDLY (line 2693) | VTDLY = 0x4000
constant VTIME (line 2694) | VTIME = 0x5
constant VWERASE (line 2695) | VWERASE = 0xe
constant WALL (line 2696) | WALL = 0x40000000
constant WCLONE (line 2697) | WCLONE = 0x80000000
constant WCONTINUED (line 2698) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2699) | WDIOC_GETBOOTSTATUS = 0x80045702
constant WDIOC_GETPRETIMEOUT (line 2700) | WDIOC_GETPRETIMEOUT = 0x80045709
constant WDIOC_GETSTATUS (line 2701) | WDIOC_GETSTATUS = 0x80045701
constant WDIOC_GETSUPPORT (line 2702) | WDIOC_GETSUPPORT = 0x80285700
constant WDIOC_GETTEMP (line 2703) | WDIOC_GETTEMP = 0x80045703
constant WDIOC_GETTIMELEFT (line 2704) | WDIOC_GETTIMELEFT = 0x8004570a
constant WDIOC_GETTIMEOUT (line 2705) | WDIOC_GETTIMEOUT = 0x80045707
constant WDIOC_KEEPALIVE (line 2706) | WDIOC_KEEPALIVE = 0x80045705
constant WDIOC_SETOPTIONS (line 2707) | WDIOC_SETOPTIONS = 0x80045704
constant WDIOC_SETPRETIMEOUT (line 2708) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2709) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2710) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2711) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2712) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2713) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2714) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2715) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2716) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2717) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2718) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2719) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2720) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2721) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2722) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2723) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2724) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2725) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2726) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2727) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2728) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2729) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2730) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2731) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2732) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2733) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2734) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2735) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2736) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2737) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2738) | WIN_READ = 0x20
constant WIN_READDMA (line 2739) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2740) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2741) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2742) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2743) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2744) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2745) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2746) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2747) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2748) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2749) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2750) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2751) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2752) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2753) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2754) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2755) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2756) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2757) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2758) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2759) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2760) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2761) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2762) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2763) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2764) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2765) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2766) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2767) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2768) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2769) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2770) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2771) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2772) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2773) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2774) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2775) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2776) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2777) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2778) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2779) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2780) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2781) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2782) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2783) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2784) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2785) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2786) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2787) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2788) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2789) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2790) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2791) | WNOHANG = 0x1
constant WNOTHREAD (line 2792) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2793) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2794) | WORDSIZE = 0x40
constant WSTOPPED (line 2795) | WSTOPPED = 0x2
constant WUNTRACED (line 2796) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2797) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2798) | XATTR_REPLACE = 0x2
constant XCASE (line 2799) | XCASE = 0x4
constant XDP_COPY (line 2800) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2801) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2802) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2803) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2804) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2805) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2806) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2807) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2808) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2809) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2810) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2811) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2812) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2813) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2814) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2815) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2816) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2817) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2818) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2819) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2820) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2821) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2822) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2823) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2824) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2825) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2826) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2827) | ZSMALLOC_MAGIC = 0x58295829
constant E2BIG (line 2832) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2833) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2834) | EADDRINUSE = syscall.Errno(0x62)
constant EADDRNOTAVAIL (line 2835) | EADDRNOTAVAIL = syscall.Errno(0x63)
constant EADV (line 2836) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 2837) | EAFNOSUPPORT = syscall.Errno(0x61)
constant EAGAIN (line 2838) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2839) | EALREADY = syscall.Errno(0x72)
constant EBADE (line 2840) | EBADE = syscall.Errno(0x34)
constant EBADF (line 2841) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2842) | EBADFD = syscall.Errno(0x4d)
constant EBADMSG (line 2843) | EBADMSG = syscall.Errno(0x4a)
constant EBADR (line 2844) | EBADR = syscall.Errno(0x35)
constant EBADRQC (line 2845) | EBADRQC = syscall.Errno(0x38)
constant EBADSLT (line 2846) | EBADSLT = syscall.Errno(0x39)
constant EBFONT (line 2847) | EBFONT = syscall.Errno(0x3b)
constant EBUSY (line 2848) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2849) | ECANCELED = syscall.Errno(0x7d)
constant ECHILD (line 2850) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2851) | ECHRNG = syscall.Errno(0x2c)
constant ECOMM (line 2852) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 2853) | ECONNABORTED = syscall.Errno(0x67)
constant ECONNREFUSED (line 2854) | ECONNREFUSED = syscall.Errno(0x6f)
constant ECONNRESET (line 2855) | ECONNRESET = syscall.Errno(0x68)
constant EDEADLK (line 2856) | EDEADLK = syscall.Errno(0x23)
constant EDEADLOCK (line 2857) | EDEADLOCK = syscall.Errno(0x23)
constant EDESTADDRREQ (line 2858) | EDESTADDRREQ = syscall.Errno(0x59)
constant EDOM (line 2859) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2860) | EDOTDOT = syscall.Errno(0x49)
constant EDQUOT (line 2861) | EDQUOT = syscall.Errno(0x7a)
constant EEXIST (line 2862) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2863) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2864) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2865) | EHOSTDOWN = syscall.Errno(0x70)
constant EHOSTUNREACH (line 2866) | EHOSTUNREACH = syscall.Errno(0x71)
constant EHWPOISON (line 2867) | EHWPOISON = syscall.Errno(0x85)
constant EIDRM (line 2868) | EIDRM = syscall.Errno(0x2b)
constant EILSEQ (line 2869) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 2870) | EINPROGRESS = syscall.Errno(0x73)
constant EINTR (line 2871) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2872) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2873) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2874) | EISCONN = syscall.Errno(0x6a)
constant EISDIR (line 2875) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2876) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2877) | EKEYEXPIRED = syscall.Errno(0x7f)
constant EKEYREJECTED (line 2878) | EKEYREJECTED = syscall.Errno(0x81)
constant EKEYREVOKED (line 2879) | EKEYREVOKED = syscall.Errno(0x80)
constant EL2HLT (line 2880) | EL2HLT = syscall.Errno(0x33)
constant EL2NSYNC (line 2881) | EL2NSYNC = syscall.Errno(0x2d)
constant EL3HLT (line 2882) | EL3HLT = syscall.Errno(0x2e)
constant EL3RST (line 2883) | EL3RST = syscall.Errno(0x2f)
constant ELIBACC (line 2884) | ELIBACC = syscall.Errno(0x4f)
constant ELIBBAD (line 2885) | ELIBBAD = syscall.Errno(0x50)
constant ELIBEXEC (line 2886) | ELIBEXEC = syscall.Errno(0x53)
constant ELIBMAX (line 2887) | ELIBMAX = syscall.Errno(0x52)
constant ELIBSCN (line 2888) | ELIBSCN = syscall.Errno(0x51)
constant ELNRNG (line 2889) | ELNRNG = syscall.Errno(0x30)
constant ELOOP (line 2890) | ELOOP = syscall.Errno(0x28)
constant EMEDIUMTYPE (line 2891) | EMEDIUMTYPE = syscall.Errno(0x7c)
constant EMFILE (line 2892) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2893) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2894) | EMSGSIZE = syscall.Errno(0x5a)
constant EMULTIHOP (line 2895) | EMULTIHOP = syscall.Errno(0x48)
constant ENAMETOOLONG (line 2896) | ENAMETOOLONG = syscall.Errno(0x24)
constant ENAVAIL (line 2897) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2898) | ENETDOWN = syscall.Errno(0x64)
constant ENETRESET (line 2899) | ENETRESET = syscall.Errno(0x66)
constant ENETUNREACH (line 2900) | ENETUNREACH = syscall.Errno(0x65)
constant ENFILE (line 2901) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2902) | ENOANO = syscall.Errno(0x37)
constant ENOBUFS (line 2903) | ENOBUFS = syscall.Errno(0x69)
constant ENOCSI (line 2904) | ENOCSI = syscall.Errno(0x32)
constant ENODATA (line 2905) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 2906) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2907) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2908) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2909) | ENOKEY = syscall.Errno(0x7e)
constant ENOLCK (line 2910) | ENOLCK = syscall.Errno(0x25)
constant ENOLINK (line 2911) | ENOLINK = syscall.Errno(0x43)
constant ENOMEDIUM (line 2912) | ENOMEDIUM = syscall.Errno(0x7b)
constant ENOMEM (line 2913) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2914) | ENOMSG = syscall.Errno(0x2a)
constant ENONET (line 2915) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 2916) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 2917) | ENOPROTOOPT = syscall.Errno(0x5c)
constant ENOSPC (line 2918) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2919) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 2920) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 2921) | ENOSYS = syscall.Errno(0x26)
constant ENOTBLK (line 2922) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2923) | ENOTCONN = syscall.Errno(0x6b)
constant ENOTDIR (line 2924) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2925) | ENOTEMPTY = syscall.Errno(0x27)
constant ENOTNAM (line 2926) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2927) | ENOTRECOVERABLE = syscall.Errno(0x83)
constant ENOTSOCK (line 2928) | ENOTSOCK = syscall.Errno(0x58)
constant ENOTSUP (line 2929) | ENOTSUP = syscall.Errno(0x5f)
constant ENOTTY (line 2930) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2931) | ENOTUNIQ = syscall.Errno(0x4c)
constant ENXIO (line 2932) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2933) | EOPNOTSUPP = syscall.Errno(0x5f)
constant EOVERFLOW (line 2934) | EOVERFLOW = syscall.Errno(0x4b)
constant EOWNERDEAD (line 2935) | EOWNERDEAD = syscall.Errno(0x82)
constant EPERM (line 2936) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2937) | EPFNOSUPPORT = syscall.Errno(0x60)
constant EPIPE (line 2938) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 2939) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 2940) | EPROTONOSUPPORT = syscall.Errno(0x5d)
constant EPROTOTYPE (line 2941) | EPROTOTYPE = syscall.Errno(0x5b)
constant ERANGE (line 2942) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2943) | EREMCHG = syscall.Errno(0x4e)
constant EREMOTE (line 2944) | EREMOTE = syscall.Errno(0x42)
constant EREMOTEIO (line 2945) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2946) | ERESTART = syscall.Errno(0x55)
constant ERFKILL (line 2947) | ERFKILL = syscall.Errno(0x84)
constant EROFS (line 2948) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 2949) | ESHUTDOWN = syscall.Errno(0x6c)
constant ESOCKTNOSUPPORT (line 2950) | ESOCKTNOSUPPORT = syscall.Errno(0x5e)
constant ESPIPE (line 2951) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2952) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2953) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 2954) | ESTALE = syscall.Errno(0x74)
constant ESTRPIPE (line 2955) | ESTRPIPE = syscall.Errno(0x56)
constant ETIME (line 2956) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 2957) | ETIMEDOUT = syscall.Errno(0x6e)
constant ETOOMANYREFS (line 2958) | ETOOMANYREFS = syscall.Errno(0x6d)
constant ETXTBSY (line 2959) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2960) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2961) | EUNATCH = syscall.Errno(0x31)
constant EUSERS (line 2962) | EUSERS = syscall.Errno(0x57)
constant EWOULDBLOCK (line 2963) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2964) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2965) | EXFULL = syscall.Errno(0x36)
constant SIGABRT (line 2970) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2971) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2972) | SIGBUS = syscall.Signal(0x7)
constant SIGCHLD (line 2973) | SIGCHLD = syscall.Signal(0x11)
constant SIGCLD (line 2974) | SIGCLD = syscall.Signal(0x11)
constant SIGCONT (line 2975) | SIGCONT = syscall.Signal(0x12)
constant SIGFPE (line 2976) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2977) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2978) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2979) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2980) | SIGIO = syscall.Signal(0x1d)
constant SIGIOT (line 2981) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2982) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 2983) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2984) | SIGPOLL = syscall.Signal(0x1d)
constant SIGPROF (line 2985) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2986) | SIGPWR = syscall.Signal(0x1e)
constant SIGQUIT (line 2987) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2988) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTKFLT (line 2989) | SIGSTKFLT = syscall.Signal(0x10)
constant SIGSTOP (line 2990) | SIGSTOP = syscall.Signal(0x13)
constant SIGSYS (line 2991) | SIGSYS = syscall.Signal(0x1f)
constant SIGTERM (line 2992) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2993) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2994) | SIGTSTP = syscall.Signal(0x14)
constant SIGTTIN (line 2995) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2996) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2997) | SIGURG = syscall.Signal(0x17)
constant SIGUSR1 (line 2998) | SIGUSR1 = syscall.Signal(0xa)
constant SIGUSR2 (line 2999) | SIGUSR2 = syscall.Signal(0xc)
constant SIGVTALRM (line 3000) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 3001) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 3002) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 3003) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
constant AAFS_MAGIC (line 14) | AAFS_MAGIC = 0x5a3c69f0
constant ADFS_SUPER_MAGIC (line 15) | ADFS_SUPER_MAGIC = 0xadf5
constant AFFS_SUPER_MAGIC (line 16) | AFFS_SUPER_MAGIC = 0xadff
constant AFS_FS_MAGIC (line 17) | AFS_FS_MAGIC = 0x6b414653
constant AFS_SUPER_MAGIC (line 18) | AFS_SUPER_MAGIC = 0x5346414f
constant AF_ALG (line 19) | AF_ALG = 0x26
constant AF_APPLETALK (line 20) | AF_APPLETALK = 0x5
constant AF_ASH (line 21) | AF_ASH = 0x12
constant AF_ATMPVC (line 22) | AF_ATMPVC = 0x8
constant AF_ATMSVC (line 23) | AF_ATMSVC = 0x14
constant AF_AX25 (line 24) | AF_AX25 = 0x3
constant AF_BLUETOOTH (line 25) | AF_BLUETOOTH = 0x1f
constant AF_BRIDGE (line 26) | AF_BRIDGE = 0x7
constant AF_CAIF (line 27) | AF_CAIF = 0x25
constant AF_CAN (line 28) | AF_CAN = 0x1d
constant AF_DECnet (line 29) | AF_DECnet = 0xc
constant AF_ECONET (line 30) | AF_ECONET = 0x13
constant AF_FILE (line 31) | AF_FILE = 0x1
constant AF_IB (line 32) | AF_IB = 0x1b
constant AF_IEEE802154 (line 33) | AF_IEEE802154 = 0x24
constant AF_INET (line 34) | AF_INET = 0x2
constant AF_INET6 (line 35) | AF_INET6 = 0xa
constant AF_IPX (line 36) | AF_IPX = 0x4
constant AF_IRDA (line 37) | AF_IRDA = 0x17
constant AF_ISDN (line 38) | AF_ISDN = 0x22
constant AF_IUCV (line 39) | AF_IUCV = 0x20
constant AF_KCM (line 40) | AF_KCM = 0x29
constant AF_KEY (line 41) | AF_KEY = 0xf
constant AF_LLC (line 42) | AF_LLC = 0x1a
constant AF_LOCAL (line 43) | AF_LOCAL = 0x1
constant AF_MAX (line 44) | AF_MAX = 0x2d
constant AF_MPLS (line 45) | AF_MPLS = 0x1c
constant AF_NETBEUI (line 46) | AF_NETBEUI = 0xd
constant AF_NETLINK (line 47) | AF_NETLINK = 0x10
constant AF_NETROM (line 48) | AF_NETROM = 0x6
constant AF_NFC (line 49) | AF_NFC = 0x27
constant AF_PACKET (line 50) | AF_PACKET = 0x11
constant AF_PHONET (line 51) | AF_PHONET = 0x23
constant AF_PPPOX (line 52) | AF_PPPOX = 0x18
constant AF_QIPCRTR (line 53) | AF_QIPCRTR = 0x2a
constant AF_RDS (line 54) | AF_RDS = 0x15
constant AF_ROSE (line 55) | AF_ROSE = 0xb
constant AF_ROUTE (line 56) | AF_ROUTE = 0x10
constant AF_RXRPC (line 57) | AF_RXRPC = 0x21
constant AF_SECURITY (line 58) | AF_SECURITY = 0xe
constant AF_SMC (line 59) | AF_SMC = 0x2b
constant AF_SNA (line 60) | AF_SNA = 0x16
constant AF_TIPC (line 61) | AF_TIPC = 0x1e
constant AF_UNIX (line 62) | AF_UNIX = 0x1
constant AF_UNSPEC (line 63) | AF_UNSPEC = 0x0
constant AF_VSOCK (line 64) | AF_VSOCK = 0x28
constant AF_WANPIPE (line 65) | AF_WANPIPE = 0x19
constant AF_X25 (line 66) | AF_X25 = 0x9
constant AF_XDP (line 67) | AF_XDP = 0x2c
constant ALG_OP_DECRYPT (line 68) | ALG_OP_DECRYPT = 0x0
constant ALG_OP_ENCRYPT (line 69) | ALG_OP_ENCRYPT = 0x1
constant ALG_SET_AEAD_ASSOCLEN (line 70) | ALG_SET_AEAD_ASSOCLEN = 0x4
constant ALG_SET_AEAD_AUTHSIZE (line 71) | ALG_SET_AEAD_AUTHSIZE = 0x5
constant ALG_SET_IV (line 72) | ALG_SET_IV = 0x2
constant ALG_SET_KEY (line 73) | ALG_SET_KEY = 0x1
constant ALG_SET_OP (line 74) | ALG_SET_OP = 0x3
constant ANON_INODE_FS_MAGIC (line 75) | ANON_INODE_FS_MAGIC = 0x9041934
constant ARPHRD_6LOWPAN (line 76) | ARPHRD_6LOWPAN = 0x339
constant ARPHRD_ADAPT (line 77) | ARPHRD_ADAPT = 0x108
constant ARPHRD_APPLETLK (line 78) | ARPHRD_APPLETLK = 0x8
constant ARPHRD_ARCNET (line 79) | ARPHRD_ARCNET = 0x7
constant ARPHRD_ASH (line 80) | ARPHRD_ASH = 0x30d
constant ARPHRD_ATM (line 81) | ARPHRD_ATM = 0x13
constant ARPHRD_AX25 (line 82) | ARPHRD_AX25 = 0x3
constant ARPHRD_BIF (line 83) | ARPHRD_BIF = 0x307
constant ARPHRD_CAIF (line 84) | ARPHRD_CAIF = 0x336
constant ARPHRD_CAN (line 85) | ARPHRD_CAN = 0x118
constant ARPHRD_CHAOS (line 86) | ARPHRD_CHAOS = 0x5
constant ARPHRD_CISCO (line 87) | ARPHRD_CISCO = 0x201
constant ARPHRD_CSLIP (line 88) | ARPHRD_CSLIP = 0x101
constant ARPHRD_CSLIP6 (line 89) | ARPHRD_CSLIP6 = 0x103
constant ARPHRD_DDCMP (line 90) | ARPHRD_DDCMP = 0x205
constant ARPHRD_DLCI (line 91) | ARPHRD_DLCI = 0xf
constant ARPHRD_ECONET (line 92) | ARPHRD_ECONET = 0x30e
constant ARPHRD_EETHER (line 93) | ARPHRD_EETHER = 0x2
constant ARPHRD_ETHER (line 94) | ARPHRD_ETHER = 0x1
constant ARPHRD_EUI64 (line 95) | ARPHRD_EUI64 = 0x1b
constant ARPHRD_FCAL (line 96) | ARPHRD_FCAL = 0x311
constant ARPHRD_FCFABRIC (line 97) | ARPHRD_FCFABRIC = 0x313
constant ARPHRD_FCPL (line 98) | ARPHRD_FCPL = 0x312
constant ARPHRD_FCPP (line 99) | ARPHRD_FCPP = 0x310
constant ARPHRD_FDDI (line 100) | ARPHRD_FDDI = 0x306
constant ARPHRD_FRAD (line 101) | ARPHRD_FRAD = 0x302
constant ARPHRD_HDLC (line 102) | ARPHRD_HDLC = 0x201
constant ARPHRD_HIPPI (line 103) | ARPHRD_HIPPI = 0x30c
constant ARPHRD_HWX25 (line 104) | ARPHRD_HWX25 = 0x110
constant ARPHRD_IEEE1394 (line 105) | ARPHRD_IEEE1394 = 0x18
constant ARPHRD_IEEE802 (line 106) | ARPHRD_IEEE802 = 0x6
constant ARPHRD_IEEE80211 (line 107) | ARPHRD_IEEE80211 = 0x321
constant ARPHRD_IEEE80211_PRISM (line 108) | ARPHRD_IEEE80211_PRISM = 0x322
constant ARPHRD_IEEE80211_RADIOTAP (line 109) | ARPHRD_IEEE80211_RADIOTAP = 0x323
constant ARPHRD_IEEE802154 (line 110) | ARPHRD_IEEE802154 = 0x324
constant ARPHRD_IEEE802154_MONITOR (line 111) | ARPHRD_IEEE802154_MONITOR = 0x325
constant ARPHRD_IEEE802_TR (line 112) | ARPHRD_IEEE802_TR = 0x320
constant ARPHRD_INFINIBAND (line 113) | ARPHRD_INFINIBAND = 0x20
constant ARPHRD_IP6GRE (line 114) | ARPHRD_IP6GRE = 0x337
constant ARPHRD_IPDDP (line 115) | ARPHRD_IPDDP = 0x309
constant ARPHRD_IPGRE (line 116) | ARPHRD_IPGRE = 0x30a
constant ARPHRD_IRDA (line 117) | ARPHRD_IRDA = 0x30f
constant ARPHRD_LAPB (line 118) | ARPHRD_LAPB = 0x204
constant ARPHRD_LOCALTLK (line 119) | ARPHRD_LOCALTLK = 0x305
constant ARPHRD_LOOPBACK (line 120) | ARPHRD_LOOPBACK = 0x304
constant ARPHRD_METRICOM (line 121) | ARPHRD_METRICOM = 0x17
constant ARPHRD_NETLINK (line 122) | ARPHRD_NETLINK = 0x338
constant ARPHRD_NETROM (line 123) | ARPHRD_NETROM = 0x0
constant ARPHRD_NONE (line 124) | ARPHRD_NONE = 0xfffe
constant ARPHRD_PHONET (line 125) | ARPHRD_PHONET = 0x334
constant ARPHRD_PHONET_PIPE (line 126) | ARPHRD_PHONET_PIPE = 0x335
constant ARPHRD_PIMREG (line 127) | ARPHRD_PIMREG = 0x30b
constant ARPHRD_PPP (line 128) | ARPHRD_PPP = 0x200
constant ARPHRD_PRONET (line 129) | ARPHRD_PRONET = 0x4
constant ARPHRD_RAWHDLC (line 130) | ARPHRD_RAWHDLC = 0x206
constant ARPHRD_RAWIP (line 131) | ARPHRD_RAWIP = 0x207
constant ARPHRD_ROSE (line 132) | ARPHRD_ROSE = 0x10e
constant ARPHRD_RSRVD (line 133) | ARPHRD_RSRVD = 0x104
constant ARPHRD_SIT (line 134) | ARPHRD_SIT = 0x308
constant ARPHRD_SKIP (line 135) | ARPHRD_SKIP = 0x303
constant ARPHRD_SLIP (line 136) | ARPHRD_SLIP = 0x100
constant ARPHRD_SLIP6 (line 137) | ARPHRD_SLIP6 = 0x102
constant ARPHRD_TUNNEL (line 138) | ARPHRD_TUNNEL = 0x300
constant ARPHRD_TUNNEL6 (line 139) | ARPHRD_TUNNEL6 = 0x301
constant ARPHRD_VOID (line 140) | ARPHRD_VOID = 0xffff
constant ARPHRD_VSOCKMON (line 141) | ARPHRD_VSOCKMON = 0x33a
constant ARPHRD_X25 (line 142) | ARPHRD_X25 = 0x10f
constant ASI_LEON_DFLUSH (line 143) | ASI_LEON_DFLUSH = 0x11
constant ASI_LEON_IFLUSH (line 144) | ASI_LEON_IFLUSH = 0x10
constant ASI_LEON_MMUFLUSH (line 145) | ASI_LEON_MMUFLUSH = 0x18
constant AUTOFS_SUPER_MAGIC (line 146) | AUTOFS_SUPER_MAGIC = 0x187
constant B0 (line 147) | B0 = 0x0
constant B1000000 (line 148) | B1000000 = 0x1008
constant B110 (line 149) | B110 = 0x3
constant B115200 (line 150) | B115200 = 0x1002
constant B1152000 (line 151) | B1152000 = 0x1009
constant B1200 (line 152) | B1200 = 0x9
constant B134 (line 153) | B134 = 0x4
constant B150 (line 154) | B150 = 0x5
constant B1500000 (line 155) | B1500000 = 0x100a
constant B1800 (line 156) | B1800 = 0xa
constant B19200 (line 157) | B19200 = 0xe
constant B200 (line 158) | B200 = 0x6
constant B2000000 (line 159) | B2000000 = 0x100b
constant B230400 (line 160) | B230400 = 0x1003
constant B2400 (line 161) | B2400 = 0xb
constant B2500000 (line 162) | B2500000 = 0x100c
constant B300 (line 163) | B300 = 0x7
constant B3000000 (line 164) | B3000000 = 0x100d
constant B3500000 (line 165) | B3500000 = 0x100e
constant B38400 (line 166) | B38400 = 0xf
constant B4000000 (line 167) | B4000000 = 0x100f
constant B460800 (line 168) | B460800 = 0x1004
constant B4800 (line 169) | B4800 = 0xc
constant B50 (line 170) | B50 = 0x1
constant B500000 (line 171) | B500000 = 0x1005
constant B57600 (line 172) | B57600 = 0x1001
constant B576000 (line 173) | B576000 = 0x1006
constant B600 (line 174) | B600 = 0x8
constant B75 (line 175) | B75 = 0x2
constant B921600 (line 176) | B921600 = 0x1007
constant B9600 (line 177) | B9600 = 0xd
constant BALLOON_KVM_MAGIC (line 178) | BALLOON_KVM_MAGIC = 0x13661366
constant BDEVFS_MAGIC (line 179) | BDEVFS_MAGIC = 0x62646576
constant BINDERFS_SUPER_MAGIC (line 180) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70
constant BINFMTFS_MAGIC (line 181) | BINFMTFS_MAGIC = 0x42494e4d
constant BLKBSZGET (line 182) | BLKBSZGET = 0x40081270
constant BLKBSZSET (line 183) | BLKBSZSET = 0x80081271
constant BLKFLSBUF (line 184) | BLKFLSBUF = 0x20001261
constant BLKFRAGET (line 185) | BLKFRAGET = 0x20001265
constant BLKFRASET (line 186) | BLKFRASET = 0x20001264
constant BLKGETSIZE (line 187) | BLKGETSIZE = 0x20001260
constant BLKGETSIZE64 (line 188) | BLKGETSIZE64 = 0x40081272
constant BLKPBSZGET (line 189) | BLKPBSZGET = 0x2000127b
constant BLKRAGET (line 190) | BLKRAGET = 0x20001263
constant BLKRASET (line 191) | BLKRASET = 0x20001262
constant BLKROGET (line 192) | BLKROGET = 0x2000125e
constant BLKROSET (line 193) | BLKROSET = 0x2000125d
constant BLKRRPART (line 194) | BLKRRPART = 0x2000125f
constant BLKSECTGET (line 195) | BLKSECTGET = 0x20001267
constant BLKSECTSET (line 196) | BLKSECTSET = 0x20001266
constant BLKSSZGET (line 197) | BLKSSZGET = 0x20001268
constant BOTHER (line 198) | BOTHER = 0x1000
constant BPF_A (line 199) | BPF_A = 0x10
constant BPF_ABS (line 200) | BPF_ABS = 0x20
constant BPF_ADD (line 201) | BPF_ADD = 0x0
constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 202) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff
constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 203) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38
constant BPF_ALU (line 204) | BPF_ALU = 0x4
constant BPF_ALU64 (line 205) | BPF_ALU64 = 0x7
constant BPF_AND (line 206) | BPF_AND = 0x50
constant BPF_ANY (line 207) | BPF_ANY = 0x0
constant BPF_ARSH (line 208) | BPF_ARSH = 0xc0
constant BPF_B (line 209) | BPF_B = 0x10
constant BPF_BUILD_ID_SIZE (line 210) | BPF_BUILD_ID_SIZE = 0x14
constant BPF_CALL (line 211) | BPF_CALL = 0x80
constant BPF_DEVCG_ACC_MKNOD (line 212) | BPF_DEVCG_ACC_MKNOD = 0x1
constant BPF_DEVCG_ACC_READ (line 213) | BPF_DEVCG_ACC_READ = 0x2
constant BPF_DEVCG_ACC_WRITE (line 214) | BPF_DEVCG_ACC_WRITE = 0x4
constant BPF_DEVCG_DEV_BLOCK (line 215) | BPF_DEVCG_DEV_BLOCK = 0x1
constant BPF_DEVCG_DEV_CHAR (line 216) | BPF_DEVCG_DEV_CHAR = 0x2
constant BPF_DIV (line 217) | BPF_DIV = 0x30
constant BPF_DW (line 218) | BPF_DW = 0x18
constant BPF_END (line 219) | BPF_END = 0xd0
constant BPF_EXIST (line 220) | BPF_EXIST = 0x2
constant BPF_EXIT (line 221) | BPF_EXIT = 0x90
constant BPF_FROM_BE (line 222) | BPF_FROM_BE = 0x8
constant BPF_FROM_LE (line 223) | BPF_FROM_LE = 0x0
constant BPF_FS_MAGIC (line 224) | BPF_FS_MAGIC = 0xcafe4a11
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 225) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2
constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 226) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4
constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 227) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8
constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 228) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10
constant BPF_F_ADJ_ROOM_FIXED_GSO (line 229) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1
constant BPF_F_ALLOW_MULTI (line 230) | BPF_F_ALLOW_MULTI = 0x2
constant BPF_F_ALLOW_OVERRIDE (line 231) | BPF_F_ALLOW_OVERRIDE = 0x1
constant BPF_F_ANY_ALIGNMENT (line 232) | BPF_F_ANY_ALIGNMENT = 0x2
constant BPF_F_CTXLEN_MASK (line 233) | BPF_F_CTXLEN_MASK = 0xfffff00000000
constant BPF_F_CURRENT_CPU (line 234) | BPF_F_CURRENT_CPU = 0xffffffff
constant BPF_F_CURRENT_NETNS (line 235) | BPF_F_CURRENT_NETNS = -0x1
constant BPF_F_DONT_FRAGMENT (line 236) | BPF_F_DONT_FRAGMENT = 0x4
constant BPF_F_FAST_STACK_CMP (line 237) | BPF_F_FAST_STACK_CMP = 0x200
constant BPF_F_HDR_FIELD_MASK (line 238) | BPF_F_HDR_FIELD_MASK = 0xf
constant BPF_F_INDEX_MASK (line 239) | BPF_F_INDEX_MASK = 0xffffffff
constant BPF_F_INGRESS (line 240) | BPF_F_INGRESS = 0x1
constant BPF_F_INVALIDATE_HASH (line 241) | BPF_F_INVALIDATE_HASH = 0x2
constant BPF_F_LOCK (line 242) | BPF_F_LOCK = 0x4
constant BPF_F_MARK_ENFORCE (line 243) | BPF_F_MARK_ENFORCE = 0x40
constant BPF_F_MARK_MANGLED_0 (line 244) | BPF_F_MARK_MANGLED_0 = 0x20
constant BPF_F_NO_COMMON_LRU (line 245) | BPF_F_NO_COMMON_LRU = 0x2
constant BPF_F_NO_PREALLOC (line 246) | BPF_F_NO_PREALLOC = 0x1
constant BPF_F_NUMA_NODE (line 247) | BPF_F_NUMA_NODE = 0x4
constant BPF_F_PSEUDO_HDR (line 248) | BPF_F_PSEUDO_HDR = 0x10
constant BPF_F_QUERY_EFFECTIVE (line 249) | BPF_F_QUERY_EFFECTIVE = 0x1
constant BPF_F_RDONLY (line 250) | BPF_F_RDONLY = 0x8
constant BPF_F_RDONLY_PROG (line 251) | BPF_F_RDONLY_PROG = 0x80
constant BPF_F_RECOMPUTE_CSUM (line 252) | BPF_F_RECOMPUTE_CSUM = 0x1
constant BPF_F_REUSE_STACKID (line 253) | BPF_F_REUSE_STACKID = 0x400
constant BPF_F_SEQ_NUMBER (line 254) | BPF_F_SEQ_NUMBER = 0x8
constant BPF_F_SKIP_FIELD_MASK (line 255) | BPF_F_SKIP_FIELD_MASK = 0xff
constant BPF_F_STACK_BUILD_ID (line 256) | BPF_F_STACK_BUILD_ID = 0x20
constant BPF_F_STRICT_ALIGNMENT (line 257) | BPF_F_STRICT_ALIGNMENT = 0x1
constant BPF_F_SYSCTL_BASE_NAME (line 258) | BPF_F_SYSCTL_BASE_NAME = 0x1
constant BPF_F_TEST_RND_HI32 (line 259) | BPF_F_TEST_RND_HI32 = 0x4
constant BPF_F_TUNINFO_IPV6 (line 260) | BPF_F_TUNINFO_IPV6 = 0x1
constant BPF_F_USER_BUILD_ID (line 261) | BPF_F_USER_BUILD_ID = 0x800
constant BPF_F_USER_STACK (line 262) | BPF_F_USER_STACK = 0x100
constant BPF_F_WRONLY (line 263) | BPF_F_WRONLY = 0x10
constant BPF_F_WRONLY_PROG (line 264) | BPF_F_WRONLY_PROG = 0x100
constant BPF_F_ZERO_CSUM_TX (line 265) | BPF_F_ZERO_CSUM_TX = 0x2
constant BPF_F_ZERO_SEED (line 266) | BPF_F_ZERO_SEED = 0x40
constant BPF_H (line 267) | BPF_H = 0x8
constant BPF_IMM (line 268) | BPF_IMM = 0x0
constant BPF_IND (line 269) | BPF_IND = 0x40
constant BPF_JA (line 270) | BPF_JA = 0x0
constant BPF_JEQ (line 271) | BPF_JEQ = 0x10
constant BPF_JGE (line 272) | BPF_JGE = 0x30
constant BPF_JGT (line 273) | BPF_JGT = 0x20
constant BPF_JLE (line 274) | BPF_JLE = 0xb0
constant BPF_JLT (line 275) | BPF_JLT = 0xa0
constant BPF_JMP (line 276) | BPF_JMP = 0x5
constant BPF_JMP32 (line 277) | BPF_JMP32 = 0x6
constant BPF_JNE (line 278) | BPF_JNE = 0x50
constant BPF_JSET (line 279) | BPF_JSET = 0x40
constant BPF_JSGE (line 280) | BPF_JSGE = 0x70
constant BPF_JSGT (line 281) | BPF_JSGT = 0x60
constant BPF_JSLE (line 282) | BPF_JSLE = 0xd0
constant BPF_JSLT (line 283) | BPF_JSLT = 0xc0
constant BPF_K (line 284) | BPF_K = 0x0
constant BPF_LD (line 285) | BPF_LD = 0x0
constant BPF_LDX (line 286) | BPF_LDX = 0x1
constant BPF_LEN (line 287) | BPF_LEN = 0x80
constant BPF_LL_OFF (line 288) | BPF_LL_OFF = -0x200000
constant BPF_LSH (line 289) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 290) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXINSNS (line 291) | BPF_MAXINSNS = 0x1000
constant BPF_MEM (line 292) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 293) | BPF_MEMWORDS = 0x10
constant BPF_MINOR_VERSION (line 294) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 295) | BPF_MISC = 0x7
constant BPF_MOD (line 296) | BPF_MOD = 0x90
constant BPF_MOV (line 297) | BPF_MOV = 0xb0
constant BPF_MSH (line 298) | BPF_MSH = 0xa0
constant BPF_MUL (line 299) | BPF_MUL = 0x20
constant BPF_NEG (line 300) | BPF_NEG = 0x80
constant BPF_NET_OFF (line 301) | BPF_NET_OFF = -0x100000
constant BPF_NOEXIST (line 302) | BPF_NOEXIST = 0x1
constant BPF_OBJ_NAME_LEN (line 303) | BPF_OBJ_NAME_LEN = 0x10
constant BPF_OR (line 304) | BPF_OR = 0x40
constant BPF_PSEUDO_CALL (line 305) | BPF_PSEUDO_CALL = 0x1
constant BPF_PSEUDO_MAP_FD (line 306) | BPF_PSEUDO_MAP_FD = 0x1
constant BPF_PSEUDO_MAP_VALUE (line 307) | BPF_PSEUDO_MAP_VALUE = 0x2
constant BPF_RET (line 308) | BPF_RET = 0x6
constant BPF_RSH (line 309) | BPF_RSH = 0x70
constant BPF_SK_STORAGE_GET_F_CREATE (line 310) | BPF_SK_STORAGE_GET_F_CREATE = 0x1
constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 311) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0xf
constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 312) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2
constant BPF_SOCK_OPS_RTO_CB_FLAG (line 313) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1
constant BPF_SOCK_OPS_RTT_CB_FLAG (line 314) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8
constant BPF_SOCK_OPS_STATE_CB_FLAG (line 315) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4
constant BPF_ST (line 316) | BPF_ST = 0x2
constant BPF_STX (line 317) | BPF_STX = 0x3
constant BPF_SUB (line 318) | BPF_SUB = 0x10
constant BPF_TAG_SIZE (line 319) | BPF_TAG_SIZE = 0x8
constant BPF_TAX (line 320) | BPF_TAX = 0x0
constant BPF_TO_BE (line 321) | BPF_TO_BE = 0x8
constant BPF_TO_LE (line 322) | BPF_TO_LE = 0x0
constant BPF_TXA (line 323) | BPF_TXA = 0x80
constant BPF_W (line 324) | BPF_W = 0x0
constant BPF_X (line 325) | BPF_X = 0x8
constant BPF_XADD (line 326) | BPF_XADD = 0xc0
constant BPF_XOR (line 327) | BPF_XOR = 0xa0
constant BRKINT (line 328) | BRKINT = 0x2
constant BS0 (line 329) | BS0 = 0x0
constant BS1 (line 330) | BS1 = 0x2000
constant BSDLY (line 331) | BSDLY = 0x2000
constant BTRFS_SUPER_MAGIC (line 332) | BTRFS_SUPER_MAGIC = 0x9123683e
constant BTRFS_TEST_MAGIC (line 333) | BTRFS_TEST_MAGIC = 0x73727279
constant CAN_BCM (line 334) | CAN_BCM = 0x2
constant CAN_EFF_FLAG (line 335) | CAN_EFF_FLAG = 0x80000000
constant CAN_EFF_ID_BITS (line 336) | CAN_EFF_ID_BITS = 0x1d
constant CAN_EFF_MASK (line 337) | CAN_EFF_MASK = 0x1fffffff
constant CAN_ERR_FLAG (line 338) | CAN_ERR_FLAG = 0x20000000
constant CAN_ERR_MASK (line 339) | CAN_ERR_MASK = 0x1fffffff
constant CAN_INV_FILTER (line 340) | CAN_INV_FILTER = 0x20000000
constant CAN_ISOTP (line 341) | CAN_ISOTP = 0x6
constant CAN_MAX_DLC (line 342) | CAN_MAX_DLC = 0x8
constant CAN_MAX_DLEN (line 343) | CAN_MAX_DLEN = 0x8
constant CAN_MCNET (line 344) | CAN_MCNET = 0x5
constant CAN_MTU (line 345) | CAN_MTU = 0x10
constant CAN_NPROTO (line 346) | CAN_NPROTO = 0x7
constant CAN_RAW (line 347) | CAN_RAW = 0x1
constant CAN_RAW_FILTER_MAX (line 348) | CAN_RAW_FILTER_MAX = 0x200
constant CAN_RTR_FLAG (line 349) | CAN_RTR_FLAG = 0x40000000
constant CAN_SFF_ID_BITS (line 350) | CAN_SFF_ID_BITS = 0xb
constant CAN_SFF_MASK (line 351) | CAN_SFF_MASK = 0x7ff
constant CAN_TP16 (line 352) | CAN_TP16 = 0x3
constant CAN_TP20 (line 353) | CAN_TP20 = 0x4
constant CAP_AUDIT_CONTROL (line 354) | CAP_AUDIT_CONTROL = 0x1e
constant CAP_AUDIT_READ (line 355) | CAP_AUDIT_READ = 0x25
constant CAP_AUDIT_WRITE (line 356) | CAP_AUDIT_WRITE = 0x1d
constant CAP_BLOCK_SUSPEND (line 357) | CAP_BLOCK_SUSPEND = 0x24
constant CAP_CHOWN (line 358) | CAP_CHOWN = 0x0
constant CAP_DAC_OVERRIDE (line 359) | CAP_DAC_OVERRIDE = 0x1
constant CAP_DAC_READ_SEARCH (line 360) | CAP_DAC_READ_SEARCH = 0x2
constant CAP_FOWNER (line 361) | CAP_FOWNER = 0x3
constant CAP_FSETID (line 362) | CAP_FSETID = 0x4
constant CAP_IPC_LOCK (line 363) | CAP_IPC_LOCK = 0xe
constant CAP_IPC_OWNER (line 364) | CAP_IPC_OWNER = 0xf
constant CAP_KILL (line 365) | CAP_KILL = 0x5
constant CAP_LAST_CAP (line 366) | CAP_LAST_CAP = 0x25
constant CAP_LEASE (line 367) | CAP_LEASE = 0x1c
constant CAP_LINUX_IMMUTABLE (line 368) | CAP_LINUX_IMMUTABLE = 0x9
constant CAP_MAC_ADMIN (line 369) | CAP_MAC_ADMIN = 0x21
constant CAP_MAC_OVERRIDE (line 370) | CAP_MAC_OVERRIDE = 0x20
constant CAP_MKNOD (line 371) | CAP_MKNOD = 0x1b
constant CAP_NET_ADMIN (line 372) | CAP_NET_ADMIN = 0xc
constant CAP_NET_BIND_SERVICE (line 373) | CAP_NET_BIND_SERVICE = 0xa
constant CAP_NET_BROADCAST (line 374) | CAP_NET_BROADCAST = 0xb
constant CAP_NET_RAW (line 375) | CAP_NET_RAW = 0xd
constant CAP_SETFCAP (line 376) | CAP_SETFCAP = 0x1f
constant CAP_SETGID (line 377) | CAP_SETGID = 0x6
constant CAP_SETPCAP (line 378) | CAP_SETPCAP = 0x8
constant CAP_SETUID (line 379) | CAP_SETUID = 0x7
constant CAP_SYSLOG (line 380) | CAP_SYSLOG = 0x22
constant CAP_SYS_ADMIN (line 381) | CAP_SYS_ADMIN = 0x15
constant CAP_SYS_BOOT (line 382) | CAP_SYS_BOOT = 0x16
constant CAP_SYS_CHROOT (line 383) | CAP_SYS_CHROOT = 0x12
constant CAP_SYS_MODULE (line 384) | CAP_SYS_MODULE = 0x10
constant CAP_SYS_NICE (line 385) | CAP_SYS_NICE = 0x17
constant CAP_SYS_PACCT (line 386) | CAP_SYS_PACCT = 0x14
constant CAP_SYS_PTRACE (line 387) | CAP_SYS_PTRACE = 0x13
constant CAP_SYS_RAWIO (line 388) | CAP_SYS_RAWIO = 0x11
constant CAP_SYS_RESOURCE (line 389) | CAP_SYS_RESOURCE = 0x18
constant CAP_SYS_TIME (line 390) | CAP_SYS_TIME = 0x19
constant CAP_SYS_TTY_CONFIG (line 391) | CAP_SYS_TTY_CONFIG = 0x1a
constant CAP_WAKE_ALARM (line 392) | CAP_WAKE_ALARM = 0x23
constant CBAUD (line 393) | CBAUD = 0x100f
constant CBAUDEX (line 394) | CBAUDEX = 0x1000
constant CFLUSH (line 395) | CFLUSH = 0xf
constant CGROUP2_SUPER_MAGIC (line 396) | CGROUP2_SUPER_MAGIC = 0x63677270
constant CGROUP_SUPER_MAGIC (line 397) | CGROUP_SUPER_MAGIC = 0x27e0eb
constant CIBAUD (line 398) | CIBAUD = 0x100f0000
constant CLOCAL (line 399) | CLOCAL = 0x800
constant CLOCK_BOOTTIME (line 400) | CLOCK_BOOTTIME = 0x7
constant CLOCK_BOOTTIME_ALARM (line 401) | CLOCK_BOOTTIME_ALARM = 0x9
constant CLOCK_DEFAULT (line 402) | CLOCK_DEFAULT = 0x0
constant CLOCK_EXT (line 403) | CLOCK_EXT = 0x1
constant CLOCK_INT (line 404) | CLOCK_INT = 0x2
constant CLOCK_MONOTONIC (line 405) | CLOCK_MONOTONIC = 0x1
constant CLOCK_MONOTONIC_COARSE (line 406) | CLOCK_MONOTONIC_COARSE = 0x6
constant CLOCK_MONOTONIC_RAW (line 407) | CLOCK_MONOTONIC_RAW = 0x4
constant CLOCK_PROCESS_CPUTIME_ID (line 408) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 409) | CLOCK_REALTIME = 0x0
constant CLOCK_REALTIME_ALARM (line 410) | CLOCK_REALTIME_ALARM = 0x8
constant CLOCK_REALTIME_COARSE (line 411) | CLOCK_REALTIME_COARSE = 0x5
constant CLOCK_TAI (line 412) | CLOCK_TAI = 0xb
constant CLOCK_THREAD_CPUTIME_ID (line 413) | CLOCK_THREAD_CPUTIME_ID = 0x3
constant CLOCK_TXFROMRX (line 414) | CLOCK_TXFROMRX = 0x4
constant CLOCK_TXINT (line 415) | CLOCK_TXINT = 0x3
constant CLONE_CHILD_CLEARTID (line 416) | CLONE_CHILD_CLEARTID = 0x200000
constant CLONE_CHILD_SETTID (line 417) | CLONE_CHILD_SETTID = 0x1000000
constant CLONE_DETACHED (line 418) | CLONE_DETACHED = 0x400000
constant CLONE_FILES (line 419) | CLONE_FILES = 0x400
constant CLONE_FS (line 420) | CLONE_FS = 0x200
constant CLONE_IO (line 421) | CLONE_IO = 0x80000000
constant CLONE_NEWCGROUP (line 422) | CLONE_NEWCGROUP = 0x2000000
constant CLONE_NEWIPC (line 423) | CLONE_NEWIPC = 0x8000000
constant CLONE_NEWNET (line 424) | CLONE_NEWNET = 0x40000000
constant CLONE_NEWNS (line 425) | CLONE_NEWNS = 0x20000
constant CLONE_NEWPID (line 426) | CLONE_NEWPID = 0x20000000
constant CLONE_NEWUSER (line 427) | CLONE_NEWUSER = 0x10000000
constant CLONE_NEWUTS (line 428) | CLONE_NEWUTS = 0x4000000
constant CLONE_PARENT (line 429) | CLONE_PARENT = 0x8000
constant CLONE_PARENT_SETTID (line 430) | CLONE_PARENT_SETTID = 0x100000
constant CLONE_PIDFD (line 431) | CLONE_PIDFD = 0x1000
constant CLONE_PTRACE (line 432) | CLONE_PTRACE = 0x2000
constant CLONE_SETTLS (line 433) | CLONE_SETTLS = 0x80000
constant CLONE_SIGHAND (line 434) | CLONE_SIGHAND = 0x800
constant CLONE_SYSVSEM (line 435) | CLONE_SYSVSEM = 0x40000
constant CLONE_THREAD (line 436) | CLONE_THREAD = 0x10000
constant CLONE_UNTRACED (line 437) | CLONE_UNTRACED = 0x800000
constant CLONE_VFORK (line 438) | CLONE_VFORK = 0x4000
constant CLONE_VM (line 439) | CLONE_VM = 0x100
constant CMSPAR (line 440) | CMSPAR = 0x40000000
constant CODA_SUPER_MAGIC (line 441) | CODA_SUPER_MAGIC = 0x73757245
constant CR0 (line 442) | CR0 = 0x0
constant CR1 (line 443) | CR1 = 0x200
constant CR2 (line 444) | CR2 = 0x400
constant CR3 (line 445) | CR3 = 0x600
constant CRAMFS_MAGIC (line 446) | CRAMFS_MAGIC = 0x28cd3d45
constant CRDLY (line 447) | CRDLY = 0x600
constant CREAD (line 448) | CREAD = 0x80
constant CRTSCTS (line 449) | CRTSCTS = 0x80000000
constant CRYPTO_MAX_NAME (line 450) | CRYPTO_MAX_NAME = 0x40
constant CRYPTO_MSG_MAX (line 451) | CRYPTO_MSG_MAX = 0x15
constant CRYPTO_NR_MSGTYPES (line 452) | CRYPTO_NR_MSGTYPES = 0x6
constant CRYPTO_REPORT_MAXSIZE (line 453) | CRYPTO_REPORT_MAXSIZE = 0x160
constant CS5 (line 454) | CS5 = 0x0
constant CS6 (line 455) | CS6 = 0x10
constant CS7 (line 456) | CS7 = 0x20
constant CS8 (line 457) | CS8 = 0x30
constant CSIGNAL (line 458) | CSIGNAL = 0xff
constant CSIZE (line 459) | CSIZE = 0x30
constant CSTART (line 460) | CSTART = 0x11
constant CSTATUS (line 461) | CSTATUS = 0x0
constant CSTOP (line 462) | CSTOP = 0x13
constant CSTOPB (line 463) | CSTOPB = 0x40
constant CSUSP (line 464) | CSUSP = 0x1a
constant DAXFS_MAGIC (line 465) | DAXFS_MAGIC = 0x64646178
constant DEBUGFS_MAGIC (line 466) | DEBUGFS_MAGIC = 0x64626720
constant DEVPTS_SUPER_MAGIC (line 467) | DEVPTS_SUPER_MAGIC = 0x1cd1
constant DMA_BUF_MAGIC (line 468) | DMA_BUF_MAGIC = 0x444d4142
constant DT_BLK (line 469) | DT_BLK = 0x6
constant DT_CHR (line 470) | DT_CHR = 0x2
constant DT_DIR (line 471) | DT_DIR = 0x4
constant DT_FIFO (line 472) | DT_FIFO = 0x1
constant DT_LNK (line 473) | DT_LNK = 0xa
constant DT_REG (line 474) | DT_REG = 0x8
constant DT_SOCK (line 475) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 476) | DT_UNKNOWN = 0x0
constant DT_WHT (line 477) | DT_WHT = 0xe
constant ECHO (line 478) | ECHO = 0x8
constant ECHOCTL (line 479) | ECHOCTL = 0x200
constant ECHOE (line 480) | ECHOE = 0x10
constant ECHOK (line 481) | ECHOK = 0x20
constant ECHOKE (line 482) | ECHOKE = 0x800
constant ECHONL (line 483) | ECHONL = 0x40
constant ECHOPRT (line 484) | ECHOPRT = 0x400
constant ECRYPTFS_SUPER_MAGIC (line 485) | ECRYPTFS_SUPER_MAGIC = 0xf15f
constant EFD_CLOEXEC (line 486) | EFD_CLOEXEC = 0x400000
constant EFD_NONBLOCK (line 487) | EFD_NONBLOCK = 0x4000
constant EFD_SEMAPHORE (line 488) | EFD_SEMAPHORE = 0x1
constant EFIVARFS_MAGIC (line 489) | EFIVARFS_MAGIC = 0xde5e81e4
constant EFS_SUPER_MAGIC (line 490) | EFS_SUPER_MAGIC = 0x414a53
constant EMT_TAGOVF (line 491) | EMT_TAGOVF = 0x1
constant ENCODING_DEFAULT (line 492) | ENCODING_DEFAULT = 0x0
constant ENCODING_FM_MARK (line 493) | ENCODING_FM_MARK = 0x3
constant ENCODING_FM_SPACE (line 494) | ENCODING_FM_SPACE = 0x4
constant ENCODING_MANCHESTER (line 495) | ENCODING_MANCHESTER = 0x5
constant ENCODING_NRZ (line 496) | ENCODING_NRZ = 0x1
constant ENCODING_NRZI (line 497) | ENCODING_NRZI = 0x2
constant EPOLLERR (line 498) | EPOLLERR = 0x8
constant EPOLLET (line 499) | EPOLLET = 0x80000000
constant EPOLLEXCLUSIVE (line 500) | EPOLLEXCLUSIVE = 0x10000000
constant EPOLLHUP (line 501) | EPOLLHUP = 0x10
constant EPOLLIN (line 502) | EPOLLIN = 0x1
constant EPOLLMSG (line 503) | EPOLLMSG = 0x400
constant EPOLLONESHOT (line 504) | EPOLLONESHOT = 0x40000000
constant EPOLLOUT (line 505) | EPOLLOUT = 0x4
constant EPOLLPRI (line 506) | EPOLLPRI = 0x2
constant EPOLLRDBAND (line 507) | EPOLLRDBAND = 0x80
constant EPOLLRDHUP (line 508) | EPOLLRDHUP = 0x2000
constant EPOLLRDNORM (line 509) | EPOLLRDNORM = 0x40
constant EPOLLWAKEUP (line 510) | EPOLLWAKEUP = 0x20000000
constant EPOLLWRBAND (line 511) | EPOLLWRBAND = 0x200
constant EPOLLWRNORM (line 512) | EPOLLWRNORM = 0x100
constant EPOLL_CLOEXEC (line 513) | EPOLL_CLOEXEC = 0x400000
constant EPOLL_CTL_ADD (line 514) | EPOLL_CTL_ADD = 0x1
constant EPOLL_CTL_DEL (line 515) | EPOLL_CTL_DEL = 0x2
constant EPOLL_CTL_MOD (line 516) | EPOLL_CTL_MOD = 0x3
constant ETH_P_1588 (line 517) | ETH_P_1588 = 0x88f7
constant ETH_P_8021AD (line 518) | ETH_P_8021AD = 0x88a8
constant ETH_P_8021AH (line 519) | ETH_P_8021AH = 0x88e7
constant ETH_P_8021Q (line 520) | ETH_P_8021Q = 0x8100
constant ETH_P_80221 (line 521) | ETH_P_80221 = 0x8917
constant ETH_P_802_2 (line 522) | ETH_P_802_2 = 0x4
constant ETH_P_802_3 (line 523) | ETH_P_802_3 = 0x1
constant ETH_P_802_3_MIN (line 524) | ETH_P_802_3_MIN = 0x600
constant ETH_P_802_EX1 (line 525) | ETH_P_802_EX1 = 0x88b5
constant ETH_P_AARP (line 526) | ETH_P_AARP = 0x80f3
constant ETH_P_AF_IUCV (line 527) | ETH_P_AF_IUCV = 0xfbfb
constant ETH_P_ALL (line 528) | ETH_P_ALL = 0x3
constant ETH_P_AOE (line 529) | ETH_P_AOE = 0x88a2
constant ETH_P_ARCNET (line 530) | ETH_P_ARCNET = 0x1a
constant ETH_P_ARP (line 531) | ETH_P_ARP = 0x806
constant ETH_P_ATALK (line 532) | ETH_P_ATALK = 0x809b
constant ETH_P_ATMFATE (line 533) | ETH_P_ATMFATE = 0x8884
constant ETH_P_ATMMPOA (line 534) | ETH_P_ATMMPOA = 0x884c
constant ETH_P_AX25 (line 535) | ETH_P_AX25 = 0x2
constant ETH_P_BATMAN (line 536) | ETH_P_BATMAN = 0x4305
constant ETH_P_BPQ (line 537) | ETH_P_BPQ = 0x8ff
constant ETH_P_CAIF (line 538) | ETH_P_CAIF = 0xf7
constant ETH_P_CAN (line 539) | ETH_P_CAN = 0xc
constant ETH_P_CANFD (line 540) | ETH_P_CANFD = 0xd
constant ETH_P_CONTROL (line 541) | ETH_P_CONTROL = 0x16
constant ETH_P_CUST (line 542) | ETH_P_CUST = 0x6006
constant ETH_P_DDCMP (line 543) | ETH_P_DDCMP = 0x6
constant ETH_P_DEC (line 544) | ETH_P_DEC = 0x6000
constant ETH_P_DIAG (line 545) | ETH_P_DIAG = 0x6005
constant ETH_P_DNA_DL (line 546) | ETH_P_DNA_DL = 0x6001
constant ETH_P_DNA_RC (line 547) | ETH_P_DNA_RC = 0x6002
constant ETH_P_DNA_RT (line 548) | ETH_P_DNA_RT = 0x6003
constant ETH_P_DSA (line 549) | ETH_P_DSA = 0x1b
constant ETH_P_DSA_8021Q (line 550) | ETH_P_DSA_8021Q = 0xdadb
constant ETH_P_ECONET (line 551) | ETH_P_ECONET = 0x18
constant ETH_P_EDSA (line 552) | ETH_P_EDSA = 0xdada
constant ETH_P_ERSPAN (line 553) | ETH_P_ERSPAN = 0x88be
constant ETH_P_ERSPAN2 (line 554) | ETH_P_ERSPAN2 = 0x22eb
constant ETH_P_FCOE (line 555) | ETH_P_FCOE = 0x8906
constant ETH_P_FIP (line 556) | ETH_P_FIP = 0x8914
constant ETH_P_HDLC (line 557) | ETH_P_HDLC = 0x19
constant ETH_P_HSR (line 558) | ETH_P_HSR = 0x892f
constant ETH_P_IBOE (line 559) | ETH_P_IBOE = 0x8915
constant ETH_P_IEEE802154 (line 560) | ETH_P_IEEE802154 = 0xf6
constant ETH_P_IEEEPUP (line 561) | ETH_P_IEEEPUP = 0xa00
constant ETH_P_IEEEPUPAT (line 562) | ETH_P_IEEEPUPAT = 0xa01
constant ETH_P_IFE (line 563) | ETH_P_IFE = 0xed3e
constant ETH_P_IP (line 564) | ETH_P_IP = 0x800
constant ETH_P_IPV6 (line 565) | ETH_P_IPV6 = 0x86dd
constant ETH_P_IPX (line 566) | ETH_P_IPX = 0x8137
constant ETH_P_IRDA (line 567) | ETH_P_IRDA = 0x17
constant ETH_P_LAT (line 568) | ETH_P_LAT = 0x6004
constant ETH_P_LINK_CTL (line 569) | ETH_P_LINK_CTL = 0x886c
constant ETH_P_LLDP (line 570) | ETH_P_LLDP = 0x88cc
constant ETH_P_LOCALTALK (line 571) | ETH_P_LOCALTALK = 0x9
constant ETH_P_LOOP (line 572) | ETH_P_LOOP = 0x60
constant ETH_P_LOOPBACK (line 573) | ETH_P_LOOPBACK = 0x9000
constant ETH_P_MACSEC (line 574) | ETH_P_MACSEC = 0x88e5
constant ETH_P_MAP (line 575) | ETH_P_MAP = 0xf9
constant ETH_P_MOBITEX (line 576) | ETH_P_MOBITEX = 0x15
constant ETH_P_MPLS_MC (line 577) | ETH_P_MPLS_MC = 0x8848
constant ETH_P_MPLS_UC (line 578) | ETH_P_MPLS_UC = 0x8847
constant ETH_P_MVRP (line 579) | ETH_P_MVRP = 0x88f5
constant ETH_P_NCSI (line 580) | ETH_P_NCSI = 0x88f8
constant ETH_P_NSH (line 581) | ETH_P_NSH = 0x894f
constant ETH_P_PAE (line 582) | ETH_P_PAE = 0x888e
constant ETH_P_PAUSE (line 583) | ETH_P_PAUSE = 0x8808
constant ETH_P_PHONET (line 584) | ETH_P_PHONET = 0xf5
constant ETH_P_PPPTALK (line 585) | ETH_P_PPPTALK = 0x10
constant ETH_P_PPP_DISC (line 586) | ETH_P_PPP_DISC = 0x8863
constant ETH_P_PPP_MP (line 587) | ETH_P_PPP_MP = 0x8
constant ETH_P_PPP_SES (line 588) | ETH_P_PPP_SES = 0x8864
constant ETH_P_PREAUTH (line 589) | ETH_P_PREAUTH = 0x88c7
constant ETH_P_PRP (line 590) | ETH_P_PRP = 0x88fb
constant ETH_P_PUP (line 591) | ETH_P_PUP = 0x200
constant ETH_P_PUPAT (line 592) | ETH_P_PUPAT = 0x201
constant ETH_P_QINQ1 (line 593) | ETH_P_QINQ1 = 0x9100
constant ETH_P_QINQ2 (line 594) | ETH_P_QINQ2 = 0x9200
constant ETH_P_QINQ3 (line 595) | ETH_P_QINQ3 = 0x9300
constant ETH_P_RARP (line 596) | ETH_P_RARP = 0x8035
constant ETH_P_SCA (line 597) | ETH_P_SCA = 0x6007
constant ETH_P_SLOW (line 598) | ETH_P_SLOW = 0x8809
constant ETH_P_SNAP (line 599) | ETH_P_SNAP = 0x5
constant ETH_P_TDLS (line 600) | ETH_P_TDLS = 0x890d
constant ETH_P_TEB (line 601) | ETH_P_TEB = 0x6558
constant ETH_P_TIPC (line 602) | ETH_P_TIPC = 0x88ca
constant ETH_P_TRAILER (line 603) | ETH_P_TRAILER = 0x1c
constant ETH_P_TR_802_2 (line 604) | ETH_P_TR_802_2 = 0x11
constant ETH_P_TSN (line 605) | ETH_P_TSN = 0x22f0
constant ETH_P_WAN_PPP (line 606) | ETH_P_WAN_PPP = 0x7
constant ETH_P_WCCP (line 607) | ETH_P_WCCP = 0x883e
constant ETH_P_X25 (line 608) | ETH_P_X25 = 0x805
constant ETH_P_XDSA (line 609) | ETH_P_XDSA = 0xf8
constant EXABYTE_ENABLE_NEST (line 610) | EXABYTE_ENABLE_NEST = 0xf0
constant EXT2_SUPER_MAGIC (line 611) | EXT2_SUPER_MAGIC = 0xef53
constant EXT3_SUPER_MAGIC (line 612) | EXT3_SUPER_MAGIC = 0xef53
constant EXT4_SUPER_MAGIC (line 613) | EXT4_SUPER_MAGIC = 0xef53
constant EXTA (line 614) | EXTA = 0xe
constant EXTB (line 615) | EXTB = 0xf
constant EXTPROC (line 616) | EXTPROC = 0x10000
constant F2FS_SUPER_MAGIC (line 617) | F2FS_SUPER_MAGIC = 0xf2f52010
constant FALLOC_FL_COLLAPSE_RANGE (line 618) | FALLOC_FL_COLLAPSE_RANGE = 0x8
constant FALLOC_FL_INSERT_RANGE (line 619) | FALLOC_FL_INSERT_RANGE = 0x20
constant FALLOC_FL_KEEP_SIZE (line 620) | FALLOC_FL_KEEP_SIZE = 0x1
constant FALLOC_FL_NO_HIDE_STALE (line 621) | FALLOC_FL_NO_HIDE_STALE = 0x4
constant FALLOC_FL_PUNCH_HOLE (line 622) | FALLOC_FL_PUNCH_HOLE = 0x2
constant FALLOC_FL_UNSHARE_RANGE (line 623) | FALLOC_FL_UNSHARE_RANGE = 0x40
constant FALLOC_FL_ZERO_RANGE (line 624) | FALLOC_FL_ZERO_RANGE = 0x10
constant FANOTIFY_METADATA_VERSION (line 625) | FANOTIFY_METADATA_VERSION = 0x3
constant FAN_ACCESS (line 626) | FAN_ACCESS = 0x1
constant FAN_ACCESS_PERM (line 627) | FAN_ACCESS_PERM = 0x20000
constant FAN_ALLOW (line 628) | FAN_ALLOW = 0x1
constant FAN_ALL_CLASS_BITS (line 629) | FAN_ALL_CLASS_BITS = 0xc
constant FAN_ALL_EVENTS (line 630) | FAN_ALL_EVENTS = 0x3b
constant FAN_ALL_INIT_FLAGS (line 631) | FAN_ALL_INIT_FLAGS = 0x3f
constant FAN_ALL_MARK_FLAGS (line 632) | FAN_ALL_MARK_FLAGS = 0xff
constant FAN_ALL_OUTGOING_EVENTS (line 633) | FAN_ALL_OUTGOING_EVENTS = 0x3403b
constant FAN_ALL_PERM_EVENTS (line 634) | FAN_ALL_PERM_EVENTS = 0x30000
constant FAN_ATTRIB (line 635) | FAN_ATTRIB = 0x4
constant FAN_AUDIT (line 636) | FAN_AUDIT = 0x10
constant FAN_CLASS_CONTENT (line 637) | FAN_CLASS_CONTENT = 0x4
constant FAN_CLASS_NOTIF (line 638) | FAN_CLASS_NOTIF = 0x0
constant FAN_CLASS_PRE_CONTENT (line 639) | FAN_CLASS_PRE_CONTENT = 0x8
constant FAN_CLOEXEC (line 640) | FAN_CLOEXEC = 0x1
constant FAN_CLOSE (line 641) | FAN_CLOSE = 0x18
constant FAN_CLOSE_NOWRITE (line 642) | FAN_CLOSE_NOWRITE = 0x10
constant FAN_CLOSE_WRITE (line 643) | FAN_CLOSE_WRITE = 0x8
constant FAN_CREATE (line 644) | FAN_CREATE = 0x100
constant FAN_DELETE (line 645) | FAN_DELETE = 0x200
constant FAN_DELETE_SELF (line 646) | FAN_DELETE_SELF = 0x400
constant FAN_DENY (line 647) | FAN_DENY = 0x2
constant FAN_ENABLE_AUDIT (line 648) | FAN_ENABLE_AUDIT = 0x40
constant FAN_EVENT_INFO_TYPE_FID (line 649) | FAN_EVENT_INFO_TYPE_FID = 0x1
constant FAN_EVENT_METADATA_LEN (line 650) | FAN_EVENT_METADATA_LEN = 0x18
constant FAN_EVENT_ON_CHILD (line 651) | FAN_EVENT_ON_CHILD = 0x8000000
constant FAN_MARK_ADD (line 652) | FAN_MARK_ADD = 0x1
constant FAN_MARK_DONT_FOLLOW (line 653) | FAN_MARK_DONT_FOLLOW = 0x4
constant FAN_MARK_FILESYSTEM (line 654) | FAN_MARK_FILESYSTEM = 0x100
constant FAN_MARK_FLUSH (line 655) | FAN_MARK_FLUSH = 0x80
constant FAN_MARK_IGNORED_MASK (line 656) | FAN_MARK_IGNORED_MASK = 0x20
constant FAN_MARK_IGNORED_SURV_MODIFY (line 657) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40
constant FAN_MARK_INODE (line 658) | FAN_MARK_INODE = 0x0
constant FAN_MARK_MOUNT (line 659) | FAN_MARK_MOUNT = 0x10
constant FAN_MARK_ONLYDIR (line 660) | FAN_MARK_ONLYDIR = 0x8
constant FAN_MARK_REMOVE (line 661) | FAN_MARK_REMOVE = 0x2
constant FAN_MODIFY (line 662) | FAN_MODIFY = 0x2
constant FAN_MOVE (line 663) | FAN_MOVE = 0xc0
constant FAN_MOVED_FROM (line 664) | FAN_MOVED_FROM = 0x40
constant FAN_MOVED_TO (line 665) | FAN_MOVED_TO = 0x80
constant FAN_MOVE_SELF (line 666) | FAN_MOVE_SELF = 0x800
constant FAN_NOFD (line 667) | FAN_NOFD = -0x1
constant FAN_NONBLOCK (line 668) | FAN_NONBLOCK = 0x2
constant FAN_ONDIR (line 669) | FAN_ONDIR = 0x40000000
constant FAN_OPEN (line 670) | FAN_OPEN = 0x20
constant FAN_OPEN_EXEC (line 671) | FAN_OPEN_EXEC = 0x1000
constant FAN_OPEN_EXEC_PERM (line 672) | FAN_OPEN_EXEC_PERM = 0x40000
constant FAN_OPEN_PERM (line 673) | FAN_OPEN_PERM = 0x10000
constant FAN_Q_OVERFLOW (line 674) | FAN_Q_OVERFLOW = 0x4000
constant FAN_REPORT_FID (line 675) | FAN_REPORT_FID = 0x200
constant FAN_REPORT_TID (line 676) | FAN_REPORT_TID = 0x100
constant FAN_UNLIMITED_MARKS (line 677) | FAN_UNLIMITED_MARKS = 0x20
constant FAN_UNLIMITED_QUEUE (line 678) | FAN_UNLIMITED_QUEUE = 0x10
constant FD_CLOEXEC (line 679) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 680) | FD_SETSIZE = 0x400
constant FF0 (line 681) | FF0 = 0x0
constant FF1 (line 682) | FF1 = 0x8000
constant FFDLY (line 683) | FFDLY = 0x8000
constant FLUSHO (line 684) | FLUSHO = 0x1000
constant FS_ENCRYPTION_MODE_ADIANTUM (line 685) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9
constant FS_ENCRYPTION_MODE_AES_128_CBC (line 686) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5
constant FS_ENCRYPTION_MODE_AES_128_CTS (line 687) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6
constant FS_ENCRYPTION_MODE_AES_256_CBC (line 688) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3
constant FS_ENCRYPTION_MODE_AES_256_CTS (line 689) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4
constant FS_ENCRYPTION_MODE_AES_256_GCM (line 690) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2
constant FS_ENCRYPTION_MODE_AES_256_XTS (line 691) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1
constant FS_ENCRYPTION_MODE_INVALID (line 692) | FS_ENCRYPTION_MODE_INVALID = 0x0
constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 693) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8
constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 694) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7
constant FS_IOC_GET_ENCRYPTION_POLICY (line 695) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615
constant FS_IOC_GET_ENCRYPTION_PWSALT (line 696) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614
constant FS_IOC_SET_ENCRYPTION_POLICY (line 697) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613
constant FS_KEY_DESCRIPTOR_SIZE (line 698) | FS_KEY_DESCRIPTOR_SIZE = 0x8
constant FS_KEY_DESC_PREFIX (line 699) | FS_KEY_DESC_PREFIX = "fscrypt:"
constant FS_KEY_DESC_PREFIX_SIZE (line 700) | FS_KEY_DESC_PREFIX_SIZE = 0x8
constant FS_MAX_KEY_SIZE (line 701) | FS_MAX_KEY_SIZE = 0x40
constant FS_POLICY_FLAGS_PAD_16 (line 702) | FS_POLICY_FLAGS_PAD_16 = 0x2
constant FS_POLICY_FLAGS_PAD_32 (line 703) | FS_POLICY_FLAGS_PAD_32 = 0x3
constant FS_POLICY_FLAGS_PAD_4 (line 704) | FS_POLICY_FLAGS_PAD_4 = 0x0
constant FS_POLICY_FLAGS_PAD_8 (line 705) | FS_POLICY_FLAGS_PAD_8 = 0x1
constant FS_POLICY_FLAGS_PAD_MASK (line 706) | FS_POLICY_FLAGS_PAD_MASK = 0x3
constant FS_POLICY_FLAGS_VALID (line 707) | FS_POLICY_FLAGS_VALID = 0x7
constant FUTEXFS_SUPER_MAGIC (line 708) | FUTEXFS_SUPER_MAGIC = 0xbad1dea
constant F_ADD_SEALS (line 709) | F_ADD_SEALS = 0x409
constant F_DUPFD (line 710) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 711) | F_DUPFD_CLOEXEC = 0x406
constant F_EXLCK (line 712) | F_EXLCK = 0x4
constant F_GETFD (line 713) | F_GETFD = 0x1
constant F_GETFL (line 714) | F_GETFL = 0x3
constant F_GETLEASE (line 715) | F_GETLEASE = 0x401
constant F_GETLK (line 716) | F_GETLK = 0x7
constant F_GETLK64 (line 717) | F_GETLK64 = 0x7
constant F_GETOWN (line 718) | F_GETOWN = 0x5
constant F_GETOWN_EX (line 719) | F_GETOWN_EX = 0x10
constant F_GETPIPE_SZ (line 720) | F_GETPIPE_SZ = 0x408
constant F_GETSIG (line 721) | F_GETSIG = 0xb
constant F_GET_FILE_RW_HINT (line 722) | F_GET_FILE_RW_HINT = 0x40d
constant F_GET_RW_HINT (line 723) | F_GET_RW_HINT = 0x40b
constant F_GET_SEALS (line 724) | F_GET_SEALS = 0x40a
constant F_LOCK (line 725) | F_LOCK = 0x1
constant F_NOTIFY (line 726) | F_NOTIFY = 0x402
constant F_OFD_GETLK (line 727) | F_OFD_GETLK = 0x24
constant F_OFD_SETLK (line 728) | F_OFD_SETLK = 0x25
constant F_OFD_SETLKW (line 729) | F_OFD_SETLKW = 0x26
constant F_OK (line 730) | F_OK = 0x0
constant F_RDLCK (line 731) | F_RDLCK = 0x1
constant F_SEAL_FUTURE_WRITE (line 732) | F_SEAL_FUTURE_WRITE = 0x10
constant F_SEAL_GROW (line 733) | F_SEAL_GROW = 0x4
constant F_SEAL_SEAL (line 734) | F_SEAL_SEAL = 0x1
constant F_SEAL_SHRINK (line 735) | F_SEAL_SHRINK = 0x2
constant F_SEAL_WRITE (line 736) | F_SEAL_WRITE = 0x8
constant F_SETFD (line 737) | F_SETFD = 0x2
constant F_SETFL (line 738) | F_SETFL = 0x4
constant F_SETLEASE (line 739) | F_SETLEASE = 0x400
constant F_SETLK (line 740) | F_SETLK = 0x8
constant F_SETLK64 (line 741) | F_SETLK64 = 0x8
constant F_SETLKW (line 742) | F_SETLKW = 0x9
constant F_SETLKW64 (line 743) | F_SETLKW64 = 0x9
constant F_SETOWN (line 744) | F_SETOWN = 0x6
constant F_SETOWN_EX (line 745) | F_SETOWN_EX = 0xf
constant F_SETPIPE_SZ (line 746) | F_SETPIPE_SZ = 0x407
constant F_SETSIG (line 747) | F_SETSIG = 0xa
constant F_SET_FILE_RW_HINT (line 748) | F_SET_FILE_RW_HINT = 0x40e
constant F_SET_RW_HINT (line 749) | F_SET_RW_HINT = 0x40c
constant F_SHLCK (line 750) | F_SHLCK = 0x8
constant F_TEST (line 751) | F_TEST = 0x3
constant F_TLOCK (line 752) | F_TLOCK = 0x2
constant F_ULOCK (line 753) | F_ULOCK = 0x0
constant F_UNLCK (line 754) | F_UNLCK = 0x3
constant F_WRLCK (line 755) | F_WRLCK = 0x2
constant GENL_ADMIN_PERM (line 756) | GENL_ADMIN_PERM = 0x1
constant GENL_CMD_CAP_DO (line 757) | GENL_CMD_CAP_DO = 0x2
constant GENL_CMD_CAP_DUMP (line 758) | GENL_CMD_CAP_DUMP = 0x4
constant GENL_CMD_CAP_HASPOL (line 759) | GENL_CMD_CAP_HASPOL = 0x8
constant GENL_HDRLEN (line 760) | GENL_HDRLEN = 0x4
constant GENL_ID_CTRL (line 761) | GENL_ID_CTRL = 0x10
constant GENL_ID_PMCRAID (line 762) | GENL_ID_PMCRAID = 0x12
constant GENL_ID_VFS_DQUOT (line 763) | GENL_ID_VFS_DQUOT = 0x11
constant GENL_MAX_ID (line 764) | GENL_MAX_ID = 0x3ff
constant GENL_MIN_ID (line 765) | GENL_MIN_ID = 0x10
constant GENL_NAMSIZ (line 766) | GENL_NAMSIZ = 0x10
constant GENL_START_ALLOC (line 767) | GENL_START_ALLOC = 0x13
constant GENL_UNS_ADMIN_PERM (line 768) | GENL_UNS_ADMIN_PERM = 0x10
constant GRND_NONBLOCK (line 769) | GRND_NONBLOCK = 0x1
constant GRND_RANDOM (line 770) | GRND_RANDOM = 0x2
constant HDIO_DRIVE_CMD (line 771) | HDIO_DRIVE_CMD = 0x31f
constant HDIO_DRIVE_CMD_AEB (line 772) | HDIO_DRIVE_CMD_AEB = 0x31e
constant HDIO_DRIVE_CMD_HDR_SIZE (line 773) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4
constant HDIO_DRIVE_HOB_HDR_SIZE (line 774) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8
constant HDIO_DRIVE_RESET (line 775) | HDIO_DRIVE_RESET = 0x31c
constant HDIO_DRIVE_TASK (line 776) | HDIO_DRIVE_TASK = 0x31e
constant HDIO_DRIVE_TASKFILE (line 777) | HDIO_DRIVE_TASKFILE = 0x31d
constant HDIO_DRIVE_TASK_HDR_SIZE (line 778) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8
constant HDIO_GETGEO (line 779) | HDIO_GETGEO = 0x301
constant HDIO_GET_32BIT (line 780) | HDIO_GET_32BIT = 0x309
constant HDIO_GET_ACOUSTIC (line 781) | HDIO_GET_ACOUSTIC = 0x30f
constant HDIO_GET_ADDRESS (line 782) | HDIO_GET_ADDRESS = 0x310
constant HDIO_GET_BUSSTATE (line 783) | HDIO_GET_BUSSTATE = 0x31a
constant HDIO_GET_DMA (line 784) | HDIO_GET_DMA = 0x30b
constant HDIO_GET_IDENTITY (line 785) | HDIO_GET_IDENTITY = 0x30d
constant HDIO_GET_KEEPSETTINGS (line 786) | HDIO_GET_KEEPSETTINGS = 0x308
constant HDIO_GET_MULTCOUNT (line 787) | HDIO_GET_MULTCOUNT = 0x304
constant HDIO_GET_NICE (line 788) | HDIO_GET_NICE = 0x30c
constant HDIO_GET_NOWERR (line 789) | HDIO_GET_NOWERR = 0x30a
constant HDIO_GET_QDMA (line 790) | HDIO_GET_QDMA = 0x305
constant HDIO_GET_UNMASKINTR (line 791) | HDIO_GET_UNMASKINTR = 0x302
constant HDIO_GET_WCACHE (line 792) | HDIO_GET_WCACHE = 0x30e
constant HDIO_OBSOLETE_IDENTITY (line 793) | HDIO_OBSOLETE_IDENTITY = 0x307
constant HDIO_SCAN_HWIF (line 794) | HDIO_SCAN_HWIF = 0x328
constant HDIO_SET_32BIT (line 795) | HDIO_SET_32BIT = 0x324
constant HDIO_SET_ACOUSTIC (line 796) | HDIO_SET_ACOUSTIC = 0x32c
constant HDIO_SET_ADDRESS (line 797) | HDIO_SET_ADDRESS = 0x32f
constant HDIO_SET_BUSSTATE (line 798) | HDIO_SET_BUSSTATE = 0x32d
constant HDIO_SET_DMA (line 799) | HDIO_SET_DMA = 0x326
constant HDIO_SET_KEEPSETTINGS (line 800) | HDIO_SET_KEEPSETTINGS = 0x323
constant HDIO_SET_MULTCOUNT (line 801) | HDIO_SET_MULTCOUNT = 0x321
constant HDIO_SET_NICE (line 802) | HDIO_SET_NICE = 0x329
constant HDIO_SET_NOWERR (line 803) | HDIO_SET_NOWERR = 0x325
constant HDIO_SET_PIO_MODE (line 804) | HDIO_SET_PIO_MODE = 0x327
constant HDIO_SET_QDMA (line 805) | HDIO_SET_QDMA = 0x32e
constant HDIO_SET_UNMASKINTR (line 806) | HDIO_SET_UNMASKINTR = 0x322
constant HDIO_SET_WCACHE (line 807) | HDIO_SET_WCACHE = 0x32b
constant HDIO_SET_XFER (line 808) | HDIO_SET_XFER = 0x306
constant HDIO_TRISTATE_HWIF (line 809) | HDIO_TRISTATE_HWIF = 0x31b
constant HDIO_UNREGISTER_HWIF (line 810) | HDIO_UNREGISTER_HWIF = 0x32a
constant HOSTFS_SUPER_MAGIC (line 811) | HOSTFS_SUPER_MAGIC = 0xc0ffee
constant HPFS_SUPER_MAGIC (line 812) | HPFS_SUPER_MAGIC = 0xf995e849
constant HUGETLBFS_MAGIC (line 813) | HUGETLBFS_MAGIC = 0x958458f6
constant HUPCL (line 814) | HUPCL = 0x400
constant IBSHIFT (line 815) | IBSHIFT = 0x10
constant ICANON (line 816) | ICANON = 0x2
constant ICMPV6_FILTER (line 817) | ICMPV6_FILTER = 0x1
constant ICRNL (line 818) | ICRNL = 0x100
constant IEXTEN (line 819) | IEXTEN = 0x8000
constant IFA_F_DADFAILED (line 820) | IFA_F_DADFAILED = 0x8
constant IFA_F_DEPRECATED (line 821) | IFA_F_DEPRECATED = 0x20
constant IFA_F_HOMEADDRESS (line 822) | IFA_F_HOMEADDRESS = 0x10
constant IFA_F_MANAGETEMPADDR (line 823) | IFA_F_MANAGETEMPADDR = 0x100
constant IFA_F_MCAUTOJOIN (line 824) | IFA_F_MCAUTOJOIN = 0x400
constant IFA_F_NODAD (line 825) | IFA_F_NODAD = 0x2
constant IFA_F_NOPREFIXROUTE (line 826) | IFA_F_NOPREFIXROUTE = 0x200
constant IFA_F_OPTIMISTIC (line 827) | IFA_F_OPTIMISTIC = 0x4
constant IFA_F_PERMANENT (line 828) | IFA_F_PERMANENT = 0x80
constant IFA_F_SECONDARY (line 829) | IFA_F_SECONDARY = 0x1
constant IFA_F_STABLE_PRIVACY (line 830) | IFA_F_STABLE_PRIVACY = 0x800
constant IFA_F_TEMPORARY (line 831) | IFA_F_TEMPORARY = 0x1
constant IFA_F_TENTATIVE (line 832) | IFA_F_TENTATIVE = 0x40
constant IFA_MAX (line 833) | IFA_MAX = 0xa
constant IFF_ALLMULTI (line 834) | IFF_ALLMULTI = 0x200
constant IFF_ATTACH_QUEUE (line 835) | IFF_ATTACH_QUEUE = 0x200
constant IFF_AUTOMEDIA (line 836) | IFF_AUTOMEDIA = 0x4000
constant IFF_BROADCAST (line 837) | IFF_BROADCAST = 0x2
constant IFF_DEBUG (line 838) | IFF_DEBUG = 0x4
constant IFF_DETACH_QUEUE (line 839) | IFF_DETACH_QUEUE = 0x400
constant IFF_DORMANT (line 840) | IFF_DORMANT = 0x20000
constant IFF_DYNAMIC (line 841) | IFF_DYNAMIC = 0x8000
constant IFF_ECHO (line 842) | IFF_ECHO = 0x40000
constant IFF_LOOPBACK (line 843) | IFF_LOOPBACK = 0x8
constant IFF_LOWER_UP (line 844) | IFF_LOWER_UP = 0x10000
constant IFF_MASTER (line 845) | IFF_MASTER = 0x400
constant IFF_MULTICAST (line 846) | IFF_MULTICAST = 0x1000
constant IFF_MULTI_QUEUE (line 847) | IFF_MULTI_QUEUE = 0x100
constant IFF_NAPI (line 848) | IFF_NAPI = 0x10
constant IFF_NAPI_FRAGS (line 849) | IFF_NAPI_FRAGS = 0x20
constant IFF_NOARP (line 850) | IFF_NOARP = 0x80
constant IFF_NOFILTER (line 851) | IFF_NOFILTER = 0x1000
constant IFF_NOTRAILERS (line 852) | IFF_NOTRAILERS = 0x20
constant IFF_NO_PI (line 853) | IFF_NO_PI = 0x1000
constant IFF_ONE_QUEUE (line 854) | IFF_ONE_QUEUE = 0x2000
constant IFF_PERSIST (line 855) | IFF_PERSIST = 0x800
constant IFF_POINTOPOINT (line 856) | IFF_POINTOPOINT = 0x10
constant IFF_PORTSEL (line 857) | IFF_PORTSEL = 0x2000
constant IFF_PROMISC (line 858) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 859) | IFF_RUNNING = 0x40
constant IFF_SLAVE (line 860) | IFF_SLAVE = 0x800
constant IFF_TAP (line 861) | IFF_TAP = 0x2
constant IFF_TUN (line 862) | IFF_TUN = 0x1
constant IFF_TUN_EXCL (line 863) | IFF_TUN_EXCL = 0x8000
constant IFF_UP (line 864) | IFF_UP = 0x1
constant IFF_VNET_HDR (line 865) | IFF_VNET_HDR = 0x4000
constant IFF_VOLATILE (line 866) | IFF_VOLATILE = 0x70c5a
constant IFNAMSIZ (line 867) | IFNAMSIZ = 0x10
constant IGNBRK (line 868) | IGNBRK = 0x1
constant IGNCR (line 869) | IGNCR = 0x80
constant IGNPAR (line 870) | IGNPAR = 0x4
constant IMAXBEL (line 871) | IMAXBEL = 0x2000
constant INLCR (line 872) | INLCR = 0x40
constant INPCK (line 873) | INPCK = 0x10
constant IN_ACCESS (line 874) | IN_ACCESS = 0x1
constant IN_ALL_EVENTS (line 875) | IN_ALL_EVENTS = 0xfff
constant IN_ATTRIB (line 876) | IN_ATTRIB = 0x4
constant IN_CLASSA_HOST (line 877) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 878) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 879) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 880) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 881) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 882) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 883) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 884) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 885) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 886) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 887) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLOEXEC (line 888) | IN_CLOEXEC = 0x400000
constant IN_CLOSE (line 889) | IN_CLOSE = 0x18
constant IN_CLOSE_NOWRITE (line 890) | IN_CLOSE_NOWRITE = 0x10
constant IN_CLOSE_WRITE (line 891) | IN_CLOSE_WRITE = 0x8
constant IN_CREATE (line 892) | IN_CREATE = 0x100
constant IN_DELETE (line 893) | IN_DELETE = 0x200
constant IN_DELETE_SELF (line 894) | IN_DELETE_SELF = 0x400
constant IN_DONT_FOLLOW (line 895) | IN_DONT_FOLLOW = 0x2000000
constant IN_EXCL_UNLINK (line 896) | IN_EXCL_UNLINK = 0x4000000
constant IN_IGNORED (line 897) | IN_IGNORED = 0x8000
constant IN_ISDIR (line 898) | IN_ISDIR = 0x40000000
constant IN_LOOPBACKNET (line 899) | IN_LOOPBACKNET = 0x7f
constant IN_MASK_ADD (line 900) | IN_MASK_ADD = 0x20000000
constant IN_MASK_CREATE (line 901) | IN_MASK_CREATE = 0x10000000
constant IN_MODIFY (line 902) | IN_MODIFY = 0x2
constant IN_MOVE (line 903) | IN_MOVE = 0xc0
constant IN_MOVED_FROM (line 904) | IN_MOVED_FROM = 0x40
constant IN_MOVED_TO (line 905) | IN_MOVED_TO = 0x80
constant IN_MOVE_SELF (line 906) | IN_MOVE_SELF = 0x800
constant IN_NONBLOCK (line 907) | IN_NONBLOCK = 0x4000
constant IN_ONESHOT (line 908) | IN_ONESHOT = 0x80000000
constant IN_ONLYDIR (line 909) | IN_ONLYDIR = 0x1000000
constant IN_OPEN (line 910) | IN_OPEN = 0x20
constant IN_Q_OVERFLOW (line 911) | IN_Q_OVERFLOW = 0x4000
constant IN_UNMOUNT (line 912) | IN_UNMOUNT = 0x2000
constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 913) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9
constant IPPROTO_AH (line 914) | IPPROTO_AH = 0x33
constant IPPROTO_BEETPH (line 915) | IPPROTO_BEETPH = 0x5e
constant IPPROTO_COMP (line 916) | IPPROTO_COMP = 0x6c
constant IPPROTO_DCCP (line 917) | IPPROTO_DCCP = 0x21
constant IPPROTO_DSTOPTS (line 918) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 919) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 920) | IPPROTO_ENCAP = 0x62
constant IPPROTO_ESP (line 921) | IPPROTO_ESP = 0x32
constant IPPROTO_FRAGMENT (line 922) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GRE (line 923) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 924) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 925) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 926) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 927) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 928) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 929) | IPPROTO_IP = 0x0
constant IPPROTO_IPIP (line 930) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV6 (line 931) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MH (line 932) | IPPROTO_MH = 0x87
constant IPPROTO_MPLS (line 933) | IPPROTO_MPLS = 0x89
constant IPPROTO_MTP (line 934) | IPPROTO_MTP = 0x5c
constant IPPROTO_NONE (line 935) | IPPROTO_NONE = 0x3b
constant IPPROTO_PIM (line 936) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 937) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 938) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 939) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 940) | IPPROTO_RSVP = 0x2e
constant IPPROTO_SCTP (line 941) | IPPROTO_SCTP = 0x84
constant IPPROTO_TCP (line 942) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 943) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 944) | IPPROTO_UDP = 0x11
constant IPPROTO_UDPLITE (line 945) | IPPROTO_UDPLITE = 0x88
constant IPV6_2292DSTOPTS (line 946) | IPV6_2292DSTOPTS = 0x4
constant IPV6_2292HOPLIMIT (line 947) | IPV6_2292HOPLIMIT = 0x8
constant IPV6_2292HOPOPTS (line 948) | IPV6_2292HOPOPTS = 0x3
constant IPV6_2292PKTINFO (line 949) | IPV6_2292PKTINFO = 0x2
constant IPV6_2292PKTOPTIONS (line 950) | IPV6_2292PKTOPTIONS = 0x6
constant IPV6_2292RTHDR (line 951) | IPV6_2292RTHDR = 0x5
constant IPV6_ADDRFORM (line 952) | IPV6_ADDRFORM = 0x1
constant IPV6_ADDR_PREFERENCES (line 953) | IPV6_ADDR_PREFERENCES = 0x48
constant IPV6_ADD_MEMBERSHIP (line 954) | IPV6_ADD_MEMBERSHIP = 0x14
constant IPV6_AUTHHDR (line 955) | IPV6_AUTHHDR = 0xa
constant IPV6_AUTOFLOWLABEL (line 956) | IPV6_AUTOFLOWLABEL = 0x46
constant IPV6_CHECKSUM (line 957) | IPV6_CHECKSUM = 0x7
constant IPV6_DONTFRAG (line 958) | IPV6_DONTFRAG = 0x3e
constant IPV6_DROP_MEMBERSHIP (line 959) | IPV6_DROP_MEMBERSHIP = 0x15
constant IPV6_DSTOPTS (line 960) | IPV6_DSTOPTS = 0x3b
constant IPV6_FREEBIND (line 961) | IPV6_FREEBIND = 0x4e
constant IPV6_HDRINCL (line 962) | IPV6_HDRINCL = 0x24
constant IPV6_HOPLIMIT (line 963) | IPV6_HOPLIMIT = 0x34
constant IPV6_HOPOPTS (line 964) | IPV6_HOPOPTS = 0x36
constant IPV6_IPSEC_POLICY (line 965) | IPV6_IPSEC_POLICY = 0x22
constant IPV6_JOIN_ANYCAST (line 966) | IPV6_JOIN_ANYCAST = 0x1b
constant IPV6_JOIN_GROUP (line 967) | IPV6_JOIN_GROUP = 0x14
constant IPV6_LEAVE_ANYCAST (line 968) | IPV6_LEAVE_ANYCAST = 0x1c
constant IPV6_LEAVE_GROUP (line 969) | IPV6_LEAVE_GROUP = 0x15
constant IPV6_MINHOPCOUNT (line 970) | IPV6_MINHOPCOUNT = 0x49
constant IPV6_MTU (line 971) | IPV6_MTU = 0x18
constant IPV6_MTU_DISCOVER (line 972) | IPV6_MTU_DISCOVER = 0x17
constant IPV6_MULTICAST_ALL (line 973) | IPV6_MULTICAST_ALL = 0x1d
constant IPV6_MULTICAST_HOPS (line 974) | IPV6_MULTICAST_HOPS = 0x12
constant IPV6_MULTICAST_IF (line 975) | IPV6_MULTICAST_IF = 0x11
constant IPV6_MULTICAST_LOOP (line 976) | IPV6_MULTICAST_LOOP = 0x13
constant IPV6_NEXTHOP (line 977) | IPV6_NEXTHOP = 0x9
constant IPV6_ORIGDSTADDR (line 978) | IPV6_ORIGDSTADDR = 0x4a
constant IPV6_PATHMTU (line 979) | IPV6_PATHMTU = 0x3d
constant IPV6_PKTINFO (line 980) | IPV6_PKTINFO = 0x32
constant IPV6_PMTUDISC_DO (line 981) | IPV6_PMTUDISC_DO = 0x2
constant IPV6_PMTUDISC_DONT (line 982) | IPV6_PMTUDISC_DONT = 0x0
constant IPV6_PMTUDISC_INTERFACE (line 983) | IPV6_PMTUDISC_INTERFACE = 0x4
constant IPV6_PMTUDISC_OMIT (line 984) | IPV6_PMTUDISC_OMIT = 0x5
constant IPV6_PMTUDISC_PROBE (line 985) | IPV6_PMTUDISC_PROBE = 0x3
constant IPV6_PMTUDISC_WANT (line 986) | IPV6_PMTUDISC_WANT = 0x1
constant IPV6_RECVDSTOPTS (line 987) | IPV6_RECVDSTOPTS = 0x3a
constant IPV6_RECVERR (line 988) | IPV6_RECVERR = 0x19
constant IPV6_RECVFRAGSIZE (line 989) | IPV6_RECVFRAGSIZE = 0x4d
constant IPV6_RECVHOPLIMIT (line 990) | IPV6_RECVHOPLIMIT = 0x33
constant IPV6_RECVHOPOPTS (line 991) | IPV6_RECVHOPOPTS = 0x35
constant IPV6_RECVORIGDSTADDR (line 992) | IPV6_RECVORIGDSTADDR = 0x4a
constant IPV6_RECVPATHMTU (line 993) | IPV6_RECVPATHMTU = 0x3c
constant IPV6_RECVPKTINFO (line 994) | IPV6_RECVPKTINFO = 0x31
constant IPV6_RECVRTHDR (line 995) | IPV6_RECVRTHDR = 0x38
constant IPV6_RECVTCLASS (line 996) | IPV6_RECVTCLASS = 0x42
constant IPV6_ROUTER_ALERT (line 997) | IPV6_ROUTER_ALERT = 0x16
constant IPV6_ROUTER_ALERT_ISOLATE (line 998) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e
constant IPV6_RTHDR (line 999) | IPV6_RTHDR = 0x39
constant IPV6_RTHDRDSTOPTS (line 1000) | IPV6_RTHDRDSTOPTS = 0x37
constant IPV6_RTHDR_LOOSE (line 1001) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 1002) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 1003) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_RXDSTOPTS (line 1004) | IPV6_RXDSTOPTS = 0x3b
constant IPV6_RXHOPOPTS (line 1005) | IPV6_RXHOPOPTS = 0x36
constant IPV6_TCLASS (line 1006) | IPV6_TCLASS = 0x43
constant IPV6_TRANSPARENT (line 1007) | IPV6_TRANSPARENT = 0x4b
constant IPV6_UNICAST_HOPS (line 1008) | IPV6_UNICAST_HOPS = 0x10
constant IPV6_UNICAST_IF (line 1009) | IPV6_UNICAST_IF = 0x4c
constant IPV6_V6ONLY (line 1010) | IPV6_V6ONLY = 0x1a
constant IPV6_XFRM_POLICY (line 1011) | IPV6_XFRM_POLICY = 0x23
constant IP_ADD_MEMBERSHIP (line 1012) | IP_ADD_MEMBERSHIP = 0x23
constant IP_ADD_SOURCE_MEMBERSHIP (line 1013) | IP_ADD_SOURCE_MEMBERSHIP = 0x27
constant IP_BIND_ADDRESS_NO_PORT (line 1014) | IP_BIND_ADDRESS_NO_PORT = 0x18
constant IP_BLOCK_SOURCE (line 1015) | IP_BLOCK_SOURCE = 0x26
constant IP_CHECKSUM (line 1016) | IP_CHECKSUM = 0x17
constant IP_DEFAULT_MULTICAST_LOOP (line 1017) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 1018) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 1019) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 1020) | IP_DROP_MEMBERSHIP = 0x24
constant IP_DROP_SOURCE_MEMBERSHIP (line 1021) | IP_DROP_SOURCE_MEMBERSHIP = 0x28
constant IP_FREEBIND (line 1022) | IP_FREEBIND = 0xf
constant IP_HDRINCL (line 1023) | IP_HDRINCL = 0x3
constant IP_IPSEC_POLICY (line 1024) | IP_IPSEC_POLICY = 0x10
constant IP_MAXPACKET (line 1025) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 1026) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 1027) | IP_MF = 0x2000
constant IP_MINTTL (line 1028) | IP_MINTTL = 0x15
constant IP_MSFILTER (line 1029) | IP_MSFILTER = 0x29
constant IP_MSS (line 1030) | IP_MSS = 0x240
constant IP_MTU (line 1031) | IP_MTU = 0xe
constant IP_MTU_DISCOVER (line 1032) | IP_MTU_DISCOVER = 0xa
constant IP_MULTICAST_ALL (line 1033) | IP_MULTICAST_ALL = 0x31
constant IP_MULTICAST_IF (line 1034) | IP_MULTICAST_IF = 0x20
constant IP_MULTICAST_LOOP (line 1035) | IP_MULTICAST_LOOP = 0x22
constant IP_MULTICAST_TTL (line 1036) | IP_MULTICAST_TTL = 0x21
constant IP_NODEFRAG (line 1037) | IP_NODEFRAG = 0x16
constant IP_OFFMASK (line 1038) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 1039) | IP_OPTIONS = 0x4
constant IP_ORIGDSTADDR (line 1040) | IP_ORIGDSTADDR = 0x14
constant IP_PASSSEC (line 1041) | IP_PASSSEC = 0x12
constant IP_PKTINFO (line 1042) | IP_PKTINFO = 0x8
constant IP_PKTOPTIONS (line 1043) | IP_PKTOPTIONS = 0x9
constant IP_PMTUDISC (line 1044) | IP_PMTUDISC = 0xa
constant IP_PMTUDISC_DO (line 1045) | IP_PMTUDISC_DO = 0x2
constant IP_PMTUDISC_DONT (line 1046) | IP_PMTUDISC_DONT = 0x0
constant IP_PMTUDISC_INTERFACE (line 1047) | IP_PMTUDISC_INTERFACE = 0x4
constant IP_PMTUDISC_OMIT (line 1048) | IP_PMTUDISC_OMIT = 0x5
constant IP_PMTUDISC_PROBE (line 1049) | IP_PMTUDISC_PROBE = 0x3
constant IP_PMTUDISC_WANT (line 1050) | IP_PMTUDISC_WANT = 0x1
constant IP_RECVERR (line 1051) | IP_RECVERR = 0xb
constant IP_RECVFRAGSIZE (line 1052) | IP_RECVFRAGSIZE = 0x19
constant IP_RECVOPTS (line 1053) | IP_RECVOPTS = 0x6
constant IP_RECVORIGDSTADDR (line 1054) | IP_RECVORIGDSTADDR = 0x14
constant IP_RECVRETOPTS (line 1055) | IP_RECVRETOPTS = 0x7
constant IP_RECVTOS (line 1056) | IP_RECVTOS = 0xd
constant IP_RECVTTL (line 1057) | IP_RECVTTL = 0xc
constant IP_RETOPTS (line 1058) | IP_RETOPTS = 0x7
constant IP_RF (line 1059) | IP_RF = 0x8000
constant IP_ROUTER_ALERT (line 1060) | IP_ROUTER_ALERT = 0x5
constant IP_TOS (line 1061) | IP_TOS = 0x1
constant IP_TRANSPARENT (line 1062) | IP_TRANSPARENT = 0x13
constant IP_TTL (line 1063) | IP_TTL = 0x2
constant IP_UNBLOCK_SOURCE (line 1064) | IP_UNBLOCK_SOURCE = 0x25
constant IP_UNICAST_IF (line 1065) | IP_UNICAST_IF = 0x32
constant IP_XFRM_POLICY (line 1066) | IP_XFRM_POLICY = 0x11
constant ISIG (line 1067) | ISIG = 0x1
constant ISOFS_SUPER_MAGIC (line 1068) | ISOFS_SUPER_MAGIC = 0x9660
constant ISTRIP (line 1069) | ISTRIP = 0x20
constant IUCLC (line 1070) | IUCLC = 0x200
constant IUTF8 (line 1071) | IUTF8 = 0x4000
constant IXANY (line 1072) | IXANY = 0x800
constant IXOFF (line 1073) | IXOFF = 0x1000
constant IXON (line 1074) | IXON = 0x400
constant JFFS2_SUPER_MAGIC (line 1075) | JFFS2_SUPER_MAGIC = 0x72b6
constant KEXEC_ARCH_386 (line 1076) | KEXEC_ARCH_386 = 0x30000
constant KEXEC_ARCH_68K (line 1077) | KEXEC_ARCH_68K = 0x40000
constant KEXEC_ARCH_AARCH64 (line 1078) | KEXEC_ARCH_AARCH64 = 0xb70000
constant KEXEC_ARCH_ARM (line 1079) | KEXEC_ARCH_ARM = 0x280000
constant KEXEC_ARCH_DEFAULT (line 1080) | KEXEC_ARCH_DEFAULT = 0x0
constant KEXEC_ARCH_IA_64 (line 1081) | KEXEC_ARCH_IA_64 = 0x320000
constant KEXEC_ARCH_MASK (line 1082) | KEXEC_ARCH_MASK = 0xffff0000
constant KEXEC_ARCH_MIPS (line 1083) | KEXEC_ARCH_MIPS = 0x80000
constant KEXEC_ARCH_MIPS_LE (line 1084) | KEXEC_ARCH_MIPS_LE = 0xa0000
constant KEXEC_ARCH_PPC (line 1085) | KEXEC_ARCH_PPC = 0x140000
constant KEXEC_ARCH_PPC64 (line 1086) | KEXEC_ARCH_PPC64 = 0x150000
constant KEXEC_ARCH_S390 (line 1087) | KEXEC_ARCH_S390 = 0x160000
constant KEXEC_ARCH_SH (line 1088) | KEXEC_ARCH_SH = 0x2a0000
constant KEXEC_ARCH_X86_64 (line 1089) | KEXEC_ARCH_X86_64 = 0x3e0000
constant KEXEC_FILE_NO_INITRAMFS (line 1090) | KEXEC_FILE_NO_INITRAMFS = 0x4
constant KEXEC_FILE_ON_CRASH (line 1091) | KEXEC_FILE_ON_CRASH = 0x2
constant KEXEC_FILE_UNLOAD (line 1092) | KEXEC_FILE_UNLOAD = 0x1
constant KEXEC_ON_CRASH (line 1093) | KEXEC_ON_CRASH = 0x1
constant KEXEC_PRESERVE_CONTEXT (line 1094) | KEXEC_PRESERVE_CONTEXT = 0x2
constant KEXEC_SEGMENT_MAX (line 1095) | KEXEC_SEGMENT_MAX = 0x10
constant KEYCTL_ASSUME_AUTHORITY (line 1096) | KEYCTL_ASSUME_AUTHORITY = 0x10
constant KEYCTL_CAPABILITIES (line 1097) | KEYCTL_CAPABILITIES = 0x1f
constant KEYCTL_CAPS0_BIG_KEY (line 1098) | KEYCTL_CAPS0_BIG_KEY = 0x10
constant KEYCTL_CAPS0_CAPABILITIES (line 1099) | KEYCTL_CAPS0_CAPABILITIES = 0x1
constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1100) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4
constant KEYCTL_CAPS0_INVALIDATE (line 1101) | KEYCTL_CAPS0_INVALIDATE = 0x20
constant KEYCTL_CAPS0_MOVE (line 1102) | KEYCTL_CAPS0_MOVE = 0x80
constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1103) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2
constant KEYCTL_CAPS0_PUBLIC_KEY (line 1104) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8
constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1105) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40
constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1106) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1
constant KEYCTL_CAPS1_NS_KEY_TAG (line 1107) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2
constant KEYCTL_CHOWN (line 1108) | KEYCTL_CHOWN = 0x4
constant KEYCTL_CLEAR (line 1109) | KEYCTL_CLEAR = 0x7
constant KEYCTL_DESCRIBE (line 1110) | KEYCTL_DESCRIBE = 0x6
constant KEYCTL_DH_COMPUTE (line 1111) | KEYCTL_DH_COMPUTE = 0x17
constant KEYCTL_GET_KEYRING_ID (line 1112) | KEYCTL_GET_KEYRING_ID = 0x0
constant KEYCTL_GET_PERSISTENT (line 1113) | KEYCTL_GET_PERSISTENT = 0x16
constant KEYCTL_GET_SECURITY (line 1114) | KEYCTL_GET_SECURITY = 0x11
constant KEYCTL_INSTANTIATE (line 1115) | KEYCTL_INSTANTIATE = 0xc
constant KEYCTL_INSTANTIATE_IOV (line 1116) | KEYCTL_INSTANTIATE_IOV = 0x14
constant KEYCTL_INVALIDATE (line 1117) | KEYCTL_INVALIDATE = 0x15
constant KEYCTL_JOIN_SESSION_KEYRING (line 1118) | KEYCTL_JOIN_SESSION_KEYRING = 0x1
constant KEYCTL_LINK (line 1119) | KEYCTL_LINK = 0x8
constant KEYCTL_MOVE (line 1120) | KEYCTL_MOVE = 0x1e
constant KEYCTL_MOVE_EXCL (line 1121) | KEYCTL_MOVE_EXCL = 0x1
constant KEYCTL_NEGATE (line 1122) | KEYCTL_NEGATE = 0xd
constant KEYCTL_PKEY_DECRYPT (line 1123) | KEYCTL_PKEY_DECRYPT = 0x1a
constant KEYCTL_PKEY_ENCRYPT (line 1124) | KEYCTL_PKEY_ENCRYPT = 0x19
constant KEYCTL_PKEY_QUERY (line 1125) | KEYCTL_PKEY_QUERY = 0x18
constant KEYCTL_PKEY_SIGN (line 1126) | KEYCTL_PKEY_SIGN = 0x1b
constant KEYCTL_PKEY_VERIFY (line 1127) | KEYCTL_PKEY_VERIFY = 0x1c
constant KEYCTL_READ (line 1128) | KEYCTL_READ = 0xb
constant KEYCTL_REJECT (line 1129) | KEYCTL_REJECT = 0x13
constant KEYCTL_RESTRICT_KEYRING (line 1130) | KEYCTL_RESTRICT_KEYRING = 0x1d
constant KEYCTL_REVOKE (line 1131) | KEYCTL_REVOKE = 0x3
constant KEYCTL_SEARCH (line 1132) | KEYCTL_SEARCH = 0xa
constant KEYCTL_SESSION_TO_PARENT (line 1133) | KEYCTL_SESSION_TO_PARENT = 0x12
constant KEYCTL_SETPERM (line 1134) | KEYCTL_SETPERM = 0x5
constant KEYCTL_SET_REQKEY_KEYRING (line 1135) | KEYCTL_SET_REQKEY_KEYRING = 0xe
constant KEYCTL_SET_TIMEOUT (line 1136) | KEYCTL_SET_TIMEOUT = 0xf
constant KEYCTL_SUPPORTS_DECRYPT (line 1137) | KEYCTL_SUPPORTS_DECRYPT = 0x2
constant KEYCTL_SUPPORTS_ENCRYPT (line 1138) | KEYCTL_SUPPORTS_ENCRYPT = 0x1
constant KEYCTL_SUPPORTS_SIGN (line 1139) | KEYCTL_SUPPORTS_SIGN = 0x4
constant KEYCTL_SUPPORTS_VERIFY (line 1140) | KEYCTL_SUPPORTS_VERIFY = 0x8
constant KEYCTL_UNLINK (line 1141) | KEYCTL_UNLINK = 0x9
constant KEYCTL_UPDATE (line 1142) | KEYCTL_UPDATE = 0x2
constant KEY_REQKEY_DEFL_DEFAULT (line 1143) | KEY_REQKEY_DEFL_DEFAULT = 0x0
constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1144) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6
constant KEY_REQKEY_DEFL_NO_CHANGE (line 1145) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1
constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1146) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2
constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1147) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7
constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1148) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3
constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1149) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1
constant KEY_REQKEY_DEFL_USER_KEYRING (line 1150) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4
constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1151) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5
constant KEY_SPEC_GROUP_KEYRING (line 1152) | KEY_SPEC_GROUP_KEYRING = -0x6
constant KEY_SPEC_PROCESS_KEYRING (line 1153) | KEY_SPEC_PROCESS_KEYRING = -0x2
constant KEY_SPEC_REQKEY_AUTH_KEY (line 1154) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7
constant KEY_SPEC_REQUESTOR_KEYRING (line 1155) | KEY_SPEC_REQUESTOR_KEYRING = -0x8
constant KEY_SPEC_SESSION_KEYRING (line 1156) | KEY_SPEC_SESSION_KEYRING = -0x3
constant KEY_SPEC_THREAD_KEYRING (line 1157) | KEY_SPEC_THREAD_KEYRING = -0x1
constant KEY_SPEC_USER_KEYRING (line 1158) | KEY_SPEC_USER_KEYRING = -0x4
constant KEY_SPEC_USER_SESSION_KEYRING (line 1159) | KEY_SPEC_USER_SESSION_KEYRING = -0x5
constant LINUX_REBOOT_CMD_CAD_OFF (line 1160) | LINUX_REBOOT_CMD_CAD_OFF = 0x0
constant LINUX_REBOOT_CMD_CAD_ON (line 1161) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef
constant LINUX_REBOOT_CMD_HALT (line 1162) | LINUX_REBOOT_CMD_HALT = 0xcdef0123
constant LINUX_REBOOT_CMD_KEXEC (line 1163) | LINUX_REBOOT_CMD_KEXEC = 0x45584543
constant LINUX_REBOOT_CMD_POWER_OFF (line 1164) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc
constant LINUX_REBOOT_CMD_RESTART (line 1165) | LINUX_REBOOT_CMD_RESTART = 0x1234567
constant LINUX_REBOOT_CMD_RESTART2 (line 1166) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4
constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1167) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2
constant LINUX_REBOOT_MAGIC1 (line 1168) | LINUX_REBOOT_MAGIC1 = 0xfee1dead
constant LINUX_REBOOT_MAGIC2 (line 1169) | LINUX_REBOOT_MAGIC2 = 0x28121969
constant LOCK_EX (line 1170) | LOCK_EX = 0x2
constant LOCK_NB (line 1171) | LOCK_NB = 0x4
constant LOCK_SH (line 1172) | LOCK_SH = 0x1
constant LOCK_UN (line 1173) | LOCK_UN = 0x8
constant LOOP_CLR_FD (line 1174) | LOOP_CLR_FD = 0x4c01
constant LOOP_CTL_ADD (line 1175) | LOOP_CTL_ADD = 0x4c80
constant LOOP_CTL_GET_FREE (line 1176) | LOOP_CTL_GET_FREE = 0x4c82
constant LOOP_CTL_REMOVE (line 1177) | LOOP_CTL_REMOVE = 0x4c81
constant LOOP_GET_STATUS (line 1178) | LOOP_GET_STATUS = 0x4c03
constant LOOP_GET_STATUS64 (line 1179) | LOOP_GET_STATUS64 = 0x4c05
constant LOOP_SET_BLOCK_SIZE (line 1180) | LOOP_SET_BLOCK_SIZE = 0x4c09
constant LOOP_SET_CAPACITY (line 1181) | LOOP_SET_CAPACITY = 0x4c07
constant LOOP_SET_DIRECT_IO (line 1182) | LOOP_SET_DIRECT_IO = 0x4c08
constant LOOP_SET_FD (line 1183) | LOOP_SET_FD = 0x4c00
constant LOOP_SET_STATUS (line 1184) | LOOP_SET_STATUS = 0x4c02
constant LOOP_SET_STATUS64 (line 1185) | LOOP_SET_STATUS64 = 0x4c04
constant LO_KEY_SIZE (line 1186) | LO_KEY_SIZE = 0x20
constant LO_NAME_SIZE (line 1187) | LO_NAME_SIZE = 0x40
constant MADV_DODUMP (line 1188) | MADV_DODUMP = 0x11
constant MADV_DOFORK (line 1189) | MADV_DOFORK = 0xb
constant MADV_DONTDUMP (line 1190) | MADV_DONTDUMP = 0x10
constant MADV_DONTFORK (line 1191) | MADV_DONTFORK = 0xa
constant MADV_DONTNEED (line 1192) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 1193) | MADV_FREE = 0x8
constant MADV_HUGEPAGE (line 1194) | MADV_HUGEPAGE = 0xe
constant MADV_HWPOISON (line 1195) | MADV_HWPOISON = 0x64
constant MADV_KEEPONFORK (line 1196) | MADV_KEEPONFORK = 0x13
constant MADV_MERGEABLE (line 1197) | MADV_MERGEABLE = 0xc
constant MADV_NOHUGEPAGE (line 1198) | MADV_NOHUGEPAGE = 0xf
constant MADV_NORMAL (line 1199) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 1200) | MADV_RANDOM = 0x1
constant MADV_REMOVE (line 1201) | MADV_REMOVE = 0x9
constant MADV_SEQUENTIAL (line 1202) | MADV_SEQUENTIAL = 0x2
constant MADV_UNMERGEABLE (line 1203) | MADV_UNMERGEABLE = 0xd
constant MADV_WILLNEED (line 1204) | MADV_WILLNEED = 0x3
constant MADV_WIPEONFORK (line 1205) | MADV_WIPEONFORK = 0x12
constant MAP_ANON (line 1206) | MAP_ANON = 0x20
constant MAP_ANONYMOUS (line 1207) | MAP_ANONYMOUS = 0x20
constant MAP_DENYWRITE (line 1208) | MAP_DENYWRITE = 0x800
constant MAP_EXECUTABLE (line 1209) | MAP_EXECUTABLE = 0x1000
constant MAP_FILE (line 1210) | MAP_FILE = 0x0
constant MAP_FIXED (line 1211) | MAP_FIXED = 0x10
constant MAP_FIXED_NOREPLACE (line 1212) | MAP_FIXED_NOREPLACE = 0x100000
constant MAP_GROWSDOWN (line 1213) | MAP_GROWSDOWN = 0x200
constant MAP_HUGETLB (line 1214) | MAP_HUGETLB = 0x40000
constant MAP_HUGE_MASK (line 1215) | MAP_HUGE_MASK = 0x3f
constant MAP_HUGE_SHIFT (line 1216) | MAP_HUGE_SHIFT = 0x1a
constant MAP_LOCKED (line 1217) | MAP_LOCKED = 0x100
constant MAP_NONBLOCK (line 1218) | MAP_NONBLOCK = 0x10000
constant MAP_NORESERVE (line 1219) | MAP_NORESERVE = 0x40
constant MAP_POPULATE (line 1220) | MAP_POPULATE = 0x8000
constant MAP_PRIVATE (line 1221) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 1222) | MAP_RENAME = 0x20
constant MAP_SHARED (line 1223) | MAP_SHARED = 0x1
constant MAP_SHARED_VALIDATE (line 1224) | MAP_SHARED_VALIDATE = 0x3
constant MAP_STACK (line 1225) | MAP_STACK = 0x20000
constant MAP_TYPE (line 1226) | MAP_TYPE = 0xf
constant MCAST_BLOCK_SOURCE (line 1227) | MCAST_BLOCK_SOURCE = 0x2b
constant MCAST_EXCLUDE (line 1228) | MCAST_EXCLUDE = 0x0
constant MCAST_INCLUDE (line 1229) | MCAST_INCLUDE = 0x1
constant MCAST_JOIN_GROUP (line 1230) | MCAST_JOIN_GROUP = 0x2a
constant MCAST_JOIN_SOURCE_GROUP (line 1231) | MCAST_JOIN_SOURCE_GROUP = 0x2e
constant MCAST_LEAVE_GROUP (line 1232) | MCAST_LEAVE_GROUP = 0x2d
constant MCAST_LEAVE_SOURCE_GROUP (line 1233) | MCAST_LEAVE_SOURCE_GROUP = 0x2f
constant MCAST_MSFILTER (line 1234) | MCAST_MSFILTER = 0x30
constant MCAST_UNBLOCK_SOURCE (line 1235) | MCAST_UNBLOCK_SOURCE = 0x2c
constant MCL_CURRENT (line 1236) | MCL_CURRENT = 0x2000
constant MCL_FUTURE (line 1237) | MCL_FUTURE = 0x4000
constant MCL_ONFAULT (line 1238) | MCL_ONFAULT = 0x8000
constant MFD_ALLOW_SEALING (line 1239) | MFD_ALLOW_SEALING = 0x2
constant MFD_CLOEXEC (line 1240) | MFD_CLOEXEC = 0x1
constant MFD_HUGETLB (line 1241) | MFD_HUGETLB = 0x4
constant MFD_HUGE_16GB (line 1242) | MFD_HUGE_16GB = -0x78000000
constant MFD_HUGE_16MB (line 1243) | MFD_HUGE_16MB = 0x60000000
constant MFD_HUGE_1GB (line 1244) | MFD_HUGE_1GB = 0x78000000
constant MFD_HUGE_1MB (line 1245) | MFD_HUGE_1MB = 0x50000000
constant MFD_HUGE_256MB (line 1246) | MFD_HUGE_256MB = 0x70000000
constant MFD_HUGE_2GB (line 1247) | MFD_HUGE_2GB = 0x7c000000
constant MFD_HUGE_2MB (line 1248) | MFD_HUGE_2MB = 0x54000000
constant MFD_HUGE_32MB (line 1249) | MFD_HUGE_32MB = 0x64000000
constant MFD_HUGE_512KB (line 1250) | MFD_HUGE_512KB = 0x4c000000
constant MFD_HUGE_512MB (line 1251) | MFD_HUGE_512MB = 0x74000000
constant MFD_HUGE_64KB (line 1252) | MFD_HUGE_64KB = 0x40000000
constant MFD_HUGE_8MB (line 1253) | MFD_HUGE_8MB = 0x5c000000
constant MFD_HUGE_MASK (line 1254) | MFD_HUGE_MASK = 0x3f
constant MFD_HUGE_SHIFT (line 1255) | MFD_HUGE_SHIFT = 0x1a
constant MINIX2_SUPER_MAGIC (line 1256) | MINIX2_SUPER_MAGIC = 0x2468
constant MINIX2_SUPER_MAGIC2 (line 1257) | MINIX2_SUPER_MAGIC2 = 0x2478
constant MINIX3_SUPER_MAGIC (line 1258) | MINIX3_SUPER_MAGIC = 0x4d5a
constant MINIX_SUPER_MAGIC (line 1259) | MINIX_SUPER_MAGIC = 0x137f
constant MINIX_SUPER_MAGIC2 (line 1260) | MINIX_SUPER_MAGIC2 = 0x138f
constant MNT_DETACH (line 1261) | MNT_DETACH = 0x2
constant MNT_EXPIRE (line 1262) | MNT_EXPIRE = 0x4
constant MNT_FORCE (line 1263) | MNT_FORCE = 0x1
constant MODULE_INIT_IGNORE_MODVERSIONS (line 1264) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1
constant MODULE_INIT_IGNORE_VERMAGIC (line 1265) | MODULE_INIT_IGNORE_VERMAGIC = 0x2
constant MSDOS_SUPER_MAGIC (line 1266) | MSDOS_SUPER_MAGIC = 0x4d44
constant MSG_BATCH (line 1267) | MSG_BATCH = 0x40000
constant MSG_CMSG_CLOEXEC (line 1268) | MSG_CMSG_CLOEXEC = 0x40000000
constant MSG_CONFIRM (line 1269) | MSG_CONFIRM = 0x800
constant MSG_CTRUNC (line 1270) | MSG_CTRUNC = 0x8
constant MSG_DONTROUTE (line 1271) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1272) | MSG_DONTWAIT = 0x40
constant MSG_EOR (line 1273) | MSG_EOR = 0x80
constant MSG_ERRQUEUE (line 1274) | MSG_ERRQUEUE = 0x2000
constant MSG_FASTOPEN (line 1275) | MSG_FASTOPEN = 0x20000000
constant MSG_FIN (line 1276) | MSG_FIN = 0x200
constant MSG_MORE (line 1277) | MSG_MORE = 0x8000
constant MSG_NOSIGNAL (line 1278) | MSG_NOSIGNAL = 0x4000
constant MSG_OOB (line 1279) | MSG_OOB = 0x1
constant MSG_PEEK (line 1280) | MSG_PEEK = 0x2
constant MSG_PROXY (line 1281) | MSG_PROXY = 0x10
constant MSG_RST (line 1282) | MSG_RST = 0x1000
constant MSG_SYN (line 1283) | MSG_SYN = 0x400
constant MSG_TRUNC (line 1284) | MSG_TRUNC = 0x20
constant MSG_TRYHARD (line 1285) | MSG_TRYHARD = 0x4
constant MSG_WAITALL (line 1286) | MSG_WAITALL = 0x100
constant MSG_WAITFORONE (line 1287) | MSG_WAITFORONE = 0x10000
constant MSG_ZEROCOPY (line 1288) | MSG_ZEROCOPY = 0x4000000
constant MS_ACTIVE (line 1289) | MS_ACTIVE = 0x40000000
constant MS_ASYNC (line 1290) | MS_ASYNC = 0x1
constant MS_BIND (line 1291) | MS_BIND = 0x1000
constant MS_BORN (line 1292) | MS_BORN = 0x20000000
constant MS_DIRSYNC (line 1293) | MS_DIRSYNC = 0x80
constant MS_INVALIDATE (line 1294) | MS_INVALIDATE = 0x2
constant MS_I_VERSION (line 1295) | MS_I_VERSION = 0x800000
constant MS_KERNMOUNT (line 1296) | MS_KERNMOUNT = 0x400000
constant MS_LAZYTIME (line 1297) | MS_LAZYTIME = 0x2000000
constant MS_MANDLOCK (line 1298) | MS_MANDLOCK = 0x40
constant MS_MGC_MSK (line 1299) | MS_MGC_MSK = 0xffff0000
constant MS_MGC_VAL (line 1300) | MS_MGC_VAL = 0xc0ed0000
constant MS_MOVE (line 1301) | MS_MOVE = 0x2000
constant MS_NOATIME (line 1302) | MS_NOATIME = 0x400
constant MS_NODEV (line 1303) | MS_NODEV = 0x4
constant MS_NODIRATIME (line 1304) | MS_NODIRATIME = 0x800
constant MS_NOEXEC (line 1305) | MS_NOEXEC = 0x8
constant MS_NOREMOTELOCK (line 1306) | MS_NOREMOTELOCK = 0x8000000
constant MS_NOSEC (line 1307) | MS_NOSEC = 0x10000000
constant MS_NOSUID (line 1308) | MS_NOSUID = 0x2
constant MS_NOUSER (line 1309) | MS_NOUSER = -0x80000000
constant MS_POSIXACL (line 1310) | MS_POSIXACL = 0x10000
constant MS_PRIVATE (line 1311) | MS_PRIVATE = 0x40000
constant MS_RDONLY (line 1312) | MS_RDONLY = 0x1
constant MS_REC (line 1313) | MS_REC = 0x4000
constant MS_RELATIME (line 1314) | MS_RELATIME = 0x200000
constant MS_REMOUNT (line 1315) | MS_REMOUNT = 0x20
constant MS_RMT_MASK (line 1316) | MS_RMT_MASK = 0x2800051
constant MS_SHARED (line 1317) | MS_SHARED = 0x100000
constant MS_SILENT (line 1318) | MS_SILENT = 0x8000
constant MS_SLAVE (line 1319) | MS_SLAVE = 0x80000
constant MS_STRICTATIME (line 1320) | MS_STRICTATIME = 0x1000000
constant MS_SUBMOUNT (line 1321) | MS_SUBMOUNT = 0x4000000
constant MS_SYNC (line 1322) | MS_SYNC = 0x4
constant MS_SYNCHRONOUS (line 1323) | MS_SYNCHRONOUS = 0x10
constant MS_UNBINDABLE (line 1324) | MS_UNBINDABLE = 0x20000
constant MS_VERBOSE (line 1325) | MS_VERBOSE = 0x8000
constant MTD_INODE_FS_MAGIC (line 1326) | MTD_INODE_FS_MAGIC = 0x11307854
constant NAME_MAX (line 1327) | NAME_MAX = 0xff
constant NCP_SUPER_MAGIC (line 1328) | NCP_SUPER_MAGIC = 0x564c
constant NETLINK_ADD_MEMBERSHIP (line 1329) | NETLINK_ADD_MEMBERSHIP = 0x1
constant NETLINK_AUDIT (line 1330) | NETLINK_AUDIT = 0x9
constant NETLINK_BROADCAST_ERROR (line 1331) | NETLINK_BROADCAST_ERROR = 0x4
constant NETLINK_CAP_ACK (line 1332) | NETLINK_CAP_ACK = 0xa
constant NETLINK_CONNECTOR (line 1333) | NETLINK_CONNECTOR = 0xb
constant NETLINK_CRYPTO (line 1334) | NETLINK_CRYPTO = 0x15
constant NETLINK_DNRTMSG (line 1335) | NETLINK_DNRTMSG = 0xe
constant NETLINK_DROP_MEMBERSHIP (line 1336) | NETLINK_DROP_MEMBERSHIP = 0x2
constant NETLINK_ECRYPTFS (line 1337) | NETLINK_ECRYPTFS = 0x13
constant NETLINK_EXT_ACK (line 1338) | NETLINK_EXT_ACK = 0xb
constant NETLINK_FIB_LOOKUP (line 1339) | NETLINK_FIB_LOOKUP = 0xa
constant NETLINK_FIREWALL (line 1340) | NETLINK_FIREWALL = 0x3
constant NETLINK_GENERIC (line 1341) | NETLINK_GENERIC = 0x10
constant NETLINK_GET_STRICT_CHK (line 1342) | NETLINK_GET_STRICT_CHK = 0xc
constant NETLINK_INET_DIAG (line 1343) | NETLINK_INET_DIAG = 0x4
constant NETLINK_IP6_FW (line 1344) | NETLINK_IP6_FW = 0xd
constant NETLINK_ISCSI (line 1345) | NETLINK_ISCSI = 0x8
constant NETLINK_KOBJECT_UEVENT (line 1346) | NETLINK_KOBJECT_UEVENT = 0xf
constant NETLINK_LISTEN_ALL_NSID (line 1347) | NETLINK_LISTEN_ALL_NSID = 0x8
constant NETLINK_LIST_MEMBERSHIPS (line 1348) | NETLINK_LIST_MEMBERSHIPS = 0x9
constant NETLINK_NETFILTER (line 1349) | NETLINK_NETFILTER = 0xc
constant NETLINK_NFLOG (line 1350) | NETLINK_NFLOG = 0x5
constant NETLINK_NO_ENOBUFS (line 1351) | NETLINK_NO_ENOBUFS = 0x5
constant NETLINK_PKTINFO (line 1352) | NETLINK_PKTINFO = 0x3
constant NETLINK_RDMA (line 1353) | NETLINK_RDMA = 0x14
constant NETLINK_ROUTE (line 1354) | NETLINK_ROUTE = 0x0
constant NETLINK_RX_RING (line 1355) | NETLINK_RX_RING = 0x6
constant NETLINK_SCSITRANSPORT (line 1356) | NETLINK_SCSITRANSPORT = 0x12
constant NETLINK_SELINUX (line 1357) | NETLINK_SELINUX = 0x7
constant NETLINK_SMC (line 1358) | NETLINK_SMC = 0x16
constant NETLINK_SOCK_DIAG (line 1359) | NETLINK_SOCK_DIAG = 0x4
constant NETLINK_TX_RING (line 1360) | NETLINK_TX_RING = 0x7
constant NETLINK_UNUSED (line 1361) | NETLINK_UNUSED = 0x1
constant NETLINK_USERSOCK (line 1362) | NETLINK_USERSOCK = 0x2
constant NETLINK_XFRM (line 1363) | NETLINK_XFRM = 0x6
constant NETNSA_MAX (line 1364) | NETNSA_MAX = 0x5
constant NETNSA_NSID_NOT_ASSIGNED (line 1365) | NETNSA_NSID_NOT_ASSIGNED = -0x1
constant NFNETLINK_V0 (line 1366) | NFNETLINK_V0 = 0x0
constant NFNLGRP_ACCT_QUOTA (line 1367) | NFNLGRP_ACCT_QUOTA = 0x8
constant NFNLGRP_CONNTRACK_DESTROY (line 1368) | NFNLGRP_CONNTRACK_DESTROY = 0x3
constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1369) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6
constant NFNLGRP_CONNTRACK_EXP_NEW (line 1370) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4
constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1371) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5
constant NFNLGRP_CONNTRACK_NEW (line 1372) | NFNLGRP_CONNTRACK_NEW = 0x1
constant NFNLGRP_CONNTRACK_UPDATE (line 1373) | NFNLGRP_CONNTRACK_UPDATE = 0x2
constant NFNLGRP_MAX (line 1374) | NFNLGRP_MAX = 0x9
constant NFNLGRP_NFTABLES (line 1375) | NFNLGRP_NFTABLES = 0x7
constant NFNLGRP_NFTRACE (line 1376) | NFNLGRP_NFTRACE = 0x9
constant NFNLGRP_NONE (line 1377) | NFNLGRP_NONE = 0x0
constant NFNL_BATCH_MAX (line 1378) | NFNL_BATCH_MAX = 0x1
constant NFNL_MSG_BATCH_BEGIN (line 1379) | NFNL_MSG_BATCH_BEGIN = 0x10
constant NFNL_MSG_BATCH_END (line 1380) | NFNL_MSG_BATCH_END = 0x11
constant NFNL_NFA_NEST (line 1381) | NFNL_NFA_NEST = 0x8000
constant NFNL_SUBSYS_ACCT (line 1382) | NFNL_SUBSYS_ACCT = 0x7
constant NFNL_SUBSYS_COUNT (line 1383) | NFNL_SUBSYS_COUNT = 0xc
constant NFNL_SUBSYS_CTHELPER (line 1384) | NFNL_SUBSYS_CTHELPER = 0x9
constant NFNL_SUBSYS_CTNETLINK (line 1385) | NFNL_SUBSYS_CTNETLINK = 0x1
constant NFNL_SUBSYS_CTNETLINK_EXP (line 1386) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2
constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1387) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8
constant NFNL_SUBSYS_IPSET (line 1388) | NFNL_SUBSYS_IPSET = 0x6
constant NFNL_SUBSYS_NFTABLES (line 1389) | NFNL_SUBSYS_NFTABLES = 0xa
constant NFNL_SUBSYS_NFT_COMPAT (line 1390) | NFNL_SUBSYS_NFT_COMPAT = 0xb
constant NFNL_SUBSYS_NONE (line 1391) | NFNL_SUBSYS_NONE = 0x0
constant NFNL_SUBSYS_OSF (line 1392) | NFNL_SUBSYS_OSF = 0x5
constant NFNL_SUBSYS_QUEUE (line 1393) | NFNL_SUBSYS_QUEUE = 0x3
constant NFNL_SUBSYS_ULOG (line 1394) | NFNL_SUBSYS_ULOG = 0x4
constant NFS_SUPER_MAGIC (line 1395) | NFS_SUPER_MAGIC = 0x6969
constant NILFS_SUPER_MAGIC (line 1396) | NILFS_SUPER_MAGIC = 0x3434
constant NL0 (line 1397) | NL0 = 0x0
constant NL1 (line 1398) | NL1 = 0x100
constant NLA_ALIGNTO (line 1399) | NLA_ALIGNTO = 0x4
constant NLA_F_NESTED (line 1400) | NLA_F_NESTED = 0x8000
constant NLA_F_NET_BYTEORDER (line 1401) | NLA_F_NET_BYTEORDER = 0x4000
constant NLA_HDRLEN (line 1402) | NLA_HDRLEN = 0x4
constant NLDLY (line 1403) | NLDLY = 0x100
constant NLMSG_ALIGNTO (line 1404) | NLMSG_ALIGNTO = 0x4
constant NLMSG_DONE (line 1405) | NLMSG_DONE = 0x3
constant NLMSG_ERROR (line 1406) | NLMSG_ERROR = 0x2
constant NLMSG_HDRLEN (line 1407) | NLMSG_HDRLEN = 0x10
constant NLMSG_MIN_TYPE (line 1408) | NLMSG_MIN_TYPE = 0x10
constant NLMSG_NOOP (line 1409) | NLMSG_NOOP = 0x1
constant NLMSG_OVERRUN (line 1410) | NLMSG_OVERRUN = 0x4
constant NLM_F_ACK (line 1411) | NLM_F_ACK = 0x4
constant NLM_F_ACK_TLVS (line 1412) | NLM_F_ACK_TLVS = 0x200
constant NLM_F_APPEND (line 1413) | NLM_F_APPEND = 0x800
constant NLM_F_ATOMIC (line 1414) | NLM_F_ATOMIC = 0x400
constant NLM_F_CAPPED (line 1415) | NLM_F_CAPPED = 0x100
constant NLM_F_CREATE (line 1416) | NLM_F_CREATE = 0x400
constant NLM_F_DUMP (line 1417) | NLM_F_DUMP = 0x300
constant NLM_F_DUMP_FILTERED (line 1418) | NLM_F_DUMP_FILTERED = 0x20
constant NLM_F_DUMP_INTR (line 1419) | NLM_F_DUMP_INTR = 0x10
constant NLM_F_ECHO (line 1420) | NLM_F_ECHO = 0x8
constant NLM_F_EXCL (line 1421) | NLM_F_EXCL = 0x200
constant NLM_F_MATCH (line 1422) | NLM_F_MATCH = 0x200
constant NLM_F_MULTI (line 1423) | NLM_F_MULTI = 0x2
constant NLM_F_NONREC (line 1424) | NLM_F_NONREC = 0x100
constant NLM_F_REPLACE (line 1425) | NLM_F_REPLACE = 0x100
constant NLM_F_REQUEST (line 1426) | NLM_F_REQUEST = 0x1
constant NLM_F_ROOT (line 1427) | NLM_F_ROOT = 0x100
constant NOFLSH (line 1428) | NOFLSH = 0x80
constant NSFS_MAGIC (line 1429) | NSFS_MAGIC = 0x6e736673
constant NS_GET_NSTYPE (line 1430) | NS_GET_NSTYPE = 0x2000b703
constant NS_GET_OWNER_UID (line 1431) | NS_GET_OWNER_UID = 0x2000b704
constant NS_GET_PARENT (line 1432) | NS_GET_PARENT = 0x2000b702
constant NS_GET_USERNS (line 1433) | NS_GET_USERNS = 0x2000b701
constant OCFS2_SUPER_MAGIC (line 1434) | OCFS2_SUPER_MAGIC = 0x7461636f
constant OCRNL (line 1435) | OCRNL = 0x8
constant OFDEL (line 1436) | OFDEL = 0x80
constant OFILL (line 1437) | OFILL = 0x40
constant OLCUC (line 1438) | OLCUC = 0x2
constant ONLCR (line 1439) | ONLCR = 0x4
constant ONLRET (line 1440) | ONLRET = 0x20
constant ONOCR (line 1441) | ONOCR = 0x10
constant OPENPROM_SUPER_MAGIC (line 1442) | OPENPROM_SUPER_MAGIC = 0x9fa1
constant OPOST (line 1443) | OPOST = 0x1
constant OVERLAYFS_SUPER_MAGIC (line 1444) | OVERLAYFS_SUPER_MAGIC = 0x794c7630
constant O_ACCMODE (line 1445) | O_ACCMODE = 0x3
constant O_APPEND (line 1446) | O_APPEND = 0x8
constant O_ASYNC (line 1447) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1448) | O_CLOEXEC = 0x400000
constant O_CREAT (line 1449) | O_CREAT = 0x200
constant O_DIRECT (line 1450) | O_DIRECT = 0x100000
constant O_DIRECTORY (line 1451) | O_DIRECTORY = 0x10000
constant O_DSYNC (line 1452) | O_DSYNC = 0x2000
constant O_EXCL (line 1453) | O_EXCL = 0x800
constant O_FSYNC (line 1454) | O_FSYNC = 0x802000
constant O_LARGEFILE (line 1455) | O_LARGEFILE = 0x0
constant O_NDELAY (line 1456) | O_NDELAY = 0x4004
constant O_NOATIME (line 1457) | O_NOATIME = 0x200000
constant O_NOCTTY (line 1458) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1459) | O_NOFOLLOW = 0x20000
constant O_NONBLOCK (line 1460) | O_NONBLOCK = 0x4000
constant O_PATH (line 1461) | O_PATH = 0x1000000
constant O_RDONLY (line 1462) | O_RDONLY = 0x0
constant O_RDWR (line 1463) | O_RDWR = 0x2
constant O_RSYNC (line 1464) | O_RSYNC = 0x802000
constant O_SYNC (line 1465) | O_SYNC = 0x802000
constant O_TMPFILE (line 1466) | O_TMPFILE = 0x2010000
constant O_TRUNC (line 1467) | O_TRUNC = 0x400
constant O_WRONLY (line 1468) | O_WRONLY = 0x1
constant PACKET_ADD_MEMBERSHIP (line 1469) | PACKET_ADD_MEMBERSHIP = 0x1
constant PACKET_AUXDATA (line 1470) | PACKET_AUXDATA = 0x8
constant PACKET_BROADCAST (line 1471) | PACKET_BROADCAST = 0x1
constant PACKET_COPY_THRESH (line 1472) | PACKET_COPY_THRESH = 0x7
constant PACKET_DROP_MEMBERSHIP (line 1473) | PACKET_DROP_MEMBERSHIP = 0x2
constant PACKET_FANOUT (line 1474) | PACKET_FANOUT = 0x12
constant PACKET_FANOUT_CBPF (line 1475) | PACKET_FANOUT_CBPF = 0x6
constant PACKET_FANOUT_CPU (line 1476) | PACKET_FANOUT_CPU = 0x2
constant PACKET_FANOUT_DATA (line 1477) | PACKET_FANOUT_DATA = 0x16
constant PACKET_FANOUT_EBPF (line 1478) | PACKET_FANOUT_EBPF = 0x7
constant PACKET_FANOUT_FLAG_DEFRAG (line 1479) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000
constant PACKET_FANOUT_FLAG_ROLLOVER (line 1480) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000
constant PACKET_FANOUT_FLAG_UNIQUEID (line 1481) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000
constant PACKET_FANOUT_HASH (line 1482) | PACKET_FANOUT_HASH = 0x0
constant PACKET_FANOUT_LB (line 1483) | PACKET_FANOUT_LB = 0x1
constant PACKET_FANOUT_QM (line 1484) | PACKET_FANOUT_QM = 0x5
constant PACKET_FANOUT_RND (line 1485) | PACKET_FANOUT_RND = 0x4
constant PACKET_FANOUT_ROLLOVER (line 1486) | PACKET_FANOUT_ROLLOVER = 0x3
constant PACKET_FASTROUTE (line 1487) | PACKET_FASTROUTE = 0x6
constant PACKET_HDRLEN (line 1488) | PACKET_HDRLEN = 0xb
constant PACKET_HOST (line 1489) | PACKET_HOST = 0x0
constant PACKET_IGNORE_OUTGOING (line 1490) | PACKET_IGNORE_OUTGOING = 0x17
constant PACKET_KERNEL (line 1491) | PACKET_KERNEL = 0x7
constant PACKET_LOOPBACK (line 1492) | PACKET_LOOPBACK = 0x5
constant PACKET_LOSS (line 1493) | PACKET_LOSS = 0xe
constant PACKET_MR_ALLMULTI (line 1494) | PACKET_MR_ALLMULTI = 0x2
constant PACKET_MR_MULTICAST (line 1495) | PACKET_MR_MULTICAST = 0x0
constant PACKET_MR_PROMISC (line 1496) | PACKET_MR_PROMISC = 0x1
constant PACKET_MR_UNICAST (line 1497) | PACKET_MR_UNICAST = 0x3
constant PACKET_MULTICAST (line 1498) | PACKET_MULTICAST = 0x2
constant PACKET_ORIGDEV (line 1499) | PACKET_ORIGDEV = 0x9
constant PACKET_OTHERHOST (line 1500) | PACKET_OTHERHOST = 0x3
constant PACKET_OUTGOING (line 1501) | PACKET_OUTGOING = 0x4
constant PACKET_QDISC_BYPASS (line 1502) | PACKET_QDISC_BYPASS = 0x14
constant PACKET_RECV_OUTPUT (line 1503) | PACKET_RECV_OUTPUT = 0x3
constant PACKET_RESERVE (line 1504) | PACKET_RESERVE = 0xc
constant PACKET_ROLLOVER_STATS (line 1505) | PACKET_ROLLOVER_STATS = 0x15
constant PACKET_RX_RING (line 1506) | PACKET_RX_RING = 0x5
constant PACKET_STATISTICS (line 1507) | PACKET_STATISTICS = 0x6
constant PACKET_TIMESTAMP (line 1508) | PACKET_TIMESTAMP = 0x11
constant PACKET_TX_HAS_OFF (line 1509) | PACKET_TX_HAS_OFF = 0x13
constant PACKET_TX_RING (line 1510) | PACKET_TX_RING = 0xd
constant PACKET_TX_TIMESTAMP (line 1511) | PACKET_TX_TIMESTAMP = 0x10
constant PACKET_USER (line 1512) | PACKET_USER = 0x6
constant PACKET_VERSION (line 1513) | PACKET_VERSION = 0xa
constant PACKET_VNET_HDR (line 1514) | PACKET_VNET_HDR = 0xf
constant PARENB (line 1515) | PARENB = 0x100
constant PARITY_CRC16_PR0 (line 1516) | PARITY_CRC16_PR0 = 0x2
constant PARITY_CRC16_PR0_CCITT (line 1517) | PARITY_CRC16_PR0_CCITT = 0x4
constant PARITY_CRC16_PR1 (line 1518) | PARITY_CRC16_PR1 = 0x3
constant PARITY_CRC16_PR1_CCITT (line 1519) | PARITY_CRC16_PR1_CCITT = 0x5
constant PARITY_CRC32_PR0_CCITT (line 1520) | PARITY_CRC32_PR0_CCITT = 0x6
constant PARITY_CRC32_PR1_CCITT (line 1521) | PARITY_CRC32_PR1_CCITT = 0x7
constant PARITY_DEFAULT (line 1522) | PARITY_DEFAULT = 0x0
constant PARITY_NONE (line 1523) | PARITY_NONE = 0x1
constant PARMRK (line 1524) | PARMRK = 0x8
constant PARODD (line 1525) | PARODD = 0x200
constant PENDIN (line 1526) | PENDIN = 0x4000
constant PERF_EVENT_IOC_DISABLE (line 1527) | PERF_EVENT_IOC_DISABLE = 0x20002401
constant PERF_EVENT_IOC_ENABLE (line 1528) | PERF_EVENT_IOC_ENABLE = 0x20002400
constant PERF_EVENT_IOC_ID (line 1529) | PERF_EVENT_IOC_ID = 0x40082407
constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 1530) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b
constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1531) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409
constant PERF_EVENT_IOC_PERIOD (line 1532) | PERF_EVENT_IOC_PERIOD = 0x80082404
constant PERF_EVENT_IOC_QUERY_BPF (line 1533) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a
constant PERF_EVENT_IOC_REFRESH (line 1534) | PERF_EVENT_IOC_REFRESH = 0x20002402
constant PERF_EVENT_IOC_RESET (line 1535) | PERF_EVENT_IOC_RESET = 0x20002403
constant PERF_EVENT_IOC_SET_BPF (line 1536) | PERF_EVENT_IOC_SET_BPF = 0x80042408
constant PERF_EVENT_IOC_SET_FILTER (line 1537) | PERF_EVENT_IOC_SET_FILTER = 0x80082406
constant PERF_EVENT_IOC_SET_OUTPUT (line 1538) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405
constant PIPEFS_MAGIC (line 1539) | PIPEFS_MAGIC = 0x50495045
constant PPPIOCATTACH (line 1540) | PPPIOCATTACH = 0x8004743d
constant PPPIOCATTCHAN (line 1541) | PPPIOCATTCHAN = 0x80047438
constant PPPIOCCONNECT (line 1542) | PPPIOCCONNECT = 0x8004743a
constant PPPIOCDETACH (line 1543) | PPPIOCDETACH = 0x8004743c
constant PPPIOCDISCONN (line 1544) | PPPIOCDISCONN = 0x20007439
constant PPPIOCGASYNCMAP (line 1545) | PPPIOCGASYNCMAP = 0x40047458
constant PPPIOCGCHAN (line 1546) | PPPIOCGCHAN = 0x40047437
constant PPPIOCGDEBUG (line 1547) | PPPIOCGDEBUG = 0x40047441
constant PPPIOCGFLAGS (line 1548) | PPPIOCGFLAGS = 0x4004745a
constant PPPIOCGIDLE (line 1549) | PPPIOCGIDLE = 0x4010743f
constant PPPIOCGL2TPSTATS (line 1550) | PPPIOCGL2TPSTATS = 0x40487436
constant PPPIOCGMRU (line 1551) | PPPIOCGMRU = 0x40047453
constant PPPIOCGNPMODE (line 1552) | PPPIOCGNPMODE = 0xc008744c
constant PPPIOCGRASYNCMAP (line 1553) | PPPIOCGRASYNCMAP = 0x40047455
constant PPPIOCGUNIT (line 1554) | PPPIOCGUNIT = 0x40047456
constant PPPIOCGXASYNCMAP (line 1555) | PPPIOCGXASYNCMAP = 0x40207450
constant PPPIOCNEWUNIT (line 1556) | PPPIOCNEWUNIT = 0xc004743e
constant PPPIOCSACTIVE (line 1557) | PPPIOCSACTIVE = 0x80107446
constant PPPIOCSASYNCMAP (line 1558) | PPPIOCSASYNCMAP = 0x80047457
constant PPPIOCSCOMPRESS (line 1559) | PPPIOCSCOMPRESS = 0x8010744d
constant PPPIOCSDEBUG (line 1560) | PPPIOCSDEBUG = 0x80047440
constant PPPIOCSFLAGS (line 1561) | PPPIOCSFLAGS = 0x80047459
constant PPPIOCSMAXCID (line 1562) | PPPIOCSMAXCID = 0x80047451
constant PPPIOCSMRRU (line 1563) | PPPIOCSMRRU = 0x8004743b
constant PPPIOCSMRU (line 1564) | PPPIOCSMRU = 0x80047452
constant PPPIOCSNPMODE (line 1565) | PPPIOCSNPMODE = 0x8008744b
constant PPPIOCSPASS (line 1566) | PPPIOCSPASS = 0x80107447
constant PPPIOCSRASYNCMAP (line 1567) | PPPIOCSRASYNCMAP = 0x80047454
constant PPPIOCSXASYNCMAP (line 1568) | PPPIOCSXASYNCMAP = 0x8020744f
constant PPPIOCXFERUNIT (line 1569) | PPPIOCXFERUNIT = 0x2000744e
constant PRIO_PGRP (line 1570) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1571) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1572) | PRIO_USER = 0x2
constant PROC_SUPER_MAGIC (line 1573) | PROC_SUPER_MAGIC = 0x9fa0
constant PROT_EXEC (line 1574) | PROT_EXEC = 0x4
constant PROT_GROWSDOWN (line 1575) | PROT_GROWSDOWN = 0x1000000
constant PROT_GROWSUP (line 1576) | PROT_GROWSUP = 0x2000000
constant PROT_NONE (line 1577) | PROT_NONE = 0x0
constant PROT_READ (line 1578) | PROT_READ = 0x1
constant PROT_WRITE (line 1579) | PROT_WRITE = 0x2
constant PR_CAPBSET_DROP (line 1580) | PR_CAPBSET_DROP = 0x18
constant PR_CAPBSET_READ (line 1581) | PR_CAPBSET_READ = 0x17
constant PR_CAP_AMBIENT (line 1582) | PR_CAP_AMBIENT = 0x2f
constant PR_CAP_AMBIENT_CLEAR_ALL (line 1583) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4
constant PR_CAP_AMBIENT_IS_SET (line 1584) | PR_CAP_AMBIENT_IS_SET = 0x1
constant PR_CAP_AMBIENT_LOWER (line 1585) | PR_CAP_AMBIENT_LOWER = 0x3
constant PR_CAP_AMBIENT_RAISE (line 1586) | PR_CAP_AMBIENT_RAISE = 0x2
constant PR_ENDIAN_BIG (line 1587) | PR_ENDIAN_BIG = 0x0
constant PR_ENDIAN_LITTLE (line 1588) | PR_ENDIAN_LITTLE = 0x1
constant PR_ENDIAN_PPC_LITTLE (line 1589) | PR_ENDIAN_PPC_LITTLE = 0x2
constant PR_FPEMU_NOPRINT (line 1590) | PR_FPEMU_NOPRINT = 0x1
constant PR_FPEMU_SIGFPE (line 1591) | PR_FPEMU_SIGFPE = 0x2
constant PR_FP_EXC_ASYNC (line 1592) | PR_FP_EXC_ASYNC = 0x2
constant PR_FP_EXC_DISABLED (line 1593) | PR_FP_EXC_DISABLED = 0x0
constant PR_FP_EXC_DIV (line 1594) | PR_FP_EXC_DIV = 0x10000
constant PR_FP_EXC_INV (line 1595) | PR_FP_EXC_INV = 0x100000
constant PR_FP_EXC_NONRECOV (line 1596) | PR_FP_EXC_NONRECOV = 0x1
constant PR_FP_EXC_OVF (line 1597) | PR_FP_EXC_OVF = 0x20000
constant PR_FP_EXC_PRECISE (line 1598) | PR_FP_EXC_PRECISE = 0x3
constant PR_FP_EXC_RES (line 1599) | PR_FP_EXC_RES = 0x80000
constant PR_FP_EXC_SW_ENABLE (line 1600) | PR_FP_EXC_SW_ENABLE = 0x80
constant PR_FP_EXC_UND (line 1601) | PR_FP_EXC_UND = 0x40000
constant PR_FP_MODE_FR (line 1602) | PR_FP_MODE_FR = 0x1
constant PR_FP_MODE_FRE (line 1603) | PR_FP_MODE_FRE = 0x2
constant PR_GET_CHILD_SUBREAPER (line 1604) | PR_GET_CHILD_SUBREAPER = 0x25
constant PR_GET_DUMPABLE (line 1605) | PR_GET_DUMPABLE = 0x3
constant PR_GET_ENDIAN (line 1606) | PR_GET_ENDIAN = 0x13
constant PR_GET_FPEMU (line 1607) | PR_GET_FPEMU = 0x9
constant PR_GET_FPEXC (line 1608) | PR_GET_FPEXC = 0xb
constant PR_GET_FP_MODE (line 1609) | PR_GET_FP_MODE = 0x2e
constant PR_GET_KEEPCAPS (line 1610) | PR_GET_KEEPCAPS = 0x7
constant PR_GET_NAME (line 1611) | PR_GET_NAME = 0x10
constant PR_GET_NO_NEW_PRIVS (line 1612) | PR_GET_NO_NEW_PRIVS = 0x27
constant PR_GET_PDEATHSIG (line 1613) | PR_GET_PDEATHSIG = 0x2
constant PR_GET_SECCOMP (line 1614) | PR_GET_SECCOMP = 0x15
constant PR_GET_SECUREBITS (line 1615) | PR_GET_SECUREBITS = 0x1b
constant PR_GET_SPECULATION_CTRL (line 1616) | PR_GET_SPECULATION_CTRL = 0x34
constant PR_GET_THP_DISABLE (line 1617) | PR_GET_THP_DISABLE = 0x2a
constant PR_GET_TID_ADDRESS (line 1618) | PR_GET_TID_ADDRESS = 0x28
constant PR_GET_TIMERSLACK (line 1619) | PR_GET_TIMERSLACK = 0x1e
constant PR_GET_TIMING (line 1620) | PR_GET_TIMING = 0xd
constant PR_GET_TSC (line 1621) | PR_GET_TSC = 0x19
constant PR_GET_UNALIGN (line 1622) | PR_GET_UNALIGN = 0x5
constant PR_MCE_KILL (line 1623) | PR_MCE_KILL = 0x21
constant PR_MCE_KILL_CLEAR (line 1624) | PR_MCE_KILL_CLEAR = 0x0
constant PR_MCE_KILL_DEFAULT (line 1625) | PR_MCE_KILL_DEFAULT = 0x2
constant PR_MCE_KILL_EARLY (line 1626) | PR_MCE_KILL_EARLY = 0x1
constant PR_MCE_KILL_GET (line 1627) | PR_MCE_KILL_GET = 0x22
constant PR_MCE_KILL_LATE (line 1628) | PR_MCE_KILL_LATE = 0x0
constant PR_MCE_KILL_SET (line 1629) | PR_MCE_KILL_SET = 0x1
constant PR_MPX_DISABLE_MANAGEMENT (line 1630) | PR_MPX_DISABLE_MANAGEMENT = 0x2c
constant PR_MPX_ENABLE_MANAGEMENT (line 1631) | PR_MPX_ENABLE_MANAGEMENT = 0x2b
constant PR_PAC_APDAKEY (line 1632) | PR_PAC_APDAKEY = 0x4
constant PR_PAC_APDBKEY (line 1633) | PR_PAC_APDBKEY = 0x8
constant PR_PAC_APGAKEY (line 1634) | PR_PAC_APGAKEY = 0x10
constant PR_PAC_APIAKEY (line 1635) | PR_PAC_APIAKEY = 0x1
constant PR_PAC_APIBKEY (line 1636) | PR_PAC_APIBKEY = 0x2
constant PR_PAC_RESET_KEYS (line 1637) | PR_PAC_RESET_KEYS = 0x36
constant PR_SET_CHILD_SUBREAPER (line 1638) | PR_SET_CHILD_SUBREAPER = 0x24
constant PR_SET_DUMPABLE (line 1639) | PR_SET_DUMPABLE = 0x4
constant PR_SET_ENDIAN (line 1640) | PR_SET_ENDIAN = 0x14
constant PR_SET_FPEMU (line 1641) | PR_SET_FPEMU = 0xa
constant PR_SET_FPEXC (line 1642) | PR_SET_FPEXC = 0xc
constant PR_SET_FP_MODE (line 1643) | PR_SET_FP_MODE = 0x2d
constant PR_SET_KEEPCAPS (line 1644) | PR_SET_KEEPCAPS = 0x8
constant PR_SET_MM (line 1645) | PR_SET_MM = 0x23
constant PR_SET_MM_ARG_END (line 1646) | PR_SET_MM_ARG_END = 0x9
constant PR_SET_MM_ARG_START (line 1647) | PR_SET_MM_ARG_START = 0x8
constant PR_SET_MM_AUXV (line 1648) | PR_SET_MM_AUXV = 0xc
constant PR_SET_MM_BRK (line 1649) | PR_SET_MM_BRK = 0x7
constant PR_SET_MM_END_CODE (line 1650) | PR_SET_MM_END_CODE = 0x2
constant PR_SET_MM_END_DATA (line 1651) | PR_SET_MM_END_DATA = 0x4
constant PR_SET_MM_ENV_END (line 1652) | PR_SET_MM_ENV_END = 0xb
constant PR_SET_MM_ENV_START (line 1653) | PR_SET_MM_ENV_START = 0xa
constant PR_SET_MM_EXE_FILE (line 1654) | PR_SET_MM_EXE_FILE = 0xd
constant PR_SET_MM_MAP (line 1655) | PR_SET_MM_MAP = 0xe
constant PR_SET_MM_MAP_SIZE (line 1656) | PR_SET_MM_MAP_SIZE = 0xf
constant PR_SET_MM_START_BRK (line 1657) | PR_SET_MM_START_BRK = 0x6
constant PR_SET_MM_START_CODE (line 1658) | PR_SET_MM_START_CODE = 0x1
constant PR_SET_MM_START_DATA (line 1659) | PR_SET_MM_START_DATA = 0x3
constant PR_SET_MM_START_STACK (line 1660) | PR_SET_MM_START_STACK = 0x5
constant PR_SET_NAME (line 1661) | PR_SET_NAME = 0xf
constant PR_SET_NO_NEW_PRIVS (line 1662) | PR_SET_NO_NEW_PRIVS = 0x26
constant PR_SET_PDEATHSIG (line 1663) | PR_SET_PDEATHSIG = 0x1
constant PR_SET_PTRACER (line 1664) | PR_SET_PTRACER = 0x59616d61
constant PR_SET_PTRACER_ANY (line 1665) | PR_SET_PTRACER_ANY = 0xffffffffffffffff
constant PR_SET_SECCOMP (line 1666) | PR_SET_SECCOMP = 0x16
constant PR_SET_SECUREBITS (line 1667) | PR_SET_SECUREBITS = 0x1c
constant PR_SET_SPECULATION_CTRL (line 1668) | PR_SET_SPECULATION_CTRL = 0x35
constant PR_SET_THP_DISABLE (line 1669) | PR_SET_THP_DISABLE = 0x29
constant PR_SET_TIMERSLACK (line 1670) | PR_SET_TIMERSLACK = 0x1d
constant PR_SET_TIMING (line 1671) | PR_SET_TIMING = 0xe
constant PR_SET_TSC (line 1672) | PR_SET_TSC = 0x1a
constant PR_SET_UNALIGN (line 1673) | PR_SET_UNALIGN = 0x6
constant PR_SPEC_DISABLE (line 1674) | PR_SPEC_DISABLE = 0x4
constant PR_SPEC_DISABLE_NOEXEC (line 1675) | PR_SPEC_DISABLE_NOEXEC = 0x10
constant PR_SPEC_ENABLE (line 1676) | PR_SPEC_ENABLE = 0x2
constant PR_SPEC_FORCE_DISABLE (line 1677) | PR_SPEC_FORCE_DISABLE = 0x8
constant PR_SPEC_INDIRECT_BRANCH (line 1678) | PR_SPEC_INDIRECT_BRANCH = 0x1
constant PR_SPEC_NOT_AFFECTED (line 1679) | PR_SPEC_NOT_AFFECTED = 0x0
constant PR_SPEC_PRCTL (line 1680) | PR_SPEC_PRCTL = 0x1
constant PR_SPEC_STORE_BYPASS (line 1681) | PR_SPEC_STORE_BYPASS = 0x0
constant PR_SVE_GET_VL (line 1682) | PR_SVE_GET_VL = 0x33
constant PR_SVE_SET_VL (line 1683) | PR_SVE_SET_VL = 0x32
constant PR_SVE_SET_VL_ONEXEC (line 1684) | PR_SVE_SET_VL_ONEXEC = 0x40000
constant PR_SVE_VL_INHERIT (line 1685) | PR_SVE_VL_INHERIT = 0x20000
constant PR_SVE_VL_LEN_MASK (line 1686) | PR_SVE_VL_LEN_MASK = 0xffff
constant PR_TASK_PERF_EVENTS_DISABLE (line 1687) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f
constant PR_TASK_PERF_EVENTS_ENABLE (line 1688) | PR_TASK_PERF_EVENTS_ENABLE = 0x20
constant PR_TIMING_STATISTICAL (line 1689) | PR_TIMING_STATISTICAL = 0x0
constant PR_TIMING_TIMESTAMP (line 1690) | PR_TIMING_TIMESTAMP = 0x1
constant PR_TSC_ENABLE (line 1691) | PR_TSC_ENABLE = 0x1
constant PR_TSC_SIGSEGV (line 1692) | PR_TSC_SIGSEGV = 0x2
constant PR_UNALIGN_NOPRINT (line 1693) | PR_UNALIGN_NOPRINT = 0x1
constant PR_UNALIGN_SIGBUS (line 1694) | PR_UNALIGN_SIGBUS = 0x2
constant PSTOREFS_MAGIC (line 1695) | PSTOREFS_MAGIC = 0x6165676c
constant PTRACE_ATTACH (line 1696) | PTRACE_ATTACH = 0x10
constant PTRACE_CONT (line 1697) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 1698) | PTRACE_DETACH = 0x11
constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1699) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1
constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1700) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2
constant PTRACE_EVENT_CLONE (line 1701) | PTRACE_EVENT_CLONE = 0x3
constant PTRACE_EVENT_EXEC (line 1702) | PTRACE_EVENT_EXEC = 0x4
constant PTRACE_EVENT_EXIT (line 1703) | PTRACE_EVENT_EXIT = 0x6
constant PTRACE_EVENT_FORK (line 1704) | PTRACE_EVENT_FORK = 0x1
constant PTRACE_EVENT_SECCOMP (line 1705) | PTRACE_EVENT_SECCOMP = 0x7
constant PTRACE_EVENT_STOP (line 1706) | PTRACE_EVENT_STOP = 0x80
constant PTRACE_EVENT_VFORK (line 1707) | PTRACE_EVENT_VFORK = 0x2
constant PTRACE_EVENT_VFORK_DONE (line 1708) | PTRACE_EVENT_VFORK_DONE = 0x5
constant PTRACE_GETEVENTMSG (line 1709) | PTRACE_GETEVENTMSG = 0x4201
constant PTRACE_GETFPAREGS (line 1710) | PTRACE_GETFPAREGS = 0x14
constant PTRACE_GETFPREGS (line 1711) | PTRACE_GETFPREGS = 0xe
constant PTRACE_GETFPREGS64 (line 1712) | PTRACE_GETFPREGS64 = 0x19
constant PTRACE_GETREGS (line 1713) | PTRACE_GETREGS = 0xc
constant PTRACE_GETREGS64 (line 1714) | PTRACE_GETREGS64 = 0x16
constant PTRACE_GETREGSET (line 1715) | PTRACE_GETREGSET = 0x4204
constant PTRACE_GETSIGINFO (line 1716) | PTRACE_GETSIGINFO = 0x4202
constant PTRACE_GETSIGMASK (line 1717) | PTRACE_GETSIGMASK = 0x420a
constant PTRACE_GET_SYSCALL_INFO (line 1718) | PTRACE_GET_SYSCALL_INFO = 0x420e
constant PTRACE_INTERRUPT (line 1719) | PTRACE_INTERRUPT = 0x4207
constant PTRACE_KILL (line 1720) | PTRACE_KILL = 0x8
constant PTRACE_LISTEN (line 1721) | PTRACE_LISTEN = 0x4208
constant PTRACE_O_EXITKILL (line 1722) | PTRACE_O_EXITKILL = 0x100000
constant PTRACE_O_MASK (line 1723) | PTRACE_O_MASK = 0x3000ff
constant PTRACE_O_SUSPEND_SECCOMP (line 1724) | PTRACE_O_SUSPEND_SECCOMP = 0x200000
constant PTRACE_O_TRACECLONE (line 1725) | PTRACE_O_TRACECLONE = 0x8
constant PTRACE_O_TRACEEXEC (line 1726) | PTRACE_O_TRACEEXEC = 0x10
constant PTRACE_O_TRACEEXIT (line 1727) | PTRACE_O_TRACEEXIT = 0x40
constant PTRACE_O_TRACEFORK (line 1728) | PTRACE_O_TRACEFORK = 0x2
constant PTRACE_O_TRACESECCOMP (line 1729) | PTRACE_O_TRACESECCOMP = 0x80
constant PTRACE_O_TRACESYSGOOD (line 1730) | PTRACE_O_TRACESYSGOOD = 0x1
constant PTRACE_O_TRACEVFORK (line 1731) | PTRACE_O_TRACEVFORK = 0x4
constant PTRACE_O_TRACEVFORKDONE (line 1732) | PTRACE_O_TRACEVFORKDONE = 0x20
constant PTRACE_PEEKDATA (line 1733) | PTRACE_PEEKDATA = 0x2
constant PTRACE_PEEKSIGINFO (line 1734) | PTRACE_PEEKSIGINFO = 0x4209
constant PTRACE_PEEKSIGINFO_SHARED (line 1735) | PTRACE_PEEKSIGINFO_SHARED = 0x1
constant PTRACE_PEEKTEXT (line 1736) | PTRACE_PEEKTEXT = 0x1
constant PTRACE_PEEKUSR (line 1737) | PTRACE_PEEKUSR = 0x3
constant PTRACE_POKEDATA (line 1738) | PTRACE_POKEDATA = 0x5
constant PTRACE_POKETEXT (line 1739) | PTRACE_POKETEXT = 0x4
constant PTRACE_POKEUSR (line 1740) | PTRACE_POKEUSR = 0x6
constant PTRACE_READDATA (line 1741) | PTRACE_READDATA = 0x10
constant PTRACE_READTEXT (line 1742) | PTRACE_READTEXT = 0x12
constant PTRACE_SECCOMP_GET_FILTER (line 1743) | PTRACE_SECCOMP_GET_FILTER = 0x420c
constant PTRACE_SECCOMP_GET_METADATA (line 1744) | PTRACE_SECCOMP_GET_METADATA = 0x420d
constant PTRACE_SEIZE (line 1745) | PTRACE_SEIZE = 0x4206
constant PTRACE_SETFPAREGS (line 1746) | PTRACE_SETFPAREGS = 0x15
constant PTRACE_SETFPREGS (line 1747) | PTRACE_SETFPREGS = 0xf
constant PTRACE_SETFPREGS64 (line 1748) | PTRACE_SETFPREGS64 = 0x1a
constant PTRACE_SETOPTIONS (line 1749) | PTRACE_SETOPTIONS = 0x4200
constant PTRACE_SETREGS (line 1750) | PTRACE_SETREGS = 0xd
constant PTRACE_SETREGS64 (line 1751) | PTRACE_SETREGS64 = 0x17
constant PTRACE_SETREGSET (line 1752) | PTRACE_SETREGSET = 0x4205
constant PTRACE_SETSIGINFO (line 1753) | PTRACE_SETSIGINFO = 0x4203
constant PTRACE_SETSIGMASK (line 1754) | PTRACE_SETSIGMASK = 0x420b
constant PTRACE_SINGLESTEP (line 1755) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_SPARC_DETACH (line 1756) | PTRACE_SPARC_DETACH = 0xb
constant PTRACE_SYSCALL (line 1757) | PTRACE_SYSCALL = 0x18
constant PTRACE_SYSCALL_INFO_ENTRY (line 1758) | PTRACE_SYSCALL_INFO_ENTRY = 0x1
constant PTRACE_SYSCALL_INFO_EXIT (line 1759) | PTRACE_SYSCALL_INFO_EXIT = 0x2
constant PTRACE_SYSCALL_INFO_NONE (line 1760) | PTRACE_SYSCALL_INFO_NONE = 0x0
constant PTRACE_SYSCALL_INFO_SECCOMP (line 1761) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3
constant PTRACE_TRACEME (line 1762) | PTRACE_TRACEME = 0x0
constant PTRACE_WRITEDATA (line 1763) | PTRACE_WRITEDATA = 0x11
constant PTRACE_WRITETEXT (line 1764) | PTRACE_WRITETEXT = 0x13
constant PT_FP (line 1765) | PT_FP = 0x48
constant PT_G0 (line 1766) | PT_G0 = 0x10
constant PT_G1 (line 1767) | PT_G1 = 0x14
constant PT_G2 (line 1768) | PT_G2 = 0x18
constant PT_G3 (line 1769) | PT_G3 = 0x1c
constant PT_G4 (line 1770) | PT_G4 = 0x20
constant PT_G5 (line 1771) | PT_G5 = 0x24
constant PT_G6 (line 1772) | PT_G6 = 0x28
constant PT_G7 (line 1773) | PT_G7 = 0x2c
constant PT_I0 (line 1774) | PT_I0 = 0x30
constant PT_I1 (line 1775) | PT_I1 = 0x34
constant PT_I2 (line 1776) | PT_I2 = 0x38
constant PT_I3 (line 1777) | PT_I3 = 0x3c
constant PT_I4 (line 1778) | PT_I4 = 0x40
constant PT_I5 (line 1779) | PT_I5 = 0x44
constant PT_I6 (line 1780) | PT_I6 = 0x48
constant PT_I7 (line 1781) | PT_I7 = 0x4c
constant PT_NPC (line 1782) | PT_NPC = 0x8
constant PT_PC (line 1783) | PT_PC = 0x4
constant PT_PSR (line 1784) | PT_PSR = 0x0
constant PT_REGS_MAGIC (line 1785) | PT_REGS_MAGIC = 0x57ac6c00
constant PT_TNPC (line 1786) | PT_TNPC = 0x90
constant PT_TPC (line 1787) | PT_TPC = 0x88
constant PT_TSTATE (line 1788) | PT_TSTATE = 0x80
constant PT_V9_FP (line 1789) | PT_V9_FP = 0x70
constant PT_V9_G0 (line 1790) | PT_V9_G0 = 0x0
constant PT_V9_G1 (line 1791) | PT_V9_G1 = 0x8
constant PT_V9_G2 (line 1792) | PT_V9_G2 = 0x10
constant PT_V9_G3 (line 1793) | PT_V9_G3 = 0x18
constant PT_V9_G4 (line 1794) | PT_V9_G4 = 0x20
constant PT_V9_G5 (line 1795) | PT_V9_G5 = 0x28
constant PT_V9_G6 (line 1796) | PT_V9_G6 = 0x30
constant PT_V9_G7 (line 1797) | PT_V9_G7 = 0x38
constant PT_V9_I0 (line 1798) | PT_V9_I0 = 0x40
constant PT_V9_I1 (line 1799) | PT_V9_I1 = 0x48
constant PT_V9_I2 (line 1800) | PT_V9_I2 = 0x50
constant PT_V9_I3 (line 1801) | PT_V9_I3 = 0x58
constant PT_V9_I4 (line 1802) | PT_V9_I4 = 0x60
constant PT_V9_I5 (line 1803) | PT_V9_I5 = 0x68
constant PT_V9_I6 (line 1804) | PT_V9_I6 = 0x70
constant PT_V9_I7 (line 1805) | PT_V9_I7 = 0x78
constant PT_V9_MAGIC (line 1806) | PT_V9_MAGIC = 0x9c
constant PT_V9_TNPC (line 1807) | PT_V9_TNPC = 0x90
constant PT_V9_TPC (line 1808) | PT_V9_TPC = 0x88
constant PT_V9_TSTATE (line 1809) | PT_V9_TSTATE = 0x80
constant PT_V9_Y (line 1810) | PT_V9_Y = 0x98
constant PT_WIM (line 1811) | PT_WIM = 0x10
constant PT_Y (line 1812) | PT_Y = 0xc
constant QNX4_SUPER_MAGIC (line 1813) | QNX4_SUPER_MAGIC = 0x2f
constant QNX6_SUPER_MAGIC (line 1814) | QNX6_SUPER_MAGIC = 0x68191122
constant RAMFS_MAGIC (line 1815) | RAMFS_MAGIC = 0x858458f6
constant RDTGROUP_SUPER_MAGIC (line 1816) | RDTGROUP_SUPER_MAGIC = 0x7655821
constant REISERFS_SUPER_MAGIC (line 1817) | REISERFS_SUPER_MAGIC = 0x52654973
constant RENAME_EXCHANGE (line 1818) | RENAME_EXCHANGE = 0x2
constant RENAME_NOREPLACE (line 1819) | RENAME_NOREPLACE = 0x1
constant RENAME_WHITEOUT (line 1820) | RENAME_WHITEOUT = 0x4
constant RLIMIT_AS (line 1821) | RLIMIT_AS = 0x9
constant RLIMIT_CORE (line 1822) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1823) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1824) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1825) | RLIMIT_FSIZE = 0x1
constant RLIMIT_LOCKS (line 1826) | RLIMIT_LOCKS = 0xa
constant RLIMIT_MEMLOCK (line 1827) | RLIMIT_MEMLOCK = 0x8
constant RLIMIT_MSGQUEUE (line 1828) | RLIMIT_MSGQUEUE = 0xc
constant RLIMIT_NICE (line 1829) | RLIMIT_NICE = 0xd
constant RLIMIT_NOFILE (line 1830) | RLIMIT_NOFILE = 0x6
constant RLIMIT_NPROC (line 1831) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1832) | RLIMIT_RSS = 0x5
constant RLIMIT_RTPRIO (line 1833) | RLIMIT_RTPRIO = 0xe
constant RLIMIT_RTTIME (line 1834) | RLIMIT_RTTIME = 0xf
constant RLIMIT_SIGPENDING (line 1835) | RLIMIT_SIGPENDING = 0xb
constant RLIMIT_STACK (line 1836) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1837) | RLIM_INFINITY = 0xffffffffffffffff
constant RNDADDENTROPY (line 1838) | RNDADDENTROPY = 0x80085203
constant RNDADDTOENTCNT (line 1839) | RNDADDTOENTCNT = 0x80045201
constant RNDCLEARPOOL (line 1840) | RNDCLEARPOOL = 0x20005206
constant RNDGETENTCNT (line 1841) | RNDGETENTCNT = 0x40045200
constant RNDGETPOOL (line 1842) | RNDGETPOOL = 0x40085202
constant RNDRESEEDCRNG (line 1843) | RNDRESEEDCRNG = 0x20005207
constant RNDZAPENTCNT (line 1844) | RNDZAPENTCNT = 0x20005204
constant RTAX_ADVMSS (line 1845) | RTAX_ADVMSS = 0x8
constant RTAX_CC_ALGO (line 1846) | RTAX_CC_ALGO = 0x10
constant RTAX_CWND (line 1847) | RTAX_CWND = 0x7
constant RTAX_FASTOPEN_NO_COOKIE (line 1848) | RTAX_FASTOPEN_NO_COOKIE = 0x11
constant RTAX_FEATURES (line 1849) | RTAX_FEATURES = 0xc
constant RTAX_FEATURE_ALLFRAG (line 1850) | RTAX_FEATURE_ALLFRAG = 0x8
constant RTAX_FEATURE_ECN (line 1851) | RTAX_FEATURE_ECN = 0x1
constant RTAX_FEATURE_MASK (line 1852) | RTAX_FEATURE_MASK = 0xf
constant RTAX_FEATURE_SACK (line 1853) | RTAX_FEATURE_SACK = 0x2
constant RTAX_FEATURE_TIMESTAMP (line 1854) | RTAX_FEATURE_TIMESTAMP = 0x4
constant RTAX_HOPLIMIT (line 1855) | RTAX_HOPLIMIT = 0xa
constant RTAX_INITCWND (line 1856) | RTAX_INITCWND = 0xb
constant RTAX_INITRWND (line 1857) | RTAX_INITRWND = 0xe
constant RTAX_LOCK (line 1858) | RTAX_LOCK = 0x1
constant RTAX_MAX (line 1859) | RTAX_MAX = 0x11
constant RTAX_MTU (line 1860) | RTAX_MTU = 0x2
constant RTAX_QUICKACK (line 1861) | RTAX_QUICKACK = 0xf
constant RTAX_REORDERING (line 1862) | RTAX_REORDERING = 0x9
constant RTAX_RTO_MIN (line 1863) | RTAX_RTO_MIN = 0xd
constant RTAX_RTT (line 1864) | RTAX_RTT = 0x4
constant RTAX_RTTVAR (line 1865) | RTAX_RTTVAR = 0x5
constant RTAX_SSTHRESH (line 1866) | RTAX_SSTHRESH = 0x6
constant RTAX_UNSPEC (line 1867) | RTAX_UNSPEC = 0x0
constant RTAX_WINDOW (line 1868) | RTAX_WINDOW = 0x3
constant RTA_ALIGNTO (line 1869) | RTA_ALIGNTO = 0x4
constant RTA_MAX (line 1870) | RTA_MAX = 0x1e
constant RTCF_DIRECTSRC (line 1871) | RTCF_DIRECTSRC = 0x4000000
constant RTCF_DOREDIRECT (line 1872) | RTCF_DOREDIRECT = 0x1000000
constant RTCF_LOG (line 1873) | RTCF_LOG = 0x2000000
constant RTCF_MASQ (line 1874) | RTCF_MASQ = 0x400000
constant RTCF_NAT (line 1875) | RTCF_NAT = 0x800000
constant RTCF_VALVE (line 1876) | RTCF_VALVE = 0x200000
constant RTC_AF (line 1877) | RTC_AF = 0x20
constant RTC_AIE_OFF (line 1878) | RTC_AIE_OFF = 0x20007002
constant RTC_AIE_ON (line 1879) | RTC_AIE_ON = 0x20007001
constant RTC_ALM_READ (line 1880) | RTC_ALM_READ = 0x40247008
constant RTC_ALM_SET (line 1881) | RTC_ALM_SET = 0x80247007
constant RTC_EPOCH_READ (line 1882) | RTC_EPOCH_READ = 0x4008700d
constant RTC_EPOCH_SET (line 1883) | RTC_EPOCH_SET = 0x8008700e
constant RTC_IRQF (line 1884) | RTC_IRQF = 0x80
constant RTC_IRQP_READ (line 1885) | RTC_IRQP_READ = 0x4008700b
constant RTC_IRQP_SET (line 1886) | RTC_IRQP_SET = 0x8008700c
constant RTC_MAX_FREQ (line 1887) | RTC_MAX_FREQ = 0x2000
constant RTC_PF (line 1888) | RTC_PF = 0x40
constant RTC_PIE_OFF (line 1889) | RTC_PIE_OFF = 0x20007006
constant RTC_PIE_ON (line 1890) | RTC_PIE_ON = 0x20007005
constant RTC_PLL_GET (line 1891) | RTC_PLL_GET = 0x40207011
constant RTC_PLL_SET (line 1892) | RTC_PLL_SET = 0x80207012
constant RTC_RD_TIME (line 1893) | RTC_RD_TIME = 0x40247009
constant RTC_SET_TIME (line 1894) | RTC_SET_TIME = 0x8024700a
constant RTC_UF (line 1895) | RTC_UF = 0x10
constant RTC_UIE_OFF (line 1896) | RTC_UIE_OFF = 0x20007004
constant RTC_UIE_ON (line 1897) | RTC_UIE_ON = 0x20007003
constant RTC_VL_CLR (line 1898) | RTC_VL_CLR = 0x20007014
constant RTC_VL_READ (line 1899) | RTC_VL_READ = 0x40047013
constant RTC_WIE_OFF (line 1900) | RTC_WIE_OFF = 0x20007010
constant RTC_WIE_ON (line 1901) | RTC_WIE_ON = 0x2000700f
constant RTC_WKALM_RD (line 1902) | RTC_WKALM_RD = 0x40287010
constant RTC_WKALM_SET (line 1903) | RTC_WKALM_SET = 0x8028700f
constant RTF_ADDRCLASSMASK (line 1904) | RTF_ADDRCLASSMASK = 0xf8000000
constant RTF_ADDRCONF (line 1905) | RTF_ADDRCONF = 0x40000
constant RTF_ALLONLINK (line 1906) | RTF_ALLONLINK = 0x20000
constant RTF_BROADCAST (line 1907) | RTF_BROADCAST = 0x10000000
constant RTF_CACHE (line 1908) | RTF_CACHE = 0x1000000
constant RTF_DEFAULT (line 1909) | RTF_DEFAULT = 0x10000
constant RTF_DYNAMIC (line 1910) | RTF_DYNAMIC = 0x10
constant RTF_FLOW (line 1911) | RTF_FLOW = 0x2000000
constant RTF_GATEWAY (line 1912) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1913) | RTF_HOST = 0x4
constant RTF_INTERFACE (line 1914) | RTF_INTERFACE = 0x40000000
constant RTF_IRTT (line 1915) | RTF_IRTT = 0x100
constant RTF_LINKRT (line 1916) | RTF_LINKRT = 0x100000
constant RTF_LOCAL (line 1917) | RTF_LOCAL = 0x80000000
constant RTF_MODIFIED (line 1918) | RTF_MODIFIED = 0x20
constant RTF_MSS (line 1919) | RTF_MSS = 0x40
constant RTF_MTU (line 1920) | RTF_MTU = 0x40
constant RTF_MULTICAST (line 1921) | RTF_MULTICAST = 0x20000000
constant RTF_NAT (line 1922) | RTF_NAT = 0x8000000
constant RTF_NOFORWARD (line 1923) | RTF_NOFORWARD = 0x1000
constant RTF_NONEXTHOP (line 1924) | RTF_NONEXTHOP = 0x200000
constant RTF_NOPMTUDISC (line 1925) | RTF_NOPMTUDISC = 0x4000
constant RTF_POLICY (line 1926) | RTF_POLICY = 0x4000000
constant RTF_REINSTATE (line 1927) | RTF_REINSTATE = 0x8
constant RTF_REJECT (line 1928) | RTF_REJECT = 0x200
constant RTF_STATIC (line 1929) | RTF_STATIC = 0x400
constant RTF_THROW (line 1930) | RTF_THROW = 0x2000
constant RTF_UP (line 1931) | RTF_UP = 0x1
constant RTF_WINDOW (line 1932) | RTF_WINDOW = 0x80
constant RTF_XRESOLVE (line 1933) | RTF_XRESOLVE = 0x800
constant RTM_BASE (line 1934) | RTM_BASE = 0x10
constant RTM_DELACTION (line 1935) | RTM_DELACTION = 0x31
constant RTM_DELADDR (line 1936) | RTM_DELADDR = 0x15
constant RTM_DELADDRLABEL (line 1937) | RTM_DELADDRLABEL = 0x49
constant RTM_DELCHAIN (line 1938) | RTM_DELCHAIN = 0x65
constant RTM_DELLINK (line 1939) | RTM_DELLINK = 0x11
constant RTM_DELMDB (line 1940) | RTM_DELMDB = 0x55
constant RTM_DELNEIGH (line 1941) | RTM_DELNEIGH = 0x1d
constant RTM_DELNETCONF (line 1942) | RTM_DELNETCONF = 0x51
constant RTM_DELNEXTHOP (line 1943) | RTM_DELNEXTHOP = 0x69
constant RTM_DELNSID (line 1944) | RTM_DELNSID = 0x59
constant RTM_DELQDISC (line 1945) | RTM_DELQDISC = 0x25
constant RTM_DELROUTE (line 1946) | RTM_DELROUTE = 0x19
constant RTM_DELRULE (line 1947) | RTM_DELRULE = 0x21
constant RTM_DELTCLASS (line 1948) | RTM_DELTCLASS = 0x29
constant RTM_DELTFILTER (line 1949) | RTM_DELTFILTER = 0x2d
constant RTM_F_CLONED (line 1950) | RTM_F_CLONED = 0x200
constant RTM_F_EQUALIZE (line 1951) | RTM_F_EQUALIZE = 0x400
constant RTM_F_FIB_MATCH (line 1952) | RTM_F_FIB_MATCH = 0x2000
constant RTM_F_LOOKUP_TABLE (line 1953) | RTM_F_LOOKUP_TABLE = 0x1000
constant RTM_F_NOTIFY (line 1954) | RTM_F_NOTIFY = 0x100
constant RTM_F_PREFIX (line 1955) | RTM_F_PREFIX = 0x800
constant RTM_GETACTION (line 1956) | RTM_GETACTION = 0x32
constant RTM_GETADDR (line 1957) | RTM_GETADDR = 0x16
constant RTM_GETADDRLABEL (line 1958) | RTM_GETADDRLABEL = 0x4a
constant RTM_GETANYCAST (line 1959) | RTM_GETANYCAST = 0x3e
constant RTM_GETCHAIN (line 1960) | RTM_GETCHAIN = 0x66
constant RTM_GETDCB (line 1961) | RTM_GETDCB = 0x4e
constant RTM_GETLINK (line 1962) | RTM_GETLINK = 0x12
constant RTM_GETMDB (line 1963) | RTM_GETMDB = 0x56
constant RTM_GETMULTICAST (line 1964) | RTM_GETMULTICAST = 0x3a
constant RTM_GETNEIGH (line 1965) | RTM_GETNEIGH = 0x1e
constant RTM_GETNEIGHTBL (line 1966) | RTM_GETNEIGHTBL = 0x42
constant RTM_GETNETCONF (line 1967) | RTM_GETNETCONF = 0x52
constant RTM_GETNEXTHOP (line 1968) | RTM_GETNEXTHOP = 0x6a
constant RTM_GETNSID (line 1969) | RTM_GETNSID = 0x5a
constant RTM_GETQDISC (line 1970) | RTM_GETQDISC = 0x26
constant RTM_GETROUTE (line 1971) | RTM_GETROUTE = 0x1a
constant RTM_GETRULE (line 1972) | RTM_GETRULE = 0x22
constant RTM_GETSTATS (line 1973) | RTM_GETSTATS = 0x5e
constant RTM_GETTCLASS (line 1974) | RTM_GETTCLASS = 0x2a
constant RTM_GETTFILTER (line 1975) | RTM_GETTFILTER = 0x2e
constant RTM_MAX (line 1976) | RTM_MAX = 0x6b
constant RTM_NEWACTION (line 1977) | RTM_NEWACTION = 0x30
constant RTM_NEWADDR (line 1978) | RTM_NEWADDR = 0x14
constant RTM_NEWADDRLABEL (line 1979) | RTM_NEWADDRLABEL = 0x48
constant RTM_NEWCACHEREPORT (line 1980) | RTM_NEWCACHEREPORT = 0x60
constant RTM_NEWCHAIN (line 1981) | RTM_NEWCHAIN = 0x64
constant RTM_NEWLINK (line 1982) | RTM_NEWLINK = 0x10
constant RTM_NEWMDB (line 1983) | RTM_NEWMDB = 0x54
constant RTM_NEWNDUSEROPT (line 1984) | RTM_NEWNDUSEROPT = 0x44
constant RTM_NEWNEIGH (line 1985) | RTM_NEWNEIGH = 0x1c
constant RTM_NEWNEIGHTBL (line 1986) | RTM_NEWNEIGHTBL = 0x40
constant RTM_NEWNETCONF (line 1987) | RTM_NEWNETCONF = 0x50
constant RTM_NEWNEXTHOP (line 1988) | RTM_NEWNEXTHOP = 0x68
constant RTM_NEWNSID (line 1989) | RTM_NEWNSID = 0x58
constant RTM_NEWPREFIX (line 1990) | RTM_NEWPREFIX = 0x34
constant RTM_NEWQDISC (line 1991) | RTM_NEWQDISC = 0x24
constant RTM_NEWROUTE (line 1992) | RTM_NEWROUTE = 0x18
constant RTM_NEWRULE (line 1993) | RTM_NEWRULE = 0x20
constant RTM_NEWSTATS (line 1994) | RTM_NEWSTATS = 0x5c
constant RTM_NEWTCLASS (line 1995) | RTM_NEWTCLASS = 0x28
constant RTM_NEWTFILTER (line 1996) | RTM_NEWTFILTER = 0x2c
constant RTM_NR_FAMILIES (line 1997) | RTM_NR_FAMILIES = 0x17
constant RTM_NR_MSGTYPES (line 1998) | RTM_NR_MSGTYPES = 0x5c
constant RTM_SETDCB (line 1999) | RTM_SETDCB = 0x4f
constant RTM_SETLINK (line 2000) | RTM_SETLINK = 0x13
constant RTM_SETNEIGHTBL (line 2001) | RTM_SETNEIGHTBL = 0x43
constant RTNH_ALIGNTO (line 2002) | RTNH_ALIGNTO = 0x4
constant RTNH_COMPARE_MASK (line 2003) | RTNH_COMPARE_MASK = 0x19
constant RTNH_F_DEAD (line 2004) | RTNH_F_DEAD = 0x1
constant RTNH_F_LINKDOWN (line 2005) | RTNH_F_LINKDOWN = 0x10
constant RTNH_F_OFFLOAD (line 2006) | RTNH_F_OFFLOAD = 0x8
constant RTNH_F_ONLINK (line 2007) | RTNH_F_ONLINK = 0x4
constant RTNH_F_PERVASIVE (line 2008) | RTNH_F_PERVASIVE = 0x2
constant RTNH_F_UNRESOLVED (line 2009) | RTNH_F_UNRESOLVED = 0x20
constant RTN_MAX (line 2010) | RTN_MAX = 0xb
constant RTPROT_BABEL (line 2011) | RTPROT_BABEL = 0x2a
constant RTPROT_BGP (line 2012) | RTPROT_BGP = 0xba
constant RTPROT_BIRD (line 2013) | RTPROT_BIRD = 0xc
constant RTPROT_BOOT (line 2014) | RTPROT_BOOT = 0x3
constant RTPROT_DHCP (line 2015) | RTPROT_DHCP = 0x10
constant RTPROT_DNROUTED (line 2016) | RTPROT_DNROUTED = 0xd
constant RTPROT_EIGRP (line 2017) | RTPROT_EIGRP = 0xc0
constant RTPROT_GATED (line 2018) | RTPROT_GATED = 0x8
constant RTPROT_ISIS (line 2019) | RTPROT_ISIS = 0xbb
constant RTPROT_KERNEL (line 2020) | RTPROT_KERNEL = 0x2
constant RTPROT_MROUTED (line 2021) | RTPROT_MROUTED = 0x11
constant RTPROT_MRT (line 2022) | RTPROT_MRT = 0xa
constant RTPROT_NTK (line 2023) | RTPROT_NTK = 0xf
constant RTPROT_OSPF (line 2024) | RTPROT_OSPF = 0xbc
constant RTPROT_RA (line 2025) | RTPROT_RA = 0x9
constant RTPROT_REDIRECT (line 2026) | RTPROT_REDIRECT = 0x1
constant RTPROT_RIP (line 2027) | RTPROT_RIP = 0xbd
constant RTPROT_STATIC (line 2028) | RTPROT_STATIC = 0x4
constant RTPROT_UNSPEC (line 2029) | RTPROT_UNSPEC = 0x0
constant RTPROT_XORP (line 2030) | RTPROT_XORP = 0xe
constant RTPROT_ZEBRA (line 2031) | RTPROT_ZEBRA = 0xb
constant RT_CLASS_DEFAULT (line 2032) | RT_CLASS_DEFAULT = 0xfd
constant RT_CLASS_LOCAL (line 2033) | RT_CLASS_LOCAL = 0xff
constant RT_CLASS_MAIN (line 2034) | RT_CLASS_MAIN = 0xfe
constant RT_CLASS_MAX (line 2035) | RT_CLASS_MAX = 0xff
constant RT_CLASS_UNSPEC (line 2036) | RT_CLASS_UNSPEC = 0x0
constant RUSAGE_CHILDREN (line 2037) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 2038) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 2039) | RUSAGE_THREAD = 0x1
constant SCM_CREDENTIALS (line 2040) | SCM_CREDENTIALS = 0x2
constant SCM_RIGHTS (line 2041) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 2042) | SCM_TIMESTAMP = 0x1d
constant SCM_TIMESTAMPING (line 2043) | SCM_TIMESTAMPING = 0x23
constant SCM_TIMESTAMPING_OPT_STATS (line 2044) | SCM_TIMESTAMPING_OPT_STATS = 0x38
constant SCM_TIMESTAMPING_PKTINFO (line 2045) | SCM_TIMESTAMPING_PKTINFO = 0x3c
constant SCM_TIMESTAMPNS (line 2046) | SCM_TIMESTAMPNS = 0x21
constant SCM_TXTIME (line 2047) | SCM_TXTIME = 0x3f
constant SCM_WIFI_STATUS (line 2048) | SCM_WIFI_STATUS = 0x25
constant SC_LOG_FLUSH (line 2049) | SC_LOG_FLUSH = 0x100000
constant SECCOMP_MODE_DISABLED (line 2050) | SECCOMP_MODE_DISABLED = 0x0
constant SECCOMP_MODE_FILTER (line 2051) | SECCOMP_MODE_FILTER = 0x2
constant SECCOMP_MODE_STRICT (line 2052) | SECCOMP_MODE_STRICT = 0x1
constant SECURITYFS_MAGIC (line 2053) | SECURITYFS_MAGIC = 0x73636673
constant SELINUX_MAGIC (line 2054) | SELINUX_MAGIC = 0xf97cff8c
constant SFD_CLOEXEC (line 2055) | SFD_CLOEXEC = 0x400000
constant SFD_NONBLOCK (line 2056) | SFD_NONBLOCK = 0x4000
constant SHUT_RD (line 2057) | SHUT_RD = 0x0
constant SHUT_RDWR (line 2058) | SHUT_RDWR = 0x2
constant SHUT_WR (line 2059) | SHUT_WR = 0x1
constant SIOCADDDLCI (line 2060) | SIOCADDDLCI = 0x8980
constant SIOCADDMULTI (line 2061) | SIOCADDMULTI = 0x8931
constant SIOCADDRT (line 2062) | SIOCADDRT = 0x890b
constant SIOCATMARK (line 2063) | SIOCATMARK = 0x8905
constant SIOCBONDCHANGEACTIVE (line 2064) | SIOCBONDCHANGEACTIVE = 0x8995
constant SIOCBONDENSLAVE (line 2065) | SIOCBONDENSLAVE = 0x8990
constant SIOCBONDINFOQUERY (line 2066) | SIOCBONDINFOQUERY = 0x8994
constant SIOCBONDRELEASE (line 2067) | SIOCBONDRELEASE = 0x8991
constant SIOCBONDSETHWADDR (line 2068) | SIOCBONDSETHWADDR = 0x8992
constant SIOCBONDSLAVEINFOQUERY (line 2069) | SIOCBONDSLAVEINFOQUERY = 0x8993
constant SIOCBRADDBR (line 2070) | SIOCBRADDBR = 0x89a0
constant SIOCBRADDIF (line 2071) | SIOCBRADDIF = 0x89a2
constant SIOCBRDELBR (line 2072) | SIOCBRDELBR = 0x89a1
constant SIOCBRDELIF (line 2073) | SIOCBRDELIF = 0x89a3
constant SIOCDARP (line 2074) | SIOCDARP = 0x8953
constant SIOCDELDLCI (line 2075) | SIOCDELDLCI = 0x8981
constant SIOCDELMULTI (line 2076) | SIOCDELMULTI = 0x8932
constant SIOCDELRT (line 2077) | SIOCDELRT = 0x890c
constant SIOCDEVPRIVATE (line 2078) | SIOCDEVPRIVATE = 0x89f0
constant SIOCDIFADDR (line 2079) | SIOCDIFADDR = 0x8936
constant SIOCDRARP (line 2080) | SIOCDRARP = 0x8960
constant SIOCETHTOOL (line 2081) | SIOCETHTOOL = 0x8946
constant SIOCGARP (line 2082) | SIOCGARP = 0x8954
constant SIOCGETLINKNAME (line 2083) | SIOCGETLINKNAME = 0x89e0
constant SIOCGETNODEID (line 2084) | SIOCGETNODEID = 0x89e1
constant SIOCGHWTSTAMP (line 2085) | SIOCGHWTSTAMP = 0x89b1
constant SIOCGIFADDR (line 2086) | SIOCGIFADDR = 0x8915
constant SIOCGIFBR (line 2087) | SIOCGIFBR = 0x8940
constant SIOCGIFBRDADDR (line 2088) | SIOCGIFBRDADDR = 0x8919
constant SIOCGIFCONF (line 2089) | SIOCGIFCONF = 0x8912
constant SIOCGIFCOUNT (line 2090) | SIOCGIFCOUNT = 0x8938
constant SIOCGIFDSTADDR (line 2091) | SIOCGIFDSTADDR = 0x8917
constant SIOCGIFENCAP (line 2092) | SIOCGIFENCAP = 0x8925
constant SIOCGIFFLAGS (line 2093) | SIOCGIFFLAGS = 0x8913
constant SIOCGIFHWADDR (line 2094) | SIOCGIFHWADDR = 0x8927
constant SIOCGIFINDEX (line 2095) | SIOCGIFINDEX = 0x8933
constant SIOCGIFMAP (line 2096) | SIOCGIFMAP = 0x8970
constant SIOCGIFMEM (line 2097) | SIOCGIFMEM = 0x891f
constant SIOCGIFMETRIC (line 2098) | SIOCGIFMETRIC = 0x891d
constant SIOCGIFMTU (line 2099) | SIOCGIFMTU = 0x8921
constant SIOCGIFNAME (line 2100) | SIOCGIFNAME = 0x8910
constant SIOCGIFNETMASK (line 2101) | SIOCGIFNETMASK = 0x891b
constant SIOCGIFPFLAGS (line 2102) | SIOCGIFPFLAGS = 0x8935
constant SIOCGIFSLAVE (line 2103) | SIOCGIFSLAVE = 0x8929
constant SIOCGIFTXQLEN (line 2104) | SIOCGIFTXQLEN = 0x8942
constant SIOCGIFVLAN (line 2105) | SIOCGIFVLAN = 0x8982
constant SIOCGMIIPHY (line 2106) | SIOCGMIIPHY = 0x8947
constant SIOCGMIIREG (line 2107) | SIOCGMIIREG = 0x8948
constant SIOCGPGRP (line 2108) | SIOCGPGRP = 0x8904
constant SIOCGPPPCSTATS (line 2109) | SIOCGPPPCSTATS = 0x89f2
constant SIOCGPPPSTATS (line 2110) | SIOCGPPPSTATS = 0x89f0
constant SIOCGPPPVER (line 2111) | SIOCGPPPVER = 0x89f1
constant SIOCGRARP (line 2112) | SIOCGRARP = 0x8961
constant SIOCGSKNS (line 2113) | SIOCGSKNS = 0x894c
constant SIOCGSTAMP (line 2114) | SIOCGSTAMP = 0x8906
constant SIOCGSTAMPNS (line 2115) | SIOCGSTAMPNS = 0x8907
constant SIOCGSTAMPNS_NEW (line 2116) | SIOCGSTAMPNS_NEW = 0x40108907
constant SIOCGSTAMPNS_OLD (line 2117) | SIOCGSTAMPNS_OLD = 0x8907
constant SIOCGSTAMP_NEW (line 2118) | SIOCGSTAMP_NEW = 0x40108906
constant SIOCGSTAMP_OLD (line 2119) | SIOCGSTAMP_OLD = 0x8906
constant SIOCINQ (line 2120) | SIOCINQ = 0x4004667f
constant SIOCOUTQ (line 2121) | SIOCOUTQ = 0x40047473
constant SIOCOUTQNSD (line 2122) | SIOCOUTQNSD = 0x894b
constant SIOCPROTOPRIVATE (line 2123) | SIOCPROTOPRIVATE = 0x89e0
constant SIOCRTMSG (line 2124) | SIOCRTMSG = 0x890d
constant SIOCSARP (line 2125) | SIOCSARP = 0x8955
constant SIOCSHWTSTAMP (line 2126) | SIOCSHWTSTAMP = 0x89b0
constant SIOCSIFADDR (line 2127) | SIOCSIFADDR = 0x8916
constant SIOCSIFBR (line 2128) | SIOCSIFBR = 0x8941
constant SIOCSIFBRDADDR (line 2129) | SIOCSIFBRDADDR = 0x891a
constant SIOCSIFDSTADDR (line 2130) | SIOCSIFDSTADDR = 0x8918
constant SIOCSIFENCAP (line 2131) | SIOCSIFENCAP = 0x8926
constant SIOCSIFFLAGS (line 2132) | SIOCSIFFLAGS = 0x8914
constant SIOCSIFHWADDR (line 2133) | SIOCSIFHWADDR = 0x8924
constant SIOCSIFHWBROADCAST (line 2134) | SIOCSIFHWBROADCAST = 0x8937
constant SIOCSIFLINK (line 2135) | SIOCSIFLINK = 0x8911
constant SIOCSIFMAP (line 2136) | SIOCSIFMAP = 0x8971
constant SIOCSIFMEM (line 2137) | SIOCSIFMEM = 0x8920
constant SIOCSIFMETRIC (line 2138) | SIOCSIFMETRIC = 0x891e
constant SIOCSIFMTU (line 2139) | SIOCSIFMTU = 0x8922
constant SIOCSIFNAME (line 2140) | SIOCSIFNAME = 0x8923
constant SIOCSIFNETMASK (line 2141) | SIOCSIFNETMASK = 0x891c
constant SIOCSIFPFLAGS (line 2142) | SIOCSIFPFLAGS = 0x8934
constant SIOCSIFSLAVE (line 2143) | SIOCSIFSLAVE = 0x8930
constant SIOCSIFTXQLEN (line 2144) | SIOCSIFTXQLEN = 0x8943
constant SIOCSIFVLAN (line 2145) | SIOCSIFVLAN = 0x8983
constant SIOCSMIIREG (line 2146) | SIOCSMIIREG = 0x8949
constant SIOCSPGRP (line 2147) | SIOCSPGRP = 0x8902
constant SIOCSRARP (line 2148) | SIOCSRARP = 0x8962
constant SIOCWANDEV (line 2149) | SIOCWANDEV = 0x894a
constant SMACK_MAGIC (line 2150) | SMACK_MAGIC = 0x43415d53
constant SMART_AUTOSAVE (line 2151) | SMART_AUTOSAVE = 0xd2
constant SMART_AUTO_OFFLINE (line 2152) | SMART_AUTO_OFFLINE = 0xdb
constant SMART_DISABLE (line 2153) | SMART_DISABLE = 0xd9
constant SMART_ENABLE (line 2154) | SMART_ENABLE = 0xd8
constant SMART_HCYL_PASS (line 2155) | SMART_HCYL_PASS = 0xc2
constant SMART_IMMEDIATE_OFFLINE (line 2156) | SMART_IMMEDIATE_OFFLINE = 0xd4
constant SMART_LCYL_PASS (line 2157) | SMART_LCYL_PASS = 0x4f
constant SMART_READ_LOG_SECTOR (line 2158) | SMART_READ_LOG_SECTOR = 0xd5
constant SMART_READ_THRESHOLDS (line 2159) | SMART_READ_THRESHOLDS = 0xd1
constant SMART_READ_VALUES (line 2160) | SMART_READ_VALUES = 0xd0
constant SMART_SAVE (line 2161) | SMART_SAVE = 0xd3
constant SMART_STATUS (line 2162) | SMART_STATUS = 0xda
constant SMART_WRITE_LOG_SECTOR (line 2163) | SMART_WRITE_LOG_SECTOR = 0xd6
constant SMART_WRITE_THRESHOLDS (line 2164) | SMART_WRITE_THRESHOLDS = 0xd7
constant SMB_SUPER_MAGIC (line 2165) | SMB_SUPER_MAGIC = 0x517b
constant SOCKFS_MAGIC (line 2166) | SOCKFS_MAGIC = 0x534f434b
constant SOCK_CLOEXEC (line 2167) | SOCK_CLOEXEC = 0x400000
constant SOCK_DCCP (line 2168) | SOCK_DCCP = 0x6
constant SOCK_DGRAM (line 2169) | SOCK_DGRAM = 0x2
constant SOCK_IOC_TYPE (line 2170) | SOCK_IOC_TYPE = 0x89
constant SOCK_NONBLOCK (line 2171) | SOCK_NONBLOCK = 0x4000
constant SOCK_PACKET (line 2172) | SOCK_PACKET = 0xa
constant SOCK_RAW (line 2173) | SOCK_RAW = 0x3
constant SOCK_RDM (line 2174) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 2175) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 2176) | SOCK_STREAM = 0x1
constant SOL_AAL (line 2177) | SOL_AAL = 0x109
constant SOL_ALG (line 2178) | SOL_ALG = 0x117
constant SOL_ATM (line 2179) | SOL_ATM = 0x108
constant SOL_CAIF (line 2180) | SOL_CAIF = 0x116
constant SOL_CAN_BASE (line 2181) | SOL_CAN_BASE = 0x64
constant SOL_DCCP (line 2182) | SOL_DCCP = 0x10d
constant SOL_DECNET (line 2183) | SOL_DECNET = 0x105
constant SOL_ICMPV6 (line 2184) | SOL_ICMPV6 = 0x3a
constant SOL_IP (line 2185) | SOL_IP = 0x0
constant SOL_IPV6 (line 2186) | SOL_IPV6 = 0x29
constant SOL_IRDA (line 2187) | SOL_IRDA = 0x10a
constant SOL_IUCV (line 2188) | SOL_IUCV = 0x115
constant SOL_KCM (line 2189) | SOL_KCM = 0x119
constant SOL_LLC (line 2190) | SOL_LLC = 0x10c
constant SOL_NETBEUI (line 2191) | SOL_NETBEUI = 0x10b
constant SOL_NETLINK (line 2192) | SOL_NETLINK = 0x10e
constant SOL_NFC (line 2193) | SOL_NFC = 0x118
constant SOL_PACKET (line 2194) | SOL_PACKET = 0x107
constant SOL_PNPIPE (line 2195) | SOL_PNPIPE = 0x113
constant SOL_PPPOL2TP (line 2196) | SOL_PPPOL2TP = 0x111
constant SOL_RAW (line 2197) | SOL_RAW = 0xff
constant SOL_RDS (line 2198) | SOL_RDS = 0x114
constant SOL_RXRPC (line 2199) | SOL_RXRPC = 0x110
constant SOL_SOCKET (line 2200) | SOL_SOCKET = 0xffff
constant SOL_TCP (line 2201) | SOL_TCP = 0x6
constant SOL_TIPC (line 2202) | SOL_TIPC = 0x10f
constant SOL_TLS (line 2203) | SOL_TLS = 0x11a
constant SOL_X25 (line 2204) | SOL_X25 = 0x106
constant SOL_XDP (line 2205) | SOL_XDP = 0x11b
constant SOMAXCONN (line 2206) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 2207) | SO_ACCEPTCONN = 0x8000
constant SO_ATTACH_BPF (line 2208) | SO_ATTACH_BPF = 0x34
constant SO_ATTACH_FILTER (line 2209) | SO_ATTACH_FILTER = 0x1a
constant SO_ATTACH_REUSEPORT_CBPF (line 2210) | SO_ATTACH_REUSEPORT_CBPF = 0x35
constant SO_ATTACH_REUSEPORT_EBPF (line 2211) | SO_ATTACH_REUSEPORT_EBPF = 0x36
constant SO_BINDTODEVICE (line 2212) | SO_BINDTODEVICE = 0xd
constant SO_BINDTOIFINDEX (line 2213) | SO_BINDTOIFINDEX = 0x41
constant SO_BPF_EXTENSIONS (line 2214) | SO_BPF_EXTENSIONS = 0x32
constant SO_BROADCAST (line 2215) | SO_BROADCAST = 0x20
constant SO_BSDCOMPAT (line 2216) | SO_BSDCOMPAT = 0x400
constant SO_BUSY_POLL (line 2217) | SO_BUSY_POLL = 0x30
constant SO_CNX_ADVICE (line 2218) | SO_CNX_ADVICE = 0x37
constant SO_COOKIE (line 2219) | SO_COOKIE = 0x3b
constant SO_DEBUG (line 2220) | SO_DEBUG = 0x1
constant SO_DETACH_BPF (line 2221) | SO_DETACH_BPF = 0x1b
constant SO_DETACH_FILTER (line 2222) | SO_DETACH_FILTER = 0x1b
constant SO_DETACH_REUSEPORT_BPF (line 2223) | SO_DETACH_REUSEPORT_BPF = 0x47
constant SO_DOMAIN (line 2224) | SO_DOMAIN = 0x1029
constant SO_DONTROUTE (line 2225) | SO_DONTROUTE = 0x10
constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2226) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1
constant SO_EE_CODE_TXTIME_MISSED (line 2227) | SO_EE_CODE_TXTIME_MISSED = 0x2
constant SO_EE_CODE_ZEROCOPY_COPIED (line 2228) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1
constant SO_EE_ORIGIN_ICMP (line 2229) | SO_EE_ORIGIN_ICMP = 0x2
constant SO_EE_ORIGIN_ICMP6 (line 2230) | SO_EE_ORIGIN_ICMP6 = 0x3
constant SO_EE_ORIGIN_LOCAL (line 2231) | SO_EE_ORIGIN_LOCAL = 0x1
constant SO_EE_ORIGIN_NONE (line 2232) | SO_EE_ORIGIN_NONE = 0x0
constant SO_EE_ORIGIN_TIMESTAMPING (line 2233) | SO_EE_ORIGIN_TIMESTAMPING = 0x4
constant SO_EE_ORIGIN_TXSTATUS (line 2234) | SO_EE_ORIGIN_TXSTATUS = 0x4
constant SO_EE_ORIGIN_TXTIME (line 2235) | SO_EE_ORIGIN_TXTIME = 0x6
constant SO_EE_ORIGIN_ZEROCOPY (line 2236) | SO_EE_ORIGIN_ZEROCOPY = 0x5
constant SO_ERROR (line 2237) | SO_ERROR = 0x1007
constant SO_GET_FILTER (line 2238) | SO_GET_FILTER = 0x1a
constant SO_INCOMING_CPU (line 2239) | SO_INCOMING_CPU = 0x33
constant SO_INCOMING_NAPI_ID (line 2240) | SO_INCOMING_NAPI_ID = 0x3a
constant SO_KEEPALIVE (line 2241) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 2242) | SO_LINGER = 0x80
constant SO_LOCK_FILTER (line 2243) | SO_LOCK_FILTER = 0x28
constant SO_MARK (line 2244) | SO_MARK = 0x22
constant SO_MAX_PACING_RATE (line 2245) | SO_MAX_PACING_RATE = 0x31
constant SO_MEMINFO (line 2246) | SO_MEMINFO = 0x39
constant SO_NOFCS (line 2247) | SO_NOFCS = 0x27
constant SO_NO_CHECK (line 2248) | SO_NO_CHECK = 0xb
constant SO_OOBINLINE (line 2249) | SO_OOBINLINE = 0x100
constant SO_PASSCRED (line 2250) | SO_PASSCRED = 0x2
constant SO_PASSSEC (line 2251) | SO_PASSSEC = 0x1f
constant SO_PEEK_OFF (line 2252) | SO_PEEK_OFF = 0x26
constant SO_PEERCRED (line 2253) | SO_PEERCRED = 0x40
constant SO_PEERGROUPS (line 2254) | SO_PEERGROUPS = 0x3d
constant SO_PEERNAME (line 2255) | SO_PEERNAME = 0x1c
constant SO_PEERSEC (line 2256) | SO_PEERSEC = 0x1e
constant SO_PRIORITY (line 2257) | SO_PRIORITY = 0xc
constant SO_PROTOCOL (line 2258) | SO_PROTOCOL = 0x1028
constant SO_RCVBUF (line 2259) | SO_RCVBUF = 0x1002
constant SO_RCVBUFFORCE (line 2260) | SO_RCVBUFFORCE = 0x100b
constant SO_RCVLOWAT (line 2261) | SO_RCVLOWAT = 0x800
constant SO_RCVTIMEO (line 2262) | SO_RCVTIMEO = 0x2000
constant SO_RCVTIMEO_NEW (line 2263) | SO_RCVTIMEO_NEW = 0x44
constant SO_RCVTIMEO_OLD (line 2264) | SO_RCVTIMEO_OLD = 0x2000
constant SO_REUSEADDR (line 2265) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 2266) | SO_REUSEPORT = 0x200
constant SO_RXQ_OVFL (line 2267) | SO_RXQ_OVFL = 0x24
constant SO_SECURITY_AUTHENTICATION (line 2268) | SO_SECURITY_AUTHENTICATION = 0x5001
constant SO_SECURITY_ENCRYPTION_NETWORK (line 2269) | SO_SECURITY_ENCRYPTION_NETWORK = 0x5004
constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 2270) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x5002
constant SO_SELECT_ERR_QUEUE (line 2271) | SO_SELECT_ERR_QUEUE = 0x29
constant SO_SNDBUF (line 2272) | SO_SNDBUF = 0x1001
constant SO_SNDBUFFORCE (line 2273) | SO_SNDBUFFORCE = 0x100a
constant SO_SNDLOWAT (line 2274) | SO_SNDLOWAT = 0x1000
constant SO_SNDTIMEO (line 2275) | SO_SNDTIMEO = 0x4000
constant SO_SNDTIMEO_NEW (line 2276) | SO_SNDTIMEO_NEW = 0x45
constant SO_SNDTIMEO_OLD (line 2277) | SO_SNDTIMEO_OLD = 0x4000
constant SO_TIMESTAMP (line 2278) | SO_TIMESTAMP = 0x1d
constant SO_TIMESTAMPING (line 2279) | SO_TIMESTAMPING = 0x23
constant SO_TIMESTAMPING_NEW (line 2280) | SO_TIMESTAMPING_NEW = 0x43
constant SO_TIMESTAMPING_OLD (line 2281) | SO_TIMESTAMPING_OLD = 0x23
constant SO_TIMESTAMPNS (line 2282) | SO_TIMESTAMPNS = 0x21
constant SO_TIMESTAMPNS_NEW (line 2283) | SO_TIMESTAMPNS_NEW = 0x42
constant SO_TIMESTAMPNS_OLD (line 2284) | SO_TIMESTAMPNS_OLD = 0x21
constant SO_TIMESTAMP_NEW (line 2285) | SO_TIMESTAMP_NEW = 0x46
constant SO_TIMESTAMP_OLD (line 2286) | SO_TIMESTAMP_OLD = 0x1d
constant SO_TXTIME (line 2287) | SO_TXTIME = 0x3f
constant SO_TYPE (line 2288) | SO_TYPE = 0x1008
constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2289) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2
constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2290) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1
constant SO_VM_SOCKETS_BUFFER_SIZE (line 2291) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0
constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2292) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6
constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2293) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7
constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2294) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3
constant SO_VM_SOCKETS_TRUSTED (line 2295) | SO_VM_SOCKETS_TRUSTED = 0x5
constant SO_WIFI_STATUS (line 2296) | SO_WIFI_STATUS = 0x25
constant SO_ZEROCOPY (line 2297) | SO_ZEROCOPY = 0x3e
constant SPLICE_F_GIFT (line 2298) | SPLICE_F_GIFT = 0x8
constant SPLICE_F_MORE (line 2299) | SPLICE_F_MORE = 0x4
constant SPLICE_F_MOVE (line 2300) | SPLICE_F_MOVE = 0x1
constant SPLICE_F_NONBLOCK (line 2301) | SPLICE_F_NONBLOCK = 0x2
constant SQUASHFS_MAGIC (line 2302) | SQUASHFS_MAGIC = 0x73717368
constant STACK_END_MAGIC (line 2303) | STACK_END_MAGIC = 0x57ac6e9d
constant STATX_ALL (line 2304) | STATX_ALL = 0xfff
constant STATX_ATIME (line 2305) | STATX_ATIME = 0x20
constant STATX_ATTR_APPEND (line 2306) | STATX_ATTR_APPEND = 0x20
constant STATX_ATTR_AUTOMOUNT (line 2307) | STATX_ATTR_AUTOMOUNT = 0x1000
constant STATX_ATTR_COMPRESSED (line 2308) | STATX_ATTR_COMPRESSED = 0x4
constant STATX_ATTR_ENCRYPTED (line 2309) | STATX_ATTR_ENCRYPTED = 0x800
constant STATX_ATTR_IMMUTABLE (line 2310) | STATX_ATTR_IMMUTABLE = 0x10
constant STATX_ATTR_NODUMP (line 2311) | STATX_ATTR_NODUMP = 0x40
constant STATX_BASIC_STATS (line 2312) | STATX_BASIC_STATS = 0x7ff
constant STATX_BLOCKS (line 2313) | STATX_BLOCKS = 0x400
constant STATX_BTIME (line 2314) | STATX_BTIME = 0x800
constant STATX_CTIME (line 2315) | STATX_CTIME = 0x80
constant STATX_GID (line 2316) | STATX_GID = 0x10
constant STATX_INO (line 2317) | STATX_INO = 0x100
constant STATX_MODE (line 2318) | STATX_MODE = 0x2
constant STATX_MTIME (line 2319) | STATX_MTIME = 0x40
constant STATX_NLINK (line 2320) | STATX_NLINK = 0x4
constant STATX_SIZE (line 2321) | STATX_SIZE = 0x200
constant STATX_TYPE (line 2322) | STATX_TYPE = 0x1
constant STATX_UID (line 2323) | STATX_UID = 0x8
constant STATX__RESERVED (line 2324) | STATX__RESERVED = 0x80000000
constant SYNC_FILE_RANGE_WAIT_AFTER (line 2325) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4
constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2326) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1
constant SYNC_FILE_RANGE_WRITE (line 2327) | SYNC_FILE_RANGE_WRITE = 0x2
constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2328) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7
constant SYSFS_MAGIC (line 2329) | SYSFS_MAGIC = 0x62656572
constant S_BLKSIZE (line 2330) | S_BLKSIZE = 0x200
constant S_IEXEC (line 2331) | S_IEXEC = 0x40
constant S_IFBLK (line 2332) | S_IFBLK = 0x6000
constant S_IFCHR (line 2333) | S_IFCHR = 0x2000
constant S_IFDIR (line 2334) | S_IFDIR = 0x4000
constant S_IFIFO (line 2335) | S_IFIFO = 0x1000
constant S_IFLNK (line 2336) | S_IFLNK = 0xa000
constant S_IFMT (line 2337) | S_IFMT = 0xf000
constant S_IFREG (line 2338) | S_IFREG = 0x8000
constant S_IFSOCK (line 2339) | S_IFSOCK = 0xc000
constant S_IREAD (line 2340) | S_IREAD = 0x100
constant S_IRGRP (line 2341) | S_IRGRP = 0x20
constant S_IROTH (line 2342) | S_IROTH = 0x4
constant S_IRUSR (line 2343) | S_IRUSR = 0x100
constant S_IRWXG (line 2344) | S_IRWXG = 0x38
constant S_IRWXO (line 2345) | S_IRWXO = 0x7
constant S_IRWXU (line 2346) | S_IRWXU = 0x1c0
constant S_ISGID (line 2347) | S_ISGID = 0x400
constant S_ISUID (line 2348) | S_ISUID = 0x800
constant S_ISVTX (line 2349) | S_ISVTX = 0x200
constant S_IWGRP (line 2350) | S_IWGRP = 0x10
constant S_IWOTH (line 2351) | S_IWOTH = 0x2
constant S_IWRITE (line 2352) | S_IWRITE = 0x80
constant S_IWUSR (line 2353) | S_IWUSR = 0x80
constant S_IXGRP (line 2354) | S_IXGRP = 0x8
constant S_IXOTH (line 2355) | S_IXOTH = 0x1
constant S_IXUSR (line 2356) | S_IXUSR = 0x40
constant TAB0 (line 2357) | TAB0 = 0x0
constant TAB1 (line 2358) | TAB1 = 0x800
constant TAB2 (line 2359) | TAB2 = 0x1000
constant TAB3 (line 2360) | TAB3 = 0x1800
constant TABDLY (line 2361) | TABDLY = 0x1800
constant TASKSTATS_CMD_ATTR_MAX (line 2362) | TASKSTATS_CMD_ATTR_MAX = 0x4
constant TASKSTATS_CMD_MAX (line 2363) | TASKSTATS_CMD_MAX = 0x2
constant TASKSTATS_GENL_NAME (line 2364) | TASKSTATS_GENL_NAME = "TASKSTATS"
constant TASKSTATS_GENL_VERSION (line 2365) | TASKSTATS_GENL_VERSION = 0x1
constant TASKSTATS_TYPE_MAX (line 2366) | TASKSTATS_TYPE_MAX = 0x6
constant TASKSTATS_VERSION (line 2367) | TASKSTATS_VERSION = 0x9
constant TCFLSH (line 2368) | TCFLSH = 0x20005407
constant TCGETA (line 2369) | TCGETA = 0x40125401
constant TCGETS (line 2370) | TCGETS = 0x40245408
constant TCGETS2 (line 2371) | TCGETS2 = 0x402c540c
constant TCIFLUSH (line 2372) | TCIFLUSH = 0x0
constant TCIOFF (line 2373) | TCIOFF = 0x2
constant TCIOFLUSH (line 2374) | TCIOFLUSH = 0x2
constant TCION (line 2375) | TCION = 0x3
constant TCOFLUSH (line 2376) | TCOFLUSH = 0x1
constant TCOOFF (line 2377) | TCOOFF = 0x0
constant TCOON (line 2378) | TCOON = 0x1
constant TCP_BPF_IW (line 2379) | TCP_BPF_IW = 0x3e9
constant TCP_BPF_SNDCWND_CLAMP (line 2380) | TCP_BPF_SNDCWND_CLAMP = 0x3ea
constant TCP_CC_INFO (line 2381) | TCP_CC_INFO = 0x1a
constant TCP_CM_INQ (line 2382) | TCP_CM_INQ = 0x24
constant TCP_CONGESTION (line 2383) | TCP_CONGESTION = 0xd
constant TCP_COOKIE_IN_ALWAYS (line 2384) | TCP_COOKIE_IN_ALWAYS = 0x1
constant TCP_COOKIE_MAX (line 2385) | TCP_COOKIE_MAX = 0x10
constant TCP_COOKIE_MIN (line 2386) | TCP_COOKIE_MIN = 0x8
constant TCP_COOKIE_OUT_NEVER (line 2387) | TCP_COOKIE_OUT_NEVER = 0x2
constant TCP_COOKIE_PAIR_SIZE (line 2388) | TCP_COOKIE_PAIR_SIZE = 0x20
constant TCP_COOKIE_TRANSACTIONS (line 2389) | TCP_COOKIE_TRANSACTIONS = 0xf
constant TCP_CORK (line 2390) | TCP_CORK = 0x3
constant TCP_DEFER_ACCEPT (line 2391) | TCP_DEFER_ACCEPT = 0x9
constant TCP_FASTOPEN (line 2392) | TCP_FASTOPEN = 0x17
constant TCP_FASTOPEN_CONNECT (line 2393) | TCP_FASTOPEN_CONNECT = 0x1e
constant TCP_FASTOPEN_KEY (line 2394) | TCP_FASTOPEN_KEY = 0x21
constant TCP_FASTOPEN_NO_COOKIE (line 2395) | TCP_FASTOPEN_NO_COOKIE = 0x22
constant TCP_INFO (line 2396) | TCP_INFO = 0xb
constant TCP_INQ (line 2397) | TCP_INQ = 0x24
constant TCP_KEEPCNT (line 2398) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 2399) | TCP_KEEPIDLE = 0x4
constant TCP_KEEPINTVL (line 2400) | TCP_KEEPINTVL = 0x5
constant TCP_LINGER2 (line 2401) | TCP_LINGER2 = 0x8
constant TCP_MAXSEG (line 2402) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 2403) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 2404) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 2405) | TCP_MD5SIG = 0xe
constant TCP_MD5SIG_EXT (line 2406) | TCP_MD5SIG_EXT = 0x20
constant TCP_MD5SIG_FLAG_PREFIX (line 2407) | TCP_MD5SIG_FLAG_PREFIX = 0x1
constant TCP_MD5SIG_MAXKEYLEN (line 2408) | TCP_MD5SIG_MAXKEYLEN = 0x50
constant TCP_MSS (line 2409) | TCP_MSS = 0x200
constant TCP_MSS_DEFAULT (line 2410) | TCP_MSS_DEFAULT = 0x218
constant TCP_MSS_DESIRED (line 2411) | TCP_MSS_DESIRED = 0x4c4
constant TCP_NODELAY (line 2412) | TCP_NODELAY = 0x1
constant TCP_NOTSENT_LOWAT (line 2413) | TCP_NOTSENT_LOWAT = 0x19
constant TCP_QUEUE_SEQ (line 2414) | TCP_QUEUE_SEQ = 0x15
constant TCP_QUICKACK (line 2415) | TCP_QUICKACK = 0xc
constant TCP_REPAIR (line 2416) | TCP_REPAIR = 0x13
constant TCP_REPAIR_OFF (line 2417) | TCP_REPAIR_OFF = 0x0
constant TCP_REPAIR_OFF_NO_WP (line 2418) | TCP_REPAIR_OFF_NO_WP = -0x1
constant TCP_REPAIR_ON (line 2419) | TCP_REPAIR_ON = 0x1
constant TCP_REPAIR_OPTIONS (line 2420) | TCP_REPAIR_OPTIONS = 0x16
constant TCP_REPAIR_QUEUE (line 2421) | TCP_REPAIR_QUEUE = 0x14
constant TCP_REPAIR_WINDOW (line 2422) | TCP_REPAIR_WINDOW = 0x1d
constant TCP_SAVED_SYN (line 2423) | TCP_SAVED_SYN = 0x1c
constant TCP_SAVE_SYN (line 2424) | TCP_SAVE_SYN = 0x1b
constant TCP_SYNCNT (line 2425) | TCP_SYNCNT = 0x7
constant TCP_S_DATA_IN (line 2426) | TCP_S_DATA_IN = 0x4
constant TCP_S_DATA_OUT (line 2427) | TCP_S_DATA_OUT = 0x8
constant TCP_THIN_DUPACK (line 2428) | TCP_THIN_DUPACK = 0x11
constant TCP_THIN_LINEAR_TIMEOUTS (line 2429) | TCP_THIN_LINEAR_TIMEOUTS = 0x10
constant TCP_TIMESTAMP (line 2430) | TCP_TIMESTAMP = 0x18
constant TCP_ULP (line 2431) | TCP_ULP = 0x1f
constant TCP_USER_TIMEOUT (line 2432) | TCP_USER_TIMEOUT = 0x12
constant TCP_WINDOW_CLAMP (line 2433) | TCP_WINDOW_CLAMP = 0xa
constant TCP_ZEROCOPY_RECEIVE (line 2434) | TCP_ZEROCOPY_RECEIVE = 0x23
constant TCSAFLUSH (line 2435) | TCSAFLUSH = 0x2
constant TCSBRK (line 2436) | TCSBRK = 0x20005405
constant TCSBRKP (line 2437) | TCSBRKP = 0x5425
constant TCSETA (line 2438) | TCSETA = 0x80125402
constant TCSETAF (line 2439) | TCSETAF = 0x80125404
constant TCSETAW (line 2440) | TCSETAW = 0x80125403
constant TCSETS (line 2441) | TCSETS = 0x80245409
constant TCSETS2 (line 2442) | TCSETS2 = 0x802c540d
constant TCSETSF (line 2443) | TCSETSF = 0x8024540b
constant TCSETSF2 (line 2444) | TCSETSF2 = 0x802c540f
constant TCSETSW (line 2445) | TCSETSW = 0x8024540a
constant TCSETSW2 (line 2446) | TCSETSW2 = 0x802c540e
constant TCXONC (line 2447) | TCXONC = 0x20005406
constant TIMER_ABSTIME (line 2448) | TIMER_ABSTIME = 0x1
constant TIOCCBRK (line 2449) | TIOCCBRK = 0x2000747a
constant TIOCCONS (line 2450) | TIOCCONS = 0x20007424
constant TIOCEXCL (line 2451) | TIOCEXCL = 0x2000740d
constant TIOCGDEV (line 2452) | TIOCGDEV = 0x40045432
constant TIOCGETD (line 2453) | TIOCGETD = 0x40047400
constant TIOCGEXCL (line 2454) | TIOCGEXCL = 0x40045440
constant TIOCGICOUNT (line 2455) | TIOCGICOUNT = 0x545d
constant TIOCGISO7816 (line 2456) | TIOCGISO7816 = 0x40285443
constant TIOCGLCKTRMIOS (line 2457) | TIOCGLCKTRMIOS = 0x5456
constant TIOCGPGRP (line 2458) | TIOCGPGRP = 0x40047483
constant TIOCGPKT (line 2459) | TIOCGPKT = 0x40045438
constant TIOCGPTLCK (line 2460) | TIOCGPTLCK = 0x40045439
constant TIOCGPTN (line 2461) | TIOCGPTN = 0x40047486
constant TIOCGPTPEER (line 2462) | TIOCGPTPEER = 0x20007489
constant TIOCGRS485 (line 2463) | TIOCGRS485 = 0x40205441
constant TIOCGSERIAL (line 2464) | TIOCGSERIAL = 0x541e
constant TIOCGSID (line 2465) | TIOCGSID = 0x40047485
constant TIOCGSOFTCAR (line 2466) | TIOCGSOFTCAR = 0x40047464
constant TIOCGWINSZ (line 2467) | TIOCGWINSZ = 0x40087468
constant TIOCINQ (line 2468) | TIOCINQ = 0x4004667f
constant TIOCLINUX (line 2469) | TIOCLINUX = 0x541c
constant TIOCMBIC (line 2470) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 2471) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 2472) | TIOCMGET = 0x4004746a
constant TIOCMIWAIT (line 2473) | TIOCMIWAIT = 0x545c
constant TIOCMSET (line 2474) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 2475) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 2476) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 2477) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 2478) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 2479) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 2480) | TIOCM_LE = 0x1
constant TIOCM_RI (line 2481) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 2482) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 2483) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 2484) | TIOCM_SR = 0x10
constant TIOCM_ST (line 2485) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 2486) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 2487) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 2488) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 2489) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 2490) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 2491) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 2492) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 2493) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 2494) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 2495) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 2496) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 2497) | TIOCPKT_STOP = 0x4
constant TIOCSBRK (line 2498) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 2499) | TIOCSCTTY = 0x20007484
constant TIOCSERCONFIG (line 2500) | TIOCSERCONFIG = 0x5453
constant TIOCSERGETLSR (line 2501) | TIOCSERGETLSR = 0x5459
constant TIOCSERGETMULTI (line 2502) | TIOCSERGETMULTI = 0x545a
constant TIOCSERGSTRUCT (line 2503) | TIOCSERGSTRUCT = 0x5458
constant TIOCSERGWILD (line 2504) | TIOCSERGWILD = 0x5454
constant TIOCSERSETMULTI (line 2505) | TIOCSERSETMULTI = 0x545b
constant TIOCSERSWILD (line 2506) | TIOCSERSWILD = 0x5455
constant TIOCSETD (line 2507) | TIOCSETD = 0x80047401
constant TIOCSIG (line 2508) | TIOCSIG = 0x80047488
constant TIOCSISO7816 (line 2509) | TIOCSISO7816 = 0xc0285444
constant TIOCSLCKTRMIOS (line 2510) | TIOCSLCKTRMIOS = 0x5457
constant TIOCSPGRP (line 2511) | TIOCSPGRP = 0x80047482
constant TIOCSPTLCK (line 2512) | TIOCSPTLCK = 0x80047487
constant TIOCSRS485 (line 2513) | TIOCSRS485 = 0xc0205442
constant TIOCSSERIAL (line 2514) | TIOCSSERIAL = 0x541f
constant TIOCSSOFTCAR (line 2515) | TIOCSSOFTCAR = 0x80047465
constant TIOCSTART (line 2516) | TIOCSTART = 0x2000746e
constant TIOCSTI (line 2517) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 2518) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 2519) | TIOCSWINSZ = 0x80087467
constant TIOCVHANGUP (line 2520) | TIOCVHANGUP = 0x20005437
constant TIPC_ADDR_ID (line 2521) | TIPC_ADDR_ID = 0x3
constant TIPC_ADDR_MCAST (line 2522) | TIPC_ADDR_MCAST = 0x1
constant TIPC_ADDR_NAME (line 2523) | TIPC_ADDR_NAME = 0x2
constant TIPC_ADDR_NAMESEQ (line 2524) | TIPC_ADDR_NAMESEQ = 0x1
constant TIPC_CFG_SRV (line 2525) | TIPC_CFG_SRV = 0x0
constant TIPC_CLUSTER_BITS (line 2526) | TIPC_CLUSTER_BITS = 0xc
constant TIPC_CLUSTER_MASK (line 2527) | TIPC_CLUSTER_MASK = 0xfff000
constant TIPC_CLUSTER_OFFSET (line 2528) | TIPC_CLUSTER_OFFSET = 0xc
constant TIPC_CLUSTER_SIZE (line 2529) | TIPC_CLUSTER_SIZE = 0xfff
constant TIPC_CONN_SHUTDOWN (line 2530) | TIPC_CONN_SHUTDOWN = 0x5
constant TIPC_CONN_TIMEOUT (line 2531) | TIPC_CONN_TIMEOUT = 0x82
constant TIPC_CRITICAL_IMPORTANCE (line 2532) | TIPC_CRITICAL_IMPORTANCE = 0x3
constant TIPC_DESTNAME (line 2533) | TIPC_DESTNAME = 0x3
constant TIPC_DEST_DROPPABLE (line 2534) | TIPC_DEST_DROPPABLE = 0x81
constant TIPC_ERRINFO (line 2535) | TIPC_ERRINFO = 0x1
constant TIPC_ERR_NO_NAME (line 2536) | TIPC_ERR_NO_NAME = 0x1
constant TIPC_ERR_NO_NODE (line 2537) | TIPC_ERR_NO_NODE = 0x3
constant TIPC_ERR_NO_PORT (line 2538) | TIPC_ERR_NO_PORT = 0x2
constant TIPC_ERR_OVERLOAD (line 2539) | TIPC_ERR_OVERLOAD = 0x4
constant TIPC_GROUP_JOIN (line 2540) | TIPC_GROUP_JOIN = 0x87
constant TIPC_GROUP_LEAVE (line 2541) | TIPC_GROUP_LEAVE = 0x88
constant TIPC_GROUP_LOOPBACK (line 2542) | TIPC_GROUP_LOOPBACK = 0x1
constant TIPC_GROUP_MEMBER_EVTS (line 2543) | TIPC_GROUP_MEMBER_EVTS = 0x2
constant TIPC_HIGH_IMPORTANCE (line 2544) | TIPC_HIGH_IMPORTANCE = 0x2
constant TIPC_IMPORTANCE (line 2545) | TIPC_IMPORTANCE = 0x7f
constant TIPC_LINK_STATE (line 2546) | TIPC_LINK_STATE = 0x2
constant TIPC_LOW_IMPORTANCE (line 2547) | TIPC_LOW_IMPORTANCE = 0x0
constant TIPC_MAX_BEARER_NAME (line 2548) | TIPC_MAX_BEARER_NAME = 0x20
constant TIPC_MAX_IF_NAME (line 2549) | TIPC_MAX_IF_NAME = 0x10
constant TIPC_MAX_LINK_NAME (line 2550) | TIPC_MAX_LINK_NAME = 0x44
constant TIPC_MAX_MEDIA_NAME (line 2551) | TIPC_MAX_MEDIA_NAME = 0x10
constant TIPC_MAX_USER_MSG_SIZE (line 2552) | TIPC_MAX_USER_MSG_SIZE = 0x101d0
constant TIPC_MCAST_BROADCAST (line 2553) | TIPC_MCAST_BROADCAST = 0x85
constant TIPC_MCAST_REPLICAST (line 2554) | TIPC_MCAST_REPLICAST = 0x86
constant TIPC_MEDIUM_IMPORTANCE (line 2555) | TIPC_MEDIUM_IMPORTANCE = 0x1
constant TIPC_NODEID_LEN (line 2556) | TIPC_NODEID_LEN = 0x10
constant TIPC_NODE_BITS (line 2557) | TIPC_NODE_BITS = 0xc
constant TIPC_NODE_MASK (line 2558) | TIPC_NODE_MASK = 0xfff
constant TIPC_NODE_OFFSET (line 2559) | TIPC_NODE_OFFSET = 0x0
constant TIPC_NODE_RECVQ_DEPTH (line 2560) | TIPC_NODE_RECVQ_DEPTH = 0x83
constant TIPC_NODE_SIZE (line 2561) | TIPC_NODE_SIZE = 0xfff
constant TIPC_NODE_STATE (line 2562) | TIPC_NODE_STATE = 0x0
constant TIPC_OK (line 2563) | TIPC_OK = 0x0
constant TIPC_PUBLISHED (line 2564) | TIPC_PUBLISHED = 0x1
constant TIPC_RESERVED_TYPES (line 2565) | TIPC_RESERVED_TYPES = 0x40
constant TIPC_RETDATA (line 2566) | TIPC_RETDATA = 0x2
constant TIPC_SERVICE_ADDR (line 2567) | TIPC_SERVICE_ADDR = 0x2
constant TIPC_SERVICE_RANGE (line 2568) | TIPC_SERVICE_RANGE = 0x1
constant TIPC_SOCKET_ADDR (line 2569) | TIPC_SOCKET_ADDR = 0x3
constant TIPC_SOCK_RECVQ_DEPTH (line 2570) | TIPC_SOCK_RECVQ_DEPTH = 0x84
constant TIPC_SOCK_RECVQ_USED (line 2571) | TIPC_SOCK_RECVQ_USED = 0x89
constant TIPC_SRC_DROPPABLE (line 2572) | TIPC_SRC_DROPPABLE = 0x80
constant TIPC_SUBSCR_TIMEOUT (line 2573) | TIPC_SUBSCR_TIMEOUT = 0x3
constant TIPC_SUB_CANCEL (line 2574) | TIPC_SUB_CANCEL = 0x4
constant TIPC_SUB_PORTS (line 2575) | TIPC_SUB_PORTS = 0x1
constant TIPC_SUB_SERVICE (line 2576) | TIPC_SUB_SERVICE = 0x2
constant TIPC_TOP_SRV (line 2577) | TIPC_TOP_SRV = 0x1
constant TIPC_WAIT_FOREVER (line 2578) | TIPC_WAIT_FOREVER = 0xffffffff
constant TIPC_WITHDRAWN (line 2579) | TIPC_WITHDRAWN = 0x2
constant TIPC_ZONE_BITS (line 2580) | TIPC_ZONE_BITS = 0x8
constant TIPC_ZONE_CLUSTER_MASK (line 2581) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000
constant TIPC_ZONE_MASK (line 2582) | TIPC_ZONE_MASK = 0xff000000
constant TIPC_ZONE_OFFSET (line 2583) | TIPC_ZONE_OFFSET = 0x18
constant TIPC_ZONE_SCOPE (line 2584) | TIPC_ZONE_SCOPE = 0x1
constant TIPC_ZONE_SIZE (line 2585) | TIPC_ZONE_SIZE = 0xff
constant TMPFS_MAGIC (line 2586) | TMPFS_MAGIC = 0x1021994
constant TOSTOP (line 2587) | TOSTOP = 0x100
constant TPACKET_ALIGNMENT (line 2588) | TPACKET_ALIGNMENT = 0x10
constant TPACKET_HDRLEN (line 2589) | TPACKET_HDRLEN = 0x34
constant TP_STATUS_AVAILABLE (line 2590) | TP_STATUS_AVAILABLE = 0x0
constant TP_STATUS_BLK_TMO (line 2591) | TP_STATUS_BLK_TMO = 0x20
constant TP_STATUS_COPY (line 2592) | TP_STATUS_COPY = 0x2
constant TP_STATUS_CSUMNOTREADY (line 2593) | TP_STATUS_CSUMNOTREADY = 0x8
constant TP_STATUS_CSUM_VALID (line 2594) | TP_STATUS_CSUM_VALID = 0x80
constant TP_STATUS_KERNEL (line 2595) | TP_STATUS_KERNEL = 0x0
constant TP_STATUS_LOSING (line 2596) | TP_STATUS_LOSING = 0x4
constant TP_STATUS_SENDING (line 2597) | TP_STATUS_SENDING = 0x2
constant TP_STATUS_SEND_REQUEST (line 2598) | TP_STATUS_SEND_REQUEST = 0x1
constant TP_STATUS_TS_RAW_HARDWARE (line 2599) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000
constant TP_STATUS_TS_SOFTWARE (line 2600) | TP_STATUS_TS_SOFTWARE = 0x20000000
constant TP_STATUS_TS_SYS_HARDWARE (line 2601) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000
constant TP_STATUS_USER (line 2602) | TP_STATUS_USER = 0x1
constant TP_STATUS_VLAN_TPID_VALID (line 2603) | TP_STATUS_VLAN_TPID_VALID = 0x40
constant TP_STATUS_VLAN_VALID (line 2604) | TP_STATUS_VLAN_VALID = 0x10
constant TP_STATUS_WRONG_FORMAT (line 2605) | TP_STATUS_WRONG_FORMAT = 0x4
constant TRACEFS_MAGIC (line 2606) | TRACEFS_MAGIC = 0x74726163
constant TS_COMM_LEN (line 2607) | TS_COMM_LEN = 0x20
constant TUNATTACHFILTER (line 2608) | TUNATTACHFILTER = 0x801054d5
constant TUNDETACHFILTER (line 2609) | TUNDETACHFILTER = 0x801054d6
constant TUNGETDEVNETNS (line 2610) | TUNGETDEVNETNS = 0x200054e3
constant TUNGETFEATURES (line 2611) | TUNGETFEATURES = 0x400454cf
constant TUNGETFILTER (line 2612) | TUNGETFILTER = 0x401054db
constant TUNGETIFF (line 2613) | TUNGETIFF = 0x400454d2
constant TUNGETSNDBUF (line 2614) | TUNGETSNDBUF = 0x400454d3
constant TUNGETVNETBE (line 2615) | TUNGETVNETBE = 0x400454df
constant TUNGETVNETHDRSZ (line 2616) | TUNGETVNETHDRSZ = 0x400454d7
constant TUNGETVNETLE (line 2617) | TUNGETVNETLE = 0x400454dd
constant TUNSETCARRIER (line 2618) | TUNSETCARRIER = 0x800454e2
constant TUNSETDEBUG (line 2619) | TUNSETDEBUG = 0x800454c9
constant TUNSETFILTEREBPF (line 2620) | TUNSETFILTEREBPF = 0x400454e1
constant TUNSETGROUP (line 2621) | TUNSETGROUP = 0x800454ce
constant TUNSETIFF (line 2622) | TUNSETIFF = 0x800454ca
constant TUNSETIFINDEX (line 2623) | TUNSETIFINDEX = 0x800454da
constant TUNSETLINK (line 2624) | TUNSETLINK = 0x800454cd
constant TUNSETNOCSUM (line 2625) | TUNSETNOCSUM = 0x800454c8
constant TUNSETOFFLOAD (line 2626) | TUNSETOFFLOAD = 0x800454d0
constant TUNSETOWNER (line 2627) | TUNSETOWNER = 0x800454cc
constant TUNSETPERSIST (line 2628) | TUNSETPERSIST = 0x800454cb
constant TUNSETQUEUE (line 2629) | TUNSETQUEUE = 0x800454d9
constant TUNSETSNDBUF (line 2630) | TUNSETSNDBUF = 0x800454d4
constant TUNSETSTEERINGEBPF (line 2631) | TUNSETSTEERINGEBPF = 0x400454e0
constant TUNSETTXFILTER (line 2632) | TUNSETTXFILTER = 0x800454d1
constant TUNSETVNETBE (line 2633) | TUNSETVNETBE = 0x800454de
constant TUNSETVNETHDRSZ (line 2634) | TUNSETVNETHDRSZ = 0x800454d8
constant TUNSETVNETLE (line 2635) | TUNSETVNETLE = 0x800454dc
constant UBI_IOCATT (line 2636) | UBI_IOCATT = 0x80186f40
constant UBI_IOCDET (line 2637) | UBI_IOCDET = 0x80046f41
constant UBI_IOCEBCH (line 2638) | UBI_IOCEBCH = 0x80044f02
constant UBI_IOCEBER (line 2639) | UBI_IOCEBER = 0x80044f01
constant UBI_IOCEBISMAP (line 2640) | UBI_IOCEBISMAP = 0x40044f05
constant UBI_IOCEBMAP (line 2641) | UBI_IOCEBMAP = 0x80084f03
constant UBI_IOCEBUNMAP (line 2642) | UBI_IOCEBUNMAP = 0x80044f04
constant UBI_IOCMKVOL (line 2643) | UBI_IOCMKVOL = 0x80986f00
constant UBI_IOCRMVOL (line 2644) | UBI_IOCRMVOL = 0x80046f01
constant UBI_IOCRNVOL (line 2645) | UBI_IOCRNVOL = 0x91106f03
constant UBI_IOCRPEB (line 2646) | UBI_IOCRPEB = 0x80046f04
constant UBI_IOCRSVOL (line 2647) | UBI_IOCRSVOL = 0x800c6f02
constant UBI_IOCSETVOLPROP (line 2648) | UBI_IOCSETVOLPROP = 0x80104f06
constant UBI_IOCSPEB (line 2649) | UBI_IOCSPEB = 0x80046f05
constant UBI_IOCVOLCRBLK (line 2650) | UBI_IOCVOLCRBLK = 0x80804f07
constant UBI_IOCVOLRMBLK (line 2651) | UBI_IOCVOLRMBLK = 0x20004f08
constant UBI_IOCVOLUP (line 2652) | UBI_IOCVOLUP = 0x80084f00
constant UDF_SUPER_MAGIC (line 2653) | UDF_SUPER_MAGIC = 0x15013346
constant UMOUNT_NOFOLLOW (line 2654) | UMOUNT_NOFOLLOW = 0x8
constant USBDEVICE_SUPER_MAGIC (line 2655) | USBDEVICE_SUPER_MAGIC = 0x9fa2
constant UTIME_NOW (line 2656) | UTIME_NOW = 0x3fffffff
constant UTIME_OMIT (line 2657) | UTIME_OMIT = 0x3ffffffe
constant V9FS_MAGIC (line 2658) | V9FS_MAGIC = 0x1021997
constant VDISCARD (line 2659) | VDISCARD = 0xd
constant VEOF (line 2660) | VEOF = 0x4
constant VEOL (line 2661) | VEOL = 0xb
constant VEOL2 (line 2662) | VEOL2 = 0x10
constant VERASE (line 2663) | VERASE = 0x2
constant VINTR (line 2664) | VINTR = 0x0
constant VKILL (line 2665) | VKILL = 0x3
constant VLNEXT (line 2666) | VLNEXT = 0xf
constant VMADDR_CID_ANY (line 2667) | VMADDR_CID_ANY = 0xffffffff
constant VMADDR_CID_HOST (line 2668) | VMADDR_CID_HOST = 0x2
constant VMADDR_CID_HYPERVISOR (line 2669) | VMADDR_CID_HYPERVISOR = 0x0
constant VMADDR_CID_RESERVED (line 2670) | VMADDR_CID_RESERVED = 0x1
constant VMADDR_PORT_ANY (line 2671) | VMADDR_PORT_ANY = 0xffffffff
constant VMIN (line 2672) | VMIN = 0x6
constant VM_SOCKETS_INVALID_VERSION (line 2673) | VM_SOCKETS_INVALID_VERSION = 0xffffffff
constant VQUIT (line 2674) | VQUIT = 0x1
constant VREPRINT (line 2675) | VREPRINT = 0xc
constant VSTART (line 2676) | VSTART = 0x8
constant VSTOP (line 2677) | VSTOP = 0x9
constant VSUSP (line 2678) | VSUSP = 0xa
constant VSWTC (line 2679) | VSWTC = 0x7
constant VT0 (line 2680) | VT0 = 0x0
constant VT1 (line 2681) | VT1 = 0x4000
constant VTDLY (line 2682) | VTDLY = 0x4000
constant VTIME (line 2683) | VTIME = 0x5
constant VWERASE (line 2684) | VWERASE = 0xe
constant WALL (line 2685) | WALL = 0x40000000
constant WCLONE (line 2686) | WCLONE = 0x80000000
constant WCONTINUED (line 2687) | WCONTINUED = 0x8
constant WDIOC_GETBOOTSTATUS (line 2688) | WDIOC_GETBOOTSTATUS = 0x40045702
constant WDIOC_GETPRETIMEOUT (line 2689) | WDIOC_GETPRETIMEOUT = 0x40045709
constant WDIOC_GETSTATUS (line 2690) | WDIOC_GETSTATUS = 0x40045701
constant WDIOC_GETSUPPORT (line 2691) | WDIOC_GETSUPPORT = 0x40285700
constant WDIOC_GETTEMP (line 2692) | WDIOC_GETTEMP = 0x40045703
constant WDIOC_GETTIMELEFT (line 2693) | WDIOC_GETTIMELEFT = 0x4004570a
constant WDIOC_GETTIMEOUT (line 2694) | WDIOC_GETTIMEOUT = 0x40045707
constant WDIOC_KEEPALIVE (line 2695) | WDIOC_KEEPALIVE = 0x40045705
constant WDIOC_SETOPTIONS (line 2696) | WDIOC_SETOPTIONS = 0x40045704
constant WDIOC_SETPRETIMEOUT (line 2697) | WDIOC_SETPRETIMEOUT = 0xc0045708
constant WDIOC_SETTIMEOUT (line 2698) | WDIOC_SETTIMEOUT = 0xc0045706
constant WEXITED (line 2699) | WEXITED = 0x4
constant WIN_ACKMEDIACHANGE (line 2700) | WIN_ACKMEDIACHANGE = 0xdb
constant WIN_CHECKPOWERMODE1 (line 2701) | WIN_CHECKPOWERMODE1 = 0xe5
constant WIN_CHECKPOWERMODE2 (line 2702) | WIN_CHECKPOWERMODE2 = 0x98
constant WIN_DEVICE_RESET (line 2703) | WIN_DEVICE_RESET = 0x8
constant WIN_DIAGNOSE (line 2704) | WIN_DIAGNOSE = 0x90
constant WIN_DOORLOCK (line 2705) | WIN_DOORLOCK = 0xde
constant WIN_DOORUNLOCK (line 2706) | WIN_DOORUNLOCK = 0xdf
constant WIN_DOWNLOAD_MICROCODE (line 2707) | WIN_DOWNLOAD_MICROCODE = 0x92
constant WIN_FLUSH_CACHE (line 2708) | WIN_FLUSH_CACHE = 0xe7
constant WIN_FLUSH_CACHE_EXT (line 2709) | WIN_FLUSH_CACHE_EXT = 0xea
constant WIN_FORMAT (line 2710) | WIN_FORMAT = 0x50
constant WIN_GETMEDIASTATUS (line 2711) | WIN_GETMEDIASTATUS = 0xda
constant WIN_IDENTIFY (line 2712) | WIN_IDENTIFY = 0xec
constant WIN_IDENTIFY_DMA (line 2713) | WIN_IDENTIFY_DMA = 0xee
constant WIN_IDLEIMMEDIATE (line 2714) | WIN_IDLEIMMEDIATE = 0xe1
constant WIN_INIT (line 2715) | WIN_INIT = 0x60
constant WIN_MEDIAEJECT (line 2716) | WIN_MEDIAEJECT = 0xed
constant WIN_MULTREAD (line 2717) | WIN_MULTREAD = 0xc4
constant WIN_MULTREAD_EXT (line 2718) | WIN_MULTREAD_EXT = 0x29
constant WIN_MULTWRITE (line 2719) | WIN_MULTWRITE = 0xc5
constant WIN_MULTWRITE_EXT (line 2720) | WIN_MULTWRITE_EXT = 0x39
constant WIN_NOP (line 2721) | WIN_NOP = 0x0
constant WIN_PACKETCMD (line 2722) | WIN_PACKETCMD = 0xa0
constant WIN_PIDENTIFY (line 2723) | WIN_PIDENTIFY = 0xa1
constant WIN_POSTBOOT (line 2724) | WIN_POSTBOOT = 0xdc
constant WIN_PREBOOT (line 2725) | WIN_PREBOOT = 0xdd
constant WIN_QUEUED_SERVICE (line 2726) | WIN_QUEUED_SERVICE = 0xa2
constant WIN_READ (line 2727) | WIN_READ = 0x20
constant WIN_READDMA (line 2728) | WIN_READDMA = 0xc8
constant WIN_READDMA_EXT (line 2729) | WIN_READDMA_EXT = 0x25
constant WIN_READDMA_ONCE (line 2730) | WIN_READDMA_ONCE = 0xc9
constant WIN_READDMA_QUEUED (line 2731) | WIN_READDMA_QUEUED = 0xc7
constant WIN_READDMA_QUEUED_EXT (line 2732) | WIN_READDMA_QUEUED_EXT = 0x26
constant WIN_READ_BUFFER (line 2733) | WIN_READ_BUFFER = 0xe4
constant WIN_READ_EXT (line 2734) | WIN_READ_EXT = 0x24
constant WIN_READ_LONG (line 2735) | WIN_READ_LONG = 0x22
constant WIN_READ_LONG_ONCE (line 2736) | WIN_READ_LONG_ONCE = 0x23
constant WIN_READ_NATIVE_MAX (line 2737) | WIN_READ_NATIVE_MAX = 0xf8
constant WIN_READ_NATIVE_MAX_EXT (line 2738) | WIN_READ_NATIVE_MAX_EXT = 0x27
constant WIN_READ_ONCE (line 2739) | WIN_READ_ONCE = 0x21
constant WIN_RECAL (line 2740) | WIN_RECAL = 0x10
constant WIN_RESTORE (line 2741) | WIN_RESTORE = 0x10
constant WIN_SECURITY_DISABLE (line 2742) | WIN_SECURITY_DISABLE = 0xf6
constant WIN_SECURITY_ERASE_PREPARE (line 2743) | WIN_SECURITY_ERASE_PREPARE = 0xf3
constant WIN_SECURITY_ERASE_UNIT (line 2744) | WIN_SECURITY_ERASE_UNIT = 0xf4
constant WIN_SECURITY_FREEZE_LOCK (line 2745) | WIN_SECURITY_FREEZE_LOCK = 0xf5
constant WIN_SECURITY_SET_PASS (line 2746) | WIN_SECURITY_SET_PASS = 0xf1
constant WIN_SECURITY_UNLOCK (line 2747) | WIN_SECURITY_UNLOCK = 0xf2
constant WIN_SEEK (line 2748) | WIN_SEEK = 0x70
constant WIN_SETFEATURES (line 2749) | WIN_SETFEATURES = 0xef
constant WIN_SETIDLE1 (line 2750) | WIN_SETIDLE1 = 0xe3
constant WIN_SETIDLE2 (line 2751) | WIN_SETIDLE2 = 0x97
constant WIN_SETMULT (line 2752) | WIN_SETMULT = 0xc6
constant WIN_SET_MAX (line 2753) | WIN_SET_MAX = 0xf9
constant WIN_SET_MAX_EXT (line 2754) | WIN_SET_MAX_EXT = 0x37
constant WIN_SLEEPNOW1 (line 2755) | WIN_SLEEPNOW1 = 0xe6
constant WIN_SLEEPNOW2 (line 2756) | WIN_SLEEPNOW2 = 0x99
constant WIN_SMART (line 2757) | WIN_SMART = 0xb0
constant WIN_SPECIFY (line 2758) | WIN_SPECIFY = 0x91
constant WIN_SRST (line 2759) | WIN_SRST = 0x8
constant WIN_STANDBY (line 2760) | WIN_STANDBY = 0xe2
constant WIN_STANDBY2 (line 2761) | WIN_STANDBY2 = 0x96
constant WIN_STANDBYNOW1 (line 2762) | WIN_STANDBYNOW1 = 0xe0
constant WIN_STANDBYNOW2 (line 2763) | WIN_STANDBYNOW2 = 0x94
constant WIN_VERIFY (line 2764) | WIN_VERIFY = 0x40
constant WIN_VERIFY_EXT (line 2765) | WIN_VERIFY_EXT = 0x42
constant WIN_VERIFY_ONCE (line 2766) | WIN_VERIFY_ONCE = 0x41
constant WIN_WRITE (line 2767) | WIN_WRITE = 0x30
constant WIN_WRITEDMA (line 2768) | WIN_WRITEDMA = 0xca
constant WIN_WRITEDMA_EXT (line 2769) | WIN_WRITEDMA_EXT = 0x35
constant WIN_WRITEDMA_ONCE (line 2770) | WIN_WRITEDMA_ONCE = 0xcb
constant WIN_WRITEDMA_QUEUED (line 2771) | WIN_WRITEDMA_QUEUED = 0xcc
constant WIN_WRITEDMA_QUEUED_EXT (line 2772) | WIN_WRITEDMA_QUEUED_EXT = 0x36
constant WIN_WRITE_BUFFER (line 2773) | WIN_WRITE_BUFFER = 0xe8
constant WIN_WRITE_EXT (line 2774) | WIN_WRITE_EXT = 0x34
constant WIN_WRITE_LONG (line 2775) | WIN_WRITE_LONG = 0x32
constant WIN_WRITE_LONG_ONCE (line 2776) | WIN_WRITE_LONG_ONCE = 0x33
constant WIN_WRITE_ONCE (line 2777) | WIN_WRITE_ONCE = 0x31
constant WIN_WRITE_SAME (line 2778) | WIN_WRITE_SAME = 0xe9
constant WIN_WRITE_VERIFY (line 2779) | WIN_WRITE_VERIFY = 0x3c
constant WNOHANG (line 2780) | WNOHANG = 0x1
constant WNOTHREAD (line 2781) | WNOTHREAD = 0x20000000
constant WNOWAIT (line 2782) | WNOWAIT = 0x1000000
constant WORDSIZE (line 2783) | WORDSIZE = 0x40
constant WSTOPPED (line 2784) | WSTOPPED = 0x2
constant WUNTRACED (line 2785) | WUNTRACED = 0x2
constant XATTR_CREATE (line 2786) | XATTR_CREATE = 0x1
constant XATTR_REPLACE (line 2787) | XATTR_REPLACE = 0x2
constant XCASE (line 2788) | XCASE = 0x4
constant XDP_COPY (line 2789) | XDP_COPY = 0x2
constant XDP_FLAGS_DRV_MODE (line 2790) | XDP_FLAGS_DRV_MODE = 0x4
constant XDP_FLAGS_HW_MODE (line 2791) | XDP_FLAGS_HW_MODE = 0x8
constant XDP_FLAGS_MASK (line 2792) | XDP_FLAGS_MASK = 0xf
constant XDP_FLAGS_MODES (line 2793) | XDP_FLAGS_MODES = 0xe
constant XDP_FLAGS_SKB_MODE (line 2794) | XDP_FLAGS_SKB_MODE = 0x2
constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2795) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1
constant XDP_MMAP_OFFSETS (line 2796) | XDP_MMAP_OFFSETS = 0x1
constant XDP_OPTIONS (line 2797) | XDP_OPTIONS = 0x8
constant XDP_OPTIONS_ZEROCOPY (line 2798) | XDP_OPTIONS_ZEROCOPY = 0x1
constant XDP_PACKET_HEADROOM (line 2799) | XDP_PACKET_HEADROOM = 0x100
constant XDP_PGOFF_RX_RING (line 2800) | XDP_PGOFF_RX_RING = 0x0
constant XDP_PGOFF_TX_RING (line 2801) | XDP_PGOFF_TX_RING = 0x80000000
constant XDP_RX_RING (line 2802) | XDP_RX_RING = 0x2
constant XDP_SHARED_UMEM (line 2803) | XDP_SHARED_UMEM = 0x1
constant XDP_STATISTICS (line 2804) | XDP_STATISTICS = 0x7
constant XDP_TX_RING (line 2805) | XDP_TX_RING = 0x3
constant XDP_UMEM_COMPLETION_RING (line 2806) | XDP_UMEM_COMPLETION_RING = 0x6
constant XDP_UMEM_FILL_RING (line 2807) | XDP_UMEM_FILL_RING = 0x5
constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2808) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000
constant XDP_UMEM_PGOFF_FILL_RING (line 2809) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000
constant XDP_UMEM_REG (line 2810) | XDP_UMEM_REG = 0x4
constant XDP_ZEROCOPY (line 2811) | XDP_ZEROCOPY = 0x4
constant XENFS_SUPER_MAGIC (line 2812) | XENFS_SUPER_MAGIC = 0xabba1974
constant XFS_SUPER_MAGIC (line 2813) | XFS_SUPER_MAGIC = 0x58465342
constant XTABS (line 2814) | XTABS = 0x1800
constant Z3FOLD_MAGIC (line 2815) | Z3FOLD_MAGIC = 0x33
constant ZSMALLOC_MAGIC (line 2816) | ZSMALLOC_MAGIC = 0x58295829
constant __TIOCFLUSH (line 2817) | __TIOCFLUSH = 0x80047410
constant E2BIG (line 2822) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 2823) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 2824) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 2825) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EADV (line 2826) | EADV = syscall.Errno(0x53)
constant EAFNOSUPPORT (line 2827) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 2828) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 2829) | EALREADY = syscall.Errno(0x25)
constant EBADE (line 2830) | EBADE = syscall.Errno(0x66)
constant EBADF (line 2831) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 2832) | EBADFD = syscall.Errno(0x5d)
constant EBADMSG (line 2833) | EBADMSG = syscall.Errno(0x4c)
constant EBADR (line 2834) | EBADR = syscall.Errno(0x67)
constant EBADRQC (line 2835) | EBADRQC = syscall.Errno(0x6a)
constant EBADSLT (line 2836) | EBADSLT = syscall.Errno(0x6b)
constant EBFONT (line 2837) | EBFONT = syscall.Errno(0x6d)
constant EBUSY (line 2838) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 2839) | ECANCELED = syscall.Errno(0x7f)
constant ECHILD (line 2840) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 2841) | ECHRNG = syscall.Errno(0x5e)
constant ECOMM (line 2842) | ECOMM = syscall.Errno(0x55)
constant ECONNABORTED (line 2843) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 2844) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 2845) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 2846) | EDEADLK = syscall.Errno(0x4e)
constant EDEADLOCK (line 2847) | EDEADLOCK = syscall.Errno(0x6c)
constant EDESTADDRREQ (line 2848) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 2849) | EDOM = syscall.Errno(0x21)
constant EDOTDOT (line 2850) | EDOTDOT = syscall.Errno(0x58)
constant EDQUOT (line 2851) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 2852) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 2853) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 2854) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 2855) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 2856) | EHOSTUNREACH = syscall.Errno(0x41)
constant EHWPOISON (line 2857) | EHWPOISON = syscall.Errno(0x87)
constant EIDRM (line 2858) | EIDRM = syscall.Errno(0x4d)
constant EILSEQ (line 2859) | EILSEQ = syscall.Errno(0x7a)
constant EINPROGRESS (line 2860) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 2861) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 2862) | EINVAL = syscall.Errno(0x16)
constant EIO (line 2863) | EIO = syscall.Errno(0x5)
constant EISCONN (line 2864) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 2865) | EISDIR = syscall.Errno(0x15)
constant EISNAM (line 2866) | EISNAM = syscall.Errno(0x78)
constant EKEYEXPIRED (line 2867) | EKEYEXPIRED = syscall.Errno(0x81)
constant EKEYREJECTED (line 2868) | EKEYREJECTED = syscall.Errno(0x83)
constant EKEYREVOKED (line 2869) | EKEYREVOKED = syscall.Errno(0x82)
constant EL2HLT (line 2870) | EL2HLT = syscall.Errno(0x65)
constant EL2NSYNC (line 2871) | EL2NSYNC = syscall.Errno(0x5f)
constant EL3HLT (line 2872) | EL3HLT = syscall.Errno(0x60)
constant EL3RST (line 2873) | EL3RST = syscall.Errno(0x61)
constant ELIBACC (line 2874) | ELIBACC = syscall.Errno(0x72)
constant ELIBBAD (line 2875) | ELIBBAD = syscall.Errno(0x70)
constant ELIBEXEC (line 2876) | ELIBEXEC = syscall.Errno(0x6e)
constant ELIBMAX (line 2877) | ELIBMAX = syscall.Errno(0x7b)
constant ELIBSCN (line 2878) | ELIBSCN = syscall.Errno(0x7c)
constant ELNRNG (line 2879) | ELNRNG = syscall.Errno(0x62)
constant ELOOP (line 2880) | ELOOP = syscall.Errno(0x3e)
constant EMEDIUMTYPE (line 2881) | EMEDIUMTYPE = syscall.Errno(0x7e)
constant EMFILE (line 2882) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 2883) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 2884) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 2885) | EMULTIHOP = syscall.Errno(0x57)
constant ENAMETOOLONG (line 2886) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENAVAIL (line 2887) | ENAVAIL = syscall.Errno(0x77)
constant ENETDOWN (line 2888) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 2889) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 2890) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 2891) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 2892) | ENOANO = syscall.Errno(0x69)
constant ENOBUFS (line 2893) | ENOBUFS = syscall.Errno(0x37)
constant ENOCSI (line 2894) | ENOCSI = syscall.Errno(0x64)
constant ENODATA (line 2895) | ENODATA = syscall.Errno(0x6f)
constant ENODEV (line 2896) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 2897) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 2898) | ENOEXEC = syscall.Errno(0x8)
constant ENOKEY (line 2899) | ENOKEY = syscall.Errno(0x80)
constant ENOLCK (line 2900) | ENOLCK = syscall.Errno(0x4f)
constant ENOLINK (line 2901) | ENOLINK = syscall.Errno(0x52)
constant ENOMEDIUM (line 2902) | ENOMEDIUM = syscall.Errno(0x7d)
constant ENOMEM (line 2903) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 2904) | ENOMSG = syscall.Errno(0x4b)
constant ENONET (line 2905) | ENONET = syscall.Errno(0x50)
constant ENOPKG (line 2906) | ENOPKG = syscall.Errno(0x71)
constant ENOPROTOOPT (line 2907) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 2908) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 2909) | ENOSR = syscall.Errno(0x4a)
constant ENOSTR (line 2910) | ENOSTR = syscall.Errno(0x48)
constant ENOSYS (line 2911) | ENOSYS = syscall.Errno(0x5a)
constant ENOTBLK (line 2912) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 2913) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 2914) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 2915) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTNAM (line 2916) | ENOTNAM = syscall.Errno(0x76)
constant ENOTRECOVERABLE (line 2917) | ENOTRECOVERABLE = syscall.Errno(0x85)
constant ENOTSOCK (line 2918) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 2919) | ENOTSUP = syscall.Errno(0x2d)
constant ENOTTY (line 2920) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 2921) | ENOTUNIQ = syscall.Errno(0x73)
constant ENXIO (line 2922) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 2923) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 2924) | EOVERFLOW = syscall.Errno(0x5c)
constant EOWNERDEAD (line 2925) | EOWNERDEAD = syscall.Errno(0x84)
constant EPERM (line 2926) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 2927) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 2928) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 2929) | EPROCLIM = syscall.Errno(0x43)
constant EPROTO (line 2930) | EPROTO = syscall.Errno(0x56)
constant EPROTONOSUPPORT (line 2931) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 2932) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 2933) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 2934) | EREMCHG = syscall.Errno(0x59)
constant EREMOTE (line 2935) | EREMOTE = syscall.Errno(0x47)
constant EREMOTEIO (line 2936) | EREMOTEIO = syscall.Errno(0x79)
constant ERESTART (line 2937) | ERESTART = syscall.Errno(0x74)
constant ERFKILL (line 2938) | ERFKILL = syscall.Errno(0x86)
constant EROFS (line 2939) | EROFS = syscall.Errno(0x1e)
constant ERREMOTE (line 2940) | ERREMOTE = syscall.Errno(0x51)
constant ESHUTDOWN (line 2941) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 2942) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 2943) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 2944) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 2945) | ESRMNT = syscall.Errno(0x54)
constant ESTALE (line 2946) | ESTALE = syscall.Errno(0x46)
constant ESTRPIPE (line 2947) | ESTRPIPE = syscall.Errno(0x5b)
constant ETIME (line 2948) | ETIME = syscall.Errno(0x49)
constant ETIMEDOUT (line 2949) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 2950) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 2951) | ETXTBSY = syscall.Errno(0x1a)
constant EUCLEAN (line 2952) | EUCLEAN = syscall.Errno(0x75)
constant EUNATCH (line 2953) | EUNATCH = syscall.Errno(0x63)
constant EUSERS (line 2954) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 2955) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 2956) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 2957) | EXFULL = syscall.Errno(0x68)
constant SIGABRT (line 2962) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 2963) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 2964) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 2965) | SIGCHLD = syscall.Signal(0x14)
constant SIGCLD (line 2966) | SIGCLD = syscall.Signal(0x14)
constant SIGCONT (line 2967) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 2968) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 2969) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 2970) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 2971) | SIGILL = syscall.Signal(0x4)
constant SIGINT (line 2972) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 2973) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 2974) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 2975) | SIGKILL = syscall.Signal(0x9)
constant SIGLOST (line 2976) | SIGLOST = syscall.Signal(0x1d)
constant SIGPIPE (line 2977) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 2978) | SIGPOLL = syscall.Signal(0x17)
constant SIGPROF (line 2979) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 2980) | SIGPWR = syscall.Signal(0x1d)
constant SIGQUIT (line 2981) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 2982) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 2983) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 2984) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 2985) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 2986) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 2987) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 2988) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 2989) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 2990) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 2991) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 2992) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 2993) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 2994) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 2995) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 2996) | 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 CRTSCTS (line 162) | CRTSCTS = 0x10000
constant CS5 (line 163) | CS5 = 0x0
constant CS6 (line 164) | CS6 = 0x100
constant CS7 (line 165) | CS7 = 0x200
constant CS8 (line 166) | CS8 = 0x300
constant CSIZE (line 167) | CSIZE = 0x300
constant CSTART (line 168) | CSTART = 0x11
constant CSTATUS (line 169) | CSTATUS = 0x14
constant CSTOP (line 170) | CSTOP = 0x13
constant CSTOPB (line 171) | CSTOPB = 0x400
constant CSUSP (line 172) | CSUSP = 0x1a
constant CTL_HW (line 173) | CTL_HW = 0x6
constant CTL_KERN (line 174) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 175) | CTL_MAXNAME = 0xc
constant CTL_NET (line 176) | CTL_NET = 0x4
constant CTL_QUERY (line 177) | CTL_QUERY = -0x2
constant DIOCBSFLUSH (line 178) | DIOCBSFLUSH = 0x20006478
constant DLT_A429 (line 179) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 180) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 181) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 182) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 183) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 184) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 185) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 186) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 187) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 188) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 189) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 190) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 191) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_HCI_H4 (line 192) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 193) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_CAN20B (line 194) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 195) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 196) | DLT_CHAOS = 0x5
constant DLT_CISCO_IOS (line 197) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 198) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 199) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DECT (line 200) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 201) | DLT_DOCSIS = 0x8f
constant DLT_ECONET (line 202) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 203) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 204) | DLT_EN3MB = 0x2
constant DLT_ENC (line 205) | DLT_ENC = 0x6d
constant DLT_ERF (line 206) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 207) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 208) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 209) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 210) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 211) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 212) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 213) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 214) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 215) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 216) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 217) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 218) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 219) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 220) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 221) | DLT_GSMTAP_UM = 0xd9
constant DLT_HDLC (line 222) | DLT_HDLC = 0x10
constant DLT_HHDLC (line 223) | DLT_HHDLC = 0x79
constant DLT_HIPPI (line 224) | DLT_HIPPI = 0xf
constant DLT_IBM_SN (line 225) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 226) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 227) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 228) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 229) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 230) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 231) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 232) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NONASK_PHY (line 233) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 234) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 235) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPMB (line 236) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 237) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPNET (line 238) | DLT_IPNET = 0xe2
constant DLT_IPV4 (line 239) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 240) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 241) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 242) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 243) | DLT_JUNIPER_ATM2 = 0x87
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_FRELAY (line 247) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 248) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 249) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 250) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 251) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 252) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 253) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 254) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 255) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 256) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 257) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 258) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_ST (line 259) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 260) | DLT_JUNIPER_VP = 0xb7
constant DLT_LAPB_WITH_DIR (line 261) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 262) | DLT_LAPD = 0xcb
constant DLT_LIN (line 263) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 264) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 265) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 266) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_SLL (line 267) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 268) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 269) | DLT_LTALK = 0x72
constant DLT_MFR (line 270) | DLT_MFR = 0xb6
constant DLT_MOST (line 271) | DLT_MOST = 0xd3
constant DLT_MPLS (line 272) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 273) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 274) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 275) | DLT_MTP3 = 0x8d
constant DLT_NULL (line 276) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 277) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 278) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 279) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 280) | DLT_PPI = 0xc0
constant DLT_PPP (line 281) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 282) | DLT_PPP_BSDOS = 0xe
constant DLT_PPP_ETHER (line 283) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 284) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 285) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 286) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PRISM_HEADER (line 287) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 288) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 289) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 290) | DLT_RAW = 0xc
constant DLT_RAWAF_MASK (line 291) | DLT_RAWAF_MASK = 0x2240000
constant DLT_RIO (line 292) | DLT_RIO = 0x7c
constant DLT_SCCP (line 293) | DLT_SCCP = 0x8e
constant DLT_SITA (line 294) | DLT_SITA = 0xc4
constant DLT_SLIP (line 295) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 296) | DLT_SLIP_BSDOS = 0xd
constant DLT_SUNATM (line 297) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 298) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 299) | DLT_TZSP = 0x80
constant DLT_USB (line 300) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 301) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 302) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_WIHART (line 303) | DLT_WIHART = 0xdf
constant DLT_X2E_SERIAL (line 304) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 305) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 306) | DT_BLK = 0x6
constant DT_CHR (line 307) | DT_CHR = 0x2
constant DT_DIR (line 308) | DT_DIR = 0x4
constant DT_FIFO (line 309) | DT_FIFO = 0x1
constant DT_LNK (line 310) | DT_LNK = 0xa
constant DT_REG (line 311) | DT_REG = 0x8
constant DT_SOCK (line 312) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 313) | DT_UNKNOWN = 0x0
constant DT_WHT (line 314) | DT_WHT = 0xe
constant ECHO (line 315) | ECHO = 0x8
constant ECHOCTL (line 316) | ECHOCTL = 0x40
constant ECHOE (line 317) | ECHOE = 0x2
constant ECHOK (line 318) | ECHOK = 0x4
constant ECHOKE (line 319) | ECHOKE = 0x1
constant ECHONL (line 320) | ECHONL = 0x10
constant ECHOPRT (line 321) | ECHOPRT = 0x20
constant EMUL_LINUX (line 322) | EMUL_LINUX = 0x1
constant EMUL_LINUX32 (line 323) | EMUL_LINUX32 = 0x5
constant EMUL_MAXID (line 324) | EMUL_MAXID = 0x6
constant EN_SW_CTL_INF (line 325) | EN_SW_CTL_INF = 0x1000
constant EN_SW_CTL_PREC (line 326) | EN_SW_CTL_PREC = 0x300
constant EN_SW_CTL_ROUND (line 327) | EN_SW_CTL_ROUND = 0xc00
constant EN_SW_DATACHAIN (line 328) | EN_SW_DATACHAIN = 0x80
constant EN_SW_DENORM (line 329) | EN_SW_DENORM = 0x2
constant EN_SW_INVOP (line 330) | EN_SW_INVOP = 0x1
constant EN_SW_OVERFLOW (line 331) | EN_SW_OVERFLOW = 0x8
constant EN_SW_PRECLOSS (line 332) | EN_SW_PRECLOSS = 0x20
constant EN_SW_UNDERFLOW (line 333) | EN_SW_UNDERFLOW = 0x10
constant EN_SW_ZERODIV (line 334) | EN_SW_ZERODIV = 0x4
constant ETHERCAP_JUMBO_MTU (line 335) | ETHERCAP_JUMBO_MTU = 0x4
constant ETHERCAP_VLAN_HWTAGGING (line 336) | ETHERCAP_VLAN_HWTAGGING = 0x2
constant ETHERCAP_VLAN_MTU (line 337) | ETHERCAP_VLAN_MTU = 0x1
constant ETHERMIN (line 338) | ETHERMIN = 0x2e
constant ETHERMTU (line 339) | ETHERMTU = 0x5dc
constant ETHERMTU_JUMBO (line 340) | ETHERMTU_JUMBO = 0x2328
constant ETHERTYPE_8023 (line 341) | ETHERTYPE_8023 = 0x4
constant ETHERTYPE_AARP (line 342) | ETHERTYPE_AARP = 0x80f3
constant ETHERTYPE_ACCTON (line 343) | ETHERTYPE_ACCTON = 0x8390
constant ETHERTYPE_AEONIC (line 344) | ETHERTYPE_AEONIC = 0x8036
constant ETHERTYPE_ALPHA (line 345) | ETHERTYPE_ALPHA = 0x814a
constant ETHERTYPE_AMBER (line 346) | ETHERTYPE_AMBER = 0x6008
constant ETHERTYPE_AMOEBA (line 347) | ETHERTYPE_AMOEBA = 0x8145
constant ETHERTYPE_APOLLO (line 348) | ETHERTYPE_APOLLO = 0x80f7
constant ETHERTYPE_APOLLODOMAIN (line 349) | ETHERTYPE_APOLLODOMAIN = 0x8019
constant ETHERTYPE_APPLETALK (line 350) | ETHERTYPE_APPLETALK = 0x809b
constant ETHERTYPE_APPLITEK (line 351) | ETHERTYPE_APPLITEK = 0x80c7
constant ETHERTYPE_ARGONAUT (line 352) | ETHERTYPE_ARGONAUT = 0x803a
constant ETHERTYPE_ARP (line 353) | ETHERTYPE_ARP = 0x806
constant ETHERTYPE_AT (line 354) | ETHERTYPE_AT = 0x809b
constant ETHERTYPE_ATALK (line 355) | ETHERTYPE_ATALK = 0x809b
constant ETHERTYPE_ATOMIC (line 356) | ETHERTYPE_ATOMIC = 0x86df
constant ETHERTYPE_ATT (line 357) | ETHERTYPE_ATT = 0x8069
constant ETHERTYPE_ATTSTANFORD (line 358) | ETHERTYPE_ATTSTANFORD = 0x8008
constant ETHERTYPE_AUTOPHON (line 359) | ETHERTYPE_AUTOPHON = 0x806a
constant ETHERTYPE_AXIS (line 360) | ETHERTYPE_AXIS = 0x8856
constant ETHERTYPE_BCLOOP (line 361) | ETHERTYPE_BCLOOP = 0x9003
constant ETHERTYPE_BOFL (line 362) | ETHERTYPE_BOFL = 0x8102
constant ETHERTYPE_CABLETRON (line 363) | ETHERTYPE_CABLETRON = 0x7034
constant ETHERTYPE_CHAOS (line 364) | ETHERTYPE_CHAOS = 0x804
constant ETHERTYPE_COMDESIGN (line 365) | ETHERTYPE_COMDESIGN = 0x806c
constant ETHERTYPE_COMPUGRAPHIC (line 366) | ETHERTYPE_COMPUGRAPHIC = 0x806d
constant ETHERTYPE_COUNTERPOINT (line 367) | ETHERTYPE_COUNTERPOINT = 0x8062
constant ETHERTYPE_CRONUS (line 368) | ETHERTYPE_CRONUS = 0x8004
constant ETHERTYPE_CRONUSVLN (line 369) | ETHERTYPE_CRONUSVLN = 0x8003
constant ETHERTYPE_DCA (line 370) | ETHERTYPE_DCA = 0x1234
constant ETHERTYPE_DDE (line 371) | ETHERTYPE_DDE = 0x807b
constant ETHERTYPE_DEBNI (line 372) | ETHERTYPE_DEBNI = 0xaaaa
constant ETHERTYPE_DECAM (line 373) | ETHERTYPE_DECAM = 0x8048
constant ETHERTYPE_DECCUST (line 374) | ETHERTYPE_DECCUST = 0x6006
constant ETHERTYPE_DECDIAG (line 375) | ETHERTYPE_DECDIAG = 0x6005
constant ETHERTYPE_DECDNS (line 376) | ETHERTYPE_DECDNS = 0x803c
constant ETHERTYPE_DECDTS (line 377) | ETHERTYPE_DECDTS = 0x803e
constant ETHERTYPE_DECEXPER (line 378) | ETHERTYPE_DECEXPER = 0x6000
constant ETHERTYPE_DECLAST (line 379) | ETHERTYPE_DECLAST = 0x8041
constant ETHERTYPE_DECLTM (line 380) | ETHERTYPE_DECLTM = 0x803f
constant ETHERTYPE_DECMUMPS (line 381) | ETHERTYPE_DECMUMPS = 0x6009
constant ETHERTYPE_DECNETBIOS (line 382) | ETHERTYPE_DECNETBIOS = 0x8040
constant ETHERTYPE_DELTACON (line 383) | ETHERTYPE_DELTACON = 0x86de
constant ETHERTYPE_DIDDLE (line 384) | ETHERTYPE_DIDDLE = 0x4321
constant ETHERTYPE_DLOG1 (line 385) | ETHERTYPE_DLOG1 = 0x660
constant ETHERTYPE_DLOG2 (line 386) | ETHERTYPE_DLOG2 = 0x661
constant ETHERTYPE_DN (line 387) | ETHERTYPE_DN = 0x6003
constant ETHERTYPE_DOGFIGHT (line 388) | ETHERTYPE_DOGFIGHT = 0x1989
constant ETHERTYPE_DSMD (line 389) | ETHERTYPE_DSMD = 0x8039
constant ETHERTYPE_ECMA (line 390) | ETHERTYPE_ECMA = 0x803
constant ETHERTYPE_ENCRYPT (line 391) | ETHERTYPE_ENCRYPT = 0x803d
constant ETHERTYPE_ES (line 392) | ETHERTYPE_ES = 0x805d
constant ETHERTYPE_EXCELAN (line 393) | ETHERTYPE_EXCELAN = 0x8010
constant ETHERTYPE_EXPERDATA (line 394) | ETHERTYPE_EXPERDATA = 0x8049
constant ETHERTYPE_FLIP (line 395) | ETHERTYPE_FLIP = 0x8146
constant ETHERTYPE_FLOWCONTROL (line 396) | ETHERTYPE_FLOWCONTROL = 0x8808
constant ETHERTYPE_FRARP (line 397) | ETHERTYPE_FRARP = 0x808
constant ETHERTYPE_GENDYN (line 398) | ETHERTYPE_GENDYN = 0x8068
constant ETHERTYPE_HAYES (line 399) | ETHERTYPE_HAYES = 0x8130
constant ETHERTYPE_HIPPI_FP (line 400) | ETHERTYPE_HIPPI_FP = 0x8180
constant ETHERTYPE_HITACHI (line 401) | ETHERTYPE_HITACHI = 0x8820
constant ETHERTYPE_HP (line 402) | ETHERTYPE_HP = 0x8005
constant ETHERTYPE_IEEEPUP (line 403) | ETHERTYPE_IEEEPUP = 0xa00
constant ETHERTYPE_IEEEPUPAT (line 404) | ETHERTYPE_IEEEPUPAT = 0xa01
constant ETHERTYPE_IMLBL (line 405) | ETHERTYPE_IMLBL = 0x4c42
constant ETHERTYPE_IMLBLDIAG (line 406) | ETHERTYPE_IMLBLDIAG = 0x424c
constant ETHERTYPE_IP (line 407) | ETHERTYPE_IP = 0x800
constant ETHERTYPE_IPAS (line 408) | ETHERTYPE_IPAS = 0x876c
constant ETHERTYPE_IPV6 (line 409) | ETHERTYPE_IPV6 = 0x86dd
constant ETHERTYPE_IPX (line 410) | ETHERTYPE_IPX = 0x8137
constant ETHERTYPE_IPXNEW (line 411) | ETHERTYPE_IPXNEW = 0x8037
constant ETHERTYPE_KALPANA (line 412) | ETHERTYPE_KALPANA = 0x8582
constant ETHERTYPE_LANBRIDGE (line 413) | ETHERTYPE_LANBRIDGE = 0x8038
constant ETHERTYPE_LANPROBE (line 414) | ETHERTYPE_LANPROBE = 0x8888
constant ETHERTYPE_LAT (line 415) | ETHERTYPE_LAT = 0x6004
constant ETHERTYPE_LBACK (line 416) | ETHERTYPE_LBACK = 0x9000
constant ETHERTYPE_LITTLE (line 417) | ETHERTYPE_LITTLE = 0x8060
constant ETHERTYPE_LOGICRAFT (line 418) | ETHERTYPE_LOGICRAFT = 0x8148
constant ETHERTYPE_LOOPBACK (line 419) | ETHERTYPE_LOOPBACK = 0x9000
constant ETHERTYPE_MATRA (line 420) | ETHERTYPE_MATRA = 0x807a
constant ETHERTYPE_MAX (line 421) | ETHERTYPE_MAX = 0xffff
constant ETHERTYPE_MERIT (line 422) | ETHERTYPE_MERIT = 0x807c
constant ETHERTYPE_MICP (line 423) | ETHERTYPE_MICP = 0x873a
constant ETHERTYPE_MOPDL (line 424) | ETHERTYPE_MOPDL = 0x6001
constant ETHERTYPE_MOPRC (line 425) | ETHERTYPE_MOPRC = 0x6002
constant ETHERTYPE_MOTOROLA (line 426) | ETHERTYPE_MOTOROLA = 0x818d
constant ETHERTYPE_MPLS (line 427) | ETHERTYPE_MPLS = 0x8847
constant ETHERTYPE_MPLS_MCAST (line 428) | ETHERTYPE_MPLS_MCAST = 0x8848
constant ETHERTYPE_MUMPS (line 429) | ETHERTYPE_MUMPS = 0x813f
constant ETHERTYPE_NBPCC (line 430) | ETHERTYPE_NBPCC = 0x3c04
constant ETHERTYPE_NBPCLAIM (line 431) | ETHERTYPE_NBPCLAIM = 0x3c09
constant ETHERTYPE_NBPCLREQ (line 432) | ETHERTYPE_NBPCLREQ = 0x3c05
constant ETHERTYPE_NBPCLRSP (line 433) | ETHERTYPE_NBPCLRSP = 0x3c06
constant ETHERTYPE_NBPCREQ (line 434) | ETHERTYPE_NBPCREQ = 0x3c02
constant ETHERTYPE_NBPCRSP (line 435) | ETHERTYPE_NBPCRSP = 0x3c03
constant ETHERTYPE_NBPDG (line 436) | ETHERTYPE_NBPDG = 0x3c07
constant ETHERTYPE_NBPDGB (line 437) | ETHERTYPE_NBPDGB = 0x3c08
constant ETHERTYPE_NBPDLTE (line 438) | ETHERTYPE_NBPDLTE = 0x3c0a
constant ETHERTYPE_NBPRAR (line 439) | ETHERTYPE_NBPRAR = 0x3c0c
constant ETHERTYPE_NBPRAS (line 440) | ETHERTYPE_NBPRAS = 0x3c0b
constant ETHERTYPE_NBPRST (line 441) | ETHERTYPE_NBPRST = 0x3c0d
constant ETHERTYPE_NBPSCD (line 442) | ETHERTYPE_NBPSCD = 0x3c01
constant ETHERTYPE_NBPVCD (line 443) | ETHERTYPE_NBPVCD = 0x3c00
constant ETHERTYPE_NBS (line 444) | ETHERTYPE_NBS = 0x802
constant ETHERTYPE_NCD (line 445) | ETHERTYPE_NCD = 0x8149
constant ETHERTYPE_NESTAR (line 446) | ETHERTYPE_NESTAR = 0x8006
constant ETHERTYPE_NETBEUI (line 447) | ETHERTYPE_NETBEUI = 0x8191
constant ETHERTYPE_NOVELL (line 448) | ETHERTYPE_NOVELL = 0x8138
constant ETHERTYPE_NS (line 449) | ETHERTYPE_NS = 0x600
constant ETHERTYPE_NSAT (line 450) | ETHERTYPE_NSAT = 0x601
constant ETHERTYPE_NSCOMPAT (line 451) | ETHERTYPE_NSCOMPAT = 0x807
constant ETHERTYPE_NTRAILER (line 452) | ETHERTYPE_NTRAILER = 0x10
constant ETHERTYPE_OS9 (line 453) | ETHERTYPE_OS9 = 0x7007
constant ETHERTYPE_OS9NET (line 454) | ETHERTYPE_OS9NET = 0x7009
constant ETHERTYPE_PACER (line 455) | ETHERTYPE_PACER = 0x80c6
constant ETHERTYPE_PAE (line 456) | ETHERTYPE_PAE = 0x888e
constant ETHERTYPE_PCS (line 457) | ETHERTYPE_PCS = 0x4242
constant ETHERTYPE_PLANNING (line 458) | ETHERTYPE_PLANNING = 0x8044
constant ETHERTYPE_PPP (line 459) | ETHERTYPE_PPP = 0x880b
constant ETHERTYPE_PPPOE (line 460) | ETHERTYPE_PPPOE = 0x8864
constant ETHERTYPE_PPPOEDISC (line 461) | ETHERTYPE_PPPOEDISC = 0x8863
constant ETHERTYPE_PRIMENTS (line 462) | ETHERTYPE_PRIMENTS = 0x7031
constant ETHERTYPE_PUP (line 463) | ETHERTYPE_PUP = 0x200
constant ETHERTYPE_PUPAT (line 464) | ETHERTYPE_PUPAT = 0x200
constant ETHERTYPE_RACAL (line 465) | ETHERTYPE_RACAL = 0x7030
constant ETHERTYPE_RATIONAL (line 466) | ETHERTYPE_RATIONAL = 0x8150
constant ETHERTYPE_RAWFR (line 467) | ETHERTYPE_RAWFR = 0x6559
constant ETHERTYPE_RCL (line 468) | ETHERTYPE_RCL = 0x1995
constant ETHERTYPE_RDP (line 469) | ETHERTYPE_RDP = 0x8739
constant ETHERTYPE_RETIX (line 470) | ETHERTYPE_RETIX = 0x80f2
constant ETHERTYPE_REVARP (line 471) | ETHERTYPE_REVARP = 0x8035
constant ETHERTYPE_SCA (line 472) | ETHERTYPE_SCA = 0x6007
constant ETHERTYPE_SECTRA (line 473) | ETHERTYPE_SECTRA = 0x86db
constant ETHERTYPE_SECUREDATA (line 474) | ETHERTYPE_SECUREDATA = 0x876d
constant ETHERTYPE_SGITW (line 475) | ETHERTYPE_SGITW = 0x817e
constant ETHERTYPE_SG_BOUNCE (line 476) | ETHERTYPE_SG_BOUNCE = 0x8016
constant ETHERTYPE_SG_DIAG (line 477) | ETHERTYPE_SG_DIAG = 0x8013
constant ETHERTYPE_SG_NETGAMES (line 478) | ETHERTYPE_SG_NETGAMES = 0x8014
constant ETHERTYPE_SG_RESV (line 479) | ETHERTYPE_SG_RESV = 0x8015
constant ETHERTYPE_SIMNET (line 480) | ETHERTYPE_SIMNET = 0x5208
constant ETHERTYPE_SLOWPROTOCOLS (line 481) | ETHERTYPE_SLOWPROTOCOLS = 0x8809
constant ETHERTYPE_SNA (line 482) | ETHERTYPE_SNA = 0x80d5
constant ETHERTYPE_SNMP (line 483) | ETHERTYPE_SNMP = 0x814c
constant ETHERTYPE_SONIX (line 484) | ETHERTYPE_SONIX = 0xfaf5
constant ETHERTYPE_SPIDER (line 485) | ETHERTYPE_SPIDER = 0x809f
constant ETHERTYPE_SPRITE (line 486) | ETHERTYPE_SPRITE = 0x500
constant ETHERTYPE_STP (line 487) | ETHERTYPE_STP = 0x8181
constant ETHERTYPE_TALARIS (line 488) | ETHERTYPE_TALARIS = 0x812b
constant ETHERTYPE_TALARISMC (line 489) | ETHERTYPE_TALARISMC = 0x852b
constant ETHERTYPE_TCPCOMP (line 490) | ETHERTYPE_TCPCOMP = 0x876b
constant ETHERTYPE_TCPSM (line 491) | ETHERTYPE_TCPSM = 0x9002
constant ETHERTYPE_TEC (line 492) | ETHERTYPE_TEC = 0x814f
constant ETHERTYPE_TIGAN (line 493) | ETHERTYPE_TIGAN = 0x802f
constant ETHERTYPE_TRAIL (line 494) | ETHERTYPE_TRAIL = 0x1000
constant ETHERTYPE_TRANSETHER (line 495) | ETHERTYPE_TRANSETHER = 0x6558
constant ETHERTYPE_TYMSHARE (line 496) | ETHERTYPE_TYMSHARE = 0x802e
constant ETHERTYPE_UBBST (line 497) | ETHERTYPE_UBBST = 0x7005
constant ETHERTYPE_UBDEBUG (line 498) | ETHERTYPE_UBDEBUG = 0x900
constant ETHERTYPE_UBDIAGLOOP (line 499) | ETHERTYPE_UBDIAGLOOP = 0x7002
constant ETHERTYPE_UBDL (line 500) | ETHERTYPE_UBDL = 0x7000
constant ETHERTYPE_UBNIU (line 501) | ETHERTYPE_UBNIU = 0x7001
constant ETHERTYPE_UBNMC (line 502) | ETHERTYPE_UBNMC = 0x7003
constant ETHERTYPE_VALID (line 503) | ETHERTYPE_VALID = 0x1600
constant ETHERTYPE_VARIAN (line 504) | ETHERTYPE_VARIAN = 0x80dd
constant ETHERTYPE_VAXELN (line 505) | ETHERTYPE_VAXELN = 0x803b
constant ETHERTYPE_VEECO (line 506) | ETHERTYPE_VEECO = 0x8067
constant ETHERTYPE_VEXP (line 507) | ETHERTYPE_VEXP = 0x805b
constant ETHERTYPE_VGLAB (line 508) | ETHERTYPE_VGLAB = 0x8131
constant ETHERTYPE_VINES (line 509) | ETHERTYPE_VINES = 0xbad
constant ETHERTYPE_VINESECHO (line 510) | ETHERTYPE_VINESECHO = 0xbaf
constant ETHERTYPE_VINESLOOP (line 511) | ETHERTYPE_VINESLOOP = 0xbae
constant ETHERTYPE_VITAL (line 512) | ETHERTYPE_VITAL = 0xff00
constant ETHERTYPE_VLAN (line 513) | ETHERTYPE_VLAN = 0x8100
constant ETHERTYPE_VLTLMAN (line 514) | ETHERTYPE_VLTLMAN = 0x8080
constant ETHERTYPE_VPROD (line 515) | ETHERTYPE_VPROD = 0x805c
constant ETHERTYPE_VURESERVED (line 516) | ETHERTYPE_VURESERVED = 0x8147
constant ETHERTYPE_WATERLOO (line 517) | ETHERTYPE_WATERLOO = 0x8130
constant ETHERTYPE_WELLFLEET (line 518) | ETHERTYPE_WELLFLEET = 0x8103
constant ETHERTYPE_X25 (line 519) | ETHERTYPE_X25 = 0x805
constant ETHERTYPE_X75 (line 520) | ETHERTYPE_X75 = 0x801
constant ETHERTYPE_XNSSM (line 521) | ETHERTYPE_XNSSM = 0x9001
constant ETHERTYPE_XTP (line 522) | ETHERTYPE_XTP = 0x817d
constant ETHER_ADDR_LEN (line 523) | ETHER_ADDR_LEN = 0x6
constant ETHER_CRC_LEN (line 524) | ETHER_CRC_LEN = 0x4
constant ETHER_CRC_POLY_BE (line 525) | ETHER_CRC_POLY_BE = 0x4c11db6
constant ETHER_CRC_POLY_LE (line 526) | ETHER_CRC_POLY_LE = 0xedb88320
constant ETHER_HDR_LEN (line 527) | ETHER_HDR_LEN = 0xe
constant ETHER_MAX_LEN (line 528) | ETHER_MAX_LEN = 0x5ee
constant ETHER_MAX_LEN_JUMBO (line 529) | ETHER_MAX_LEN_JUMBO = 0x233a
constant ETHER_MIN_LEN (line 530) | ETHER_MIN_LEN = 0x40
constant ETHER_PPPOE_ENCAP_LEN (line 531) | ETHER_PPPOE_ENCAP_LEN = 0x8
constant ETHER_TYPE_LEN (line 532) | ETHER_TYPE_LEN = 0x2
constant ETHER_VLAN_ENCAP_LEN (line 533) | ETHER_VLAN_ENCAP_LEN = 0x4
constant EVFILT_AIO (line 534) | EVFILT_AIO = 0x2
constant EVFILT_PROC (line 535) | EVFILT_PROC = 0x4
constant EVFILT_READ (line 536) | EVFILT_READ = 0x0
constant EVFILT_SIGNAL (line 537) | EVFILT_SIGNAL = 0x5
constant EVFILT_SYSCOUNT (line 538) | EVFILT_SYSCOUNT = 0x7
constant EVFILT_TIMER (line 539) | EVFILT_TIMER = 0x6
constant EVFILT_VNODE (line 540) | EVFILT_VNODE = 0x3
constant EVFILT_WRITE (line 541) | EVFILT_WRITE = 0x1
constant EV_ADD (line 542) | EV_ADD = 0x1
constant EV_CLEAR (line 543) | EV_CLEAR = 0x20
constant EV_DELETE (line 544) | EV_DELETE = 0x2
constant EV_DISABLE (line 545) | EV_DISABLE = 0x8
constant EV_ENABLE (line 546) | EV_ENABLE = 0x4
constant EV_EOF (line 547) | EV_EOF = 0x8000
constant EV_ERROR (line 548) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 549) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 550) | EV_ONESHOT = 0x10
constant EV_SYSFLAGS (line 551) | EV_SYSFLAGS = 0xf000
constant EXTA (line 552) | EXTA = 0x4b00
constant EXTATTR_CMD_START (line 553) | EXTATTR_CMD_START = 0x1
constant EXTATTR_CMD_STOP (line 554) | EXTATTR_CMD_STOP = 0x2
constant EXTATTR_NAMESPACE_SYSTEM (line 555) | EXTATTR_NAMESPACE_SYSTEM = 0x2
constant EXTATTR_NAMESPACE_USER (line 556) | EXTATTR_NAMESPACE_USER = 0x1
constant EXTB (line 557) | EXTB = 0x9600
constant EXTPROC (line 558) | EXTPROC = 0x800
constant FD_CLOEXEC (line 559) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 560) | FD_SETSIZE = 0x100
constant FLUSHO (line 561) | FLUSHO = 0x800000
constant F_CLOSEM (line 562) | F_CLOSEM = 0xa
constant F_DUPFD (line 563) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 564) | F_DUPFD_CLOEXEC = 0xc
constant F_FSCTL (line 565) | F_FSCTL = -0x80000000
constant F_FSDIRMASK (line 566) | F_FSDIRMASK = 0x70000000
constant F_FSIN (line 567) | F_FSIN = 0x10000000
constant F_FSINOUT (line 568) | F_FSINOUT = 0x30000000
constant F_FSOUT (line 569) | F_FSOUT = 0x20000000
constant F_FSPRIV (line 570) | F_FSPRIV = 0x8000
constant F_FSVOID (line 571) | F_FSVOID = 0x40000000
constant F_GETFD (line 572) | F_GETFD = 0x1
constant F_GETFL (line 573) | F_GETFL = 0x3
constant F_GETLK (line 574) | F_GETLK = 0x7
constant F_GETNOSIGPIPE (line 575) | F_GETNOSIGPIPE = 0xd
constant F_GETOWN (line 576) | F_GETOWN = 0x5
constant F_MAXFD (line 577) | F_MAXFD = 0xb
constant F_OK (line 578) | F_OK = 0x0
constant F_PARAM_MASK (line 579) | F_PARAM_MASK = 0xfff
constant F_PARAM_MAX (line 580) | F_PARAM_MAX = 0xfff
constant F_RDLCK (line 581) | F_RDLCK = 0x1
constant F_SETFD (line 582) | F_SETFD = 0x2
constant F_SETFL (line 583) | F_SETFL = 0x4
constant F_SETLK (line 584) | F_SETLK = 0x8
constant F_SETLKW (line 585) | F_SETLKW = 0x9
constant F_SETNOSIGPIPE (line 586) | F_SETNOSIGPIPE = 0xe
constant F_SETOWN (line 587) | F_SETOWN = 0x6
constant F_UNLCK (line 588) | F_UNLCK = 0x2
constant F_WRLCK (line 589) | F_WRLCK = 0x3
constant HUPCL (line 590) | HUPCL = 0x4000
constant HW_MACHINE (line 591) | HW_MACHINE = 0x1
constant ICANON (line 592) | ICANON = 0x100
constant ICMP6_FILTER (line 593) | ICMP6_FILTER = 0x12
constant ICRNL (line 594) | ICRNL = 0x100
constant IEXTEN (line 595) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 596) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 597) | IFAN_DEPARTURE = 0x1
constant IFA_ROUTE (line 598) | IFA_ROUTE = 0x1
constant IFF_ALLMULTI (line 599) | IFF_ALLMULTI = 0x200
constant IFF_BROADCAST (line 600) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 601) | IFF_CANTCHANGE = 0x8f52
constant IFF_DEBUG (line 602) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 603) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 604) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 605) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 606) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 607) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 608) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 609) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 610) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 611) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 612) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 613) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 614) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 615) | IFF_UP = 0x1
constant IFNAMSIZ (line 616) | IFNAMSIZ = 0x10
constant IFT_1822 (line 617) | IFT_1822 = 0x2
constant IFT_A12MPPSWITCH (line 618) | IFT_A12MPPSWITCH = 0x82
constant IFT_AAL2 (line 619) | IFT_AAL2 = 0xbb
constant IFT_AAL5 (line 620) | IFT_AAL5 = 0x31
constant IFT_ADSL (line 621) | IFT_ADSL = 0x5e
constant IFT_AFLANE8023 (line 622) | IFT_AFLANE8023 = 0x3b
constant IFT_AFLANE8025 (line 623) | IFT_AFLANE8025 = 0x3c
constant IFT_ARAP (line 624) | IFT_ARAP = 0x58
constant IFT_ARCNET (line 625) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 626) | IFT_ARCNETPLUS = 0x24
constant IFT_ASYNC (line 627) | IFT_ASYNC = 0x54
constant IFT_ATM (line 628) | IFT_ATM = 0x25
constant IFT_ATMDXI (line 629) | IFT_ATMDXI = 0x69
constant IFT_ATMFUNI (line 630) | IFT_ATMFUNI = 0x6a
constant IFT_ATMIMA (line 631) | IFT_ATMIMA = 0x6b
constant IFT_ATMLOGICAL (line 632) | IFT_ATMLOGICAL = 0x50
constant IFT_ATMRADIO (line 633) | IFT_ATMRADIO = 0xbd
constant IFT_ATMSUBINTERFACE (line 634) | IFT_ATMSUBINTERFACE = 0x86
constant IFT_ATMVCIENDPT (line 635) | IFT_ATMVCIENDPT = 0xc2
constant IFT_ATMVIRTUAL (line 636) | IFT_ATMVIRTUAL = 0x95
constant IFT_BGPPOLICYACCOUNTING (line 637) | IFT_BGPPOLICYACCOUNTING = 0xa2
constant IFT_BRIDGE (line 638) | IFT_BRIDGE = 0xd1
constant IFT_BSC (line 639) | IFT_BSC = 0x53
constant IFT_CARP (line 640) | IFT_CARP = 0xf8
constant IFT_CCTEMUL (line 641) | IFT_CCTEMUL = 0x3d
constant IFT_CEPT (line 642) | IFT_CEPT = 0x13
constant IFT_CES (line 643) | IFT_CES = 0x85
constant IFT_CHANNEL (line 644) | IFT_CHANNEL = 0x46
constant IFT_CNR (line 645) | IFT_CNR = 0x55
constant IFT_COFFEE (line 646) | IFT_COFFEE = 0x84
constant IFT_COMPOSITELINK (line 647) | IFT_COMPOSITELINK = 0x9b
constant IFT_DCN (line 648) | IFT_DCN = 0x8d
constant IFT_DIGITALPOWERLINE (line 649) | IFT_DIGITALPOWERLINE = 0x8a
constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 650) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
constant IFT_DLSW (line 651) | IFT_DLSW = 0x4a
constant IFT_DOCSCABLEDOWNSTREAM (line 652) | IFT_DOCSCABLEDOWNSTREAM = 0x80
constant IFT_DOCSCABLEMACLAYER (line 653) | IFT_DOCSCABLEMACLAYER = 0x7f
constant IFT_DOCSCABLEUPSTREAM (line 654) | IFT_DOCSCABLEUPSTREAM = 0x81
constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 655) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd
constant IFT_DS0 (line 656) | IFT_DS0 = 0x51
constant IFT_DS0BUNDLE (line 657) | IFT_DS0BUNDLE = 0x52
constant IFT_DS1FDL (line 658) | IFT_DS1FDL = 0xaa
constant IFT_DS3 (line 659) | IFT_DS3 = 0x1e
constant IFT_DTM (line 660) | IFT_DTM = 0x8c
constant IFT_DVBASILN (line 661) | IFT_DVBASILN = 0xac
constant IFT_DVBASIOUT (line 662) | IFT_DVBASIOUT = 0xad
constant IFT_DVBRCCDOWNSTREAM (line 663) | IFT_DVBRCCDOWNSTREAM = 0x93
constant IFT_DVBRCCMACLAYER (line 664) | IFT_DVBRCCMACLAYER = 0x92
constant IFT_DVBRCCUPSTREAM (line 665) | IFT_DVBRCCUPSTREAM = 0x94
constant IFT_ECONET (line 666) | IFT_ECONET = 0xce
constant IFT_EON (line 667) | IFT_EON = 0x19
constant IFT_EPLRS (line 668) | IFT_EPLRS = 0x57
constant IFT_ESCON (line 669) | IFT_ESCON = 0x49
constant IFT_ETHER (line 670) | IFT_ETHER = 0x6
constant IFT_FAITH (line 671) | IFT_FAITH = 0xf2
constant IFT_FAST (line 672) | IFT_FAST = 0x7d
constant IFT_FASTETHER (line 673) | IFT_FASTETHER = 0x3e
constant IFT_FASTETHERFX (line 674) | IFT_FASTETHERFX = 0x45
constant IFT_FDDI (line 675) | IFT_FDDI = 0xf
constant IFT_FIBRECHANNEL (line 676) | IFT_FIBRECHANNEL = 0x38
constant IFT_FRAMERELAYINTERCONNECT (line 677) | IFT_FRAMERELAYINTERCONNECT = 0x3a
constant IFT_FRAMERELAYMPI (line 678) | IFT_FRAMERELAYMPI = 0x5c
constant IFT_FRDLCIENDPT (line 679) | IFT_FRDLCIENDPT = 0xc1
constant IFT_FRELAY (line 680) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 681) | IFT_FRELAYDCE = 0x2c
constant IFT_FRF16MFRBUNDLE (line 682) | IFT_FRF16MFRBUNDLE = 0xa3
constant IFT_FRFORWARD (line 683) | IFT_FRFORWARD = 0x9e
constant IFT_G703AT2MB (line 684) | IFT_G703AT2MB = 0x43
constant IFT_G703AT64K (line 685) | IFT_G703AT64K = 0x42
constant IFT_GIF (line 686) | IFT_GIF = 0xf0
constant IFT_GIGABITETHERNET (line 687) | IFT_GIGABITETHERNET = 0x75
constant IFT_GR303IDT (line 688) | IFT_GR303IDT = 0xb2
constant IFT_GR303RDT (line 689) | IFT_GR303RDT = 0xb1
constant IFT_H323GATEKEEPER (line 690) | IFT_H323GATEKEEPER = 0xa4
constant IFT_H323PROXY (line 691) | IFT_H323PROXY = 0xa5
constant IFT_HDH1822 (line 692) | IFT_HDH1822 = 0x3
constant IFT_HDLC (line 693) | IFT_HDLC = 0x76
constant IFT_HDSL2 (line 694) | IFT_HDSL2 = 0xa8
constant IFT_HIPERLAN2 (line 695) | IFT_HIPERLAN2 = 0xb7
constant IFT_HIPPI (line 696) | IFT_HIPPI = 0x2f
constant IFT_HIPPIINTERFACE (line 697) | IFT_HIPPIINTERFACE = 0x39
constant IFT_HOSTPAD (line 698) | IFT_HOSTPAD = 0x5a
constant IFT_HSSI (line 699) | IFT_HSSI = 0x2e
constant IFT_HY (line 700) | IFT_HY = 0xe
constant IFT_IBM370PARCHAN (line 701) | IFT_IBM370PARCHAN = 0x48
constant IFT_IDSL (line 702) | IFT_IDSL = 0x9a
constant IFT_IEEE1394 (line 703) | IFT_IEEE1394 = 0x90
constant IFT_IEEE80211 (line 704) | IFT_IEEE80211 = 0x47
constant IFT_IEEE80212 (line 705) | IFT_IEEE80212 = 0x37
constant IFT_IEEE8023ADLAG (line 706) | IFT_IEEE8023ADLAG = 0xa1
constant IFT_IFGSN (line 707) | IFT_IFGSN = 0x91
constant IFT_IMT (line 708) | IFT_IMT = 0xbe
constant IFT_INFINIBAND (line 709) | IFT_INFINIBAND = 0xc7
constant IFT_INTERLEAVE (line 710) | IFT_INTERLEAVE = 0x7c
constant IFT_IP (line 711) | IFT_IP = 0x7e
constant IFT_IPFORWARD (line 712) | IFT_IPFORWARD = 0x8e
constant IFT_IPOVERATM (line 713) | IFT_IPOVERATM = 0x72
constant IFT_IPOVERCDLC (line 714) | IFT_IPOVERCDLC = 0x6d
constant IFT_IPOVERCLAW (line 715) | IFT_IPOVERCLAW = 0x6e
constant IFT_IPSWITCH (line 716) | IFT_IPSWITCH = 0x4e
constant IFT_ISDN (line 717) | IFT_ISDN = 0x3f
constant IFT_ISDNBASIC (line 718) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 719) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISDNS (line 720) | IFT_ISDNS = 0x4b
constant IFT_ISDNU (line 721) | IFT_ISDNU = 0x4c
constant IFT_ISO88022LLC (line 722) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 723) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 724) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 725) | IFT_ISO88025 = 0x9
constant IFT_ISO88025CRFPINT (line 726) | IFT_ISO88025CRFPINT = 0x62
constant IFT_ISO88025DTR (line 727) | IFT_ISO88025DTR = 0x56
constant IFT_ISO88025FIBER (line 728) | IFT_ISO88025FIBER = 0x73
constant IFT_ISO88026 (line 729) | IFT_ISO88026 = 0xa
constant IFT_ISUP (line 730) | IFT_ISUP = 0xb3
constant IFT_L2VLAN (line 731) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 732) | IFT_L3IPVLAN = 0x88
constant IFT_L3IPXVLAN (line 733) | IFT_L3IPXVLAN = 0x89
constant IFT_LAPB (line 734) | IFT_LAPB = 0x10
constant IFT_LAPD (line 735) | IFT_LAPD = 0x4d
constant IFT_LAPF (line 736) | IFT_LAPF = 0x77
constant IFT_LINEGROUP (line 737) | IFT_LINEGROUP = 0xd2
constant IFT_LOCALTALK (line 738) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 739) | IFT_LOOP = 0x18
constant IFT_MEDIAMAILOVERIP (line 740) | IFT_MEDIAMAILOVERIP = 0x8b
constant IFT_MFSIGLINK (line 741) | IFT_MFSIGLINK = 0xa7
constant IFT_MIOX25 (line 742) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 743) | IFT_MODEM = 0x30
constant IFT_MPC (line 744) | IFT_MPC = 0x71
constant IFT_MPLS (line 745) | IFT_MPLS = 0xa6
constant IFT_MPLSTUNNEL (line 746) | IFT_MPLSTUNNEL = 0x96
constant IFT_MSDSL (line 747) | IFT_MSDSL = 0x8f
constant IFT_MVL (line 748) | IFT_MVL = 0xbf
constant IFT_MYRINET (line 749) | IFT_MYRINET = 0x63
constant IFT_NFAS (line 750) | IFT_NFAS = 0xaf
constant IFT_NSIP (line 751) | IFT_NSIP = 0x1b
constant IFT_OPTICALCHANNEL (line 752) | IFT_OPTICALCHANNEL = 0xc3
constant IFT_OPTICALTRANSPORT (line 753) | IFT_OPTICALTRANSPORT = 0xc4
constant IFT_OTHER (line 754) | IFT_OTHER = 0x1
constant IFT_P10 (line 755) | IFT_P10 = 0xc
constant IFT_P80 (line 756) | IFT_P80 = 0xd
constant IFT_PARA (line 757) | IFT_PARA = 0x22
constant IFT_PFLOG (line 758) | IFT_PFLOG = 0xf5
constant IFT_PFSYNC (line 759) | IFT_PFSYNC = 0xf6
constant IFT_PLC (line 760) | IFT_PLC = 0xae
constant IFT_PON155 (line 761) | IFT_PON155 = 0xcf
constant IFT_PON622 (line 762) | IFT_PON622 = 0xd0
constant IFT_POS (line 763) | IFT_POS = 0xab
constant IFT_PPP (line 764) | IFT_PPP = 0x17
constant IFT_PPPMULTILINKBUNDLE (line 765) | IFT_PPPMULTILINKBUNDLE = 0x6c
constant IFT_PROPATM (line 766) | IFT_PROPATM = 0xc5
constant IFT_PROPBWAP2MP (line 767) | IFT_PROPBWAP2MP = 0xb8
constant IFT_PROPCNLS (line 768) | IFT_PROPCNLS = 0x59
constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 769) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5
constant IFT_PROPDOCSWIRELESSMACLAYER (line 770) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4
constant IFT_PROPDOCSWIRELESSUPSTREAM (line 771) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6
constant IFT_PROPMUX (line 772) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 773) | IFT_PROPVIRTUAL = 0x35
constant IFT_PROPWIRELESSP2P (line 774) | IFT_PROPWIRELESSP2P = 0x9d
constant IFT_PTPSERIAL (line 775) | IFT_PTPSERIAL = 0x16
constant IFT_PVC (line 776) | IFT_PVC = 0xf1
constant IFT_Q2931 (line 777) | IFT_Q2931 = 0xc9
constant IFT_QLLC (line 778) | IFT_QLLC = 0x44
constant IFT_RADIOMAC (line 779) | IFT_RADIOMAC = 0xbc
constant IFT_RADSL (line 780) | IFT_RADSL = 0x5f
constant IFT_REACHDSL (line 781) | IFT_REACHDSL = 0xc0
constant IFT_RFC1483 (line 782) | IFT_RFC1483 = 0x9f
constant IFT_RS232 (line 783) | IFT_RS232 = 0x21
constant IFT_RSRB (line 784) | IFT_RSRB = 0x4f
constant IFT_SDLC (line 785) | IFT_SDLC = 0x11
constant IFT_SDSL (line 786) | IFT_SDSL = 0x60
constant IFT_SHDSL (line 787) | IFT_SHDSL = 0xa9
constant IFT_SIP (line 788) | IFT_SIP = 0x1f
constant IFT_SIPSIG (line 789) | IFT_SIPSIG = 0xcc
constant IFT_SIPTG (line 790) | IFT_SIPTG = 0xcb
constant IFT_SLIP (line 791) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 792) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 793) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 794) | IFT_SONET = 0x27
constant IFT_SONETOVERHEADCHANNEL (line 795) | IFT_SONETOVERHEADCHANNEL = 0xb9
constant IFT_SONETPATH (line 796) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 797) | IFT_SONETVT = 0x33
constant IFT_SRP (line 798) | IFT_SRP = 0x97
constant IFT_SS7SIGLINK (line 799) | IFT_SS7SIGLINK = 0x9c
constant IFT_STACKTOSTACK (line 800) | IFT_STACKTOSTACK = 0x6f
constant IFT_STARLAN (line 801) | IFT_STARLAN = 0xb
constant IFT_STF (line 802) | IFT_STF = 0xd7
constant IFT_T1 (line 803) | IFT_T1 = 0x12
constant IFT_TDLC (line 804) | IFT_TDLC = 0x74
constant IFT_TELINK (line 805) | IFT_TELINK = 0xc8
constant IFT_TERMPAD (line 806) | IFT_TERMPAD = 0x5b
constant IFT_TR008 (line 807) | IFT_TR008 = 0xb0
constant IFT_TRANSPHDLC (line 808) | IFT_TRANSPHDLC = 0x7b
constant IFT_TUNNEL (line 809) | IFT_TUNNEL = 0x83
constant IFT_ULTRA (line 810) | IFT_ULTRA = 0x1d
constant IFT_USB (line 811) | IFT_USB = 0xa0
constant IFT_V11 (line 812) | IFT_V11 = 0x40
constant IFT_V35 (line 813) | IFT_V35 = 0x2d
constant IFT_V36 (line 814) | IFT_V36 = 0x41
constant IFT_V37 (line 815) | IFT_V37 = 0x78
constant IFT_VDSL (line 816) | IFT_VDSL = 0x61
constant IFT_VIRTUALIPADDRESS (line 817) | IFT_VIRTUALIPADDRESS = 0x70
constant IFT_VIRTUALTG (line 818) | IFT_VIRTUALTG = 0xca
constant IFT_VOICEDID (line 819) | IFT_VOICEDID = 0xd5
constant IFT_VOICEEM (line 820) | IFT_VOICEEM = 0x64
constant IFT_VOICEEMFGD (line 821) | IFT_VOICEEMFGD = 0xd3
constant IFT_VOICEENCAP (line 822) | IFT_VOICEENCAP = 0x67
constant IFT_VOICEFGDEANA (line 823) | IFT_VOICEFGDEANA = 0xd4
constant IFT_VOICEFXO (line 824) | IFT_VOICEFXO = 0x65
constant IFT_VOICEFXS (line 825) | IFT_VOICEFXS = 0x66
constant IFT_VOICEOVERATM (line 826) | IFT_VOICEOVERATM = 0x98
constant IFT_VOICEOVERCABLE (line 827) | IFT_VOICEOVERCABLE = 0xc6
constant IFT_VOICEOVERFRAMERELAY (line 828) | IFT_VOICEOVERFRAMERELAY = 0x99
constant IFT_VOICEOVERIP (line 829) | IFT_VOICEOVERIP = 0x68
constant IFT_X213 (line 830) | IFT_X213 = 0x5d
constant IFT_X25 (line 831) | IFT_X25 = 0x5
constant IFT_X25DDN (line 832) | IFT_X25DDN = 0x4
constant IFT_X25HUNTGROUP (line 833) | IFT_X25HUNTGROUP = 0x7a
constant IFT_X25MLP (line 834) | IFT_X25MLP = 0x79
constant IFT_X25PLE (line 835) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 836) | IFT_XETHER = 0x1a
constant IGNBRK (line 837) | IGNBRK = 0x1
constant IGNCR (line 838) | IGNCR = 0x80
constant IGNPAR (line 839) | IGNPAR = 0x4
constant IMAXBEL (line 840) | IMAXBEL = 0x2000
constant INLCR (line 841) | INLCR = 0x40
constant INPCK (line 842) | INPCK = 0x10
constant IN_CLASSA_HOST (line 843) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 844) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 845) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 846) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 847) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 848) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 849) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 850) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 851) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 852) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 853) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 854) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 855) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 856) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 857) | IN_LOOPBACKNET = 0x7f
constant IPPROTO_AH (line 858) | IPPROTO_AH = 0x33
constant IPPROTO_CARP (line 859) | IPPROTO_CARP = 0x70
constant IPPROTO_DONE (line 860) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 861) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 862) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 863) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 864) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 865) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 866) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 867) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 868) | IPPROTO_GGP = 0x3
constant IPPROTO_GRE (line 869) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 870) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 871) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 872) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 873) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 874) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 875) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 876) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPIP (line 877) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV4 (line 878) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 879) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IPV6_ICMP (line 880) | IPPROTO_IPV6_ICMP = 0x3a
constant IPPROTO_MAX (line 881) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 882) | IPPROTO_MAXID = 0x34
constant IPPROTO_MOBILE (line 883) | IPPROTO_MOBILE = 0x37
constant IPPROTO_NONE (line 884) | IPPROTO_NONE = 0x3b
constant IPPROTO_PFSYNC (line 885) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PIM (line 886) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 887) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 888) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 889) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 890) | IPPROTO_RSVP = 0x2e
constant IPPROTO_TCP (line 891) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 892) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 893) | IPPROTO_UDP = 0x11
constant IPPROTO_VRRP (line 894) | IPPROTO_VRRP = 0x70
constant IPV6_CHECKSUM (line 895) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 896) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 897) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 898) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 899) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 900) | IPV6_DSTOPTS = 0x32
constant IPV6_FAITH (line 901) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 902) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 903) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FRAGTTL (line 904) | IPV6_FRAGTTL = 0x78
constant IPV6_HLIMDEC (line 905) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 906) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 907) | IPV6_HOPOPTS = 0x31
constant IPV6_IPSEC_POLICY (line 908) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 909) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 910) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 911) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXPACKET (line 912) | IPV6_MAXPACKET = 0xffff
constant IPV6_MMTU (line 913) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 914) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 915) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 916) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 917) | IPV6_NEXTHOP = 0x30
constant IPV6_PATHMTU (line 918) | IPV6_PATHMTU = 0x2c
constant IPV6_PKTINFO (line 919) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 920) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 921) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 922) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 923) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVDSTOPTS (line 924) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVHOPLIMIT (line 925) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 926) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 927) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 928) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRTHDR (line 929) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 930) | IPV6_RECVTCLASS = 0x39
constant IPV6_RTHDR (line 931) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 932) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 933) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 934) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 935) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 936) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 937) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 938) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 939) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 940) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 941) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 942) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 943) | IP_ADD_MEMBERSHIP = 0xc
constant IP_DEFAULT_MULTICAST_LOOP (line 944) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 945) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 946) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 947) | IP_DROP_MEMBERSHIP = 0xd
constant IP_EF (line 948) | IP_EF = 0x8000
constant IP_ERRORMTU (line 949) | IP_ERRORMTU = 0x15
constant IP_HDRINCL (line 950) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 951) | IP_IPSEC_POLICY = 0x16
constant IP_MAXPACKET (line 952) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 953) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 954) | IP_MF = 0x2000
constant IP_MINFRAGSIZE (line 955) | IP_MINFRAGSIZE = 0x45
constant IP_MINTTL (line 956) | IP_MINTTL = 0x18
constant IP_MSS (line 957) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 958) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 959) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 960) | IP_MULTICAST_TTL = 0xa
constant IP_OFFMASK (line 961) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 962) | IP_OPTIONS = 0x1
constant IP_PORTRANGE (line 963) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 964) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 965) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 966) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 967) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 968) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 969) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 970) | IP_RECVRETOPTS = 0x6
constant IP_RECVTTL (line 971) | IP_RECVTTL = 0x17
constant IP_RETOPTS (line 972) | IP_RETOPTS = 0x8
constant IP_RF (line 973) | IP_RF = 0x8000
constant IP_TOS (line 974) | IP_TOS = 0x3
constant IP_TTL (line 975) | IP_TTL = 0x4
constant ISIG (line 976) | ISIG = 0x80
constant ISTRIP (line 977) | ISTRIP = 0x20
constant IXANY (line 978) | IXANY = 0x800
constant IXOFF (line 979) | IXOFF = 0x400
constant IXON (line 980) | IXON = 0x200
constant KERN_HOSTNAME (line 981) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 982) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 983) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 984) | KERN_VERSION = 0x4
constant LOCK_EX (line 985) | LOCK_EX = 0x2
constant LOCK_NB (line 986) | LOCK_NB = 0x4
constant LOCK_SH (line 987) | LOCK_SH = 0x1
constant LOCK_UN (line 988) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 989) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 990) | MADV_FREE = 0x6
constant MADV_NORMAL (line 991) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 992) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 993) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 994) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 995) | MADV_WILLNEED = 0x3
constant MAP_ALIGNMENT_16MB (line 996) | MAP_ALIGNMENT_16MB = 0x18000000
constant MAP_ALIGNMENT_1TB (line 997) | MAP_ALIGNMENT_1TB = 0x28000000
constant MAP_ALIGNMENT_256TB (line 998) | MAP_ALIGNMENT_256TB = 0x30000000
constant MAP_ALIGNMENT_4GB (line 999) | MAP_ALIGNMENT_4GB = 0x20000000
constant MAP_ALIGNMENT_64KB (line 1000) | MAP_ALIGNMENT_64KB = 0x10000000
constant MAP_ALIGNMENT_64PB (line 1001) | MAP_ALIGNMENT_64PB = 0x38000000
constant MAP_ALIGNMENT_MASK (line 1002) | MAP_ALIGNMENT_MASK = -0x1000000
constant MAP_ALIGNMENT_SHIFT (line 1003) | MAP_ALIGNMENT_SHIFT = 0x18
constant MAP_ANON (line 1004) | MAP_ANON = 0x1000
constant MAP_FILE (line 1005) | MAP_FILE = 0x0
constant MAP_FIXED (line 1006) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 1007) | MAP_HASSEMAPHORE = 0x200
constant MAP_INHERIT (line 1008) | MAP_INHERIT = 0x80
constant MAP_INHERIT_COPY (line 1009) | MAP_INHERIT_COPY = 0x1
constant MAP_INHERIT_DEFAULT (line 1010) | MAP_INHERIT_DEFAULT = 0x1
constant MAP_INHERIT_DONATE_COPY (line 1011) | MAP_INHERIT_DONATE_COPY = 0x3
constant MAP_INHERIT_NONE (line 1012) | MAP_INHERIT_NONE = 0x2
constant MAP_INHERIT_SHARE (line 1013) | MAP_INHERIT_SHARE = 0x0
constant MAP_NORESERVE (line 1014) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 1015) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 1016) | MAP_RENAME = 0x20
constant MAP_SHARED (line 1017) | MAP_SHARED = 0x1
constant MAP_STACK (line 1018) | MAP_STACK = 0x2000
constant MAP_TRYFIXED (line 1019) | MAP_TRYFIXED = 0x400
constant MAP_WIRED (line 1020) | MAP_WIRED = 0x800
constant MCL_CURRENT (line 1021) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1022) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 1023) | MNT_ASYNC = 0x40
constant MNT_BASIC_FLAGS (line 1024) | MNT_BASIC_FLAGS = 0xe782807f
constant MNT_DEFEXPORTED (line 1025) | MNT_DEFEXPORTED = 0x200
constant MNT_DISCARD (line 1026) | MNT_DISCARD = 0x800000
constant MNT_EXKERB (line 1027) | MNT_EXKERB = 0x800
constant MNT_EXNORESPORT (line 1028) | MNT_EXNORESPORT = 0x8000000
constant MNT_EXPORTANON (line 1029) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 1030) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 1031) | MNT_EXPUBLIC = 0x10000000
constant MNT_EXRDONLY (line 1032) | MNT_EXRDONLY = 0x80
constant MNT_EXTATTR (line 1033) | MNT_EXTATTR = 0x1000000
constant MNT_FORCE (line 1034) | MNT_FORCE = 0x80000
constant MNT_GETARGS (line 1035) | MNT_GETARGS = 0x400000
constant MNT_IGNORE (line 1036) | MNT_IGNORE = 0x100000
constant MNT_LAZY (line 1037) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 1038) | MNT_LOCAL = 0x1000
constant MNT_LOG (line 1039) | MNT_LOG = 0x2000000
constant MNT_NOATIME (line 1040) | MNT_NOATIME = 0x4000000
constant MNT_NOCOREDUMP (line 1041) | MNT_NOCOREDUMP = 0x8000
constant MNT_NODEV (line 1042) | MNT_NODEV = 0x10
constant MNT_NODEVMTIME (line 1043) | MNT_NODEVMTIME = 0x40000000
constant MNT_NOEXEC (line 1044) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 1045) | MNT_NOSUID = 0x8
constant MNT_NOWAIT (line 1046) | MNT_NOWAIT = 0x2
constant MNT_OP_FLAGS (line 1047) | MNT_OP_FLAGS = 0x4d0000
constant MNT_QUOTA (line 1048) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 1049) | MNT_RDONLY = 0x1
constant MNT_RELATIME (line 1050) | MNT_RELATIME = 0x20000
constant MNT_RELOAD (line 1051) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 1052) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 1053) | MNT_SOFTDEP = 0x80000000
constant MNT_SYMPERM (line 1054) | MNT_SYMPERM = 0x20000000
constant MNT_SYNCHRONOUS (line 1055) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 1056) | MNT_UNION = 0x20
constant MNT_UPDATE (line 1057) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 1058) | MNT_VISFLAGMASK = 0xff90ffff
constant MNT_WAIT (line 1059) | MNT_WAIT = 0x1
constant MSG_BCAST (line 1060) | MSG_BCAST = 0x100
constant MSG_CMSG_CLOEXEC (line 1061) | MSG_CMSG_CLOEXEC = 0x800
constant MSG_CONTROLMBUF (line 1062) | MSG_CONTROLMBUF = 0x2000000
constant MSG_CTRUNC (line 1063) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 1064) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1065) | MSG_DONTWAIT = 0x80
constant MSG_EOR (line 1066) | MSG_EOR = 0x8
constant MSG_IOVUSRSPACE (line 1067) | MSG_IOVUSRSPACE = 0x4000000
constant MSG_LENUSRSPACE (line 1068) | MSG_LENUSRSPACE = 0x8000000
constant MSG_MCAST (line 1069) | MSG_MCAST = 0x200
constant MSG_NAMEMBUF (line 1070) | MSG_NAMEMBUF = 0x1000000
constant MSG_NBIO (line 1071) | MSG_NBIO = 0x1000
constant MSG_NOSIGNAL (line 1072) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 1073) | MSG_OOB = 0x1
constant MSG_PEEK (line 1074) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 1075) | MSG_TRUNC = 0x10
constant MSG_USERFLAGS (line 1076) | MSG_USERFLAGS = 0xffffff
constant MSG_WAITALL (line 1077) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 1078) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 1079) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 1080) | MS_SYNC = 0x4
constant NAME_MAX (line 1081) | NAME_MAX = 0x1ff
constant NET_RT_DUMP (line 1082) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 1083) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 1084) | NET_RT_IFLIST = 0x5
constant NET_RT_MAXID (line 1085) | NET_RT_MAXID = 0x6
constant NET_RT_OIFLIST (line 1086) | NET_RT_OIFLIST = 0x4
constant NET_RT_OOIFLIST (line 1087) | NET_RT_OOIFLIST = 0x3
constant NOFLSH (line 1088) | NOFLSH = 0x80000000
constant NOTE_ATTRIB (line 1089) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 1090) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 1091) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 1092) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1093) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1094) | NOTE_EXTEND = 0x4
constant NOTE_FORK (line 1095) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1096) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1097) | NOTE_LOWAT = 0x1
constant NOTE_PCTRLMASK (line 1098) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1099) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 1100) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1101) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 1102) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1103) | NOTE_TRACKERR = 0x2
constant NOTE_WRITE (line 1104) | NOTE_WRITE = 0x2
constant OCRNL (line 1105) | OCRNL = 0x10
constant OFIOGETBMAP (line 1106) | OFIOGETBMAP = 0xc004667a
constant ONLCR (line 1107) | ONLCR = 0x2
constant ONLRET (line 1108) | ONLRET = 0x40
constant ONOCR (line 1109) | ONOCR = 0x20
constant ONOEOT (line 1110) | ONOEOT = 0x8
constant OPOST (line 1111) | OPOST = 0x1
constant O_ACCMODE (line 1112) | O_ACCMODE = 0x3
constant O_ALT_IO (line 1113) | O_ALT_IO = 0x40000
constant O_APPEND (line 1114) | O_APPEND = 0x8
constant O_ASYNC (line 1115) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1116) | O_CLOEXEC = 0x400000
constant O_CREAT (line 1117) | O_CREAT = 0x200
constant O_DIRECT (line 1118) | O_DIRECT = 0x80000
constant O_DIRECTORY (line 1119) | O_DIRECTORY = 0x200000
constant O_DSYNC (line 1120) | O_DSYNC = 0x10000
constant O_EXCL (line 1121) | O_EXCL = 0x800
constant O_EXLOCK (line 1122) | O_EXLOCK = 0x20
constant O_FSYNC (line 1123) | O_FSYNC = 0x80
constant O_NDELAY (line 1124) | O_NDELAY = 0x4
constant O_NOCTTY (line 1125) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1126) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1127) | O_NONBLOCK = 0x4
constant O_NOSIGPIPE (line 1128) | O_NOSIGPIPE = 0x1000000
constant O_RDONLY (line 1129) | O_RDONLY = 0x0
constant O_RDWR (line 1130) | O_RDWR = 0x2
constant O_RSYNC (line 1131) | O_RSYNC = 0x20000
constant O_SHLOCK (line 1132) | O_SHLOCK = 0x10
constant O_SYNC (line 1133) | O_SYNC = 0x80
constant O_TRUNC (line 1134) | O_TRUNC = 0x400
constant O_WRONLY (line 1135) | O_WRONLY = 0x1
constant PARENB (line 1136) | PARENB = 0x1000
constant PARMRK (line 1137) | PARMRK = 0x8
constant PARODD (line 1138) | PARODD = 0x2000
constant PENDIN (line 1139) | PENDIN = 0x20000000
constant PRIO_PGRP (line 1140) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1141) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1142) | PRIO_USER = 0x2
constant PRI_IOFLUSH (line 1143) | PRI_IOFLUSH = 0x7c
constant PROT_EXEC (line 1144) | PROT_EXEC = 0x4
constant PROT_NONE (line 1145) | PROT_NONE = 0x0
constant PROT_READ (line 1146) | PROT_READ = 0x1
constant PROT_WRITE (line 1147) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 1148) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1149) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1150) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1151) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1152) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1153) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1154) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1155) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1156) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1157) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1158) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1159) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1160) | RTAX_BRD = 0x7
constant RTAX_DST (line 1161) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1162) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1163) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1164) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1165) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1166) | RTAX_MAX = 0x9
constant RTAX_NETMASK (line 1167) | RTAX_NETMASK = 0x2
constant RTAX_TAG (line 1168) | RTAX_TAG = 0x8
constant RTA_AUTHOR (line 1169) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1170) | RTA_BRD = 0x80
constant RTA_DST (line 1171) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1172) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1173) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1174) | RTA_IFA = 0x20
constant RTA_IFP (line 1175) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1176) | RTA_NETMASK = 0x4
constant RTA_TAG (line 1177) | RTA_TAG = 0x100
constant RTF_ANNOUNCE (line 1178) | RTF_ANNOUNCE = 0x20000
constant RTF_BLACKHOLE (line 1179) | RTF_BLACKHOLE = 0x1000
constant RTF_CLONED (line 1180) | RTF_CLONED = 0x2000
constant RTF_CLONING (line 1181) | RTF_CLONING = 0x100
constant RTF_DONE (line 1182) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1183) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1184) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1185) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1186) | RTF_LLINFO = 0x400
constant RTF_MASK (line 1187) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 1188) | RTF_MODIFIED = 0x20
constant RTF_PROTO1 (line 1189) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1190) | RTF_PROTO2 = 0x4000
constant RTF_REJECT (line 1191) | RTF_REJECT = 0x8
constant RTF_SRC (line 1192) | RTF_SRC = 0x10000
constant RTF_STATIC (line 1193) | RTF_STATIC = 0x800
constant RTF_UP (line 1194) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 1195) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1196) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1197) | RTM_CHANGE = 0x3
constant RTM_CHGADDR (line 1198) | RTM_CHGADDR = 0x15
constant RTM_DELADDR (line 1199) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1200) | RTM_DELETE = 0x2
constant RTM_GET (line 1201) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1202) | RTM_IEEE80211 = 0x11
constant RTM_IFANNOUNCE (line 1203) | RTM_IFANNOUNCE = 0x10
constant RTM_IFINFO (line 1204) | RTM_IFINFO = 0x14
constant RTM_LLINFO_UPD (line 1205) | RTM_LLINFO_UPD = 0x13
constant RTM_LOCK (line 1206) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1207) | RTM_LOSING = 0x5
constant RTM_MISS (line 1208) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1209) | RTM_NEWADDR = 0xc
constant RTM_OIFINFO (line 1210) | RTM_OIFINFO = 0xf
constant RTM_OLDADD (line 1211) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1212) | RTM_OLDDEL = 0xa
constant RTM_OOIFINFO (line 1213) | RTM_OOIFINFO = 0xe
constant RTM_REDIRECT (line 1214) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1215) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1216) | RTM_RTTUNIT = 0xf4240
constant RTM_SETGATE (line 1217) | RTM_SETGATE = 0x12
constant RTM_VERSION (line 1218) | RTM_VERSION = 0x4
constant RTV_EXPIRE (line 1219) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1220) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1221) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1222) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1223) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1224) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1225) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1226) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1227) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1228) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1229) | SCM_CREDS = 0x4
constant SCM_RIGHTS (line 1230) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1231) | SCM_TIMESTAMP = 0x8
constant SHUT_RD (line 1232) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1233) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1234) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1235) | SIOCADDMULTI = 0x80906931
constant SIOCADDRT (line 1236) | SIOCADDRT = 0x8030720a
constant SIOCAIFADDR (line 1237) | SIOCAIFADDR = 0x8040691a
constant SIOCALIFADDR (line 1238) | SIOCALIFADDR = 0x8118691c
constant SIOCATMARK (line 1239) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1240) | SIOCDELMULTI = 0x80906932
constant SIOCDELRT (line 1241) | SIOCDELRT = 0x8030720b
constant SIOCDIFADDR (line 1242) | SIOCDIFADDR = 0x80906919
constant SIOCDIFPHYADDR (line 1243) | SIOCDIFPHYADDR = 0x80906949
constant SIOCDLIFADDR (line 1244) | SIOCDLIFADDR = 0x8118691e
constant SIOCGDRVSPEC (line 1245) | SIOCGDRVSPEC = 0xc01c697b
constant SIOCGETPFSYNC (line 1246) | SIOCGETPFSYNC = 0xc09069f8
constant SIOCGETSGCNT (line 1247) | SIOCGETSGCNT = 0xc0147534
constant SIOCGETVIFCNT (line 1248) | SIOCGETVIFCNT = 0xc0147533
constant SIOCGHIWAT (line 1249) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1250) | SIOCGIFADDR = 0xc0906921
constant SIOCGIFADDRPREF (line 1251) | SIOCGIFADDRPREF = 0xc0946920
constant SIOCGIFALIAS (line 1252) | SIOCGIFALIAS = 0xc040691b
constant SIOCGIFBRDADDR (line 1253) | SIOCGIFBRDADDR = 0xc0906923
constant SIOCGIFCAP (line 1254) | SIOCGIFCAP = 0xc0206976
constant SIOCGIFCONF (line 1255) | SIOCGIFCONF = 0xc0086926
constant SIOCGIFDATA (line 1256) | SIOCGIFDATA = 0xc0946985
constant SIOCGIFDLT (line 1257) | SIOCGIFDLT = 0xc0906977
constant SIOCGIFDSTADDR (line 1258) | SIOCGIFDSTADDR = 0xc0906922
constant SIOCGIFFLAGS (line 1259) | SIOCGIFFLAGS = 0xc0906911
constant SIOCGIFGENERIC (line 1260) | SIOCGIFGENERIC = 0xc090693a
constant SIOCGIFMEDIA (line 1261) | SIOCGIFMEDIA = 0xc0286936
constant SIOCGIFMETRIC (line 1262) | SIOCGIFMETRIC = 0xc0906917
constant SIOCGIFMTU (line 1263) | SIOCGIFMTU = 0xc090697e
constant SIOCGIFNETMASK (line 1264) | SIOCGIFNETMASK = 0xc0906925
constant SIOCGIFPDSTADDR (line 1265) | SIOCGIFPDSTADDR = 0xc0906948
constant SIOCGIFPSRCADDR (line 1266) | SIOCGIFPSRCADDR = 0xc0906947
constant SIOCGLIFADDR (line 1267) | SIOCGLIFADDR = 0xc118691d
constant SIOCGLIFPHYADDR (line 1268) | SIOCGLIFPHYADDR = 0xc118694b
constant SIOCGLINKSTR (line 1269) | SIOCGLINKSTR = 0xc01c6987
constant SIOCGLOWAT (line 1270) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1271) | SIOCGPGRP = 0x40047309
constant SIOCGVH (line 1272) | SIOCGVH = 0xc0906983
constant SIOCIFCREATE (line 1273) | SIOCIFCREATE = 0x8090697a
constant SIOCIFDESTROY (line 1274) | SIOCIFDESTROY = 0x80906979
constant SIOCIFGCLONERS (line 1275) | SIOCIFGCLONERS = 0xc00c6978
constant SIOCINITIFADDR (line 1276) | SIOCINITIFADDR = 0xc0446984
constant SIOCSDRVSPEC (line 1277) | SIOCSDRVSPEC = 0x801c697b
constant SIOCSETPFSYNC (line 1278) | SIOCSETPFSYNC = 0x809069f7
constant SIOCSHIWAT (line 1279) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1280) | SIOCSIFADDR = 0x8090690c
constant SIOCSIFADDRPREF (line 1281) | SIOCSIFADDRPREF = 0x8094691f
constant SIOCSIFBRDADDR (line 1282) | SIOCSIFBRDADDR = 0x80906913
constant SIOCSIFCAP (line 1283) | SIOCSIFCAP = 0x80206975
constant SIOCSIFDSTADDR (line 1284) | SIOCSIFDSTADDR = 0x8090690e
constant SIOCSIFFLAGS (line 1285) | SIOCSIFFLAGS = 0x80906910
constant SIOCSIFGENERIC (line 1286) | SIOCSIFGENERIC = 0x80906939
constant SIOCSIFMEDIA (line 1287) | SIOCSIFMEDIA = 0xc0906935
constant SIOCSIFMETRIC (line 1288) | SIOCSIFMETRIC = 0x80906918
constant SIOCSIFMTU (line 1289) | SIOCSIFMTU = 0x8090697f
constant SIOCSIFNETMASK (line 1290) | SIOCSIFNETMASK = 0x80906916
constant SIOCSIFPHYADDR (line 1291) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSLIFPHYADDR (line 1292) | SIOCSLIFPHYADDR = 0x8118694a
constant SIOCSLINKSTR (line 1293) | SIOCSLINKSTR = 0x801c6988
constant SIOCSLOWAT (line 1294) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1295) | SIOCSPGRP = 0x80047308
constant SIOCSVH (line 1296) | SIOCSVH = 0xc0906982
constant SIOCZIFDATA (line 1297) | SIOCZIFDATA = 0xc0946986
constant SOCK_CLOEXEC (line 1298) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1299) | SOCK_DGRAM = 0x2
constant SOCK_FLAGS_MASK (line 1300) | SOCK_FLAGS_MASK = 0xf0000000
constant SOCK_NONBLOCK (line 1301) | SOCK_NONBLOCK = 0x20000000
constant SOCK_NOSIGPIPE (line 1302) | SOCK_NOSIGPIPE = 0x40000000
constant SOCK_RAW (line 1303) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1304) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1305) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1306) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1307) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1308) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1309) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1310) | SO_ACCEPTFILTER = 0x1000
constant SO_BROADCAST (line 1311) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1312) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1313) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1314) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1315) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1316) | SO_LINGER = 0x80
constant SO_NOHEADER (line 1317) | SO_NOHEADER = 0x100a
constant SO_NOSIGPIPE (line 1318) | SO_NOSIGPIPE = 0x800
constant SO_OOBINLINE (line 1319) | SO_OOBINLINE = 0x100
constant SO_OVERFLOWED (line 1320) | SO_OVERFLOWED = 0x1009
constant SO_RCVBUF (line 1321) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1322) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1323) | SO_RCVTIMEO = 0x100c
constant SO_REUSEADDR (line 1324) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1325) | SO_REUSEPORT = 0x200
constant SO_SNDBUF (line 1326) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1327) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1328) | SO_SNDTIMEO = 0x100b
constant SO_TIMESTAMP (line 1329) | SO_TIMESTAMP = 0x2000
constant SO_TYPE (line 1330) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1331) | SO_USELOOPBACK = 0x40
constant SYSCTL_VERSION (line 1332) | SYSCTL_VERSION = 0x1000000
constant SYSCTL_VERS_0 (line 1333) | SYSCTL_VERS_0 = 0x0
constant SYSCTL_VERS_1 (line 1334) | SYSCTL_VERS_1 = 0x1000000
constant SYSCTL_VERS_MASK (line 1335) | SYSCTL_VERS_MASK = 0xff000000
constant S_ARCH1 (line 1336) | S_ARCH1 = 0x10000
constant S_ARCH2 (line 1337) | S_ARCH2 = 0x20000
constant S_BLKSIZE (line 1338) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1339) | S_IEXEC = 0x40
constant S_IFBLK (line 1340) | S_IFBLK = 0x6000
constant S_IFCHR (line 1341) | S_IFCHR = 0x2000
constant S_IFDIR (line 1342) | S_IFDIR = 0x4000
constant S_IFIFO (line 1343) | S_IFIFO = 0x1000
constant S_IFLNK (line 1344) | S_IFLNK = 0xa000
constant S_IFMT (line 1345) | S_IFMT = 0xf000
constant S_IFREG (line 1346) | S_IFREG = 0x8000
constant S_IFSOCK (line 1347) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1348) | S_IFWHT = 0xe000
constant S_IREAD (line 1349) | S_IREAD = 0x100
constant S_IRGRP (line 1350) | S_IRGRP = 0x20
constant S_IROTH (line 1351) | S_IROTH = 0x4
constant S_IRUSR (line 1352) | S_IRUSR = 0x100
constant S_IRWXG (line 1353) | S_IRWXG = 0x38
constant S_IRWXO (line 1354) | S_IRWXO = 0x7
constant S_IRWXU (line 1355) | S_IRWXU = 0x1c0
constant S_ISGID (line 1356) | S_ISGID = 0x400
constant S_ISTXT (line 1357) | S_ISTXT = 0x200
constant S_ISUID (line 1358) | S_ISUID = 0x800
constant S_ISVTX (line 1359) | S_ISVTX = 0x200
constant S_IWGRP (line 1360) | S_IWGRP = 0x10
constant S_IWOTH (line 1361) | S_IWOTH = 0x2
constant S_IWRITE (line 1362) | S_IWRITE = 0x80
constant S_IWUSR (line 1363) | S_IWUSR = 0x80
constant S_IXGRP (line 1364) | S_IXGRP = 0x8
constant S_IXOTH (line 1365) | S_IXOTH = 0x1
constant S_IXUSR (line 1366) | S_IXUSR = 0x40
constant S_LOGIN_SET (line 1367) | S_LOGIN_SET = 0x1
constant TCIFLUSH (line 1368) | TCIFLUSH = 0x1
constant TCIOFLUSH (line 1369) | TCIOFLUSH = 0x3
constant TCOFLUSH (line 1370) | TCOFLUSH = 0x2
constant TCP_CONGCTL (line 1371) | TCP_CONGCTL = 0x20
constant TCP_KEEPCNT (line 1372) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 1373) | TCP_KEEPIDLE = 0x3
constant TCP_KEEPINIT (line 1374) | TCP_KEEPINIT = 0x7
constant TCP_KEEPINTVL (line 1375) | TCP_KEEPINTVL = 0x5
constant TCP_MAXBURST (line 1376) | TCP_MAXBURST = 0x4
constant TCP_MAXSEG (line 1377) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1378) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 1379) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1380) | TCP_MD5SIG = 0x10
constant TCP_MINMSS (line 1381) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1382) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1383) | TCP_NODELAY = 0x1
constant TCSAFLUSH (line 1384) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1385) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1386) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1387) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1388) | TIOCDCDTIMESTAMP = 0x400c7458
constant TIOCDRAIN (line 1389) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1390) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1391) | TIOCEXT = 0x80047460
constant TIOCFLAG_CDTRCTS (line 1392) | TIOCFLAG_CDTRCTS = 0x10
constant TIOCFLAG_CLOCAL (line 1393) | TIOCFLAG_CLOCAL = 0x2
constant TIOCFLAG_CRTSCTS (line 1394) | TIOCFLAG_CRTSCTS = 0x4
constant TIOCFLAG_MDMBUF (line 1395) | TIOCFLAG_MDMBUF = 0x8
constant TIOCFLAG_SOFTCAR (line 1396) | TIOCFLAG_SOFTCAR = 0x1
constant TIOCFLUSH (line 1397) | TIOCFLUSH = 0x80047410
constant TIOCGETA (line 1398) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1399) | TIOCGETD = 0x4004741a
constant TIOCGFLAGS (line 1400) | TIOCGFLAGS = 0x4004745d
constant TIOCGLINED (line 1401) | TIOCGLINED = 0x40207442
constant TIOCGPGRP (line 1402) | TIOCGPGRP = 0x40047477
constant TIOCGQSIZE (line 1403) | TIOCGQSIZE = 0x40047481
constant TIOCGRANTPT (line 1404) | TIOCGRANTPT = 0x20007447
constant TIOCGSID (line 1405) | TIOCGSID = 0x40047463
constant TIOCGSIZE (line 1406) | TIOCGSIZE = 0x40087468
constant TIOCGWINSZ (line 1407) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1408) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1409) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 1410) | TIOCMGET = 0x4004746a
constant TIOCMSET (line 1411) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1412) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1413) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1414) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1415) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1416) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1417) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1418) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1419) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1420) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1421) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1422) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1423) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1424) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1425) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1426) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1427) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1428) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1429) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1430) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1431) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1432) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1433) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1434) | TIOCPKT_STOP = 0x4
constant TIOCPTMGET (line 1435) | TIOCPTMGET = 0x40287446
constant TIOCPTSNAME (line 1436) | TIOCPTSNAME = 0x40287448
constant TIOCRCVFRAME (line 1437) | TIOCRCVFRAME = 0x80047445
constant TIOCREMOTE (line 1438) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1439) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1440) | TIOCSCTTY = 0x20007461
constant TIOCSDTR (line 1441) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1442) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1443) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1444) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1445) | TIOCSETD = 0x8004741b
constant TIOCSFLAGS (line 1446) | TIOCSFLAGS = 0x8004745c
constant TIOCSIG (line 1447) | TIOCSIG = 0x2000745f
constant TIOCSLINED (line 1448) | TIOCSLINED = 0x80207443
constant TIOCSPGRP (line 1449) | TIOCSPGRP = 0x80047476
constant TIOCSQSIZE (line 1450) | TIOCSQSIZE = 0x80047480
constant TIOCSSIZE (line 1451) | TIOCSSIZE = 0x80087467
constant TIOCSTART (line 1452) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1453) | TIOCSTAT = 0x80047465
constant TIOCSTI (line 1454) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1455) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1456) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 1457) | TIOCUCNTL = 0x80047466
constant TIOCXMTFRAME (line 1458) | TIOCXMTFRAME = 0x80047444
constant TOSTOP (line 1459) | TOSTOP = 0x400000
constant VDISCARD (line 1460) | VDISCARD = 0xf
constant VDSUSP (line 1461) | VDSUSP = 0xb
constant VEOF (line 1462) | VEOF = 0x0
constant VEOL (line 1463) | VEOL = 0x1
constant VEOL2 (line 1464) | VEOL2 = 0x2
constant VERASE (line 1465) | VERASE = 0x3
constant VINTR (line 1466) | VINTR = 0x8
constant VKILL (line 1467) | VKILL = 0x5
constant VLNEXT (line 1468) | VLNEXT = 0xe
constant VMIN (line 1469) | VMIN = 0x10
constant VQUIT (line 1470) | VQUIT = 0x9
constant VREPRINT (line 1471) | VREPRINT = 0x6
constant VSTART (line 1472) | VSTART = 0xc
constant VSTATUS (line 1473) | VSTATUS = 0x12
constant VSTOP (line 1474) | VSTOP = 0xd
constant VSUSP (line 1475) | VSUSP = 0xa
constant VTIME (line 1476) | VTIME = 0x11
constant VWERASE (line 1477) | VWERASE = 0x4
constant WALL (line 1478) | WALL = 0x8
constant WALLSIG (line 1479) | WALLSIG = 0x8
constant WALTSIG (line 1480) | WALTSIG = 0x4
constant WCLONE (line 1481) | WCLONE = 0x4
constant WCOREFLAG (line 1482) | WCOREFLAG = 0x80
constant WNOHANG (line 1483) | WNOHANG = 0x1
constant WNOWAIT (line 1484) | WNOWAIT = 0x10000
constant WNOZOMBIE (line 1485) | WNOZOMBIE = 0x20000
constant WOPTSCHECKED (line 1486) | WOPTSCHECKED = 0x40000
constant WSTOPPED (line 1487) | WSTOPPED = 0x7f
constant WUNTRACED (line 1488) | WUNTRACED = 0x2
constant E2BIG (line 1493) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1494) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1495) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1496) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1497) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1498) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1499) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1500) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1501) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1502) | EBADMSG = syscall.Errno(0x58)
constant EBADRPC (line 1503) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1504) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1505) | ECANCELED = syscall.Errno(0x57)
constant ECHILD (line 1506) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1507) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1508) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1509) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1510) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1511) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1512) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1513) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1514) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1515) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1516) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1517) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1518) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1519) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1520) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1521) | EILSEQ = syscall.Errno(0x55)
constant EINPROGRESS (line 1522) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1523) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1524) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1525) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1526) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1527) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1528) | ELAST = syscall.Errno(0x60)
constant ELOOP (line 1529) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1530) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1531) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1532) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1533) | EMULTIHOP = syscall.Errno(0x5e)
constant ENAMETOOLONG (line 1534) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1535) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1536) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1537) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1538) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1539) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1540) | ENOATTR = syscall.Errno(0x5d)
constant ENOBUFS (line 1541) | ENOBUFS = syscall.Errno(0x37)
constant ENODATA (line 1542) | ENODATA = syscall.Errno(0x59)
constant ENODEV (line 1543) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1544) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1545) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1546) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1547) | ENOLINK = syscall.Errno(0x5f)
constant ENOMEM (line 1548) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1549) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1550) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1551) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1552) | ENOSR = syscall.Errno(0x5a)
constant ENOSTR (line 1553) | ENOSTR = syscall.Errno(0x5b)
constant ENOSYS (line 1554) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1555) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1556) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1557) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1558) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTSOCK (line 1559) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1560) | ENOTSUP = syscall.Errno(0x56)
constant ENOTTY (line 1561) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1562) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1563) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1564) | EOVERFLOW = syscall.Errno(0x54)
constant EPERM (line 1565) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1566) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1567) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1568) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1569) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1570) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1571) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1572) | EPROTO = syscall.Errno(0x60)
constant EPROTONOSUPPORT (line 1573) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1574) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1575) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1576) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1577) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1578) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1579) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1580) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1581) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1582) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1583) | ESTALE = syscall.Errno(0x46)
constant ETIME (line 1584) | ETIME = syscall.Errno(0x5c)
constant ETIMEDOUT (line 1585) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1586) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1587) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1588) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1589) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1590) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1595) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1596) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1597) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1598) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1599) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1600) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1601) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1602) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1603) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1604) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1605) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1606) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1607) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1608) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1609) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1610) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 1611) | SIGPWR = syscall.Signal(0x20)
constant SIGQUIT (line 1612) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1613) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1614) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1615) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1616) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1617) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1618) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1619) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1620) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1621) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1622) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1623) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1624) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1625) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1626) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1627) | 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 CRTSCTS (line 162) | CRTSCTS = 0x10000
constant CS5 (line 163) | CS5 = 0x0
constant CS6 (line 164) | CS6 = 0x100
constant CS7 (line 165) | CS7 = 0x200
constant CS8 (line 166) | CS8 = 0x300
constant CSIZE (line 167) | CSIZE = 0x300
constant CSTART (line 168) | CSTART = 0x11
constant CSTATUS (line 169) | CSTATUS = 0x14
constant CSTOP (line 170) | CSTOP = 0x13
constant CSTOPB (line 171) | CSTOPB = 0x400
constant CSUSP (line 172) | CSUSP = 0x1a
constant CTL_HW (line 173) | CTL_HW = 0x6
constant CTL_KERN (line 174) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 175) | CTL_MAXNAME = 0xc
constant CTL_NET (line 176) | CTL_NET = 0x4
constant CTL_QUERY (line 177) | CTL_QUERY = -0x2
constant DIOCBSFLUSH (line 178) | DIOCBSFLUSH = 0x20006478
constant DLT_A429 (line 179) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 180) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 181) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 182) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 183) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 184) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 185) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 186) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 187) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 188) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 189) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 190) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 191) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_HCI_H4 (line 192) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 193) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_CAN20B (line 194) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 195) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 196) | DLT_CHAOS = 0x5
constant DLT_CISCO_IOS (line 197) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 198) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 199) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DECT (line 200) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 201) | DLT_DOCSIS = 0x8f
constant DLT_ECONET (line 202) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 203) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 204) | DLT_EN3MB = 0x2
constant DLT_ENC (line 205) | DLT_ENC = 0x6d
constant DLT_ERF (line 206) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 207) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 208) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 209) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 210) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 211) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 212) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 213) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 214) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 215) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 216) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 217) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 218) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 219) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 220) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 221) | DLT_GSMTAP_UM = 0xd9
constant DLT_HDLC (line 222) | DLT_HDLC = 0x10
constant DLT_HHDLC (line 223) | DLT_HHDLC = 0x79
constant DLT_HIPPI (line 224) | DLT_HIPPI = 0xf
constant DLT_IBM_SN (line 225) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 226) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 227) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 228) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 229) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 230) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 231) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 232) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NONASK_PHY (line 233) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 234) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 235) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPMB (line 236) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 237) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPNET (line 238) | DLT_IPNET = 0xe2
constant DLT_IPV4 (line 239) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 240) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 241) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 242) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 243) | DLT_JUNIPER_ATM2 = 0x87
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_FRELAY (line 247) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 248) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 249) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 250) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 251) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 252) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 253) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 254) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 255) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 256) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 257) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 258) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_ST (line 259) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 260) | DLT_JUNIPER_VP = 0xb7
constant DLT_LAPB_WITH_DIR (line 261) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 262) | DLT_LAPD = 0xcb
constant DLT_LIN (line 263) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 264) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 265) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 266) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_SLL (line 267) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 268) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 269) | DLT_LTALK = 0x72
constant DLT_MFR (line 270) | DLT_MFR = 0xb6
constant DLT_MOST (line 271) | DLT_MOST = 0xd3
constant DLT_MPLS (line 272) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 273) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 274) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 275) | DLT_MTP3 = 0x8d
constant DLT_NULL (line 276) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 277) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 278) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 279) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 280) | DLT_PPI = 0xc0
constant DLT_PPP (line 281) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 282) | DLT_PPP_BSDOS = 0xe
constant DLT_PPP_ETHER (line 283) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 284) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 285) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 286) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PRISM_HEADER (line 287) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 288) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 289) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 290) | DLT_RAW = 0xc
constant DLT_RAWAF_MASK (line 291) | DLT_RAWAF_MASK = 0x2240000
constant DLT_RIO (line 292) | DLT_RIO = 0x7c
constant DLT_SCCP (line 293) | DLT_SCCP = 0x8e
constant DLT_SITA (line 294) | DLT_SITA = 0xc4
constant DLT_SLIP (line 295) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 296) | DLT_SLIP_BSDOS = 0xd
constant DLT_SUNATM (line 297) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 298) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 299) | DLT_TZSP = 0x80
constant DLT_USB (line 300) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 301) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 302) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_WIHART (line 303) | DLT_WIHART = 0xdf
constant DLT_X2E_SERIAL (line 304) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 305) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 306) | DT_BLK = 0x6
constant DT_CHR (line 307) | DT_CHR = 0x2
constant DT_DIR (line 308) | DT_DIR = 0x4
constant DT_FIFO (line 309) | DT_FIFO = 0x1
constant DT_LNK (line 310) | DT_LNK = 0xa
constant DT_REG (line 311) | DT_REG = 0x8
constant DT_SOCK (line 312) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 313) | DT_UNKNOWN = 0x0
constant DT_WHT (line 314) | DT_WHT = 0xe
constant ECHO (line 315) | ECHO = 0x8
constant ECHOCTL (line 316) | ECHOCTL = 0x40
constant ECHOE (line 317) | ECHOE = 0x2
constant ECHOK (line 318) | ECHOK = 0x4
constant ECHOKE (line 319) | ECHOKE = 0x1
constant ECHONL (line 320) | ECHONL = 0x10
constant ECHOPRT (line 321) | ECHOPRT = 0x20
constant EMUL_LINUX (line 322) | EMUL_LINUX = 0x1
constant EMUL_LINUX32 (line 323) | EMUL_LINUX32 = 0x5
constant EMUL_MAXID (line 324) | EMUL_MAXID = 0x6
constant ETHERCAP_JUMBO_MTU (line 325) | ETHERCAP_JUMBO_MTU = 0x4
constant ETHERCAP_VLAN_HWTAGGING (line 326) | ETHERCAP_VLAN_HWTAGGING = 0x2
constant ETHERCAP_VLAN_MTU (line 327) | ETHERCAP_VLAN_MTU = 0x1
constant ETHERMIN (line 328) | ETHERMIN = 0x2e
constant ETHERMTU (line 329) | ETHERMTU = 0x5dc
constant ETHERMTU_JUMBO (line 330) | ETHERMTU_JUMBO = 0x2328
constant ETHERTYPE_8023 (line 331) | ETHERTYPE_8023 = 0x4
constant ETHERTYPE_AARP (line 332) | ETHERTYPE_AARP = 0x80f3
constant ETHERTYPE_ACCTON (line 333) | ETHERTYPE_ACCTON = 0x8390
constant ETHERTYPE_AEONIC (line 334) | ETHERTYPE_AEONIC = 0x8036
constant ETHERTYPE_ALPHA (line 335) | ETHERTYPE_ALPHA = 0x814a
constant ETHERTYPE_AMBER (line 336) | ETHERTYPE_AMBER = 0x6008
constant ETHERTYPE_AMOEBA (line 337) | ETHERTYPE_AMOEBA = 0x8145
constant ETHERTYPE_APOLLO (line 338) | ETHERTYPE_APOLLO = 0x80f7
constant ETHERTYPE_APOLLODOMAIN (line 339) | ETHERTYPE_APOLLODOMAIN = 0x8019
constant ETHERTYPE_APPLETALK (line 340) | ETHERTYPE_APPLETALK = 0x809b
constant ETHERTYPE_APPLITEK (line 341) | ETHERTYPE_APPLITEK = 0x80c7
constant ETHERTYPE_ARGONAUT (line 342) | ETHERTYPE_ARGONAUT = 0x803a
constant ETHERTYPE_ARP (line 343) | ETHERTYPE_ARP = 0x806
constant ETHERTYPE_AT (line 344) | ETHERTYPE_AT = 0x809b
constant ETHERTYPE_ATALK (line 345) | ETHERTYPE_ATALK = 0x809b
constant ETHERTYPE_ATOMIC (line 346) | ETHERTYPE_ATOMIC = 0x86df
constant ETHERTYPE_ATT (line 347) | ETHERTYPE_ATT = 0x8069
constant ETHERTYPE_ATTSTANFORD (line 348) | ETHERTYPE_ATTSTANFORD = 0x8008
constant ETHERTYPE_AUTOPHON (line 349) | ETHERTYPE_AUTOPHON = 0x806a
constant ETHERTYPE_AXIS (line 350) | ETHERTYPE_AXIS = 0x8856
constant ETHERTYPE_BCLOOP (line 351) | ETHERTYPE_BCLOOP = 0x9003
constant ETHERTYPE_BOFL (line 352) | ETHERTYPE_BOFL = 0x8102
constant ETHERTYPE_CABLETRON (line 353) | ETHERTYPE_CABLETRON = 0x7034
constant ETHERTYPE_CHAOS (line 354) | ETHERTYPE_CHAOS = 0x804
constant ETHERTYPE_COMDESIGN (line 355) | ETHERTYPE_COMDESIGN = 0x806c
constant ETHERTYPE_COMPUGRAPHIC (line 356) | ETHERTYPE_COMPUGRAPHIC = 0x806d
constant ETHERTYPE_COUNTERPOINT (line 357) | ETHERTYPE_COUNTERPOINT = 0x8062
constant ETHERTYPE_CRONUS (line 358) | ETHERTYPE_CRONUS = 0x8004
constant ETHERTYPE_CRONUSVLN (line 359) | ETHERTYPE_CRONUSVLN = 0x8003
constant ETHERTYPE_DCA (line 360) | ETHERTYPE_DCA = 0x1234
constant ETHERTYPE_DDE (line 361) | ETHERTYPE_DDE = 0x807b
constant ETHERTYPE_DEBNI (line 362) | ETHERTYPE_DEBNI = 0xaaaa
constant ETHERTYPE_DECAM (line 363) | ETHERTYPE_DECAM = 0x8048
constant ETHERTYPE_DECCUST (line 364) | ETHERTYPE_DECCUST = 0x6006
constant ETHERTYPE_DECDIAG (line 365) | ETHERTYPE_DECDIAG = 0x6005
constant ETHERTYPE_DECDNS (line 366) | ETHERTYPE_DECDNS = 0x803c
constant ETHERTYPE_DECDTS (line 367) | ETHERTYPE_DECDTS = 0x803e
constant ETHERTYPE_DECEXPER (line 368) | ETHERTYPE_DECEXPER = 0x6000
constant ETHERTYPE_DECLAST (line 369) | ETHERTYPE_DECLAST = 0x8041
constant ETHERTYPE_DECLTM (line 370) | ETHERTYPE_DECLTM = 0x803f
constant ETHERTYPE_DECMUMPS (line 371) | ETHERTYPE_DECMUMPS = 0x6009
constant ETHERTYPE_DECNETBIOS (line 372) | ETHERTYPE_DECNETBIOS = 0x8040
constant ETHERTYPE_DELTACON (line 373) | ETHERTYPE_DELTACON = 0x86de
constant ETHERTYPE_DIDDLE (line 374) | ETHERTYPE_DIDDLE = 0x4321
constant ETHERTYPE_DLOG1 (line 375) | ETHERTYPE_DLOG1 = 0x660
constant ETHERTYPE_DLOG2 (line 376) | ETHERTYPE_DLOG2 = 0x661
constant ETHERTYPE_DN (line 377) | ETHERTYPE_DN = 0x6003
constant ETHERTYPE_DOGFIGHT (line 378) | ETHERTYPE_DOGFIGHT = 0x1989
constant ETHERTYPE_DSMD (line 379) | ETHERTYPE_DSMD = 0x8039
constant ETHERTYPE_ECMA (line 380) | ETHERTYPE_ECMA = 0x803
constant ETHERTYPE_ENCRYPT (line 381) | ETHERTYPE_ENCRYPT = 0x803d
constant ETHERTYPE_ES (line 382) | ETHERTYPE_ES = 0x805d
constant ETHERTYPE_EXCELAN (line 383) | ETHERTYPE_EXCELAN = 0x8010
constant ETHERTYPE_EXPERDATA (line 384) | ETHERTYPE_EXPERDATA = 0x8049
constant ETHERTYPE_FLIP (line 385) | ETHERTYPE_FLIP = 0x8146
constant ETHERTYPE_FLOWCONTROL (line 386) | ETHERTYPE_FLOWCONTROL = 0x8808
constant ETHERTYPE_FRARP (line 387) | ETHERTYPE_FRARP = 0x808
constant ETHERTYPE_GENDYN (line 388) | ETHERTYPE_GENDYN = 0x8068
constant ETHERTYPE_HAYES (line 389) | ETHERTYPE_HAYES = 0x8130
constant ETHERTYPE_HIPPI_FP (line 390) | ETHERTYPE_HIPPI_FP = 0x8180
constant ETHERTYPE_HITACHI (line 391) | ETHERTYPE_HITACHI = 0x8820
constant ETHERTYPE_HP (line 392) | ETHERTYPE_HP = 0x8005
constant ETHERTYPE_IEEEPUP (line 393) | ETHERTYPE_IEEEPUP = 0xa00
constant ETHERTYPE_IEEEPUPAT (line 394) | ETHERTYPE_IEEEPUPAT = 0xa01
constant ETHERTYPE_IMLBL (line 395) | ETHERTYPE_IMLBL = 0x4c42
constant ETHERTYPE_IMLBLDIAG (line 396) | ETHERTYPE_IMLBLDIAG = 0x424c
constant ETHERTYPE_IP (line 397) | ETHERTYPE_IP = 0x800
constant ETHERTYPE_IPAS (line 398) | ETHERTYPE_IPAS = 0x876c
constant ETHERTYPE_IPV6 (line 399) | ETHERTYPE_IPV6 = 0x86dd
constant ETHERTYPE_IPX (line 400) | ETHERTYPE_IPX = 0x8137
constant ETHERTYPE_IPXNEW (line 401) | ETHERTYPE_IPXNEW = 0x8037
constant ETHERTYPE_KALPANA (line 402) | ETHERTYPE_KALPANA = 0x8582
constant ETHERTYPE_LANBRIDGE (line 403) | ETHERTYPE_LANBRIDGE = 0x8038
constant ETHERTYPE_LANPROBE (line 404) | ETHERTYPE_LANPROBE = 0x8888
constant ETHERTYPE_LAT (line 405) | ETHERTYPE_LAT = 0x6004
constant ETHERTYPE_LBACK (line 406) | ETHERTYPE_LBACK = 0x9000
constant ETHERTYPE_LITTLE (line 407) | ETHERTYPE_LITTLE = 0x8060
constant ETHERTYPE_LOGICRAFT (line 408) | ETHERTYPE_LOGICRAFT = 0x8148
constant ETHERTYPE_LOOPBACK (line 409) | ETHERTYPE_LOOPBACK = 0x9000
constant ETHERTYPE_MATRA (line 410) | ETHERTYPE_MATRA = 0x807a
constant ETHERTYPE_MAX (line 411) | ETHERTYPE_MAX = 0xffff
constant ETHERTYPE_MERIT (line 412) | ETHERTYPE_MERIT = 0x807c
constant ETHERTYPE_MICP (line 413) | ETHERTYPE_MICP = 0x873a
constant ETHERTYPE_MOPDL (line 414) | ETHERTYPE_MOPDL = 0x6001
constant ETHERTYPE_MOPRC (line 415) | ETHERTYPE_MOPRC = 0x6002
constant ETHERTYPE_MOTOROLA (line 416) | ETHERTYPE_MOTOROLA = 0x818d
constant ETHERTYPE_MPLS (line 417) | ETHERTYPE_MPLS = 0x8847
constant ETHERTYPE_MPLS_MCAST (line 418) | ETHERTYPE_MPLS_MCAST = 0x8848
constant ETHERTYPE_MUMPS (line 419) | ETHERTYPE_MUMPS = 0x813f
constant ETHERTYPE_NBPCC (line 420) | ETHERTYPE_NBPCC = 0x3c04
constant ETHERTYPE_NBPCLAIM (line 421) | ETHERTYPE_NBPCLAIM = 0x3c09
constant ETHERTYPE_NBPCLREQ (line 422) | ETHERTYPE_NBPCLREQ = 0x3c05
constant ETHERTYPE_NBPCLRSP (line 423) | ETHERTYPE_NBPCLRSP = 0x3c06
constant ETHERTYPE_NBPCREQ (line 424) | ETHERTYPE_NBPCREQ = 0x3c02
constant ETHERTYPE_NBPCRSP (line 425) | ETHERTYPE_NBPCRSP = 0x3c03
constant ETHERTYPE_NBPDG (line 426) | ETHERTYPE_NBPDG = 0x3c07
constant ETHERTYPE_NBPDGB (line 427) | ETHERTYPE_NBPDGB = 0x3c08
constant ETHERTYPE_NBPDLTE (line 428) | ETHERTYPE_NBPDLTE = 0x3c0a
constant ETHERTYPE_NBPRAR (line 429) | ETHERTYPE_NBPRAR = 0x3c0c
constant ETHERTYPE_NBPRAS (line 430) | ETHERTYPE_NBPRAS = 0x3c0b
constant ETHERTYPE_NBPRST (line 431) | ETHERTYPE_NBPRST = 0x3c0d
constant ETHERTYPE_NBPSCD (line 432) | ETHERTYPE_NBPSCD = 0x3c01
constant ETHERTYPE_NBPVCD (line 433) | ETHERTYPE_NBPVCD = 0x3c00
constant ETHERTYPE_NBS (line 434) | ETHERTYPE_NBS = 0x802
constant ETHERTYPE_NCD (line 435) | ETHERTYPE_NCD = 0x8149
constant ETHERTYPE_NESTAR (line 436) | ETHERTYPE_NESTAR = 0x8006
constant ETHERTYPE_NETBEUI (line 437) | ETHERTYPE_NETBEUI = 0x8191
constant ETHERTYPE_NOVELL (line 438) | ETHERTYPE_NOVELL = 0x8138
constant ETHERTYPE_NS (line 439) | ETHERTYPE_NS = 0x600
constant ETHERTYPE_NSAT (line 440) | ETHERTYPE_NSAT = 0x601
constant ETHERTYPE_NSCOMPAT (line 441) | ETHERTYPE_NSCOMPAT = 0x807
constant ETHERTYPE_NTRAILER (line 442) | ETHERTYPE_NTRAILER = 0x10
constant ETHERTYPE_OS9 (line 443) | ETHERTYPE_OS9 = 0x7007
constant ETHERTYPE_OS9NET (line 444) | ETHERTYPE_OS9NET = 0x7009
constant ETHERTYPE_PACER (line 445) | ETHERTYPE_PACER = 0x80c6
constant ETHERTYPE_PAE (line 446) | ETHERTYPE_PAE = 0x888e
constant ETHERTYPE_PCS (line 447) | ETHERTYPE_PCS = 0x4242
constant ETHERTYPE_PLANNING (line 448) | ETHERTYPE_PLANNING = 0x8044
constant ETHERTYPE_PPP (line 449) | ETHERTYPE_PPP = 0x880b
constant ETHERTYPE_PPPOE (line 450) | ETHERTYPE_PPPOE = 0x8864
constant ETHERTYPE_PPPOEDISC (line 451) | ETHERTYPE_PPPOEDISC = 0x8863
constant ETHERTYPE_PRIMENTS (line 452) | ETHERTYPE_PRIMENTS = 0x7031
constant ETHERTYPE_PUP (line 453) | ETHERTYPE_PUP = 0x200
constant ETHERTYPE_PUPAT (line 454) | ETHERTYPE_PUPAT = 0x200
constant ETHERTYPE_RACAL (line 455) | ETHERTYPE_RACAL = 0x7030
constant ETHERTYPE_RATIONAL (line 456) | ETHERTYPE_RATIONAL = 0x8150
constant ETHERTYPE_RAWFR (line 457) | ETHERTYPE_RAWFR = 0x6559
constant ETHERTYPE_RCL (line 458) | ETHERTYPE_RCL = 0x1995
constant ETHERTYPE_RDP (line 459) | ETHERTYPE_RDP = 0x8739
constant ETHERTYPE_RETIX (line 460) | ETHERTYPE_RETIX = 0x80f2
constant ETHERTYPE_REVARP (line 461) | ETHERTYPE_REVARP = 0x8035
constant ETHERTYPE_SCA (line 462) | ETHERTYPE_SCA = 0x6007
constant ETHERTYPE_SECTRA (line 463) | ETHERTYPE_SECTRA = 0x86db
constant ETHERTYPE_SECUREDATA (line 464) | ETHERTYPE_SECUREDATA = 0x876d
constant ETHERTYPE_SGITW (line 465) | ETHERTYPE_SGITW = 0x817e
constant ETHERTYPE_SG_BOUNCE (line 466) | ETHERTYPE_SG_BOUNCE = 0x8016
constant ETHERTYPE_SG_DIAG (line 467) | ETHERTYPE_SG_DIAG = 0x8013
constant ETHERTYPE_SG_NETGAMES (line 468) | ETHERTYPE_SG_NETGAMES = 0x8014
constant ETHERTYPE_SG_RESV (line 469) | ETHERTYPE_SG_RESV = 0x8015
constant ETHERTYPE_SIMNET (line 470) | ETHERTYPE_SIMNET = 0x5208
constant ETHERTYPE_SLOWPROTOCOLS (line 471) | ETHERTYPE_SLOWPROTOCOLS = 0x8809
constant ETHERTYPE_SNA (line 472) | ETHERTYPE_SNA = 0x80d5
constant ETHERTYPE_SNMP (line 473) | ETHERTYPE_SNMP = 0x814c
constant ETHERTYPE_SONIX (line 474) | ETHERTYPE_SONIX = 0xfaf5
constant ETHERTYPE_SPIDER (line 475) | ETHERTYPE_SPIDER = 0x809f
constant ETHERTYPE_SPRITE (line 476) | ETHERTYPE_SPRITE = 0x500
constant ETHERTYPE_STP (line 477) | ETHERTYPE_STP = 0x8181
constant ETHERTYPE_TALARIS (line 478) | ETHERTYPE_TALARIS = 0x812b
constant ETHERTYPE_TALARISMC (line 479) | ETHERTYPE_TALARISMC = 0x852b
constant ETHERTYPE_TCPCOMP (line 480) | ETHERTYPE_TCPCOMP = 0x876b
constant ETHERTYPE_TCPSM (line 481) | ETHERTYPE_TCPSM = 0x9002
constant ETHERTYPE_TEC (line 482) | ETHERTYPE_TEC = 0x814f
constant ETHERTYPE_TIGAN (line 483) | ETHERTYPE_TIGAN = 0x802f
constant ETHERTYPE_TRAIL (line 484) | ETHERTYPE_TRAIL = 0x1000
constant ETHERTYPE_TRANSETHER (line 485) | ETHERTYPE_TRANSETHER = 0x6558
constant ETHERTYPE_TYMSHARE (line 486) | ETHERTYPE_TYMSHARE = 0x802e
constant ETHERTYPE_UBBST (line 487) | ETHERTYPE_UBBST = 0x7005
constant ETHERTYPE_UBDEBUG (line 488) | ETHERTYPE_UBDEBUG = 0x900
constant ETHERTYPE_UBDIAGLOOP (line 489) | ETHERTYPE_UBDIAGLOOP = 0x7002
constant ETHERTYPE_UBDL (line 490) | ETHERTYPE_UBDL = 0x7000
constant ETHERTYPE_UBNIU (line 491) | ETHERTYPE_UBNIU = 0x7001
constant ETHERTYPE_UBNMC (line 492) | ETHERTYPE_UBNMC = 0x7003
constant ETHERTYPE_VALID (line 493) | ETHERTYPE_VALID = 0x1600
constant ETHERTYPE_VARIAN (line 494) | ETHERTYPE_VARIAN = 0x80dd
constant ETHERTYPE_VAXELN (line 495) | ETHERTYPE_VAXELN = 0x803b
constant ETHERTYPE_VEECO (line 496) | ETHERTYPE_VEECO = 0x8067
constant ETHERTYPE_VEXP (line 497) | ETHERTYPE_VEXP = 0x805b
constant ETHERTYPE_VGLAB (line 498) | ETHERTYPE_VGLAB = 0x8131
constant ETHERTYPE_VINES (line 499) | ETHERTYPE_VINES = 0xbad
constant ETHERTYPE_VINESECHO (line 500) | ETHERTYPE_VINESECHO = 0xbaf
constant ETHERTYPE_VINESLOOP (line 501) | ETHERTYPE_VINESLOOP = 0xbae
constant ETHERTYPE_VITAL (line 502) | ETHERTYPE_VITAL = 0xff00
constant ETHERTYPE_VLAN (line 503) | ETHERTYPE_VLAN = 0x8100
constant ETHERTYPE_VLTLMAN (line 504) | ETHERTYPE_VLTLMAN = 0x8080
constant ETHERTYPE_VPROD (line 505) | ETHERTYPE_VPROD = 0x805c
constant ETHERTYPE_VURESERVED (line 506) | ETHERTYPE_VURESERVED = 0x8147
constant ETHERTYPE_WATERLOO (line 507) | ETHERTYPE_WATERLOO = 0x8130
constant ETHERTYPE_WELLFLEET (line 508) | ETHERTYPE_WELLFLEET = 0x8103
constant ETHERTYPE_X25 (line 509) | ETHERTYPE_X25 = 0x805
constant ETHERTYPE_X75 (line 510) | ETHERTYPE_X75 = 0x801
constant ETHERTYPE_XNSSM (line 511) | ETHERTYPE_XNSSM = 0x9001
constant ETHERTYPE_XTP (line 512) | ETHERTYPE_XTP = 0x817d
constant ETHER_ADDR_LEN (line 513) | ETHER_ADDR_LEN = 0x6
constant ETHER_CRC_LEN (line 514) | ETHER_CRC_LEN = 0x4
constant ETHER_CRC_POLY_BE (line 515) | ETHER_CRC_POLY_BE = 0x4c11db6
constant ETHER_CRC_POLY_LE (line 516) | ETHER_CRC_POLY_LE = 0xedb88320
constant ETHER_HDR_LEN (line 517) | ETHER_HDR_LEN = 0xe
constant ETHER_MAX_LEN (line 518) | ETHER_MAX_LEN = 0x5ee
constant ETHER_MAX_LEN_JUMBO (line 519) | ETHER_MAX_LEN_JUMBO = 0x233a
constant ETHER_MIN_LEN (line 520) | ETHER_MIN_LEN = 0x40
constant ETHER_PPPOE_ENCAP_LEN (line 521) | ETHER_PPPOE_ENCAP_LEN = 0x8
constant ETHER_TYPE_LEN (line 522) | ETHER_TYPE_LEN = 0x2
constant ETHER_VLAN_ENCAP_LEN (line 523) | ETHER_VLAN_ENCAP_LEN = 0x4
constant EVFILT_AIO (line 524) | EVFILT_AIO = 0x2
constant EVFILT_PROC (line 525) | EVFILT_PROC = 0x4
constant EVFILT_READ (line 526) | EVFILT_READ = 0x0
constant EVFILT_SIGNAL (line 527) | EVFILT_SIGNAL = 0x5
constant EVFILT_SYSCOUNT (line 528) | EVFILT_SYSCOUNT = 0x7
constant EVFILT_TIMER (line 529) | EVFILT_TIMER = 0x6
constant EVFILT_VNODE (line 530) | EVFILT_VNODE = 0x3
constant EVFILT_WRITE (line 531) | EVFILT_WRITE = 0x1
constant EV_ADD (line 532) | EV_ADD = 0x1
constant EV_CLEAR (line 533) | EV_CLEAR = 0x20
constant EV_DELETE (line 534) | EV_DELETE = 0x2
constant EV_DISABLE (line 535) | EV_DISABLE = 0x8
constant EV_ENABLE (line 536) | EV_ENABLE = 0x4
constant EV_EOF (line 537) | EV_EOF = 0x8000
constant EV_ERROR (line 538) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 539) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 540) | EV_ONESHOT = 0x10
constant EV_SYSFLAGS (line 541) | EV_SYSFLAGS = 0xf000
constant EXTA (line 542) | EXTA = 0x4b00
constant EXTATTR_CMD_START (line 543) | EXTATTR_CMD_START = 0x1
constant EXTATTR_CMD_STOP (line 544) | EXTATTR_CMD_STOP = 0x2
constant EXTATTR_NAMESPACE_SYSTEM (line 545) | EXTATTR_NAMESPACE_SYSTEM = 0x2
constant EXTATTR_NAMESPACE_USER (line 546) | EXTATTR_NAMESPACE_USER = 0x1
constant EXTB (line 547) | EXTB = 0x9600
constant EXTPROC (line 548) | EXTPROC = 0x800
constant FD_CLOEXEC (line 549) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 550) | FD_SETSIZE = 0x100
constant FLUSHO (line 551) | FLUSHO = 0x800000
constant F_CLOSEM (line 552) | F_CLOSEM = 0xa
constant F_DUPFD (line 553) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 554) | F_DUPFD_CLOEXEC = 0xc
constant F_FSCTL (line 555) | F_FSCTL = -0x80000000
constant F_FSDIRMASK (line 556) | F_FSDIRMASK = 0x70000000
constant F_FSIN (line 557) | F_FSIN = 0x10000000
constant F_FSINOUT (line 558) | F_FSINOUT = 0x30000000
constant F_FSOUT (line 559) | F_FSOUT = 0x20000000
constant F_FSPRIV (line 560) | F_FSPRIV = 0x8000
constant F_FSVOID (line 561) | F_FSVOID = 0x40000000
constant F_GETFD (line 562) | F_GETFD = 0x1
constant F_GETFL (line 563) | F_GETFL = 0x3
constant F_GETLK (line 564) | F_GETLK = 0x7
constant F_GETNOSIGPIPE (line 565) | F_GETNOSIGPIPE = 0xd
constant F_GETOWN (line 566) | F_GETOWN = 0x5
constant F_MAXFD (line 567) | F_MAXFD = 0xb
constant F_OK (line 568) | F_OK = 0x0
constant F_PARAM_MASK (line 569) | F_PARAM_MASK = 0xfff
constant F_PARAM_MAX (line 570) | F_PARAM_MAX = 0xfff
constant F_RDLCK (line 571) | F_RDLCK = 0x1
constant F_SETFD (line 572) | F_SETFD = 0x2
constant F_SETFL (line 573) | F_SETFL = 0x4
constant F_SETLK (line 574) | F_SETLK = 0x8
constant F_SETLKW (line 575) | F_SETLKW = 0x9
constant F_SETNOSIGPIPE (line 576) | F_SETNOSIGPIPE = 0xe
constant F_SETOWN (line 577) | F_SETOWN = 0x6
constant F_UNLCK (line 578) | F_UNLCK = 0x2
constant F_WRLCK (line 579) | F_WRLCK = 0x3
constant HUPCL (line 580) | HUPCL = 0x4000
constant HW_MACHINE (line 581) | HW_MACHINE = 0x1
constant ICANON (line 582) | ICANON = 0x100
constant ICMP6_FILTER (line 583) | ICMP6_FILTER = 0x12
constant ICRNL (line 584) | ICRNL = 0x100
constant IEXTEN (line 585) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 586) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 587) | IFAN_DEPARTURE = 0x1
constant IFA_ROUTE (line 588) | IFA_ROUTE = 0x1
constant IFF_ALLMULTI (line 589) | IFF_ALLMULTI = 0x200
constant IFF_BROADCAST (line 590) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 591) | IFF_CANTCHANGE = 0x8f52
constant IFF_DEBUG (line 592) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 593) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 594) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 595) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 596) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 597) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 598) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 599) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 600) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 601) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 602) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 603) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 604) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 605) | IFF_UP = 0x1
constant IFNAMSIZ (line 606) | IFNAMSIZ = 0x10
constant IFT_1822 (line 607) | IFT_1822 = 0x2
constant IFT_A12MPPSWITCH (line 608) | IFT_A12MPPSWITCH = 0x82
constant IFT_AAL2 (line 609) | IFT_AAL2 = 0xbb
constant IFT_AAL5 (line 610) | IFT_AAL5 = 0x31
constant IFT_ADSL (line 611) | IFT_ADSL = 0x5e
constant IFT_AFLANE8023 (line 612) | IFT_AFLANE8023 = 0x3b
constant IFT_AFLANE8025 (line 613) | IFT_AFLANE8025 = 0x3c
constant IFT_ARAP (line 614) | IFT_ARAP = 0x58
constant IFT_ARCNET (line 615) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 616) | IFT_ARCNETPLUS = 0x24
constant IFT_ASYNC (line 617) | IFT_ASYNC = 0x54
constant IFT_ATM (line 618) | IFT_ATM = 0x25
constant IFT_ATMDXI (line 619) | IFT_ATMDXI = 0x69
constant IFT_ATMFUNI (line 620) | IFT_ATMFUNI = 0x6a
constant IFT_ATMIMA (line 621) | IFT_ATMIMA = 0x6b
constant IFT_ATMLOGICAL (line 622) | IFT_ATMLOGICAL = 0x50
constant IFT_ATMRADIO (line 623) | IFT_ATMRADIO = 0xbd
constant IFT_ATMSUBINTERFACE (line 624) | IFT_ATMSUBINTERFACE = 0x86
constant IFT_ATMVCIENDPT (line 625) | IFT_ATMVCIENDPT = 0xc2
constant IFT_ATMVIRTUAL (line 626) | IFT_ATMVIRTUAL = 0x95
constant IFT_BGPPOLICYACCOUNTING (line 627) | IFT_BGPPOLICYACCOUNTING = 0xa2
constant IFT_BRIDGE (line 628) | IFT_BRIDGE = 0xd1
constant IFT_BSC (line 629) | IFT_BSC = 0x53
constant IFT_CARP (line 630) | IFT_CARP = 0xf8
constant IFT_CCTEMUL (line 631) | IFT_CCTEMUL = 0x3d
constant IFT_CEPT (line 632) | IFT_CEPT = 0x13
constant IFT_CES (line 633) | IFT_CES = 0x85
constant IFT_CHANNEL (line 634) | IFT_CHANNEL = 0x46
constant IFT_CNR (line 635) | IFT_CNR = 0x55
constant IFT_COFFEE (line 636) | IFT_COFFEE = 0x84
constant IFT_COMPOSITELINK (line 637) | IFT_COMPOSITELINK = 0x9b
constant IFT_DCN (line 638) | IFT_DCN = 0x8d
constant IFT_DIGITALPOWERLINE (line 639) | IFT_DIGITALPOWERLINE = 0x8a
constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 640) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
constant IFT_DLSW (line 641) | IFT_DLSW = 0x4a
constant IFT_DOCSCABLEDOWNSTREAM (line 642) | IFT_DOCSCABLEDOWNSTREAM = 0x80
constant IFT_DOCSCABLEMACLAYER (line 643) | IFT_DOCSCABLEMACLAYER = 0x7f
constant IFT_DOCSCABLEUPSTREAM (line 644) | IFT_DOCSCABLEUPSTREAM = 0x81
constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 645) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd
constant IFT_DS0 (line 646) | IFT_DS0 = 0x51
constant IFT_DS0BUNDLE (line 647) | IFT_DS0BUNDLE = 0x52
constant IFT_DS1FDL (line 648) | IFT_DS1FDL = 0xaa
constant IFT_DS3 (line 649) | IFT_DS3 = 0x1e
constant IFT_DTM (line 650) | IFT_DTM = 0x8c
constant IFT_DVBASILN (line 651) | IFT_DVBASILN = 0xac
constant IFT_DVBASIOUT (line 652) | IFT_DVBASIOUT = 0xad
constant IFT_DVBRCCDOWNSTREAM (line 653) | IFT_DVBRCCDOWNSTREAM = 0x93
constant IFT_DVBRCCMACLAYER (line 654) | IFT_DVBRCCMACLAYER = 0x92
constant IFT_DVBRCCUPSTREAM (line 655) | IFT_DVBRCCUPSTREAM = 0x94
constant IFT_ECONET (line 656) | IFT_ECONET = 0xce
constant IFT_EON (line 657) | IFT_EON = 0x19
constant IFT_EPLRS (line 658) | IFT_EPLRS = 0x57
constant IFT_ESCON (line 659) | IFT_ESCON = 0x49
constant IFT_ETHER (line 660) | IFT_ETHER = 0x6
constant IFT_FAITH (line 661) | IFT_FAITH = 0xf2
constant IFT_FAST (line 662) | IFT_FAST = 0x7d
constant IFT_FASTETHER (line 663) | IFT_FASTETHER = 0x3e
constant IFT_FASTETHERFX (line 664) | IFT_FASTETHERFX = 0x45
constant IFT_FDDI (line 665) | IFT_FDDI = 0xf
constant IFT_FIBRECHANNEL (line 666) | IFT_FIBRECHANNEL = 0x38
constant IFT_FRAMERELAYINTERCONNECT (line 667) | IFT_FRAMERELAYINTERCONNECT = 0x3a
constant IFT_FRAMERELAYMPI (line 668) | IFT_FRAMERELAYMPI = 0x5c
constant IFT_FRDLCIENDPT (line 669) | IFT_FRDLCIENDPT = 0xc1
constant IFT_FRELAY (line 670) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 671) | IFT_FRELAYDCE = 0x2c
constant IFT_FRF16MFRBUNDLE (line 672) | IFT_FRF16MFRBUNDLE = 0xa3
constant IFT_FRFORWARD (line 673) | IFT_FRFORWARD = 0x9e
constant IFT_G703AT2MB (line 674) | IFT_G703AT2MB = 0x43
constant IFT_G703AT64K (line 675) | IFT_G703AT64K = 0x42
constant IFT_GIF (line 676) | IFT_GIF = 0xf0
constant IFT_GIGABITETHERNET (line 677) | IFT_GIGABITETHERNET = 0x75
constant IFT_GR303IDT (line 678) | IFT_GR303IDT = 0xb2
constant IFT_GR303RDT (line 679) | IFT_GR303RDT = 0xb1
constant IFT_H323GATEKEEPER (line 680) | IFT_H323GATEKEEPER = 0xa4
constant IFT_H323PROXY (line 681) | IFT_H323PROXY = 0xa5
constant IFT_HDH1822 (line 682) | IFT_HDH1822 = 0x3
constant IFT_HDLC (line 683) | IFT_HDLC = 0x76
constant IFT_HDSL2 (line 684) | IFT_HDSL2 = 0xa8
constant IFT_HIPERLAN2 (line 685) | IFT_HIPERLAN2 = 0xb7
constant IFT_HIPPI (line 686) | IFT_HIPPI = 0x2f
constant IFT_HIPPIINTERFACE (line 687) | IFT_HIPPIINTERFACE = 0x39
constant IFT_HOSTPAD (line 688) | IFT_HOSTPAD = 0x5a
constant IFT_HSSI (line 689) | IFT_HSSI = 0x2e
constant IFT_HY (line 690) | IFT_HY = 0xe
constant IFT_IBM370PARCHAN (line 691) | IFT_IBM370PARCHAN = 0x48
constant IFT_IDSL (line 692) | IFT_IDSL = 0x9a
constant IFT_IEEE1394 (line 693) | IFT_IEEE1394 = 0x90
constant IFT_IEEE80211 (line 694) | IFT_IEEE80211 = 0x47
constant IFT_IEEE80212 (line 695) | IFT_IEEE80212 = 0x37
constant IFT_IEEE8023ADLAG (line 696) | IFT_IEEE8023ADLAG = 0xa1
constant IFT_IFGSN (line 697) | IFT_IFGSN = 0x91
constant IFT_IMT (line 698) | IFT_IMT = 0xbe
constant IFT_INFINIBAND (line 699) | IFT_INFINIBAND = 0xc7
constant IFT_INTERLEAVE (line 700) | IFT_INTERLEAVE = 0x7c
constant IFT_IP (line 701) | IFT_IP = 0x7e
constant IFT_IPFORWARD (line 702) | IFT_IPFORWARD = 0x8e
constant IFT_IPOVERATM (line 703) | IFT_IPOVERATM = 0x72
constant IFT_IPOVERCDLC (line 704) | IFT_IPOVERCDLC = 0x6d
constant IFT_IPOVERCLAW (line 705) | IFT_IPOVERCLAW = 0x6e
constant IFT_IPSWITCH (line 706) | IFT_IPSWITCH = 0x4e
constant IFT_ISDN (line 707) | IFT_ISDN = 0x3f
constant IFT_ISDNBASIC (line 708) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 709) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISDNS (line 710) | IFT_ISDNS = 0x4b
constant IFT_ISDNU (line 711) | IFT_ISDNU = 0x4c
constant IFT_ISO88022LLC (line 712) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 713) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 714) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 715) | IFT_ISO88025 = 0x9
constant IFT_ISO88025CRFPINT (line 716) | IFT_ISO88025CRFPINT = 0x62
constant IFT_ISO88025DTR (line 717) | IFT_ISO88025DTR = 0x56
constant IFT_ISO88025FIBER (line 718) | IFT_ISO88025FIBER = 0x73
constant IFT_ISO88026 (line 719) | IFT_ISO88026 = 0xa
constant IFT_ISUP (line 720) | IFT_ISUP = 0xb3
constant IFT_L2VLAN (line 721) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 722) | IFT_L3IPVLAN = 0x88
constant IFT_L3IPXVLAN (line 723) | IFT_L3IPXVLAN = 0x89
constant IFT_LAPB (line 724) | IFT_LAPB = 0x10
constant IFT_LAPD (line 725) | IFT_LAPD = 0x4d
constant IFT_LAPF (line 726) | IFT_LAPF = 0x77
constant IFT_LINEGROUP (line 727) | IFT_LINEGROUP = 0xd2
constant IFT_LOCALTALK (line 728) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 729) | IFT_LOOP = 0x18
constant IFT_MEDIAMAILOVERIP (line 730) | IFT_MEDIAMAILOVERIP = 0x8b
constant IFT_MFSIGLINK (line 731) | IFT_MFSIGLINK = 0xa7
constant IFT_MIOX25 (line 732) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 733) | IFT_MODEM = 0x30
constant IFT_MPC (line 734) | IFT_MPC = 0x71
constant IFT_MPLS (line 735) | IFT_MPLS = 0xa6
constant IFT_MPLSTUNNEL (line 736) | IFT_MPLSTUNNEL = 0x96
constant IFT_MSDSL (line 737) | IFT_MSDSL = 0x8f
constant IFT_MVL (line 738) | IFT_MVL = 0xbf
constant IFT_MYRINET (line 739) | IFT_MYRINET = 0x63
constant IFT_NFAS (line 740) | IFT_NFAS = 0xaf
constant IFT_NSIP (line 741) | IFT_NSIP = 0x1b
constant IFT_OPTICALCHANNEL (line 742) | IFT_OPTICALCHANNEL = 0xc3
constant IFT_OPTICALTRANSPORT (line 743) | IFT_OPTICALTRANSPORT = 0xc4
constant IFT_OTHER (line 744) | IFT_OTHER = 0x1
constant IFT_P10 (line 745) | IFT_P10 = 0xc
constant IFT_P80 (line 746) | IFT_P80 = 0xd
constant IFT_PARA (line 747) | IFT_PARA = 0x22
constant IFT_PFLOG (line 748) | IFT_PFLOG = 0xf5
constant IFT_PFSYNC (line 749) | IFT_PFSYNC = 0xf6
constant IFT_PLC (line 750) | IFT_PLC = 0xae
constant IFT_PON155 (line 751) | IFT_PON155 = 0xcf
constant IFT_PON622 (line 752) | IFT_PON622 = 0xd0
constant IFT_POS (line 753) | IFT_POS = 0xab
constant IFT_PPP (line 754) | IFT_PPP = 0x17
constant IFT_PPPMULTILINKBUNDLE (line 755) | IFT_PPPMULTILINKBUNDLE = 0x6c
constant IFT_PROPATM (line 756) | IFT_PROPATM = 0xc5
constant IFT_PROPBWAP2MP (line 757) | IFT_PROPBWAP2MP = 0xb8
constant IFT_PROPCNLS (line 758) | IFT_PROPCNLS = 0x59
constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 759) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5
constant IFT_PROPDOCSWIRELESSMACLAYER (line 760) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4
constant IFT_PROPDOCSWIRELESSUPSTREAM (line 761) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6
constant IFT_PROPMUX (line 762) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 763) | IFT_PROPVIRTUAL = 0x35
constant IFT_PROPWIRELESSP2P (line 764) | IFT_PROPWIRELESSP2P = 0x9d
constant IFT_PTPSERIAL (line 765) | IFT_PTPSERIAL = 0x16
constant IFT_PVC (line 766) | IFT_PVC = 0xf1
constant IFT_Q2931 (line 767) | IFT_Q2931 = 0xc9
constant IFT_QLLC (line 768) | IFT_QLLC = 0x44
constant IFT_RADIOMAC (line 769) | IFT_RADIOMAC = 0xbc
constant IFT_RADSL (line 770) | IFT_RADSL = 0x5f
constant IFT_REACHDSL (line 771) | IFT_REACHDSL = 0xc0
constant IFT_RFC1483 (line 772) | IFT_RFC1483 = 0x9f
constant IFT_RS232 (line 773) | IFT_RS232 = 0x21
constant IFT_RSRB (line 774) | IFT_RSRB = 0x4f
constant IFT_SDLC (line 775) | IFT_SDLC = 0x11
constant IFT_SDSL (line 776) | IFT_SDSL = 0x60
constant IFT_SHDSL (line 777) | IFT_SHDSL = 0xa9
constant IFT_SIP (line 778) | IFT_SIP = 0x1f
constant IFT_SIPSIG (line 779) | IFT_SIPSIG = 0xcc
constant IFT_SIPTG (line 780) | IFT_SIPTG = 0xcb
constant IFT_SLIP (line 781) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 782) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 783) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 784) | IFT_SONET = 0x27
constant IFT_SONETOVERHEADCHANNEL (line 785) | IFT_SONETOVERHEADCHANNEL = 0xb9
constant IFT_SONETPATH (line 786) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 787) | IFT_SONETVT = 0x33
constant IFT_SRP (line 788) | IFT_SRP = 0x97
constant IFT_SS7SIGLINK (line 789) | IFT_SS7SIGLINK = 0x9c
constant IFT_STACKTOSTACK (line 790) | IFT_STACKTOSTACK = 0x6f
constant IFT_STARLAN (line 791) | IFT_STARLAN = 0xb
constant IFT_STF (line 792) | IFT_STF = 0xd7
constant IFT_T1 (line 793) | IFT_T1 = 0x12
constant IFT_TDLC (line 794) | IFT_TDLC = 0x74
constant IFT_TELINK (line 795) | IFT_TELINK = 0xc8
constant IFT_TERMPAD (line 796) | IFT_TERMPAD = 0x5b
constant IFT_TR008 (line 797) | IFT_TR008 = 0xb0
constant IFT_TRANSPHDLC (line 798) | IFT_TRANSPHDLC = 0x7b
constant IFT_TUNNEL (line 799) | IFT_TUNNEL = 0x83
constant IFT_ULTRA (line 800) | IFT_ULTRA = 0x1d
constant IFT_USB (line 801) | IFT_USB = 0xa0
constant IFT_V11 (line 802) | IFT_V11 = 0x40
constant IFT_V35 (line 803) | IFT_V35 = 0x2d
constant IFT_V36 (line 804) | IFT_V36 = 0x41
constant IFT_V37 (line 805) | IFT_V37 = 0x78
constant IFT_VDSL (line 806) | IFT_VDSL = 0x61
constant IFT_VIRTUALIPADDRESS (line 807) | IFT_VIRTUALIPADDRESS = 0x70
constant IFT_VIRTUALTG (line 808) | IFT_VIRTUALTG = 0xca
constant IFT_VOICEDID (line 809) | IFT_VOICEDID = 0xd5
constant IFT_VOICEEM (line 810) | IFT_VOICEEM = 0x64
constant IFT_VOICEEMFGD (line 811) | IFT_VOICEEMFGD = 0xd3
constant IFT_VOICEENCAP (line 812) | IFT_VOICEENCAP = 0x67
constant IFT_VOICEFGDEANA (line 813) | IFT_VOICEFGDEANA = 0xd4
constant IFT_VOICEFXO (line 814) | IFT_VOICEFXO = 0x65
constant IFT_VOICEFXS (line 815) | IFT_VOICEFXS = 0x66
constant IFT_VOICEOVERATM (line 816) | IFT_VOICEOVERATM = 0x98
constant IFT_VOICEOVERCABLE (line 817) | IFT_VOICEOVERCABLE = 0xc6
constant IFT_VOICEOVERFRAMERELAY (line 818) | IFT_VOICEOVERFRAMERELAY = 0x99
constant IFT_VOICEOVERIP (line 819) | IFT_VOICEOVERIP = 0x68
constant IFT_X213 (line 820) | IFT_X213 = 0x5d
constant IFT_X25 (line 821) | IFT_X25 = 0x5
constant IFT_X25DDN (line 822) | IFT_X25DDN = 0x4
constant IFT_X25HUNTGROUP (line 823) | IFT_X25HUNTGROUP = 0x7a
constant IFT_X25MLP (line 824) | IFT_X25MLP = 0x79
constant IFT_X25PLE (line 825) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 826) | IFT_XETHER = 0x1a
constant IGNBRK (line 827) | IGNBRK = 0x1
constant IGNCR (line 828) | IGNCR = 0x80
constant IGNPAR (line 829) | IGNPAR = 0x4
constant IMAXBEL (line 830) | IMAXBEL = 0x2000
constant INLCR (line 831) | INLCR = 0x40
constant INPCK (line 832) | INPCK = 0x10
constant IN_CLASSA_HOST (line 833) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 834) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 835) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 836) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 837) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 838) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 839) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 840) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 841) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 842) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 843) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 844) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 845) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 846) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 847) | IN_LOOPBACKNET = 0x7f
constant IPPROTO_AH (line 848) | IPPROTO_AH = 0x33
constant IPPROTO_CARP (line 849) | IPPROTO_CARP = 0x70
constant IPPROTO_DONE (line 850) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 851) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 852) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 853) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 854) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 855) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 856) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 857) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 858) | IPPROTO_GGP = 0x3
constant IPPROTO_GRE (line 859) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 860) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 861) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 862) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 863) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 864) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 865) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 866) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPIP (line 867) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV4 (line 868) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 869) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IPV6_ICMP (line 870) | IPPROTO_IPV6_ICMP = 0x3a
constant IPPROTO_MAX (line 871) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 872) | IPPROTO_MAXID = 0x34
constant IPPROTO_MOBILE (line 873) | IPPROTO_MOBILE = 0x37
constant IPPROTO_NONE (line 874) | IPPROTO_NONE = 0x3b
constant IPPROTO_PFSYNC (line 875) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PIM (line 876) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 877) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 878) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 879) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 880) | IPPROTO_RSVP = 0x2e
constant IPPROTO_TCP (line 881) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 882) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 883) | IPPROTO_UDP = 0x11
constant IPPROTO_VRRP (line 884) | IPPROTO_VRRP = 0x70
constant IPV6_CHECKSUM (line 885) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 886) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 887) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 888) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 889) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 890) | IPV6_DSTOPTS = 0x32
constant IPV6_FAITH (line 891) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 892) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 893) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FRAGTTL (line 894) | IPV6_FRAGTTL = 0x78
constant IPV6_HLIMDEC (line 895) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 896) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 897) | IPV6_HOPOPTS = 0x31
constant IPV6_IPSEC_POLICY (line 898) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 899) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 900) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 901) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXPACKET (line 902) | IPV6_MAXPACKET = 0xffff
constant IPV6_MMTU (line 903) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 904) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 905) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 906) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 907) | IPV6_NEXTHOP = 0x30
constant IPV6_PATHMTU (line 908) | IPV6_PATHMTU = 0x2c
constant IPV6_PKTINFO (line 909) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 910) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 911) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 912) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 913) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVDSTOPTS (line 914) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVHOPLIMIT (line 915) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 916) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 917) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 918) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRTHDR (line 919) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 920) | IPV6_RECVTCLASS = 0x39
constant IPV6_RTHDR (line 921) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 922) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 923) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 924) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 925) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 926) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 927) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 928) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 929) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 930) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 931) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 932) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 933) | IP_ADD_MEMBERSHIP = 0xc
constant IP_DEFAULT_MULTICAST_LOOP (line 934) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 935) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 936) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 937) | IP_DROP_MEMBERSHIP = 0xd
constant IP_EF (line 938) | IP_EF = 0x8000
constant IP_ERRORMTU (line 939) | IP_ERRORMTU = 0x15
constant IP_HDRINCL (line 940) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 941) | IP_IPSEC_POLICY = 0x16
constant IP_MAXPACKET (line 942) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 943) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 944) | IP_MF = 0x2000
constant IP_MINFRAGSIZE (line 945) | IP_MINFRAGSIZE = 0x45
constant IP_MINTTL (line 946) | IP_MINTTL = 0x18
constant IP_MSS (line 947) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 948) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 949) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 950) | IP_MULTICAST_TTL = 0xa
constant IP_OFFMASK (line 951) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 952) | IP_OPTIONS = 0x1
constant IP_PORTRANGE (line 953) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 954) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 955) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 956) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 957) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 958) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 959) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 960) | IP_RECVRETOPTS = 0x6
constant IP_RECVTTL (line 961) | IP_RECVTTL = 0x17
constant IP_RETOPTS (line 962) | IP_RETOPTS = 0x8
constant IP_RF (line 963) | IP_RF = 0x8000
constant IP_TOS (line 964) | IP_TOS = 0x3
constant IP_TTL (line 965) | IP_TTL = 0x4
constant ISIG (line 966) | ISIG = 0x80
constant ISTRIP (line 967) | ISTRIP = 0x20
constant IXANY (line 968) | IXANY = 0x800
constant IXOFF (line 969) | IXOFF = 0x400
constant IXON (line 970) | IXON = 0x200
constant KERN_HOSTNAME (line 971) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 972) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 973) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 974) | KERN_VERSION = 0x4
constant LOCK_EX (line 975) | LOCK_EX = 0x2
constant LOCK_NB (line 976) | LOCK_NB = 0x4
constant LOCK_SH (line 977) | LOCK_SH = 0x1
constant LOCK_UN (line 978) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 979) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 980) | MADV_FREE = 0x6
constant MADV_NORMAL (line 981) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 982) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 983) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 984) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 985) | MADV_WILLNEED = 0x3
constant MAP_ALIGNMENT_16MB (line 986) | MAP_ALIGNMENT_16MB = 0x18000000
constant MAP_ALIGNMENT_1TB (line 987) | MAP_ALIGNMENT_1TB = 0x28000000
constant MAP_ALIGNMENT_256TB (line 988) | MAP_ALIGNMENT_256TB = 0x30000000
constant MAP_ALIGNMENT_4GB (line 989) | MAP_ALIGNMENT_4GB = 0x20000000
constant MAP_ALIGNMENT_64KB (line 990) | MAP_ALIGNMENT_64KB = 0x10000000
constant MAP_ALIGNMENT_64PB (line 991) | MAP_ALIGNMENT_64PB = 0x38000000
constant MAP_ALIGNMENT_MASK (line 992) | MAP_ALIGNMENT_MASK = -0x1000000
constant MAP_ALIGNMENT_SHIFT (line 993) | MAP_ALIGNMENT_SHIFT = 0x18
constant MAP_ANON (line 994) | MAP_ANON = 0x1000
constant MAP_FILE (line 995) | MAP_FILE = 0x0
constant MAP_FIXED (line 996) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 997) | MAP_HASSEMAPHORE = 0x200
constant MAP_INHERIT (line 998) | MAP_INHERIT = 0x80
constant MAP_INHERIT_COPY (line 999) | MAP_INHERIT_COPY = 0x1
constant MAP_INHERIT_DEFAULT (line 1000) | MAP_INHERIT_DEFAULT = 0x1
constant MAP_INHERIT_DONATE_COPY (line 1001) | MAP_INHERIT_DONATE_COPY = 0x3
constant MAP_INHERIT_NONE (line 1002) | MAP_INHERIT_NONE = 0x2
constant MAP_INHERIT_SHARE (line 1003) | MAP_INHERIT_SHARE = 0x0
constant MAP_NORESERVE (line 1004) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 1005) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 1006) | MAP_RENAME = 0x20
constant MAP_SHARED (line 1007) | MAP_SHARED = 0x1
constant MAP_STACK (line 1008) | MAP_STACK = 0x2000
constant MAP_TRYFIXED (line 1009) | MAP_TRYFIXED = 0x400
constant MAP_WIRED (line 1010) | MAP_WIRED = 0x800
constant MCL_CURRENT (line 1011) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1012) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 1013) | MNT_ASYNC = 0x40
constant MNT_BASIC_FLAGS (line 1014) | MNT_BASIC_FLAGS = 0xe782807f
constant MNT_DEFEXPORTED (line 1015) | MNT_DEFEXPORTED = 0x200
constant MNT_DISCARD (line 1016) | MNT_DISCARD = 0x800000
constant MNT_EXKERB (line 1017) | MNT_EXKERB = 0x800
constant MNT_EXNORESPORT (line 1018) | MNT_EXNORESPORT = 0x8000000
constant MNT_EXPORTANON (line 1019) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 1020) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 1021) | MNT_EXPUBLIC = 0x10000000
constant MNT_EXRDONLY (line 1022) | MNT_EXRDONLY = 0x80
constant MNT_EXTATTR (line 1023) | MNT_EXTATTR = 0x1000000
constant MNT_FORCE (line 1024) | MNT_FORCE = 0x80000
constant MNT_GETARGS (line 1025) | MNT_GETARGS = 0x400000
constant MNT_IGNORE (line 1026) | MNT_IGNORE = 0x100000
constant MNT_LAZY (line 1027) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 1028) | MNT_LOCAL = 0x1000
constant MNT_LOG (line 1029) | MNT_LOG = 0x2000000
constant MNT_NOATIME (line 1030) | MNT_NOATIME = 0x4000000
constant MNT_NOCOREDUMP (line 1031) | MNT_NOCOREDUMP = 0x8000
constant MNT_NODEV (line 1032) | MNT_NODEV = 0x10
constant MNT_NODEVMTIME (line 1033) | MNT_NODEVMTIME = 0x40000000
constant MNT_NOEXEC (line 1034) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 1035) | MNT_NOSUID = 0x8
constant MNT_NOWAIT (line 1036) | MNT_NOWAIT = 0x2
constant MNT_OP_FLAGS (line 1037) | MNT_OP_FLAGS = 0x4d0000
constant MNT_QUOTA (line 1038) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 1039) | MNT_RDONLY = 0x1
constant MNT_RELATIME (line 1040) | MNT_RELATIME = 0x20000
constant MNT_RELOAD (line 1041) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 1042) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 1043) | MNT_SOFTDEP = 0x80000000
constant MNT_SYMPERM (line 1044) | MNT_SYMPERM = 0x20000000
constant MNT_SYNCHRONOUS (line 1045) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 1046) | MNT_UNION = 0x20
constant MNT_UPDATE (line 1047) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 1048) | MNT_VISFLAGMASK = 0xff90ffff
constant MNT_WAIT (line 1049) | MNT_WAIT = 0x1
constant MSG_BCAST (line 1050) | MSG_BCAST = 0x100
constant MSG_CMSG_CLOEXEC (line 1051) | MSG_CMSG_CLOEXEC = 0x800
constant MSG_CONTROLMBUF (line 1052) | MSG_CONTROLMBUF = 0x2000000
constant MSG_CTRUNC (line 1053) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 1054) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1055) | MSG_DONTWAIT = 0x80
constant MSG_EOR (line 1056) | MSG_EOR = 0x8
constant MSG_IOVUSRSPACE (line 1057) | MSG_IOVUSRSPACE = 0x4000000
constant MSG_LENUSRSPACE (line 1058) | MSG_LENUSRSPACE = 0x8000000
constant MSG_MCAST (line 1059) | MSG_MCAST = 0x200
constant MSG_NAMEMBUF (line 1060) | MSG_NAMEMBUF = 0x1000000
constant MSG_NBIO (line 1061) | MSG_NBIO = 0x1000
constant MSG_NOSIGNAL (line 1062) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 1063) | MSG_OOB = 0x1
constant MSG_PEEK (line 1064) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 1065) | MSG_TRUNC = 0x10
constant MSG_USERFLAGS (line 1066) | MSG_USERFLAGS = 0xffffff
constant MSG_WAITALL (line 1067) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 1068) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 1069) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 1070) | MS_SYNC = 0x4
constant NAME_MAX (line 1071) | NAME_MAX = 0x1ff
constant NET_RT_DUMP (line 1072) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 1073) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 1074) | NET_RT_IFLIST = 0x5
constant NET_RT_MAXID (line 1075) | NET_RT_MAXID = 0x6
constant NET_RT_OIFLIST (line 1076) | NET_RT_OIFLIST = 0x4
constant NET_RT_OOIFLIST (line 1077) | NET_RT_OOIFLIST = 0x3
constant NOFLSH (line 1078) | NOFLSH = 0x80000000
constant NOTE_ATTRIB (line 1079) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 1080) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 1081) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 1082) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1083) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1084) | NOTE_EXTEND = 0x4
constant NOTE_FORK (line 1085) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1086) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1087) | NOTE_LOWAT = 0x1
constant NOTE_PCTRLMASK (line 1088) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1089) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 1090) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1091) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 1092) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1093) | NOTE_TRACKERR = 0x2
constant NOTE_WRITE (line 1094) | NOTE_WRITE = 0x2
constant OCRNL (line 1095) | OCRNL = 0x10
constant OFIOGETBMAP (line 1096) | OFIOGETBMAP = 0xc004667a
constant ONLCR (line 1097) | ONLCR = 0x2
constant ONLRET (line 1098) | ONLRET = 0x40
constant ONOCR (line 1099) | ONOCR = 0x20
constant ONOEOT (line 1100) | ONOEOT = 0x8
constant OPOST (line 1101) | OPOST = 0x1
constant O_ACCMODE (line 1102) | O_ACCMODE = 0x3
constant O_ALT_IO (line 1103) | O_ALT_IO = 0x40000
constant O_APPEND (line 1104) | O_APPEND = 0x8
constant O_ASYNC (line 1105) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1106) | O_CLOEXEC = 0x400000
constant O_CREAT (line 1107) | O_CREAT = 0x200
constant O_DIRECT (line 1108) | O_DIRECT = 0x80000
constant O_DIRECTORY (line 1109) | O_DIRECTORY = 0x200000
constant O_DSYNC (line 1110) | O_DSYNC = 0x10000
constant O_EXCL (line 1111) | O_EXCL = 0x800
constant O_EXLOCK (line 1112) | O_EXLOCK = 0x20
constant O_FSYNC (line 1113) | O_FSYNC = 0x80
constant O_NDELAY (line 1114) | O_NDELAY = 0x4
constant O_NOCTTY (line 1115) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1116) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1117) | O_NONBLOCK = 0x4
constant O_NOSIGPIPE (line 1118) | O_NOSIGPIPE = 0x1000000
constant O_RDONLY (line 1119) | O_RDONLY = 0x0
constant O_RDWR (line 1120) | O_RDWR = 0x2
constant O_RSYNC (line 1121) | O_RSYNC = 0x20000
constant O_SHLOCK (line 1122) | O_SHLOCK = 0x10
constant O_SYNC (line 1123) | O_SYNC = 0x80
constant O_TRUNC (line 1124) | O_TRUNC = 0x400
constant O_WRONLY (line 1125) | O_WRONLY = 0x1
constant PARENB (line 1126) | PARENB = 0x1000
constant PARMRK (line 1127) | PARMRK = 0x8
constant PARODD (line 1128) | PARODD = 0x2000
constant PENDIN (line 1129) | PENDIN = 0x20000000
constant PRIO_PGRP (line 1130) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1131) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1132) | PRIO_USER = 0x2
constant PRI_IOFLUSH (line 1133) | PRI_IOFLUSH = 0x7c
constant PROT_EXEC (line 1134) | PROT_EXEC = 0x4
constant PROT_NONE (line 1135) | PROT_NONE = 0x0
constant PROT_READ (line 1136) | PROT_READ = 0x1
constant PROT_WRITE (line 1137) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 1138) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1139) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1140) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1141) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1142) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1143) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1144) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1145) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1146) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1147) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1148) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1149) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1150) | RTAX_BRD = 0x7
constant RTAX_DST (line 1151) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1152) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1153) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1154) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1155) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1156) | RTAX_MAX = 0x9
constant RTAX_NETMASK (line 1157) | RTAX_NETMASK = 0x2
constant RTAX_TAG (line 1158) | RTAX_TAG = 0x8
constant RTA_AUTHOR (line 1159) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1160) | RTA_BRD = 0x80
constant RTA_DST (line 1161) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1162) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1163) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1164) | RTA_IFA = 0x20
constant RTA_IFP (line 1165) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1166) | RTA_NETMASK = 0x4
constant RTA_TAG (line 1167) | RTA_TAG = 0x100
constant RTF_ANNOUNCE (line 1168) | RTF_ANNOUNCE = 0x20000
constant RTF_BLACKHOLE (line 1169) | RTF_BLACKHOLE = 0x1000
constant RTF_CLONED (line 1170) | RTF_CLONED = 0x2000
constant RTF_CLONING (line 1171) | RTF_CLONING = 0x100
constant RTF_DONE (line 1172) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1173) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1174) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1175) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1176) | RTF_LLINFO = 0x400
constant RTF_MASK (line 1177) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 1178) | RTF_MODIFIED = 0x20
constant RTF_PROTO1 (line 1179) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1180) | RTF_PROTO2 = 0x4000
constant RTF_REJECT (line 1181) | RTF_REJECT = 0x8
constant RTF_SRC (line 1182) | RTF_SRC = 0x10000
constant RTF_STATIC (line 1183) | RTF_STATIC = 0x800
constant RTF_UP (line 1184) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 1185) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1186) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1187) | RTM_CHANGE = 0x3
constant RTM_CHGADDR (line 1188) | RTM_CHGADDR = 0x15
constant RTM_DELADDR (line 1189) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1190) | RTM_DELETE = 0x2
constant RTM_GET (line 1191) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1192) | RTM_IEEE80211 = 0x11
constant RTM_IFANNOUNCE (line 1193) | RTM_IFANNOUNCE = 0x10
constant RTM_IFINFO (line 1194) | RTM_IFINFO = 0x14
constant RTM_LLINFO_UPD (line 1195) | RTM_LLINFO_UPD = 0x13
constant RTM_LOCK (line 1196) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1197) | RTM_LOSING = 0x5
constant RTM_MISS (line 1198) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1199) | RTM_NEWADDR = 0xc
constant RTM_OIFINFO (line 1200) | RTM_OIFINFO = 0xf
constant RTM_OLDADD (line 1201) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1202) | RTM_OLDDEL = 0xa
constant RTM_OOIFINFO (line 1203) | RTM_OOIFINFO = 0xe
constant RTM_REDIRECT (line 1204) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1205) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1206) | RTM_RTTUNIT = 0xf4240
constant RTM_SETGATE (line 1207) | RTM_SETGATE = 0x12
constant RTM_VERSION (line 1208) | RTM_VERSION = 0x4
constant RTV_EXPIRE (line 1209) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1210) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1211) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1212) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1213) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1214) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1215) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1216) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1217) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1218) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1219) | SCM_CREDS = 0x4
constant SCM_RIGHTS (line 1220) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1221) | SCM_TIMESTAMP = 0x8
constant SHUT_RD (line 1222) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1223) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1224) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1225) | SIOCADDMULTI = 0x80906931
constant SIOCADDRT (line 1226) | SIOCADDRT = 0x8038720a
constant SIOCAIFADDR (line 1227) | SIOCAIFADDR = 0x8040691a
constant SIOCALIFADDR (line 1228) | SIOCALIFADDR = 0x8118691c
constant SIOCATMARK (line 1229) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1230) | SIOCDELMULTI = 0x80906932
constant SIOCDELRT (line 1231) | SIOCDELRT = 0x8038720b
constant SIOCDIFADDR (line 1232) | SIOCDIFADDR = 0x80906919
constant SIOCDIFPHYADDR (line 1233) | SIOCDIFPHYADDR = 0x80906949
constant SIOCDLIFADDR (line 1234) | SIOCDLIFADDR = 0x8118691e
constant SIOCGDRVSPEC (line 1235) | SIOCGDRVSPEC = 0xc028697b
constant SIOCGETPFSYNC (line 1236) | SIOCGETPFSYNC = 0xc09069f8
constant SIOCGETSGCNT (line 1237) | SIOCGETSGCNT = 0xc0207534
constant SIOCGETVIFCNT (line 1238) | SIOCGETVIFCNT = 0xc0287533
constant SIOCGHIWAT (line 1239) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1240) | SIOCGIFADDR = 0xc0906921
constant SIOCGIFADDRPREF (line 1241) | SIOCGIFADDRPREF = 0xc0986920
constant SIOCGIFALIAS (line 1242) | SIOCGIFALIAS = 0xc040691b
constant SIOCGIFBRDADDR (line 1243) | SIOCGIFBRDADDR = 0xc0906923
constant SIOCGIFCAP (line 1244) | SIOCGIFCAP = 0xc0206976
constant SIOCGIFCONF (line 1245) | SIOCGIFCONF = 0xc0106926
constant SIOCGIFDATA (line 1246) | SIOCGIFDATA = 0xc0986985
constant SIOCGIFDLT (line 1247) | SIOCGIFDLT = 0xc0906977
constant SIOCGIFDSTADDR (line 1248) | SIOCGIFDSTADDR = 0xc0906922
constant SIOCGIFFLAGS (line 1249) | SIOCGIFFLAGS = 0xc0906911
constant SIOCGIFGENERIC (line 1250) | SIOCGIFGENERIC = 0xc090693a
constant SIOCGIFMEDIA (line 1251) | SIOCGIFMEDIA = 0xc0306936
constant SIOCGIFMETRIC (line 1252) | SIOCGIFMETRIC = 0xc0906917
constant SIOCGIFMTU (line 1253) | SIOCGIFMTU = 0xc090697e
constant SIOCGIFNETMASK (line 1254) | SIOCGIFNETMASK = 0xc0906925
constant SIOCGIFPDSTADDR (line 1255) | SIOCGIFPDSTADDR = 0xc0906948
constant SIOCGIFPSRCADDR (line 1256) | SIOCGIFPSRCADDR = 0xc0906947
constant SIOCGLIFADDR (line 1257) | SIOCGLIFADDR = 0xc118691d
constant SIOCGLIFPHYADDR (line 1258) | SIOCGLIFPHYADDR = 0xc118694b
constant SIOCGLINKSTR (line 1259) | SIOCGLINKSTR = 0xc0286987
constant SIOCGLOWAT (line 1260) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1261) | SIOCGPGRP = 0x40047309
constant SIOCGVH (line 1262) | SIOCGVH = 0xc0906983
constant SIOCIFCREATE (line 1263) | SIOCIFCREATE = 0x8090697a
constant SIOCIFDESTROY (line 1264) | SIOCIFDESTROY = 0x80906979
constant SIOCIFGCLONERS (line 1265) | SIOCIFGCLONERS = 0xc0106978
constant SIOCINITIFADDR (line 1266) | SIOCINITIFADDR = 0xc0706984
constant SIOCSDRVSPEC (line 1267) | SIOCSDRVSPEC = 0x8028697b
constant SIOCSETPFSYNC (line 1268) | SIOCSETPFSYNC = 0x809069f7
constant SIOCSHIWAT (line 1269) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1270) | SIOCSIFADDR = 0x8090690c
constant SIOCSIFADDRPREF (line 1271) | SIOCSIFADDRPREF = 0x8098691f
constant SIOCSIFBRDADDR (line 1272) | SIOCSIFBRDADDR = 0x80906913
constant SIOCSIFCAP (line 1273) | SIOCSIFCAP = 0x80206975
constant SIOCSIFDSTADDR (line 1274) | SIOCSIFDSTADDR = 0x8090690e
constant SIOCSIFFLAGS (line 1275) | SIOCSIFFLAGS = 0x80906910
constant SIOCSIFGENERIC (line 1276) | SIOCSIFGENERIC = 0x80906939
constant SIOCSIFMEDIA (line 1277) | SIOCSIFMEDIA = 0xc0906935
constant SIOCSIFMETRIC (line 1278) | SIOCSIFMETRIC = 0x80906918
constant SIOCSIFMTU (line 1279) | SIOCSIFMTU = 0x8090697f
constant SIOCSIFNETMASK (line 1280) | SIOCSIFNETMASK = 0x80906916
constant SIOCSIFPHYADDR (line 1281) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSLIFPHYADDR (line 1282) | SIOCSLIFPHYADDR = 0x8118694a
constant SIOCSLINKSTR (line 1283) | SIOCSLINKSTR = 0x80286988
constant SIOCSLOWAT (line 1284) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1285) | SIOCSPGRP = 0x80047308
constant SIOCSVH (line 1286) | SIOCSVH = 0xc0906982
constant SIOCZIFDATA (line 1287) | SIOCZIFDATA = 0xc0986986
constant SOCK_CLOEXEC (line 1288) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1289) | SOCK_DGRAM = 0x2
constant SOCK_FLAGS_MASK (line 1290) | SOCK_FLAGS_MASK = 0xf0000000
constant SOCK_NONBLOCK (line 1291) | SOCK_NONBLOCK = 0x20000000
constant SOCK_NOSIGPIPE (line 1292) | SOCK_NOSIGPIPE = 0x40000000
constant SOCK_RAW (line 1293) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1294) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1295) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1296) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1297) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1298) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1299) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1300) | SO_ACCEPTFILTER = 0x1000
constant SO_BROADCAST (line 1301) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1302) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1303) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1304) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1305) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1306) | SO_LINGER = 0x80
constant SO_NOHEADER (line 1307) | SO_NOHEADER = 0x100a
constant SO_NOSIGPIPE (line 1308) | SO_NOSIGPIPE = 0x800
constant SO_OOBINLINE (line 1309) | SO_OOBINLINE = 0x100
constant SO_OVERFLOWED (line 1310) | SO_OVERFLOWED = 0x1009
constant SO_RCVBUF (line 1311) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1312) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1313) | SO_RCVTIMEO = 0x100c
constant SO_REUSEADDR (line 1314) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1315) | SO_REUSEPORT = 0x200
constant SO_SNDBUF (line 1316) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1317) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1318) | SO_SNDTIMEO = 0x100b
constant SO_TIMESTAMP (line 1319) | SO_TIMESTAMP = 0x2000
constant SO_TYPE (line 1320) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1321) | SO_USELOOPBACK = 0x40
constant SYSCTL_VERSION (line 1322) | SYSCTL_VERSION = 0x1000000
constant SYSCTL_VERS_0 (line 1323) | SYSCTL_VERS_0 = 0x0
constant SYSCTL_VERS_1 (line 1324) | SYSCTL_VERS_1 = 0x1000000
constant SYSCTL_VERS_MASK (line 1325) | SYSCTL_VERS_MASK = 0xff000000
constant S_ARCH1 (line 1326) | S_ARCH1 = 0x10000
constant S_ARCH2 (line 1327) | S_ARCH2 = 0x20000
constant S_BLKSIZE (line 1328) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1329) | S_IEXEC = 0x40
constant S_IFBLK (line 1330) | S_IFBLK = 0x6000
constant S_IFCHR (line 1331) | S_IFCHR = 0x2000
constant S_IFDIR (line 1332) | S_IFDIR = 0x4000
constant S_IFIFO (line 1333) | S_IFIFO = 0x1000
constant S_IFLNK (line 1334) | S_IFLNK = 0xa000
constant S_IFMT (line 1335) | S_IFMT = 0xf000
constant S_IFREG (line 1336) | S_IFREG = 0x8000
constant S_IFSOCK (line 1337) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1338) | S_IFWHT = 0xe000
constant S_IREAD (line 1339) | S_IREAD = 0x100
constant S_IRGRP (line 1340) | S_IRGRP = 0x20
constant S_IROTH (line 1341) | S_IROTH = 0x4
constant S_IRUSR (line 1342) | S_IRUSR = 0x100
constant S_IRWXG (line 1343) | S_IRWXG = 0x38
constant S_IRWXO (line 1344) | S_IRWXO = 0x7
constant S_IRWXU (line 1345) | S_IRWXU = 0x1c0
constant S_ISGID (line 1346) | S_ISGID = 0x400
constant S_ISTXT (line 1347) | S_ISTXT = 0x200
constant S_ISUID (line 1348) | S_ISUID = 0x800
constant S_ISVTX (line 1349) | S_ISVTX = 0x200
constant S_IWGRP (line 1350) | S_IWGRP = 0x10
constant S_IWOTH (line 1351) | S_IWOTH = 0x2
constant S_IWRITE (line 1352) | S_IWRITE = 0x80
constant S_IWUSR (line 1353) | S_IWUSR = 0x80
constant S_IXGRP (line 1354) | S_IXGRP = 0x8
constant S_IXOTH (line 1355) | S_IXOTH = 0x1
constant S_IXUSR (line 1356) | S_IXUSR = 0x40
constant S_LOGIN_SET (line 1357) | S_LOGIN_SET = 0x1
constant TCIFLUSH (line 1358) | TCIFLUSH = 0x1
constant TCIOFLUSH (line 1359) | TCIOFLUSH = 0x3
constant TCOFLUSH (line 1360) | TCOFLUSH = 0x2
constant TCP_CONGCTL (line 1361) | TCP_CONGCTL = 0x20
constant TCP_KEEPCNT (line 1362) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 1363) | TCP_KEEPIDLE = 0x3
constant TCP_KEEPINIT (line 1364) | TCP_KEEPINIT = 0x7
constant TCP_KEEPINTVL (line 1365) | TCP_KEEPINTVL = 0x5
constant TCP_MAXBURST (line 1366) | TCP_MAXBURST = 0x4
constant TCP_MAXSEG (line 1367) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1368) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 1369) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1370) | TCP_MD5SIG = 0x10
constant TCP_MINMSS (line 1371) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1372) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1373) | TCP_NODELAY = 0x1
constant TCSAFLUSH (line 1374) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1375) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1376) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1377) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1378) | TIOCDCDTIMESTAMP = 0x40107458
constant TIOCDRAIN (line 1379) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1380) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1381) | TIOCEXT = 0x80047460
constant TIOCFLAG_CDTRCTS (line 1382) | TIOCFLAG_CDTRCTS = 0x10
constant TIOCFLAG_CLOCAL (line 1383) | TIOCFLAG_CLOCAL = 0x2
constant TIOCFLAG_CRTSCTS (line 1384) | TIOCFLAG_CRTSCTS = 0x4
constant TIOCFLAG_MDMBUF (line 1385) | TIOCFLAG_MDMBUF = 0x8
constant TIOCFLAG_SOFTCAR (line 1386) | TIOCFLAG_SOFTCAR = 0x1
constant TIOCFLUSH (line 1387) | TIOCFLUSH = 0x80047410
constant TIOCGETA (line 1388) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1389) | TIOCGETD = 0x4004741a
constant TIOCGFLAGS (line 1390) | TIOCGFLAGS = 0x4004745d
constant TIOCGLINED (line 1391) | TIOCGLINED = 0x40207442
constant TIOCGPGRP (line 1392) | TIOCGPGRP = 0x40047477
constant TIOCGQSIZE (line 1393) | TIOCGQSIZE = 0x40047481
constant TIOCGRANTPT (line 1394) | TIOCGRANTPT = 0x20007447
constant TIOCGSID (line 1395) | TIOCGSID = 0x40047463
constant TIOCGSIZE (line 1396) | TIOCGSIZE = 0x40087468
constant TIOCGWINSZ (line 1397) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1398) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1399) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 1400) | TIOCMGET = 0x4004746a
constant TIOCMSET (line 1401) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1402) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1403) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1404) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1405) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1406) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1407) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1408) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1409) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1410) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1411) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1412) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1413) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1414) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1415) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1416) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1417) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1418) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1419) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1420) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1421) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1422) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1423) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1424) | TIOCPKT_STOP = 0x4
constant TIOCPTMGET (line 1425) | TIOCPTMGET = 0x40287446
constant TIOCPTSNAME (line 1426) | TIOCPTSNAME = 0x40287448
constant TIOCRCVFRAME (line 1427) | TIOCRCVFRAME = 0x80087445
constant TIOCREMOTE (line 1428) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1429) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1430) | TIOCSCTTY = 0x20007461
constant TIOCSDTR (line 1431) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1432) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1433) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1434) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1435) | TIOCSETD = 0x8004741b
constant TIOCSFLAGS (line 1436) | TIOCSFLAGS = 0x8004745c
constant TIOCSIG (line 1437) | TIOCSIG = 0x2000745f
constant TIOCSLINED (line 1438) | TIOCSLINED = 0x80207443
constant TIOCSPGRP (line 1439) | TIOCSPGRP = 0x80047476
constant TIOCSQSIZE (line 1440) | TIOCSQSIZE = 0x80047480
constant TIOCSSIZE (line 1441) | TIOCSSIZE = 0x80087467
constant TIOCSTART (line 1442) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1443) | TIOCSTAT = 0x80047465
constant TIOCSTI (line 1444) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1445) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1446) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 1447) | TIOCUCNTL = 0x80047466
constant TIOCXMTFRAME (line 1448) | TIOCXMTFRAME = 0x80087444
constant TOSTOP (line 1449) | TOSTOP = 0x400000
constant VDISCARD (line 1450) | VDISCARD = 0xf
constant VDSUSP (line 1451) | VDSUSP = 0xb
constant VEOF (line 1452) | VEOF = 0x0
constant VEOL (line 1453) | VEOL = 0x1
constant VEOL2 (line 1454) | VEOL2 = 0x2
constant VERASE (line 1455) | VERASE = 0x3
constant VINTR (line 1456) | VINTR = 0x8
constant VKILL (line 1457) | VKILL = 0x5
constant VLNEXT (line 1458) | VLNEXT = 0xe
constant VMIN (line 1459) | VMIN = 0x10
constant VQUIT (line 1460) | VQUIT = 0x9
constant VREPRINT (line 1461) | VREPRINT = 0x6
constant VSTART (line 1462) | VSTART = 0xc
constant VSTATUS (line 1463) | VSTATUS = 0x12
constant VSTOP (line 1464) | VSTOP = 0xd
constant VSUSP (line 1465) | VSUSP = 0xa
constant VTIME (line 1466) | VTIME = 0x11
constant VWERASE (line 1467) | VWERASE = 0x4
constant WALL (line 1468) | WALL = 0x8
constant WALLSIG (line 1469) | WALLSIG = 0x8
constant WALTSIG (line 1470) | WALTSIG = 0x4
constant WCLONE (line 1471) | WCLONE = 0x4
constant WCOREFLAG (line 1472) | WCOREFLAG = 0x80
constant WNOHANG (line 1473) | WNOHANG = 0x1
constant WNOWAIT (line 1474) | WNOWAIT = 0x10000
constant WNOZOMBIE (line 1475) | WNOZOMBIE = 0x20000
constant WOPTSCHECKED (line 1476) | WOPTSCHECKED = 0x40000
constant WSTOPPED (line 1477) | WSTOPPED = 0x7f
constant WUNTRACED (line 1478) | WUNTRACED = 0x2
constant E2BIG (line 1483) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1484) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1485) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1486) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1487) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1488) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1489) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1490) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1491) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1492) | EBADMSG = syscall.Errno(0x58)
constant EBADRPC (line 1493) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1494) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1495) | ECANCELED = syscall.Errno(0x57)
constant ECHILD (line 1496) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1497) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1498) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1499) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1500) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1501) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1502) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1503) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1504) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1505) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1506) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1507) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1508) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1509) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1510) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1511) | EILSEQ = syscall.Errno(0x55)
constant EINPROGRESS (line 1512) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1513) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1514) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1515) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1516) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1517) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1518) | ELAST = syscall.Errno(0x60)
constant ELOOP (line 1519) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1520) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1521) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1522) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1523) | EMULTIHOP = syscall.Errno(0x5e)
constant ENAMETOOLONG (line 1524) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1525) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1526) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1527) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1528) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1529) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1530) | ENOATTR = syscall.Errno(0x5d)
constant ENOBUFS (line 1531) | ENOBUFS = syscall.Errno(0x37)
constant ENODATA (line 1532) | ENODATA = syscall.Errno(0x59)
constant ENODEV (line 1533) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1534) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1535) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1536) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1537) | ENOLINK = syscall.Errno(0x5f)
constant ENOMEM (line 1538) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1539) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1540) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1541) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1542) | ENOSR = syscall.Errno(0x5a)
constant ENOSTR (line 1543) | ENOSTR = syscall.Errno(0x5b)
constant ENOSYS (line 1544) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1545) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1546) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1547) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1548) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTSOCK (line 1549) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1550) | ENOTSUP = syscall.Errno(0x56)
constant ENOTTY (line 1551) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1552) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1553) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1554) | EOVERFLOW = syscall.Errno(0x54)
constant EPERM (line 1555) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1556) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1557) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1558) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1559) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1560) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1561) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1562) | EPROTO = syscall.Errno(0x60)
constant EPROTONOSUPPORT (line 1563) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1564) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1565) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1566) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1567) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1568) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1569) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1570) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1571) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1572) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1573) | ESTALE = syscall.Errno(0x46)
constant ETIME (line 1574) | ETIME = syscall.Errno(0x5c)
constant ETIMEDOUT (line 1575) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1576) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1577) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1578) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1579) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1580) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1585) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1586) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1587) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1588) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1589) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1590) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1591) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1592) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1593) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1594) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1595) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1596) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1597) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1598) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1599) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1600) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 1601) | SIGPWR = syscall.Signal(0x20)
constant SIGQUIT (line 1602) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1603) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1604) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1605) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1606) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1607) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1608) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1609) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1610) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1611) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1612) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1613) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1614) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1615) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1616) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1617) | 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 CRTSCTS (line 154) | CRTSCTS = 0x10000
constant CS5 (line 155) | CS5 = 0x0
constant CS6 (line 156) | CS6 = 0x100
constant CS7 (line 157) | CS7 = 0x200
constant CS8 (line 158) | CS8 = 0x300
constant CSIZE (line 159) | CSIZE = 0x300
constant CSTART (line 160) | CSTART = 0x11
constant CSTATUS (line 161) | CSTATUS = 0x14
constant CSTOP (line 162) | CSTOP = 0x13
constant CSTOPB (line 163) | CSTOPB = 0x400
constant CSUSP (line 164) | CSUSP = 0x1a
constant CTL_HW (line 165) | CTL_HW = 0x6
constant CTL_KERN (line 166) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 167) | CTL_MAXNAME = 0xc
constant CTL_NET (line 168) | CTL_NET = 0x4
constant CTL_QUERY (line 169) | CTL_QUERY = -0x2
constant DIOCBSFLUSH (line 170) | DIOCBSFLUSH = 0x20006478
constant DLT_A429 (line 171) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 172) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 173) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 174) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 175) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 176) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 177) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 178) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 179) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 180) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 181) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 182) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 183) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_HCI_H4 (line 184) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 185) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_CAN20B (line 186) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 187) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 188) | DLT_CHAOS = 0x5
constant DLT_CISCO_IOS (line 189) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 190) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 191) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DECT (line 192) | DLT_DECT = 0xdd
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_FC_2 (line 201) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 202) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 203) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 204) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 205) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 206) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 207) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 208) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 209) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 210) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 211) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 212) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 213) | DLT_GSMTAP_UM = 0xd9
constant DLT_HDLC (line 214) | DLT_HDLC = 0x10
constant DLT_HHDLC (line 215) | DLT_HHDLC = 0x79
constant DLT_HIPPI (line 216) | DLT_HIPPI = 0xf
constant DLT_IBM_SN (line 217) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 218) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 219) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 220) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 221) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 222) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 223) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 224) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NONASK_PHY (line 225) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 226) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 227) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPMB (line 228) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 229) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPNET (line 230) | DLT_IPNET = 0xe2
constant DLT_IPV4 (line 231) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 232) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 233) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 234) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 235) | DLT_JUNIPER_ATM2 = 0x87
constant DLT_JUNIPER_CHDLC (line 236) | DLT_JUNIPER_CHDLC = 0xb5
constant DLT_JUNIPER_ES (line 237) | DLT_JUNIPER_ES = 0x84
constant DLT_JUNIPER_ETHER (line 238) | DLT_JUNIPER_ETHER = 0xb2
constant DLT_JUNIPER_FRELAY (line 239) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 240) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 241) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 242) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 243) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 244) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 245) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 246) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 247) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 248) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 249) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 250) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_ST (line 251) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 252) | DLT_JUNIPER_VP = 0xb7
constant DLT_LAPB_WITH_DIR (line 253) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 254) | DLT_LAPD = 0xcb
constant DLT_LIN (line 255) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 256) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 257) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 258) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_SLL (line 259) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 260) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 261) | DLT_LTALK = 0x72
constant DLT_MFR (line 262) | DLT_MFR = 0xb6
constant DLT_MOST (line 263) | DLT_MOST = 0xd3
constant DLT_MPLS (line 264) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 265) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 266) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 267) | DLT_MTP3 = 0x8d
constant DLT_NULL (line 268) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 269) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 270) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 271) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 272) | DLT_PPI = 0xc0
constant DLT_PPP (line 273) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 274) | DLT_PPP_BSDOS = 0xe
constant DLT_PPP_ETHER (line 275) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 276) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 277) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 278) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PRISM_HEADER (line 279) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 280) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 281) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 282) | DLT_RAW = 0xc
constant DLT_RAWAF_MASK (line 283) | DLT_RAWAF_MASK = 0x2240000
constant DLT_RIO (line 284) | DLT_RIO = 0x7c
constant DLT_SCCP (line 285) | DLT_SCCP = 0x8e
constant DLT_SITA (line 286) | DLT_SITA = 0xc4
constant DLT_SLIP (line 287) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 288) | DLT_SLIP_BSDOS = 0xd
constant DLT_SUNATM (line 289) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 290) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 291) | DLT_TZSP = 0x80
constant DLT_USB (line 292) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 293) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 294) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_WIHART (line 295) | DLT_WIHART = 0xdf
constant DLT_X2E_SERIAL (line 296) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 297) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 298) | DT_BLK = 0x6
constant DT_CHR (line 299) | DT_CHR = 0x2
constant DT_DIR (line 300) | DT_DIR = 0x4
constant DT_FIFO (line 301) | DT_FIFO = 0x1
constant DT_LNK (line 302) | DT_LNK = 0xa
constant DT_REG (line 303) | DT_REG = 0x8
constant DT_SOCK (line 304) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 305) | DT_UNKNOWN = 0x0
constant DT_WHT (line 306) | DT_WHT = 0xe
constant ECHO (line 307) | ECHO = 0x8
constant ECHOCTL (line 308) | ECHOCTL = 0x40
constant ECHOE (line 309) | ECHOE = 0x2
constant ECHOK (line 310) | ECHOK = 0x4
constant ECHOKE (line 311) | ECHOKE = 0x1
constant ECHONL (line 312) | ECHONL = 0x10
constant ECHOPRT (line 313) | ECHOPRT = 0x20
constant EMUL_LINUX (line 314) | EMUL_LINUX = 0x1
constant EMUL_LINUX32 (line 315) | EMUL_LINUX32 = 0x5
constant EMUL_MAXID (line 316) | EMUL_MAXID = 0x6
constant ETHERCAP_JUMBO_MTU (line 317) | ETHERCAP_JUMBO_MTU = 0x4
constant ETHERCAP_VLAN_HWTAGGING (line 318) | ETHERCAP_VLAN_HWTAGGING = 0x2
constant ETHERCAP_VLAN_MTU (line 319) | ETHERCAP_VLAN_MTU = 0x1
constant ETHERMIN (line 320) | ETHERMIN = 0x2e
constant ETHERMTU (line 321) | ETHERMTU = 0x5dc
constant ETHERMTU_JUMBO (line 322) | ETHERMTU_JUMBO = 0x2328
constant ETHERTYPE_8023 (line 323) | ETHERTYPE_8023 = 0x4
constant ETHERTYPE_AARP (line 324) | ETHERTYPE_AARP = 0x80f3
constant ETHERTYPE_ACCTON (line 325) | ETHERTYPE_ACCTON = 0x8390
constant ETHERTYPE_AEONIC (line 326) | ETHERTYPE_AEONIC = 0x8036
constant ETHERTYPE_ALPHA (line 327) | ETHERTYPE_ALPHA = 0x814a
constant ETHERTYPE_AMBER (line 328) | ETHERTYPE_AMBER = 0x6008
constant ETHERTYPE_AMOEBA (line 329) | ETHERTYPE_AMOEBA = 0x8145
constant ETHERTYPE_APOLLO (line 330) | ETHERTYPE_APOLLO = 0x80f7
constant ETHERTYPE_APOLLODOMAIN (line 331) | ETHERTYPE_APOLLODOMAIN = 0x8019
constant ETHERTYPE_APPLETALK (line 332) | ETHERTYPE_APPLETALK = 0x809b
constant ETHERTYPE_APPLITEK (line 333) | ETHERTYPE_APPLITEK = 0x80c7
constant ETHERTYPE_ARGONAUT (line 334) | ETHERTYPE_ARGONAUT = 0x803a
constant ETHERTYPE_ARP (line 335) | ETHERTYPE_ARP = 0x806
constant ETHERTYPE_AT (line 336) | ETHERTYPE_AT = 0x809b
constant ETHERTYPE_ATALK (line 337) | ETHERTYPE_ATALK = 0x809b
constant ETHERTYPE_ATOMIC (line 338) | ETHERTYPE_ATOMIC = 0x86df
constant ETHERTYPE_ATT (line 339) | ETHERTYPE_ATT = 0x8069
constant ETHERTYPE_ATTSTANFORD (line 340) | ETHERTYPE_ATTSTANFORD = 0x8008
constant ETHERTYPE_AUTOPHON (line 341) | ETHERTYPE_AUTOPHON = 0x806a
constant ETHERTYPE_AXIS (line 342) | ETHERTYPE_AXIS = 0x8856
constant ETHERTYPE_BCLOOP (line 343) | ETHERTYPE_BCLOOP = 0x9003
constant ETHERTYPE_BOFL (line 344) | ETHERTYPE_BOFL = 0x8102
constant ETHERTYPE_CABLETRON (line 345) | ETHERTYPE_CABLETRON = 0x7034
constant ETHERTYPE_CHAOS (line 346) | ETHERTYPE_CHAOS = 0x804
constant ETHERTYPE_COMDESIGN (line 347) | ETHERTYPE_COMDESIGN = 0x806c
constant ETHERTYPE_COMPUGRAPHIC (line 348) | ETHERTYPE_COMPUGRAPHIC = 0x806d
constant ETHERTYPE_COUNTERPOINT (line 349) | ETHERTYPE_COUNTERPOINT = 0x8062
constant ETHERTYPE_CRONUS (line 350) | ETHERTYPE_CRONUS = 0x8004
constant ETHERTYPE_CRONUSVLN (line 351) | ETHERTYPE_CRONUSVLN = 0x8003
constant ETHERTYPE_DCA (line 352) | ETHERTYPE_DCA = 0x1234
constant ETHERTYPE_DDE (line 353) | ETHERTYPE_DDE = 0x807b
constant ETHERTYPE_DEBNI (line 354) | ETHERTYPE_DEBNI = 0xaaaa
constant ETHERTYPE_DECAM (line 355) | ETHERTYPE_DECAM = 0x8048
constant ETHERTYPE_DECCUST (line 356) | ETHERTYPE_DECCUST = 0x6006
constant ETHERTYPE_DECDIAG (line 357) | ETHERTYPE_DECDIAG = 0x6005
constant ETHERTYPE_DECDNS (line 358) | ETHERTYPE_DECDNS = 0x803c
constant ETHERTYPE_DECDTS (line 359) | ETHERTYPE_DECDTS = 0x803e
constant ETHERTYPE_DECEXPER (line 360) | ETHERTYPE_DECEXPER = 0x6000
constant ETHERTYPE_DECLAST (line 361) | ETHERTYPE_DECLAST = 0x8041
constant ETHERTYPE_DECLTM (line 362) | ETHERTYPE_DECLTM = 0x803f
constant ETHERTYPE_DECMUMPS (line 363) | ETHERTYPE_DECMUMPS = 0x6009
constant ETHERTYPE_DECNETBIOS (line 364) | ETHERTYPE_DECNETBIOS = 0x8040
constant ETHERTYPE_DELTACON (line 365) | ETHERTYPE_DELTACON = 0x86de
constant ETHERTYPE_DIDDLE (line 366) | ETHERTYPE_DIDDLE = 0x4321
constant ETHERTYPE_DLOG1 (line 367) | ETHERTYPE_DLOG1 = 0x660
constant ETHERTYPE_DLOG2 (line 368) | ETHERTYPE_DLOG2 = 0x661
constant ETHERTYPE_DN (line 369) | ETHERTYPE_DN = 0x6003
constant ETHERTYPE_DOGFIGHT (line 370) | ETHERTYPE_DOGFIGHT = 0x1989
constant ETHERTYPE_DSMD (line 371) | ETHERTYPE_DSMD = 0x8039
constant ETHERTYPE_ECMA (line 372) | ETHERTYPE_ECMA = 0x803
constant ETHERTYPE_ENCRYPT (line 373) | ETHERTYPE_ENCRYPT = 0x803d
constant ETHERTYPE_ES (line 374) | ETHERTYPE_ES = 0x805d
constant ETHERTYPE_EXCELAN (line 375) | ETHERTYPE_EXCELAN = 0x8010
constant ETHERTYPE_EXPERDATA (line 376) | ETHERTYPE_EXPERDATA = 0x8049
constant ETHERTYPE_FLIP (line 377) | ETHERTYPE_FLIP = 0x8146
constant ETHERTYPE_FLOWCONTROL (line 378) | ETHERTYPE_FLOWCONTROL = 0x8808
constant ETHERTYPE_FRARP (line 379) | ETHERTYPE_FRARP = 0x808
constant ETHERTYPE_GENDYN (line 380) | ETHERTYPE_GENDYN = 0x8068
constant ETHERTYPE_HAYES (line 381) | ETHERTYPE_HAYES = 0x8130
constant ETHERTYPE_HIPPI_FP (line 382) | ETHERTYPE_HIPPI_FP = 0x8180
constant ETHERTYPE_HITACHI (line 383) | ETHERTYPE_HITACHI = 0x8820
constant ETHERTYPE_HP (line 384) | ETHERTYPE_HP = 0x8005
constant ETHERTYPE_IEEEPUP (line 385) | ETHERTYPE_IEEEPUP = 0xa00
constant ETHERTYPE_IEEEPUPAT (line 386) | ETHERTYPE_IEEEPUPAT = 0xa01
constant ETHERTYPE_IMLBL (line 387) | ETHERTYPE_IMLBL = 0x4c42
constant ETHERTYPE_IMLBLDIAG (line 388) | ETHERTYPE_IMLBLDIAG = 0x424c
constant ETHERTYPE_IP (line 389) | ETHERTYPE_IP = 0x800
constant ETHERTYPE_IPAS (line 390) | ETHERTYPE_IPAS = 0x876c
constant ETHERTYPE_IPV6 (line 391) | ETHERTYPE_IPV6 = 0x86dd
constant ETHERTYPE_IPX (line 392) | ETHERTYPE_IPX = 0x8137
constant ETHERTYPE_IPXNEW (line 393) | ETHERTYPE_IPXNEW = 0x8037
constant ETHERTYPE_KALPANA (line 394) | ETHERTYPE_KALPANA = 0x8582
constant ETHERTYPE_LANBRIDGE (line 395) | ETHERTYPE_LANBRIDGE = 0x8038
constant ETHERTYPE_LANPROBE (line 396) | ETHERTYPE_LANPROBE = 0x8888
constant ETHERTYPE_LAT (line 397) | ETHERTYPE_LAT = 0x6004
constant ETHERTYPE_LBACK (line 398) | ETHERTYPE_LBACK = 0x9000
constant ETHERTYPE_LITTLE (line 399) | ETHERTYPE_LITTLE = 0x8060
constant ETHERTYPE_LOGICRAFT (line 400) | ETHERTYPE_LOGICRAFT = 0x8148
constant ETHERTYPE_LOOPBACK (line 401) | ETHERTYPE_LOOPBACK = 0x9000
constant ETHERTYPE_MATRA (line 402) | ETHERTYPE_MATRA = 0x807a
constant ETHERTYPE_MAX (line 403) | ETHERTYPE_MAX = 0xffff
constant ETHERTYPE_MERIT (line 404) | ETHERTYPE_MERIT = 0x807c
constant ETHERTYPE_MICP (line 405) | ETHERTYPE_MICP = 0x873a
constant ETHERTYPE_MOPDL (line 406) | ETHERTYPE_MOPDL = 0x6001
constant ETHERTYPE_MOPRC (line 407) | ETHERTYPE_MOPRC = 0x6002
constant ETHERTYPE_MOTOROLA (line 408) | ETHERTYPE_MOTOROLA = 0x818d
constant ETHERTYPE_MPLS (line 409) | ETHERTYPE_MPLS = 0x8847
constant ETHERTYPE_MPLS_MCAST (line 410) | ETHERTYPE_MPLS_MCAST = 0x8848
constant ETHERTYPE_MUMPS (line 411) | ETHERTYPE_MUMPS = 0x813f
constant ETHERTYPE_NBPCC (line 412) | ETHERTYPE_NBPCC = 0x3c04
constant ETHERTYPE_NBPCLAIM (line 413) | ETHERTYPE_NBPCLAIM = 0x3c09
constant ETHERTYPE_NBPCLREQ (line 414) | ETHERTYPE_NBPCLREQ = 0x3c05
constant ETHERTYPE_NBPCLRSP (line 415) | ETHERTYPE_NBPCLRSP = 0x3c06
constant ETHERTYPE_NBPCREQ (line 416) | ETHERTYPE_NBPCREQ = 0x3c02
constant ETHERTYPE_NBPCRSP (line 417) | ETHERTYPE_NBPCRSP = 0x3c03
constant ETHERTYPE_NBPDG (line 418) | ETHERTYPE_NBPDG = 0x3c07
constant ETHERTYPE_NBPDGB (line 419) | ETHERTYPE_NBPDGB = 0x3c08
constant ETHERTYPE_NBPDLTE (line 420) | ETHERTYPE_NBPDLTE = 0x3c0a
constant ETHERTYPE_NBPRAR (line 421) | ETHERTYPE_NBPRAR = 0x3c0c
constant ETHERTYPE_NBPRAS (line 422) | ETHERTYPE_NBPRAS = 0x3c0b
constant ETHERTYPE_NBPRST (line 423) | ETHERTYPE_NBPRST = 0x3c0d
constant ETHERTYPE_NBPSCD (line 424) | ETHERTYPE_NBPSCD = 0x3c01
constant ETHERTYPE_NBPVCD (line 425) | ETHERTYPE_NBPVCD = 0x3c00
constant ETHERTYPE_NBS (line 426) | ETHERTYPE_NBS = 0x802
constant ETHERTYPE_NCD (line 427) | ETHERTYPE_NCD = 0x8149
constant ETHERTYPE_NESTAR (line 428) | ETHERTYPE_NESTAR = 0x8006
constant ETHERTYPE_NETBEUI (line 429) | ETHERTYPE_NETBEUI = 0x8191
constant ETHERTYPE_NOVELL (line 430) | ETHERTYPE_NOVELL = 0x8138
constant ETHERTYPE_NS (line 431) | ETHERTYPE_NS = 0x600
constant ETHERTYPE_NSAT (line 432) | ETHERTYPE_NSAT = 0x601
constant ETHERTYPE_NSCOMPAT (line 433) | ETHERTYPE_NSCOMPAT = 0x807
constant ETHERTYPE_NTRAILER (line 434) | ETHERTYPE_NTRAILER = 0x10
constant ETHERTYPE_OS9 (line 435) | ETHERTYPE_OS9 = 0x7007
constant ETHERTYPE_OS9NET (line 436) | ETHERTYPE_OS9NET = 0x7009
constant ETHERTYPE_PACER (line 437) | ETHERTYPE_PACER = 0x80c6
constant ETHERTYPE_PAE (line 438) | ETHERTYPE_PAE = 0x888e
constant ETHERTYPE_PCS (line 439) | ETHERTYPE_PCS = 0x4242
constant ETHERTYPE_PLANNING (line 440) | ETHERTYPE_PLANNING = 0x8044
constant ETHERTYPE_PPP (line 441) | ETHERTYPE_PPP = 0x880b
constant ETHERTYPE_PPPOE (line 442) | ETHERTYPE_PPPOE = 0x8864
constant ETHERTYPE_PPPOEDISC (line 443) | ETHERTYPE_PPPOEDISC = 0x8863
constant ETHERTYPE_PRIMENTS (line 444) | ETHERTYPE_PRIMENTS = 0x7031
constant ETHERTYPE_PUP (line 445) | ETHERTYPE_PUP = 0x200
constant ETHERTYPE_PUPAT (line 446) | ETHERTYPE_PUPAT = 0x200
constant ETHERTYPE_RACAL (line 447) | ETHERTYPE_RACAL = 0x7030
constant ETHERTYPE_RATIONAL (line 448) | ETHERTYPE_RATIONAL = 0x8150
constant ETHERTYPE_RAWFR (line 449) | ETHERTYPE_RAWFR = 0x6559
constant ETHERTYPE_RCL (line 450) | ETHERTYPE_RCL = 0x1995
constant ETHERTYPE_RDP (line 451) | ETHERTYPE_RDP = 0x8739
constant ETHERTYPE_RETIX (line 452) | ETHERTYPE_RETIX = 0x80f2
constant ETHERTYPE_REVARP (line 453) | ETHERTYPE_REVARP = 0x8035
constant ETHERTYPE_SCA (line 454) | ETHERTYPE_SCA = 0x6007
constant ETHERTYPE_SECTRA (line 455) | ETHERTYPE_SECTRA = 0x86db
constant ETHERTYPE_SECUREDATA (line 456) | ETHERTYPE_SECUREDATA = 0x876d
constant ETHERTYPE_SGITW (line 457) | ETHERTYPE_SGITW = 0x817e
constant ETHERTYPE_SG_BOUNCE (line 458) | ETHERTYPE_SG_BOUNCE = 0x8016
constant ETHERTYPE_SG_DIAG (line 459) | ETHERTYPE_SG_DIAG = 0x8013
constant ETHERTYPE_SG_NETGAMES (line 460) | ETHERTYPE_SG_NETGAMES = 0x8014
constant ETHERTYPE_SG_RESV (line 461) | ETHERTYPE_SG_RESV = 0x8015
constant ETHERTYPE_SIMNET (line 462) | ETHERTYPE_SIMNET = 0x5208
constant ETHERTYPE_SLOWPROTOCOLS (line 463) | ETHERTYPE_SLOWPROTOCOLS = 0x8809
constant ETHERTYPE_SNA (line 464) | ETHERTYPE_SNA = 0x80d5
constant ETHERTYPE_SNMP (line 465) | ETHERTYPE_SNMP = 0x814c
constant ETHERTYPE_SONIX (line 466) | ETHERTYPE_SONIX = 0xfaf5
constant ETHERTYPE_SPIDER (line 467) | ETHERTYPE_SPIDER = 0x809f
constant ETHERTYPE_SPRITE (line 468) | ETHERTYPE_SPRITE = 0x500
constant ETHERTYPE_STP (line 469) | ETHERTYPE_STP = 0x8181
constant ETHERTYPE_TALARIS (line 470) | ETHERTYPE_TALARIS = 0x812b
constant ETHERTYPE_TALARISMC (line 471) | ETHERTYPE_TALARISMC = 0x852b
constant ETHERTYPE_TCPCOMP (line 472) | ETHERTYPE_TCPCOMP = 0x876b
constant ETHERTYPE_TCPSM (line 473) | ETHERTYPE_TCPSM = 0x9002
constant ETHERTYPE_TEC (line 474) | ETHERTYPE_TEC = 0x814f
constant ETHERTYPE_TIGAN (line 475) | ETHERTYPE_TIGAN = 0x802f
constant ETHERTYPE_TRAIL (line 476) | ETHERTYPE_TRAIL = 0x1000
constant ETHERTYPE_TRANSETHER (line 477) | ETHERTYPE_TRANSETHER = 0x6558
constant ETHERTYPE_TYMSHARE (line 478) | ETHERTYPE_TYMSHARE = 0x802e
constant ETHERTYPE_UBBST (line 479) | ETHERTYPE_UBBST = 0x7005
constant ETHERTYPE_UBDEBUG (line 480) | ETHERTYPE_UBDEBUG = 0x900
constant ETHERTYPE_UBDIAGLOOP (line 481) | ETHERTYPE_UBDIAGLOOP = 0x7002
constant ETHERTYPE_UBDL (line 482) | ETHERTYPE_UBDL = 0x7000
constant ETHERTYPE_UBNIU (line 483) | ETHERTYPE_UBNIU = 0x7001
constant ETHERTYPE_UBNMC (line 484) | ETHERTYPE_UBNMC = 0x7003
constant ETHERTYPE_VALID (line 485) | ETHERTYPE_VALID = 0x1600
constant ETHERTYPE_VARIAN (line 486) | ETHERTYPE_VARIAN = 0x80dd
constant ETHERTYPE_VAXELN (line 487) | ETHERTYPE_VAXELN = 0x803b
constant ETHERTYPE_VEECO (line 488) | ETHERTYPE_VEECO = 0x8067
constant ETHERTYPE_VEXP (line 489) | ETHERTYPE_VEXP = 0x805b
constant ETHERTYPE_VGLAB (line 490) | ETHERTYPE_VGLAB = 0x8131
constant ETHERTYPE_VINES (line 491) | ETHERTYPE_VINES = 0xbad
constant ETHERTYPE_VINESECHO (line 492) | ETHERTYPE_VINESECHO = 0xbaf
constant ETHERTYPE_VINESLOOP (line 493) | ETHERTYPE_VINESLOOP = 0xbae
constant ETHERTYPE_VITAL (line 494) | ETHERTYPE_VITAL = 0xff00
constant ETHERTYPE_VLAN (line 495) | ETHERTYPE_VLAN = 0x8100
constant ETHERTYPE_VLTLMAN (line 496) | ETHERTYPE_VLTLMAN = 0x8080
constant ETHERTYPE_VPROD (line 497) | ETHERTYPE_VPROD = 0x805c
constant ETHERTYPE_VURESERVED (line 498) | ETHERTYPE_VURESERVED = 0x8147
constant ETHERTYPE_WATERLOO (line 499) | ETHERTYPE_WATERLOO = 0x8130
constant ETHERTYPE_WELLFLEET (line 500) | ETHERTYPE_WELLFLEET = 0x8103
constant ETHERTYPE_X25 (line 501) | ETHERTYPE_X25 = 0x805
constant ETHERTYPE_X75 (line 502) | ETHERTYPE_X75 = 0x801
constant ETHERTYPE_XNSSM (line 503) | ETHERTYPE_XNSSM = 0x9001
constant ETHERTYPE_XTP (line 504) | ETHERTYPE_XTP = 0x817d
constant ETHER_ADDR_LEN (line 505) | ETHER_ADDR_LEN = 0x6
constant ETHER_CRC_LEN (line 506) | ETHER_CRC_LEN = 0x4
constant ETHER_CRC_POLY_BE (line 507) | ETHER_CRC_POLY_BE = 0x4c11db6
constant ETHER_CRC_POLY_LE (line 508) | ETHER_CRC_POLY_LE = 0xedb88320
constant ETHER_HDR_LEN (line 509) | ETHER_HDR_LEN = 0xe
constant ETHER_MAX_LEN (line 510) | ETHER_MAX_LEN = 0x5ee
constant ETHER_MAX_LEN_JUMBO (line 511) | ETHER_MAX_LEN_JUMBO = 0x233a
constant ETHER_MIN_LEN (line 512) | ETHER_MIN_LEN = 0x40
constant ETHER_PPPOE_ENCAP_LEN (line 513) | ETHER_PPPOE_ENCAP_LEN = 0x8
constant ETHER_TYPE_LEN (line 514) | ETHER_TYPE_LEN = 0x2
constant ETHER_VLAN_ENCAP_LEN (line 515) | ETHER_VLAN_ENCAP_LEN = 0x4
constant EVFILT_AIO (line 516) | EVFILT_AIO = 0x2
constant EVFILT_PROC (line 517) | EVFILT_PROC = 0x4
constant EVFILT_READ (line 518) | EVFILT_READ = 0x0
constant EVFILT_SIGNAL (line 519) | EVFILT_SIGNAL = 0x5
constant EVFILT_SYSCOUNT (line 520) | EVFILT_SYSCOUNT = 0x7
constant EVFILT_TIMER (line 521) | EVFILT_TIMER = 0x6
constant EVFILT_VNODE (line 522) | EVFILT_VNODE = 0x3
constant EVFILT_WRITE (line 523) | EVFILT_WRITE = 0x1
constant EV_ADD (line 524) | EV_ADD = 0x1
constant EV_CLEAR (line 525) | EV_CLEAR = 0x20
constant EV_DELETE (line 526) | EV_DELETE = 0x2
constant EV_DISABLE (line 527) | EV_DISABLE = 0x8
constant EV_ENABLE (line 528) | EV_ENABLE = 0x4
constant EV_EOF (line 529) | EV_EOF = 0x8000
constant EV_ERROR (line 530) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 531) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 532) | EV_ONESHOT = 0x10
constant EV_SYSFLAGS (line 533) | EV_SYSFLAGS = 0xf000
constant EXTA (line 534) | EXTA = 0x4b00
constant EXTATTR_CMD_START (line 535) | EXTATTR_CMD_START = 0x1
constant EXTATTR_CMD_STOP (line 536) | EXTATTR_CMD_STOP = 0x2
constant EXTATTR_NAMESPACE_SYSTEM (line 537) | EXTATTR_NAMESPACE_SYSTEM = 0x2
constant EXTATTR_NAMESPACE_USER (line 538) | EXTATTR_NAMESPACE_USER = 0x1
constant EXTB (line 539) | EXTB = 0x9600
constant EXTPROC (line 540) | EXTPROC = 0x800
constant FD_CLOEXEC (line 541) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 542) | FD_SETSIZE = 0x100
constant FLUSHO (line 543) | FLUSHO = 0x800000
constant F_CLOSEM (line 544) | F_CLOSEM = 0xa
constant F_DUPFD (line 545) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 546) | F_DUPFD_CLOEXEC = 0xc
constant F_FSCTL (line 547) | F_FSCTL = -0x80000000
constant F_FSDIRMASK (line 548) | F_FSDIRMASK = 0x70000000
constant F_FSIN (line 549) | F_FSIN = 0x10000000
constant F_FSINOUT (line 550) | F_FSINOUT = 0x30000000
constant F_FSOUT (line 551) | F_FSOUT = 0x20000000
constant F_FSPRIV (line 552) | F_FSPRIV = 0x8000
constant F_FSVOID (line 553) | F_FSVOID = 0x40000000
constant F_GETFD (line 554) | F_GETFD = 0x1
constant F_GETFL (line 555) | F_GETFL = 0x3
constant F_GETLK (line 556) | F_GETLK = 0x7
constant F_GETNOSIGPIPE (line 557) | F_GETNOSIGPIPE = 0xd
constant F_GETOWN (line 558) | F_GETOWN = 0x5
constant F_MAXFD (line 559) | F_MAXFD = 0xb
constant F_OK (line 560) | F_OK = 0x0
constant F_PARAM_MASK (line 561) | F_PARAM_MASK = 0xfff
constant F_PARAM_MAX (line 562) | F_PARAM_MAX = 0xfff
constant F_RDLCK (line 563) | F_RDLCK = 0x1
constant F_SETFD (line 564) | F_SETFD = 0x2
constant F_SETFL (line 565) | F_SETFL = 0x4
constant F_SETLK (line 566) | F_SETLK = 0x8
constant F_SETLKW (line 567) | F_SETLKW = 0x9
constant F_SETNOSIGPIPE (line 568) | F_SETNOSIGPIPE = 0xe
constant F_SETOWN (line 569) | F_SETOWN = 0x6
constant F_UNLCK (line 570) | F_UNLCK = 0x2
constant F_WRLCK (line 571) | F_WRLCK = 0x3
constant HUPCL (line 572) | HUPCL = 0x4000
constant HW_MACHINE (line 573) | HW_MACHINE = 0x1
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 KERN_HOSTNAME (line 963) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 964) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 965) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 966) | KERN_VERSION = 0x4
constant LOCK_EX (line 967) | LOCK_EX = 0x2
constant LOCK_NB (line 968) | LOCK_NB = 0x4
constant LOCK_SH (line 969) | LOCK_SH = 0x1
constant LOCK_UN (line 970) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 971) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 972) | MADV_FREE = 0x6
constant MADV_NORMAL (line 973) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 974) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 975) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 976) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 977) | MADV_WILLNEED = 0x3
constant MAP_ALIGNMENT_16MB (line 978) | MAP_ALIGNMENT_16MB = 0x18000000
constant MAP_ALIGNMENT_1TB (line 979) | MAP_ALIGNMENT_1TB = 0x28000000
constant MAP_ALIGNMENT_256TB (line 980) | MAP_ALIGNMENT_256TB = 0x30000000
constant MAP_ALIGNMENT_4GB (line 981) | MAP_ALIGNMENT_4GB = 0x20000000
constant MAP_ALIGNMENT_64KB (line 982) | MAP_ALIGNMENT_64KB = 0x10000000
constant MAP_ALIGNMENT_64PB (line 983) | MAP_ALIGNMENT_64PB = 0x38000000
constant MAP_ALIGNMENT_MASK (line 984) | MAP_ALIGNMENT_MASK = -0x1000000
constant MAP_ALIGNMENT_SHIFT (line 985) | MAP_ALIGNMENT_SHIFT = 0x18
constant MAP_ANON (line 986) | MAP_ANON = 0x1000
constant MAP_FILE (line 987) | MAP_FILE = 0x0
constant MAP_FIXED (line 988) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 989) | MAP_HASSEMAPHORE = 0x200
constant MAP_INHERIT (line 990) | MAP_INHERIT = 0x80
constant MAP_INHERIT_COPY (line 991) | MAP_INHERIT_COPY = 0x1
constant MAP_INHERIT_DEFAULT (line 992) | MAP_INHERIT_DEFAULT = 0x1
constant MAP_INHERIT_DONATE_COPY (line 993) | MAP_INHERIT_DONATE_COPY = 0x3
constant MAP_INHERIT_NONE (line 994) | MAP_INHERIT_NONE = 0x2
constant MAP_INHERIT_SHARE (line 995) | MAP_INHERIT_SHARE = 0x0
constant MAP_NORESERVE (line 996) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 997) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 998) | MAP_RENAME = 0x20
constant MAP_SHARED (line 999) | MAP_SHARED = 0x1
constant MAP_STACK (line 1000) | MAP_STACK = 0x2000
constant MAP_TRYFIXED (line 1001) | MAP_TRYFIXED = 0x400
constant MAP_WIRED (line 1002) | MAP_WIRED = 0x800
constant MNT_ASYNC (line 1003) | MNT_ASYNC = 0x40
constant MNT_BASIC_FLAGS (line 1004) | MNT_BASIC_FLAGS = 0xe782807f
constant MNT_DEFEXPORTED (line 1005) | MNT_DEFEXPORTED = 0x200
constant MNT_DISCARD (line 1006) | MNT_DISCARD = 0x800000
constant MNT_EXKERB (line 1007) | MNT_EXKERB = 0x800
constant MNT_EXNORESPORT (line 1008) | MNT_EXNORESPORT = 0x8000000
constant MNT_EXPORTANON (line 1009) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 1010) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 1011) | MNT_EXPUBLIC = 0x10000000
constant MNT_EXRDONLY (line 1012) | MNT_EXRDONLY = 0x80
constant MNT_EXTATTR (line 1013) | MNT_EXTATTR = 0x1000000
constant MNT_FORCE (line 1014) | MNT_FORCE = 0x80000
constant MNT_GETARGS (line 1015) | MNT_GETARGS = 0x400000
constant MNT_IGNORE (line 1016) | MNT_IGNORE = 0x100000
constant MNT_LAZY (line 1017) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 1018) | MNT_LOCAL = 0x1000
constant MNT_LOG (line 1019) | MNT_LOG = 0x2000000
constant MNT_NOATIME (line 1020) | MNT_NOATIME = 0x4000000
constant MNT_NOCOREDUMP (line 1021) | MNT_NOCOREDUMP = 0x8000
constant MNT_NODEV (line 1022) | MNT_NODEV = 0x10
constant MNT_NODEVMTIME (line 1023) | MNT_NODEVMTIME = 0x40000000
constant MNT_NOEXEC (line 1024) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 1025) | MNT_NOSUID = 0x8
constant MNT_NOWAIT (line 1026) | MNT_NOWAIT = 0x2
constant MNT_OP_FLAGS (line 1027) | MNT_OP_FLAGS = 0x4d0000
constant MNT_QUOTA (line 1028) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 1029) | MNT_RDONLY = 0x1
constant MNT_RELATIME (line 1030) | MNT_RELATIME = 0x20000
constant MNT_RELOAD (line 1031) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 1032) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 1033) | MNT_SOFTDEP = 0x80000000
constant MNT_SYMPERM (line 1034) | MNT_SYMPERM = 0x20000000
constant MNT_SYNCHRONOUS (line 1035) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 1036) | MNT_UNION = 0x20
constant MNT_UPDATE (line 1037) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 1038) | MNT_VISFLAGMASK = 0xff90ffff
constant MNT_WAIT (line 1039) | MNT_WAIT = 0x1
constant MSG_BCAST (line 1040) | MSG_BCAST = 0x100
constant MSG_CMSG_CLOEXEC (line 1041) | MSG_CMSG_CLOEXEC = 0x800
constant MSG_CONTROLMBUF (line 1042) | MSG_CONTROLMBUF = 0x2000000
constant MSG_CTRUNC (line 1043) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 1044) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1045) | MSG_DONTWAIT = 0x80
constant MSG_EOR (line 1046) | MSG_EOR = 0x8
constant MSG_IOVUSRSPACE (line 1047) | MSG_IOVUSRSPACE = 0x4000000
constant MSG_LENUSRSPACE (line 1048) | MSG_LENUSRSPACE = 0x8000000
constant MSG_MCAST (line 1049) | MSG_MCAST = 0x200
constant MSG_NAMEMBUF (line 1050) | MSG_NAMEMBUF = 0x1000000
constant MSG_NBIO (line 1051) | MSG_NBIO = 0x1000
constant MSG_NOSIGNAL (line 1052) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 1053) | MSG_OOB = 0x1
constant MSG_PEEK (line 1054) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 1055) | MSG_TRUNC = 0x10
constant MSG_USERFLAGS (line 1056) | MSG_USERFLAGS = 0xffffff
constant MSG_WAITALL (line 1057) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 1058) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 1059) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 1060) | MS_SYNC = 0x4
constant NAME_MAX (line 1061) | NAME_MAX = 0x1ff
constant NET_RT_DUMP (line 1062) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 1063) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 1064) | NET_RT_IFLIST = 0x5
constant NET_RT_MAXID (line 1065) | NET_RT_MAXID = 0x6
constant NET_RT_OIFLIST (line 1066) | NET_RT_OIFLIST = 0x4
constant NET_RT_OOIFLIST (line 1067) | NET_RT_OOIFLIST = 0x3
constant NOFLSH (line 1068) | NOFLSH = 0x80000000
constant NOTE_ATTRIB (line 1069) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 1070) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 1071) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 1072) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1073) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1074) | NOTE_EXTEND = 0x4
constant NOTE_FORK (line 1075) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1076) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1077) | NOTE_LOWAT = 0x1
constant NOTE_PCTRLMASK (line 1078) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1079) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 1080) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1081) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 1082) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1083) | NOTE_TRACKERR = 0x2
constant NOTE_WRITE (line 1084) | NOTE_WRITE = 0x2
constant OCRNL (line 1085) | OCRNL = 0x10
constant OFIOGETBMAP (line 1086) | OFIOGETBMAP = 0xc004667a
constant ONLCR (line 1087) | ONLCR = 0x2
constant ONLRET (line 1088) | ONLRET = 0x40
constant ONOCR (line 1089) | ONOCR = 0x20
constant ONOEOT (line 1090) | ONOEOT = 0x8
constant OPOST (line 1091) | OPOST = 0x1
constant O_ACCMODE (line 1092) | O_ACCMODE = 0x3
constant O_ALT_IO (line 1093) | O_ALT_IO = 0x40000
constant O_APPEND (line 1094) | O_APPEND = 0x8
constant O_ASYNC (line 1095) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1096) | O_CLOEXEC = 0x400000
constant O_CREAT (line 1097) | O_CREAT = 0x200
constant O_DIRECT (line 1098) | O_DIRECT = 0x80000
constant O_DIRECTORY (line 1099) | O_DIRECTORY = 0x200000
constant O_DSYNC (line 1100) | O_DSYNC = 0x10000
constant O_EXCL (line 1101) | O_EXCL = 0x800
constant O_EXLOCK (line 1102) | O_EXLOCK = 0x20
constant O_FSYNC (line 1103) | O_FSYNC = 0x80
constant O_NDELAY (line 1104) | O_NDELAY = 0x4
constant O_NOCTTY (line 1105) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1106) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1107) | O_NONBLOCK = 0x4
constant O_NOSIGPIPE (line 1108) | O_NOSIGPIPE = 0x1000000
constant O_RDONLY (line 1109) | O_RDONLY = 0x0
constant O_RDWR (line 1110) | O_RDWR = 0x2
constant O_RSYNC (line 1111) | O_RSYNC = 0x20000
constant O_SHLOCK (line 1112) | O_SHLOCK = 0x10
constant O_SYNC (line 1113) | O_SYNC = 0x80
constant O_TRUNC (line 1114) | O_TRUNC = 0x400
constant O_WRONLY (line 1115) | O_WRONLY = 0x1
constant PARENB (line 1116) | PARENB = 0x1000
constant PARMRK (line 1117) | PARMRK = 0x8
constant PARODD (line 1118) | PARODD = 0x2000
constant PENDIN (line 1119) | PENDIN = 0x20000000
constant PROT_EXEC (line 1120) | PROT_EXEC = 0x4
constant PROT_NONE (line 1121) | PROT_NONE = 0x0
constant PROT_READ (line 1122) | PROT_READ = 0x1
constant PROT_WRITE (line 1123) | PROT_WRITE = 0x2
constant PRI_IOFLUSH (line 1124) | PRI_IOFLUSH = 0x7c
constant PRIO_PGRP (line 1125) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1126) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1127) | PRIO_USER = 0x2
constant RLIMIT_AS (line 1128) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1129) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1130) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1131) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1132) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1133) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1134) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1135) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1136) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1137) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1138) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1139) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1140) | RTAX_BRD = 0x7
constant RTAX_DST (line 1141) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1142) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1143) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1144) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1145) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1146) | RTAX_MAX = 0x9
constant RTAX_NETMASK (line 1147) | RTAX_NETMASK = 0x2
constant RTAX_TAG (line 1148) | RTAX_TAG = 0x8
constant RTA_AUTHOR (line 1149) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1150) | RTA_BRD = 0x80
constant RTA_DST (line 1151) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1152) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1153) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1154) | RTA_IFA = 0x20
constant RTA_IFP (line 1155) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1156) | RTA_NETMASK = 0x4
constant RTA_TAG (line 1157) | RTA_TAG = 0x100
constant RTF_ANNOUNCE (line 1158) | RTF_ANNOUNCE = 0x20000
constant RTF_BLACKHOLE (line 1159) | RTF_BLACKHOLE = 0x1000
constant RTF_CLONED (line 1160) | RTF_CLONED = 0x2000
constant RTF_CLONING (line 1161) | RTF_CLONING = 0x100
constant RTF_DONE (line 1162) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1163) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1164) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1165) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1166) | RTF_LLINFO = 0x400
constant RTF_MASK (line 1167) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 1168) | RTF_MODIFIED = 0x20
constant RTF_PROTO1 (line 1169) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1170) | RTF_PROTO2 = 0x4000
constant RTF_REJECT (line 1171) | RTF_REJECT = 0x8
constant RTF_SRC (line 1172) | RTF_SRC = 0x10000
constant RTF_STATIC (line 1173) | RTF_STATIC = 0x800
constant RTF_UP (line 1174) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 1175) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1176) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1177) | RTM_CHANGE = 0x3
constant RTM_CHGADDR (line 1178) | RTM_CHGADDR = 0x15
constant RTM_DELADDR (line 1179) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1180) | RTM_DELETE = 0x2
constant RTM_GET (line 1181) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1182) | RTM_IEEE80211 = 0x11
constant RTM_IFANNOUNCE (line 1183) | RTM_IFANNOUNCE = 0x10
constant RTM_IFINFO (line 1184) | RTM_IFINFO = 0x14
constant RTM_LLINFO_UPD (line 1185) | RTM_LLINFO_UPD = 0x13
constant RTM_LOCK (line 1186) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1187) | RTM_LOSING = 0x5
constant RTM_MISS (line 1188) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1189) | RTM_NEWADDR = 0xc
constant RTM_OIFINFO (line 1190) | RTM_OIFINFO = 0xf
constant RTM_OLDADD (line 1191) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1192) | RTM_OLDDEL = 0xa
constant RTM_OOIFINFO (line 1193) | RTM_OOIFINFO = 0xe
constant RTM_REDIRECT (line 1194) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1195) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1196) | RTM_RTTUNIT = 0xf4240
constant RTM_SETGATE (line 1197) | RTM_SETGATE = 0x12
constant RTM_VERSION (line 1198) | RTM_VERSION = 0x4
constant RTV_EXPIRE (line 1199) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1200) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1201) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1202) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1203) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1204) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1205) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1206) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1207) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1208) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1209) | SCM_CREDS = 0x4
constant SCM_RIGHTS (line 1210) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1211) | SCM_TIMESTAMP = 0x8
constant SHUT_RD (line 1212) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1213) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1214) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1215) | SIOCADDMULTI = 0x80906931
constant SIOCADDRT (line 1216) | SIOCADDRT = 0x8030720a
constant SIOCAIFADDR (line 1217) | SIOCAIFADDR = 0x8040691a
constant SIOCALIFADDR (line 1218) | SIOCALIFADDR = 0x8118691c
constant SIOCATMARK (line 1219) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1220) | SIOCDELMULTI = 0x80906932
constant SIOCDELRT (line 1221) | SIOCDELRT = 0x8030720b
constant SIOCDIFADDR (line 1222) | SIOCDIFADDR = 0x80906919
constant SIOCDIFPHYADDR (line 1223) | SIOCDIFPHYADDR = 0x80906949
constant SIOCDLIFADDR (line 1224) | SIOCDLIFADDR = 0x8118691e
constant SIOCGDRVSPEC (line 1225) | SIOCGDRVSPEC = 0xc01c697b
constant SIOCGETPFSYNC (line 1226) | SIOCGETPFSYNC = 0xc09069f8
constant SIOCGETSGCNT (line 1227) | SIOCGETSGCNT = 0xc0147534
constant SIOCGETVIFCNT (line 1228) | SIOCGETVIFCNT = 0xc0147533
constant SIOCGHIWAT (line 1229) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1230) | SIOCGIFADDR = 0xc0906921
constant SIOCGIFADDRPREF (line 1231) | SIOCGIFADDRPREF = 0xc0946920
constant SIOCGIFALIAS (line 1232) | SIOCGIFALIAS = 0xc040691b
constant SIOCGIFBRDADDR (line 1233) | SIOCGIFBRDADDR = 0xc0906923
constant SIOCGIFCAP (line 1234) | SIOCGIFCAP = 0xc0206976
constant SIOCGIFCONF (line 1235) | SIOCGIFCONF = 0xc0086926
constant SIOCGIFDATA (line 1236) | SIOCGIFDATA = 0xc0946985
constant SIOCGIFDLT (line 1237) | SIOCGIFDLT = 0xc0906977
constant SIOCGIFDSTADDR (line 1238) | SIOCGIFDSTADDR = 0xc0906922
constant SIOCGIFFLAGS (line 1239) | SIOCGIFFLAGS = 0xc0906911
constant SIOCGIFGENERIC (line 1240) | SIOCGIFGENERIC = 0xc090693a
constant SIOCGIFMEDIA (line 1241) | SIOCGIFMEDIA = 0xc0286936
constant SIOCGIFMETRIC (line 1242) | SIOCGIFMETRIC = 0xc0906917
constant SIOCGIFMTU (line 1243) | SIOCGIFMTU = 0xc090697e
constant SIOCGIFNETMASK (line 1244) | SIOCGIFNETMASK = 0xc0906925
constant SIOCGIFPDSTADDR (line 1245) | SIOCGIFPDSTADDR = 0xc0906948
constant SIOCGIFPSRCADDR (line 1246) | SIOCGIFPSRCADDR = 0xc0906947
constant SIOCGLIFADDR (line 1247) | SIOCGLIFADDR = 0xc118691d
constant SIOCGLIFPHYADDR (line 1248) | SIOCGLIFPHYADDR = 0xc118694b
constant SIOCGLINKSTR (line 1249) | SIOCGLINKSTR = 0xc01c6987
constant SIOCGLOWAT (line 1250) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1251) | SIOCGPGRP = 0x40047309
constant SIOCGVH (line 1252) | SIOCGVH = 0xc0906983
constant SIOCIFCREATE (line 1253) | SIOCIFCREATE = 0x8090697a
constant SIOCIFDESTROY (line 1254) | SIOCIFDESTROY = 0x80906979
constant SIOCIFGCLONERS (line 1255) | SIOCIFGCLONERS = 0xc00c6978
constant SIOCINITIFADDR (line 1256) | SIOCINITIFADDR = 0xc0446984
constant SIOCSDRVSPEC (line 1257) | SIOCSDRVSPEC = 0x801c697b
constant SIOCSETPFSYNC (line 1258) | SIOCSETPFSYNC = 0x809069f7
constant SIOCSHIWAT (line 1259) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1260) | SIOCSIFADDR = 0x8090690c
constant SIOCSIFADDRPREF (line 1261) | SIOCSIFADDRPREF = 0x8094691f
constant SIOCSIFBRDADDR (line 1262) | SIOCSIFBRDADDR = 0x80906913
constant SIOCSIFCAP (line 1263) | SIOCSIFCAP = 0x80206975
constant SIOCSIFDSTADDR (line 1264) | SIOCSIFDSTADDR = 0x8090690e
constant SIOCSIFFLAGS (line 1265) | SIOCSIFFLAGS = 0x80906910
constant SIOCSIFGENERIC (line 1266) | SIOCSIFGENERIC = 0x80906939
constant SIOCSIFMEDIA (line 1267) | SIOCSIFMEDIA = 0xc0906935
constant SIOCSIFMETRIC (line 1268) | SIOCSIFMETRIC = 0x80906918
constant SIOCSIFMTU (line 1269) | SIOCSIFMTU = 0x8090697f
constant SIOCSIFNETMASK (line 1270) | SIOCSIFNETMASK = 0x80906916
constant SIOCSIFPHYADDR (line 1271) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSLIFPHYADDR (line 1272) | SIOCSLIFPHYADDR = 0x8118694a
constant SIOCSLINKSTR (line 1273) | SIOCSLINKSTR = 0x801c6988
constant SIOCSLOWAT (line 1274) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1275) | SIOCSPGRP = 0x80047308
constant SIOCSVH (line 1276) | SIOCSVH = 0xc0906982
constant SIOCZIFDATA (line 1277) | SIOCZIFDATA = 0xc0946986
constant SOCK_CLOEXEC (line 1278) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1279) | SOCK_DGRAM = 0x2
constant SOCK_FLAGS_MASK (line 1280) | SOCK_FLAGS_MASK = 0xf0000000
constant SOCK_NONBLOCK (line 1281) | SOCK_NONBLOCK = 0x20000000
constant SOCK_NOSIGPIPE (line 1282) | SOCK_NOSIGPIPE = 0x40000000
constant SOCK_RAW (line 1283) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1284) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1285) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1286) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1287) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1288) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1289) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1290) | SO_ACCEPTFILTER = 0x1000
constant SO_BROADCAST (line 1291) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1292) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1293) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1294) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1295) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1296) | SO_LINGER = 0x80
constant SO_NOHEADER (line 1297) | SO_NOHEADER = 0x100a
constant SO_NOSIGPIPE (line 1298) | SO_NOSIGPIPE = 0x800
constant SO_OOBINLINE (line 1299) | SO_OOBINLINE = 0x100
constant SO_OVERFLOWED (line 1300) | SO_OVERFLOWED = 0x1009
constant SO_RCVBUF (line 1301) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1302) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1303) | SO_RCVTIMEO = 0x100c
constant SO_REUSEADDR (line 1304) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1305) | SO_REUSEPORT = 0x200
constant SO_SNDBUF (line 1306) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1307) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1308) | SO_SNDTIMEO = 0x100b
constant SO_TIMESTAMP (line 1309) | SO_TIMESTAMP = 0x2000
constant SO_TYPE (line 1310) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1311) | SO_USELOOPBACK = 0x40
constant SYSCTL_VERSION (line 1312) | SYSCTL_VERSION = 0x1000000
constant SYSCTL_VERS_0 (line 1313) | SYSCTL_VERS_0 = 0x0
constant SYSCTL_VERS_1 (line 1314) | SYSCTL_VERS_1 = 0x1000000
constant SYSCTL_VERS_MASK (line 1315) | SYSCTL_VERS_MASK = 0xff000000
constant S_ARCH1 (line 1316) | S_ARCH1 = 0x10000
constant S_ARCH2 (line 1317) | S_ARCH2 = 0x20000
constant S_BLKSIZE (line 1318) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1319) | S_IEXEC = 0x40
constant S_IFBLK (line 1320) | S_IFBLK = 0x6000
constant S_IFCHR (line 1321) | S_IFCHR = 0x2000
constant S_IFDIR (line 1322) | S_IFDIR = 0x4000
constant S_IFIFO (line 1323) | S_IFIFO = 0x1000
constant S_IFLNK (line 1324) | S_IFLNK = 0xa000
constant S_IFMT (line 1325) | S_IFMT = 0xf000
constant S_IFREG (line 1326) | S_IFREG = 0x8000
constant S_IFSOCK (line 1327) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1328) | S_IFWHT = 0xe000
constant S_IREAD (line 1329) | S_IREAD = 0x100
constant S_IRGRP (line 1330) | S_IRGRP = 0x20
constant S_IROTH (line 1331) | S_IROTH = 0x4
constant S_IRUSR (line 1332) | S_IRUSR = 0x100
constant S_IRWXG (line 1333) | S_IRWXG = 0x38
constant S_IRWXO (line 1334) | S_IRWXO = 0x7
constant S_IRWXU (line 1335) | S_IRWXU = 0x1c0
constant S_ISGID (line 1336) | S_ISGID = 0x400
constant S_ISTXT (line 1337) | S_ISTXT = 0x200
constant S_ISUID (line 1338) | S_ISUID = 0x800
constant S_ISVTX (line 1339) | S_ISVTX = 0x200
constant S_IWGRP (line 1340) | S_IWGRP = 0x10
constant S_IWOTH (line 1341) | S_IWOTH = 0x2
constant S_IWRITE (line 1342) | S_IWRITE = 0x80
constant S_IWUSR (line 1343) | S_IWUSR = 0x80
constant S_IXGRP (line 1344) | S_IXGRP = 0x8
constant S_IXOTH (line 1345) | S_IXOTH = 0x1
constant S_IXUSR (line 1346) | S_IXUSR = 0x40
constant TCIFLUSH (line 1347) | TCIFLUSH = 0x1
constant TCIOFLUSH (line 1348) | TCIOFLUSH = 0x3
constant TCOFLUSH (line 1349) | TCOFLUSH = 0x2
constant TCP_CONGCTL (line 1350) | TCP_CONGCTL = 0x20
constant TCP_KEEPCNT (line 1351) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 1352) | TCP_KEEPIDLE = 0x3
constant TCP_KEEPINIT (line 1353) | TCP_KEEPINIT = 0x7
constant TCP_KEEPINTVL (line 1354) | TCP_KEEPINTVL = 0x5
constant TCP_MAXBURST (line 1355) | TCP_MAXBURST = 0x4
constant TCP_MAXSEG (line 1356) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1357) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 1358) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1359) | TCP_MD5SIG = 0x10
constant TCP_MINMSS (line 1360) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1361) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1362) | TCP_NODELAY = 0x1
constant TCSAFLUSH (line 1363) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1364) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1365) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1366) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1367) | TIOCDCDTIMESTAMP = 0x400c7458
constant TIOCDRAIN (line 1368) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1369) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1370) | TIOCEXT = 0x80047460
constant TIOCFLAG_CDTRCTS (line 1371) | TIOCFLAG_CDTRCTS = 0x10
constant TIOCFLAG_CLOCAL (line 1372) | TIOCFLAG_CLOCAL = 0x2
constant TIOCFLAG_CRTSCTS (line 1373) | TIOCFLAG_CRTSCTS = 0x4
constant TIOCFLAG_MDMBUF (line 1374) | TIOCFLAG_MDMBUF = 0x8
constant TIOCFLAG_SOFTCAR (line 1375) | TIOCFLAG_SOFTCAR = 0x1
constant TIOCFLUSH (line 1376) | TIOCFLUSH = 0x80047410
constant TIOCGETA (line 1377) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1378) | TIOCGETD = 0x4004741a
constant TIOCGFLAGS (line 1379) | TIOCGFLAGS = 0x4004745d
constant TIOCGLINED (line 1380) | TIOCGLINED = 0x40207442
constant TIOCGPGRP (line 1381) | TIOCGPGRP = 0x40047477
constant TIOCGQSIZE (line 1382) | TIOCGQSIZE = 0x40047481
constant TIOCGRANTPT (line 1383) | TIOCGRANTPT = 0x20007447
constant TIOCGSID (line 1384) | TIOCGSID = 0x40047463
constant TIOCGSIZE (line 1385) | TIOCGSIZE = 0x40087468
constant TIOCGWINSZ (line 1386) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1387) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1388) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 1389) | TIOCMGET = 0x4004746a
constant TIOCMSET (line 1390) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1391) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1392) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1393) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1394) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1395) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1396) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1397) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1398) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1399) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1400) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1401) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1402) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1403) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1404) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1405) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1406) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1407) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1408) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1409) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1410) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1411) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1412) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1413) | TIOCPKT_STOP = 0x4
constant TIOCPTMGET (line 1414) | TIOCPTMGET = 0x48087446
constant TIOCPTSNAME (line 1415) | TIOCPTSNAME = 0x48087448
constant TIOCRCVFRAME (line 1416) | TIOCRCVFRAME = 0x80047445
constant TIOCREMOTE (line 1417) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1418) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1419) | TIOCSCTTY = 0x20007461
constant TIOCSDTR (line 1420) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1421) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1422) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1423) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1424) | TIOCSETD = 0x8004741b
constant TIOCSFLAGS (line 1425) | TIOCSFLAGS = 0x8004745c
constant TIOCSIG (line 1426) | TIOCSIG = 0x2000745f
constant TIOCSLINED (line 1427) | TIOCSLINED = 0x80207443
constant TIOCSPGRP (line 1428) | TIOCSPGRP = 0x80047476
constant TIOCSQSIZE (line 1429) | TIOCSQSIZE = 0x80047480
constant TIOCSSIZE (line 1430) | TIOCSSIZE = 0x80087467
constant TIOCSTART (line 1431) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1432) | TIOCSTAT = 0x80047465
constant TIOCSTI (line 1433) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1434) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1435) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 1436) | TIOCUCNTL = 0x80047466
constant TIOCXMTFRAME (line 1437) | TIOCXMTFRAME = 0x80047444
constant TOSTOP (line 1438) | TOSTOP = 0x400000
constant VDISCARD (line 1439) | VDISCARD = 0xf
constant VDSUSP (line 1440) | VDSUSP = 0xb
constant VEOF (line 1441) | VEOF = 0x0
constant VEOL (line 1442) | VEOL = 0x1
constant VEOL2 (line 1443) | VEOL2 = 0x2
constant VERASE (line 1444) | VERASE = 0x3
constant VINTR (line 1445) | VINTR = 0x8
constant VKILL (line 1446) | VKILL = 0x5
constant VLNEXT (line 1447) | VLNEXT = 0xe
constant VMIN (line 1448) | VMIN = 0x10
constant VQUIT (line 1449) | VQUIT = 0x9
constant VREPRINT (line 1450) | VREPRINT = 0x6
constant VSTART (line 1451) | VSTART = 0xc
constant VSTATUS (line 1452) | VSTATUS = 0x12
constant VSTOP (line 1453) | VSTOP = 0xd
constant VSUSP (line 1454) | VSUSP = 0xa
constant VTIME (line 1455) | VTIME = 0x11
constant VWERASE (line 1456) | VWERASE = 0x4
constant WALL (line 1457) | WALL = 0x8
constant WALLSIG (line 1458) | WALLSIG = 0x8
constant WALTSIG (line 1459) | WALTSIG = 0x4
constant WCLONE (line 1460) | WCLONE = 0x4
constant WCOREFLAG (line 1461) | WCOREFLAG = 0x80
constant WNOHANG (line 1462) | WNOHANG = 0x1
constant WNOWAIT (line 1463) | WNOWAIT = 0x10000
constant WNOZOMBIE (line 1464) | WNOZOMBIE = 0x20000
constant WOPTSCHECKED (line 1465) | WOPTSCHECKED = 0x40000
constant WSTOPPED (line 1466) | WSTOPPED = 0x7f
constant WUNTRACED (line 1467) | WUNTRACED = 0x2
constant E2BIG (line 1472) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1473) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1474) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1475) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1476) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1477) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1478) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1479) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1480) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1481) | EBADMSG = syscall.Errno(0x58)
constant EBADRPC (line 1482) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1483) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1484) | ECANCELED = syscall.Errno(0x57)
constant ECHILD (line 1485) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1486) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1487) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1488) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1489) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1490) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1491) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1492) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1493) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1494) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1495) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1496) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1497) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1498) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1499) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1500) | EILSEQ = syscall.Errno(0x55)
constant EINPROGRESS (line 1501) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1502) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1503) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1504) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1505) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1506) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1507) | ELAST = syscall.Errno(0x60)
constant ELOOP (line 1508) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1509) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1510) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1511) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1512) | EMULTIHOP = syscall.Errno(0x5e)
constant ENAMETOOLONG (line 1513) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1514) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1515) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1516) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1517) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1518) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1519) | ENOATTR = syscall.Errno(0x5d)
constant ENOBUFS (line 1520) | ENOBUFS = syscall.Errno(0x37)
constant ENODATA (line 1521) | ENODATA = syscall.Errno(0x59)
constant ENODEV (line 1522) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1523) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1524) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1525) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1526) | ENOLINK = syscall.Errno(0x5f)
constant ENOMEM (line 1527) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1528) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1529) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1530) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1531) | ENOSR = syscall.Errno(0x5a)
constant ENOSTR (line 1532) | ENOSTR = syscall.Errno(0x5b)
constant ENOSYS (line 1533) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1534) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1535) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1536) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1537) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTSOCK (line 1538) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1539) | ENOTSUP = syscall.Errno(0x56)
constant ENOTTY (line 1540) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1541) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1542) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1543) | EOVERFLOW = syscall.Errno(0x54)
constant EPERM (line 1544) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1545) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1546) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1547) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1548) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1549) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1550) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1551) | EPROTO = syscall.Errno(0x60)
constant EPROTONOSUPPORT (line 1552) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1553) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1554) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1555) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1556) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1557) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1558) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1559) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1560) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1561) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1562) | ESTALE = syscall.Errno(0x46)
constant ETIME (line 1563) | ETIME = syscall.Errno(0x5c)
constant ETIMEDOUT (line 1564) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1565) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1566) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1567) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1568) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1569) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1574) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1575) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1576) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1577) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1578) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1579) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1580) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1581) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1582) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1583) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1584) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1585) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1586) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1587) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1588) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1589) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 1590) | SIGPWR = syscall.Signal(0x20)
constant SIGQUIT (line 1591) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1592) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1593) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1594) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1595) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1596) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1597) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1598) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1599) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1600) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1601) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1602) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1603) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1604) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1605) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1606) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.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 CRTSCTS (line 162) | CRTSCTS = 0x10000
constant CS5 (line 163) | CS5 = 0x0
constant CS6 (line 164) | CS6 = 0x100
constant CS7 (line 165) | CS7 = 0x200
constant CS8 (line 166) | CS8 = 0x300
constant CSIZE (line 167) | CSIZE = 0x300
constant CSTART (line 168) | CSTART = 0x11
constant CSTATUS (line 169) | CSTATUS = 0x14
constant CSTOP (line 170) | CSTOP = 0x13
constant CSTOPB (line 171) | CSTOPB = 0x400
constant CSUSP (line 172) | CSUSP = 0x1a
constant CTL_HW (line 173) | CTL_HW = 0x6
constant CTL_KERN (line 174) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 175) | CTL_MAXNAME = 0xc
constant CTL_NET (line 176) | CTL_NET = 0x4
constant CTL_QUERY (line 177) | CTL_QUERY = -0x2
constant DIOCBSFLUSH (line 178) | DIOCBSFLUSH = 0x20006478
constant DLT_A429 (line 179) | DLT_A429 = 0xb8
constant DLT_A653_ICM (line 180) | DLT_A653_ICM = 0xb9
constant DLT_AIRONET_HEADER (line 181) | DLT_AIRONET_HEADER = 0x78
constant DLT_AOS (line 182) | DLT_AOS = 0xde
constant DLT_APPLE_IP_OVER_IEEE1394 (line 183) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a
constant DLT_ARCNET (line 184) | DLT_ARCNET = 0x7
constant DLT_ARCNET_LINUX (line 185) | DLT_ARCNET_LINUX = 0x81
constant DLT_ATM_CLIP (line 186) | DLT_ATM_CLIP = 0x13
constant DLT_ATM_RFC1483 (line 187) | DLT_ATM_RFC1483 = 0xb
constant DLT_AURORA (line 188) | DLT_AURORA = 0x7e
constant DLT_AX25 (line 189) | DLT_AX25 = 0x3
constant DLT_AX25_KISS (line 190) | DLT_AX25_KISS = 0xca
constant DLT_BACNET_MS_TP (line 191) | DLT_BACNET_MS_TP = 0xa5
constant DLT_BLUETOOTH_HCI_H4 (line 192) | DLT_BLUETOOTH_HCI_H4 = 0xbb
constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 193) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
constant DLT_CAN20B (line 194) | DLT_CAN20B = 0xbe
constant DLT_CAN_SOCKETCAN (line 195) | DLT_CAN_SOCKETCAN = 0xe3
constant DLT_CHAOS (line 196) | DLT_CHAOS = 0x5
constant DLT_CISCO_IOS (line 197) | DLT_CISCO_IOS = 0x76
constant DLT_C_HDLC (line 198) | DLT_C_HDLC = 0x68
constant DLT_C_HDLC_WITH_DIR (line 199) | DLT_C_HDLC_WITH_DIR = 0xcd
constant DLT_DECT (line 200) | DLT_DECT = 0xdd
constant DLT_DOCSIS (line 201) | DLT_DOCSIS = 0x8f
constant DLT_ECONET (line 202) | DLT_ECONET = 0x73
constant DLT_EN10MB (line 203) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 204) | DLT_EN3MB = 0x2
constant DLT_ENC (line 205) | DLT_ENC = 0x6d
constant DLT_ERF (line 206) | DLT_ERF = 0xc5
constant DLT_ERF_ETH (line 207) | DLT_ERF_ETH = 0xaf
constant DLT_ERF_POS (line 208) | DLT_ERF_POS = 0xb0
constant DLT_FC_2 (line 209) | DLT_FC_2 = 0xe0
constant DLT_FC_2_WITH_FRAME_DELIMS (line 210) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1
constant DLT_FDDI (line 211) | DLT_FDDI = 0xa
constant DLT_FLEXRAY (line 212) | DLT_FLEXRAY = 0xd2
constant DLT_FRELAY (line 213) | DLT_FRELAY = 0x6b
constant DLT_FRELAY_WITH_DIR (line 214) | DLT_FRELAY_WITH_DIR = 0xce
constant DLT_GCOM_SERIAL (line 215) | DLT_GCOM_SERIAL = 0xad
constant DLT_GCOM_T1E1 (line 216) | DLT_GCOM_T1E1 = 0xac
constant DLT_GPF_F (line 217) | DLT_GPF_F = 0xab
constant DLT_GPF_T (line 218) | DLT_GPF_T = 0xaa
constant DLT_GPRS_LLC (line 219) | DLT_GPRS_LLC = 0xa9
constant DLT_GSMTAP_ABIS (line 220) | DLT_GSMTAP_ABIS = 0xda
constant DLT_GSMTAP_UM (line 221) | DLT_GSMTAP_UM = 0xd9
constant DLT_HDLC (line 222) | DLT_HDLC = 0x10
constant DLT_HHDLC (line 223) | DLT_HHDLC = 0x79
constant DLT_HIPPI (line 224) | DLT_HIPPI = 0xf
constant DLT_IBM_SN (line 225) | DLT_IBM_SN = 0x92
constant DLT_IBM_SP (line 226) | DLT_IBM_SP = 0x91
constant DLT_IEEE802 (line 227) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 228) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 229) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_IEEE802_11_RADIO_AVS (line 230) | DLT_IEEE802_11_RADIO_AVS = 0xa3
constant DLT_IEEE802_15_4 (line 231) | DLT_IEEE802_15_4 = 0xc3
constant DLT_IEEE802_15_4_LINUX (line 232) | DLT_IEEE802_15_4_LINUX = 0xbf
constant DLT_IEEE802_15_4_NONASK_PHY (line 233) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7
constant DLT_IEEE802_16_MAC_CPS (line 234) | DLT_IEEE802_16_MAC_CPS = 0xbc
constant DLT_IEEE802_16_MAC_CPS_RADIO (line 235) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1
constant DLT_IPMB (line 236) | DLT_IPMB = 0xc7
constant DLT_IPMB_LINUX (line 237) | DLT_IPMB_LINUX = 0xd1
constant DLT_IPNET (line 238) | DLT_IPNET = 0xe2
constant DLT_IPV4 (line 239) | DLT_IPV4 = 0xe4
constant DLT_IPV6 (line 240) | DLT_IPV6 = 0xe5
constant DLT_IP_OVER_FC (line 241) | DLT_IP_OVER_FC = 0x7a
constant DLT_JUNIPER_ATM1 (line 242) | DLT_JUNIPER_ATM1 = 0x89
constant DLT_JUNIPER_ATM2 (line 243) | DLT_JUNIPER_ATM2 = 0x87
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_FRELAY (line 247) | DLT_JUNIPER_FRELAY = 0xb4
constant DLT_JUNIPER_GGSN (line 248) | DLT_JUNIPER_GGSN = 0x85
constant DLT_JUNIPER_ISM (line 249) | DLT_JUNIPER_ISM = 0xc2
constant DLT_JUNIPER_MFR (line 250) | DLT_JUNIPER_MFR = 0x86
constant DLT_JUNIPER_MLFR (line 251) | DLT_JUNIPER_MLFR = 0x83
constant DLT_JUNIPER_MLPPP (line 252) | DLT_JUNIPER_MLPPP = 0x82
constant DLT_JUNIPER_MONITOR (line 253) | DLT_JUNIPER_MONITOR = 0xa4
constant DLT_JUNIPER_PIC_PEER (line 254) | DLT_JUNIPER_PIC_PEER = 0xae
constant DLT_JUNIPER_PPP (line 255) | DLT_JUNIPER_PPP = 0xb3
constant DLT_JUNIPER_PPPOE (line 256) | DLT_JUNIPER_PPPOE = 0xa7
constant DLT_JUNIPER_PPPOE_ATM (line 257) | DLT_JUNIPER_PPPOE_ATM = 0xa8
constant DLT_JUNIPER_SERVICES (line 258) | DLT_JUNIPER_SERVICES = 0x88
constant DLT_JUNIPER_ST (line 259) | DLT_JUNIPER_ST = 0xc8
constant DLT_JUNIPER_VP (line 260) | DLT_JUNIPER_VP = 0xb7
constant DLT_LAPB_WITH_DIR (line 261) | DLT_LAPB_WITH_DIR = 0xcf
constant DLT_LAPD (line 262) | DLT_LAPD = 0xcb
constant DLT_LIN (line 263) | DLT_LIN = 0xd4
constant DLT_LINUX_EVDEV (line 264) | DLT_LINUX_EVDEV = 0xd8
constant DLT_LINUX_IRDA (line 265) | DLT_LINUX_IRDA = 0x90
constant DLT_LINUX_LAPD (line 266) | DLT_LINUX_LAPD = 0xb1
constant DLT_LINUX_SLL (line 267) | DLT_LINUX_SLL = 0x71
constant DLT_LOOP (line 268) | DLT_LOOP = 0x6c
constant DLT_LTALK (line 269) | DLT_LTALK = 0x72
constant DLT_MFR (line 270) | DLT_MFR = 0xb6
constant DLT_MOST (line 271) | DLT_MOST = 0xd3
constant DLT_MPLS (line 272) | DLT_MPLS = 0xdb
constant DLT_MTP2 (line 273) | DLT_MTP2 = 0x8c
constant DLT_MTP2_WITH_PHDR (line 274) | DLT_MTP2_WITH_PHDR = 0x8b
constant DLT_MTP3 (line 275) | DLT_MTP3 = 0x8d
constant DLT_NULL (line 276) | DLT_NULL = 0x0
constant DLT_PCI_EXP (line 277) | DLT_PCI_EXP = 0x7d
constant DLT_PFLOG (line 278) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 279) | DLT_PFSYNC = 0x12
constant DLT_PPI (line 280) | DLT_PPI = 0xc0
constant DLT_PPP (line 281) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 282) | DLT_PPP_BSDOS = 0xe
constant DLT_PPP_ETHER (line 283) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_PPPD (line 284) | DLT_PPP_PPPD = 0xa6
constant DLT_PPP_SERIAL (line 285) | DLT_PPP_SERIAL = 0x32
constant DLT_PPP_WITH_DIR (line 286) | DLT_PPP_WITH_DIR = 0xcc
constant DLT_PRISM_HEADER (line 287) | DLT_PRISM_HEADER = 0x77
constant DLT_PRONET (line 288) | DLT_PRONET = 0x4
constant DLT_RAIF1 (line 289) | DLT_RAIF1 = 0xc6
constant DLT_RAW (line 290) | DLT_RAW = 0xc
constant DLT_RAWAF_MASK (line 291) | DLT_RAWAF_MASK = 0x2240000
constant DLT_RIO (line 292) | DLT_RIO = 0x7c
constant DLT_SCCP (line 293) | DLT_SCCP = 0x8e
constant DLT_SITA (line 294) | DLT_SITA = 0xc4
constant DLT_SLIP (line 295) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 296) | DLT_SLIP_BSDOS = 0xd
constant DLT_SUNATM (line 297) | DLT_SUNATM = 0x7b
constant DLT_SYMANTEC_FIREWALL (line 298) | DLT_SYMANTEC_FIREWALL = 0x63
constant DLT_TZSP (line 299) | DLT_TZSP = 0x80
constant DLT_USB (line 300) | DLT_USB = 0xba
constant DLT_USB_LINUX (line 301) | DLT_USB_LINUX = 0xbd
constant DLT_USB_LINUX_MMAPPED (line 302) | DLT_USB_LINUX_MMAPPED = 0xdc
constant DLT_WIHART (line 303) | DLT_WIHART = 0xdf
constant DLT_X2E_SERIAL (line 304) | DLT_X2E_SERIAL = 0xd5
constant DLT_X2E_XORAYA (line 305) | DLT_X2E_XORAYA = 0xd6
constant DT_BLK (line 306) | DT_BLK = 0x6
constant DT_CHR (line 307) | DT_CHR = 0x2
constant DT_DIR (line 308) | DT_DIR = 0x4
constant DT_FIFO (line 309) | DT_FIFO = 0x1
constant DT_LNK (line 310) | DT_LNK = 0xa
constant DT_REG (line 311) | DT_REG = 0x8
constant DT_SOCK (line 312) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 313) | DT_UNKNOWN = 0x0
constant DT_WHT (line 314) | DT_WHT = 0xe
constant ECHO (line 315) | ECHO = 0x8
constant ECHOCTL (line 316) | ECHOCTL = 0x40
constant ECHOE (line 317) | ECHOE = 0x2
constant ECHOK (line 318) | ECHOK = 0x4
constant ECHOKE (line 319) | ECHOKE = 0x1
constant ECHONL (line 320) | ECHONL = 0x10
constant ECHOPRT (line 321) | ECHOPRT = 0x20
constant EMUL_LINUX (line 322) | EMUL_LINUX = 0x1
constant EMUL_LINUX32 (line 323) | EMUL_LINUX32 = 0x5
constant EMUL_MAXID (line 324) | EMUL_MAXID = 0x6
constant ETHERCAP_JUMBO_MTU (line 325) | ETHERCAP_JUMBO_MTU = 0x4
constant ETHERCAP_VLAN_HWTAGGING (line 326) | ETHERCAP_VLAN_HWTAGGING = 0x2
constant ETHERCAP_VLAN_MTU (line 327) | ETHERCAP_VLAN_MTU = 0x1
constant ETHERMIN (line 328) | ETHERMIN = 0x2e
constant ETHERMTU (line 329) | ETHERMTU = 0x5dc
constant ETHERMTU_JUMBO (line 330) | ETHERMTU_JUMBO = 0x2328
constant ETHERTYPE_8023 (line 331) | ETHERTYPE_8023 = 0x4
constant ETHERTYPE_AARP (line 332) | ETHERTYPE_AARP = 0x80f3
constant ETHERTYPE_ACCTON (line 333) | ETHERTYPE_ACCTON = 0x8390
constant ETHERTYPE_AEONIC (line 334) | ETHERTYPE_AEONIC = 0x8036
constant ETHERTYPE_ALPHA (line 335) | ETHERTYPE_ALPHA = 0x814a
constant ETHERTYPE_AMBER (line 336) | ETHERTYPE_AMBER = 0x6008
constant ETHERTYPE_AMOEBA (line 337) | ETHERTYPE_AMOEBA = 0x8145
constant ETHERTYPE_APOLLO (line 338) | ETHERTYPE_APOLLO = 0x80f7
constant ETHERTYPE_APOLLODOMAIN (line 339) | ETHERTYPE_APOLLODOMAIN = 0x8019
constant ETHERTYPE_APPLETALK (line 340) | ETHERTYPE_APPLETALK = 0x809b
constant ETHERTYPE_APPLITEK (line 341) | ETHERTYPE_APPLITEK = 0x80c7
constant ETHERTYPE_ARGONAUT (line 342) | ETHERTYPE_ARGONAUT = 0x803a
constant ETHERTYPE_ARP (line 343) | ETHERTYPE_ARP = 0x806
constant ETHERTYPE_AT (line 344) | ETHERTYPE_AT = 0x809b
constant ETHERTYPE_ATALK (line 345) | ETHERTYPE_ATALK = 0x809b
constant ETHERTYPE_ATOMIC (line 346) | ETHERTYPE_ATOMIC = 0x86df
constant ETHERTYPE_ATT (line 347) | ETHERTYPE_ATT = 0x8069
constant ETHERTYPE_ATTSTANFORD (line 348) | ETHERTYPE_ATTSTANFORD = 0x8008
constant ETHERTYPE_AUTOPHON (line 349) | ETHERTYPE_AUTOPHON = 0x806a
constant ETHERTYPE_AXIS (line 350) | ETHERTYPE_AXIS = 0x8856
constant ETHERTYPE_BCLOOP (line 351) | ETHERTYPE_BCLOOP = 0x9003
constant ETHERTYPE_BOFL (line 352) | ETHERTYPE_BOFL = 0x8102
constant ETHERTYPE_CABLETRON (line 353) | ETHERTYPE_CABLETRON = 0x7034
constant ETHERTYPE_CHAOS (line 354) | ETHERTYPE_CHAOS = 0x804
constant ETHERTYPE_COMDESIGN (line 355) | ETHERTYPE_COMDESIGN = 0x806c
constant ETHERTYPE_COMPUGRAPHIC (line 356) | ETHERTYPE_COMPUGRAPHIC = 0x806d
constant ETHERTYPE_COUNTERPOINT (line 357) | ETHERTYPE_COUNTERPOINT = 0x8062
constant ETHERTYPE_CRONUS (line 358) | ETHERTYPE_CRONUS = 0x8004
constant ETHERTYPE_CRONUSVLN (line 359) | ETHERTYPE_CRONUSVLN = 0x8003
constant ETHERTYPE_DCA (line 360) | ETHERTYPE_DCA = 0x1234
constant ETHERTYPE_DDE (line 361) | ETHERTYPE_DDE = 0x807b
constant ETHERTYPE_DEBNI (line 362) | ETHERTYPE_DEBNI = 0xaaaa
constant ETHERTYPE_DECAM (line 363) | ETHERTYPE_DECAM = 0x8048
constant ETHERTYPE_DECCUST (line 364) | ETHERTYPE_DECCUST = 0x6006
constant ETHERTYPE_DECDIAG (line 365) | ETHERTYPE_DECDIAG = 0x6005
constant ETHERTYPE_DECDNS (line 366) | ETHERTYPE_DECDNS = 0x803c
constant ETHERTYPE_DECDTS (line 367) | ETHERTYPE_DECDTS = 0x803e
constant ETHERTYPE_DECEXPER (line 368) | ETHERTYPE_DECEXPER = 0x6000
constant ETHERTYPE_DECLAST (line 369) | ETHERTYPE_DECLAST = 0x8041
constant ETHERTYPE_DECLTM (line 370) | ETHERTYPE_DECLTM = 0x803f
constant ETHERTYPE_DECMUMPS (line 371) | ETHERTYPE_DECMUMPS = 0x6009
constant ETHERTYPE_DECNETBIOS (line 372) | ETHERTYPE_DECNETBIOS = 0x8040
constant ETHERTYPE_DELTACON (line 373) | ETHERTYPE_DELTACON = 0x86de
constant ETHERTYPE_DIDDLE (line 374) | ETHERTYPE_DIDDLE = 0x4321
constant ETHERTYPE_DLOG1 (line 375) | ETHERTYPE_DLOG1 = 0x660
constant ETHERTYPE_DLOG2 (line 376) | ETHERTYPE_DLOG2 = 0x661
constant ETHERTYPE_DN (line 377) | ETHERTYPE_DN = 0x6003
constant ETHERTYPE_DOGFIGHT (line 378) | ETHERTYPE_DOGFIGHT = 0x1989
constant ETHERTYPE_DSMD (line 379) | ETHERTYPE_DSMD = 0x8039
constant ETHERTYPE_ECMA (line 380) | ETHERTYPE_ECMA = 0x803
constant ETHERTYPE_ENCRYPT (line 381) | ETHERTYPE_ENCRYPT = 0x803d
constant ETHERTYPE_ES (line 382) | ETHERTYPE_ES = 0x805d
constant ETHERTYPE_EXCELAN (line 383) | ETHERTYPE_EXCELAN = 0x8010
constant ETHERTYPE_EXPERDATA (line 384) | ETHERTYPE_EXPERDATA = 0x8049
constant ETHERTYPE_FLIP (line 385) | ETHERTYPE_FLIP = 0x8146
constant ETHERTYPE_FLOWCONTROL (line 386) | ETHERTYPE_FLOWCONTROL = 0x8808
constant ETHERTYPE_FRARP (line 387) | ETHERTYPE_FRARP = 0x808
constant ETHERTYPE_GENDYN (line 388) | ETHERTYPE_GENDYN = 0x8068
constant ETHERTYPE_HAYES (line 389) | ETHERTYPE_HAYES = 0x8130
constant ETHERTYPE_HIPPI_FP (line 390) | ETHERTYPE_HIPPI_FP = 0x8180
constant ETHERTYPE_HITACHI (line 391) | ETHERTYPE_HITACHI = 0x8820
constant ETHERTYPE_HP (line 392) | ETHERTYPE_HP = 0x8005
constant ETHERTYPE_IEEEPUP (line 393) | ETHERTYPE_IEEEPUP = 0xa00
constant ETHERTYPE_IEEEPUPAT (line 394) | ETHERTYPE_IEEEPUPAT = 0xa01
constant ETHERTYPE_IMLBL (line 395) | ETHERTYPE_IMLBL = 0x4c42
constant ETHERTYPE_IMLBLDIAG (line 396) | ETHERTYPE_IMLBLDIAG = 0x424c
constant ETHERTYPE_IP (line 397) | ETHERTYPE_IP = 0x800
constant ETHERTYPE_IPAS (line 398) | ETHERTYPE_IPAS = 0x876c
constant ETHERTYPE_IPV6 (line 399) | ETHERTYPE_IPV6 = 0x86dd
constant ETHERTYPE_IPX (line 400) | ETHERTYPE_IPX = 0x8137
constant ETHERTYPE_IPXNEW (line 401) | ETHERTYPE_IPXNEW = 0x8037
constant ETHERTYPE_KALPANA (line 402) | ETHERTYPE_KALPANA = 0x8582
constant ETHERTYPE_LANBRIDGE (line 403) | ETHERTYPE_LANBRIDGE = 0x8038
constant ETHERTYPE_LANPROBE (line 404) | ETHERTYPE_LANPROBE = 0x8888
constant ETHERTYPE_LAT (line 405) | ETHERTYPE_LAT = 0x6004
constant ETHERTYPE_LBACK (line 406) | ETHERTYPE_LBACK = 0x9000
constant ETHERTYPE_LITTLE (line 407) | ETHERTYPE_LITTLE = 0x8060
constant ETHERTYPE_LOGICRAFT (line 408) | ETHERTYPE_LOGICRAFT = 0x8148
constant ETHERTYPE_LOOPBACK (line 409) | ETHERTYPE_LOOPBACK = 0x9000
constant ETHERTYPE_MATRA (line 410) | ETHERTYPE_MATRA = 0x807a
constant ETHERTYPE_MAX (line 411) | ETHERTYPE_MAX = 0xffff
constant ETHERTYPE_MERIT (line 412) | ETHERTYPE_MERIT = 0x807c
constant ETHERTYPE_MICP (line 413) | ETHERTYPE_MICP = 0x873a
constant ETHERTYPE_MOPDL (line 414) | ETHERTYPE_MOPDL = 0x6001
constant ETHERTYPE_MOPRC (line 415) | ETHERTYPE_MOPRC = 0x6002
constant ETHERTYPE_MOTOROLA (line 416) | ETHERTYPE_MOTOROLA = 0x818d
constant ETHERTYPE_MPLS (line 417) | ETHERTYPE_MPLS = 0x8847
constant ETHERTYPE_MPLS_MCAST (line 418) | ETHERTYPE_MPLS_MCAST = 0x8848
constant ETHERTYPE_MUMPS (line 419) | ETHERTYPE_MUMPS = 0x813f
constant ETHERTYPE_NBPCC (line 420) | ETHERTYPE_NBPCC = 0x3c04
constant ETHERTYPE_NBPCLAIM (line 421) | ETHERTYPE_NBPCLAIM = 0x3c09
constant ETHERTYPE_NBPCLREQ (line 422) | ETHERTYPE_NBPCLREQ = 0x3c05
constant ETHERTYPE_NBPCLRSP (line 423) | ETHERTYPE_NBPCLRSP = 0x3c06
constant ETHERTYPE_NBPCREQ (line 424) | ETHERTYPE_NBPCREQ = 0x3c02
constant ETHERTYPE_NBPCRSP (line 425) | ETHERTYPE_NBPCRSP = 0x3c03
constant ETHERTYPE_NBPDG (line 426) | ETHERTYPE_NBPDG = 0x3c07
constant ETHERTYPE_NBPDGB (line 427) | ETHERTYPE_NBPDGB = 0x3c08
constant ETHERTYPE_NBPDLTE (line 428) | ETHERTYPE_NBPDLTE = 0x3c0a
constant ETHERTYPE_NBPRAR (line 429) | ETHERTYPE_NBPRAR = 0x3c0c
constant ETHERTYPE_NBPRAS (line 430) | ETHERTYPE_NBPRAS = 0x3c0b
constant ETHERTYPE_NBPRST (line 431) | ETHERTYPE_NBPRST = 0x3c0d
constant ETHERTYPE_NBPSCD (line 432) | ETHERTYPE_NBPSCD = 0x3c01
constant ETHERTYPE_NBPVCD (line 433) | ETHERTYPE_NBPVCD = 0x3c00
constant ETHERTYPE_NBS (line 434) | ETHERTYPE_NBS = 0x802
constant ETHERTYPE_NCD (line 435) | ETHERTYPE_NCD = 0x8149
constant ETHERTYPE_NESTAR (line 436) | ETHERTYPE_NESTAR = 0x8006
constant ETHERTYPE_NETBEUI (line 437) | ETHERTYPE_NETBEUI = 0x8191
constant ETHERTYPE_NOVELL (line 438) | ETHERTYPE_NOVELL = 0x8138
constant ETHERTYPE_NS (line 439) | ETHERTYPE_NS = 0x600
constant ETHERTYPE_NSAT (line 440) | ETHERTYPE_NSAT = 0x601
constant ETHERTYPE_NSCOMPAT (line 441) | ETHERTYPE_NSCOMPAT = 0x807
constant ETHERTYPE_NTRAILER (line 442) | ETHERTYPE_NTRAILER = 0x10
constant ETHERTYPE_OS9 (line 443) | ETHERTYPE_OS9 = 0x7007
constant ETHERTYPE_OS9NET (line 444) | ETHERTYPE_OS9NET = 0x7009
constant ETHERTYPE_PACER (line 445) | ETHERTYPE_PACER = 0x80c6
constant ETHERTYPE_PAE (line 446) | ETHERTYPE_PAE = 0x888e
constant ETHERTYPE_PCS (line 447) | ETHERTYPE_PCS = 0x4242
constant ETHERTYPE_PLANNING (line 448) | ETHERTYPE_PLANNING = 0x8044
constant ETHERTYPE_PPP (line 449) | ETHERTYPE_PPP = 0x880b
constant ETHERTYPE_PPPOE (line 450) | ETHERTYPE_PPPOE = 0x8864
constant ETHERTYPE_PPPOEDISC (line 451) | ETHERTYPE_PPPOEDISC = 0x8863
constant ETHERTYPE_PRIMENTS (line 452) | ETHERTYPE_PRIMENTS = 0x7031
constant ETHERTYPE_PUP (line 453) | ETHERTYPE_PUP = 0x200
constant ETHERTYPE_PUPAT (line 454) | ETHERTYPE_PUPAT = 0x200
constant ETHERTYPE_RACAL (line 455) | ETHERTYPE_RACAL = 0x7030
constant ETHERTYPE_RATIONAL (line 456) | ETHERTYPE_RATIONAL = 0x8150
constant ETHERTYPE_RAWFR (line 457) | ETHERTYPE_RAWFR = 0x6559
constant ETHERTYPE_RCL (line 458) | ETHERTYPE_RCL = 0x1995
constant ETHERTYPE_RDP (line 459) | ETHERTYPE_RDP = 0x8739
constant ETHERTYPE_RETIX (line 460) | ETHERTYPE_RETIX = 0x80f2
constant ETHERTYPE_REVARP (line 461) | ETHERTYPE_REVARP = 0x8035
constant ETHERTYPE_SCA (line 462) | ETHERTYPE_SCA = 0x6007
constant ETHERTYPE_SECTRA (line 463) | ETHERTYPE_SECTRA = 0x86db
constant ETHERTYPE_SECUREDATA (line 464) | ETHERTYPE_SECUREDATA = 0x876d
constant ETHERTYPE_SGITW (line 465) | ETHERTYPE_SGITW = 0x817e
constant ETHERTYPE_SG_BOUNCE (line 466) | ETHERTYPE_SG_BOUNCE = 0x8016
constant ETHERTYPE_SG_DIAG (line 467) | ETHERTYPE_SG_DIAG = 0x8013
constant ETHERTYPE_SG_NETGAMES (line 468) | ETHERTYPE_SG_NETGAMES = 0x8014
constant ETHERTYPE_SG_RESV (line 469) | ETHERTYPE_SG_RESV = 0x8015
constant ETHERTYPE_SIMNET (line 470) | ETHERTYPE_SIMNET = 0x5208
constant ETHERTYPE_SLOWPROTOCOLS (line 471) | ETHERTYPE_SLOWPROTOCOLS = 0x8809
constant ETHERTYPE_SNA (line 472) | ETHERTYPE_SNA = 0x80d5
constant ETHERTYPE_SNMP (line 473) | ETHERTYPE_SNMP = 0x814c
constant ETHERTYPE_SONIX (line 474) | ETHERTYPE_SONIX = 0xfaf5
constant ETHERTYPE_SPIDER (line 475) | ETHERTYPE_SPIDER = 0x809f
constant ETHERTYPE_SPRITE (line 476) | ETHERTYPE_SPRITE = 0x500
constant ETHERTYPE_STP (line 477) | ETHERTYPE_STP = 0x8181
constant ETHERTYPE_TALARIS (line 478) | ETHERTYPE_TALARIS = 0x812b
constant ETHERTYPE_TALARISMC (line 479) | ETHERTYPE_TALARISMC = 0x852b
constant ETHERTYPE_TCPCOMP (line 480) | ETHERTYPE_TCPCOMP = 0x876b
constant ETHERTYPE_TCPSM (line 481) | ETHERTYPE_TCPSM = 0x9002
constant ETHERTYPE_TEC (line 482) | ETHERTYPE_TEC = 0x814f
constant ETHERTYPE_TIGAN (line 483) | ETHERTYPE_TIGAN = 0x802f
constant ETHERTYPE_TRAIL (line 484) | ETHERTYPE_TRAIL = 0x1000
constant ETHERTYPE_TRANSETHER (line 485) | ETHERTYPE_TRANSETHER = 0x6558
constant ETHERTYPE_TYMSHARE (line 486) | ETHERTYPE_TYMSHARE = 0x802e
constant ETHERTYPE_UBBST (line 487) | ETHERTYPE_UBBST = 0x7005
constant ETHERTYPE_UBDEBUG (line 488) | ETHERTYPE_UBDEBUG = 0x900
constant ETHERTYPE_UBDIAGLOOP (line 489) | ETHERTYPE_UBDIAGLOOP = 0x7002
constant ETHERTYPE_UBDL (line 490) | ETHERTYPE_UBDL = 0x7000
constant ETHERTYPE_UBNIU (line 491) | ETHERTYPE_UBNIU = 0x7001
constant ETHERTYPE_UBNMC (line 492) | ETHERTYPE_UBNMC = 0x7003
constant ETHERTYPE_VALID (line 493) | ETHERTYPE_VALID = 0x1600
constant ETHERTYPE_VARIAN (line 494) | ETHERTYPE_VARIAN = 0x80dd
constant ETHERTYPE_VAXELN (line 495) | ETHERTYPE_VAXELN = 0x803b
constant ETHERTYPE_VEECO (line 496) | ETHERTYPE_VEECO = 0x8067
constant ETHERTYPE_VEXP (line 497) | ETHERTYPE_VEXP = 0x805b
constant ETHERTYPE_VGLAB (line 498) | ETHERTYPE_VGLAB = 0x8131
constant ETHERTYPE_VINES (line 499) | ETHERTYPE_VINES = 0xbad
constant ETHERTYPE_VINESECHO (line 500) | ETHERTYPE_VINESECHO = 0xbaf
constant ETHERTYPE_VINESLOOP (line 501) | ETHERTYPE_VINESLOOP = 0xbae
constant ETHERTYPE_VITAL (line 502) | ETHERTYPE_VITAL = 0xff00
constant ETHERTYPE_VLAN (line 503) | ETHERTYPE_VLAN = 0x8100
constant ETHERTYPE_VLTLMAN (line 504) | ETHERTYPE_VLTLMAN = 0x8080
constant ETHERTYPE_VPROD (line 505) | ETHERTYPE_VPROD = 0x805c
constant ETHERTYPE_VURESERVED (line 506) | ETHERTYPE_VURESERVED = 0x8147
constant ETHERTYPE_WATERLOO (line 507) | ETHERTYPE_WATERLOO = 0x8130
constant ETHERTYPE_WELLFLEET (line 508) | ETHERTYPE_WELLFLEET = 0x8103
constant ETHERTYPE_X25 (line 509) | ETHERTYPE_X25 = 0x805
constant ETHERTYPE_X75 (line 510) | ETHERTYPE_X75 = 0x801
constant ETHERTYPE_XNSSM (line 511) | ETHERTYPE_XNSSM = 0x9001
constant ETHERTYPE_XTP (line 512) | ETHERTYPE_XTP = 0x817d
constant ETHER_ADDR_LEN (line 513) | ETHER_ADDR_LEN = 0x6
constant ETHER_CRC_LEN (line 514) | ETHER_CRC_LEN = 0x4
constant ETHER_CRC_POLY_BE (line 515) | ETHER_CRC_POLY_BE = 0x4c11db6
constant ETHER_CRC_POLY_LE (line 516) | ETHER_CRC_POLY_LE = 0xedb88320
constant ETHER_HDR_LEN (line 517) | ETHER_HDR_LEN = 0xe
constant ETHER_MAX_LEN (line 518) | ETHER_MAX_LEN = 0x5ee
constant ETHER_MAX_LEN_JUMBO (line 519) | ETHER_MAX_LEN_JUMBO = 0x233a
constant ETHER_MIN_LEN (line 520) | ETHER_MIN_LEN = 0x40
constant ETHER_PPPOE_ENCAP_LEN (line 521) | ETHER_PPPOE_ENCAP_LEN = 0x8
constant ETHER_TYPE_LEN (line 522) | ETHER_TYPE_LEN = 0x2
constant ETHER_VLAN_ENCAP_LEN (line 523) | ETHER_VLAN_ENCAP_LEN = 0x4
constant EVFILT_AIO (line 524) | EVFILT_AIO = 0x2
constant EVFILT_PROC (line 525) | EVFILT_PROC = 0x4
constant EVFILT_READ (line 526) | EVFILT_READ = 0x0
constant EVFILT_SIGNAL (line 527) | EVFILT_SIGNAL = 0x5
constant EVFILT_SYSCOUNT (line 528) | EVFILT_SYSCOUNT = 0x7
constant EVFILT_TIMER (line 529) | EVFILT_TIMER = 0x6
constant EVFILT_VNODE (line 530) | EVFILT_VNODE = 0x3
constant EVFILT_WRITE (line 531) | EVFILT_WRITE = 0x1
constant EV_ADD (line 532) | EV_ADD = 0x1
constant EV_CLEAR (line 533) | EV_CLEAR = 0x20
constant EV_DELETE (line 534) | EV_DELETE = 0x2
constant EV_DISABLE (line 535) | EV_DISABLE = 0x8
constant EV_ENABLE (line 536) | EV_ENABLE = 0x4
constant EV_EOF (line 537) | EV_EOF = 0x8000
constant EV_ERROR (line 538) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 539) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 540) | EV_ONESHOT = 0x10
constant EV_SYSFLAGS (line 541) | EV_SYSFLAGS = 0xf000
constant EXTA (line 542) | EXTA = 0x4b00
constant EXTATTR_CMD_START (line 543) | EXTATTR_CMD_START = 0x1
constant EXTATTR_CMD_STOP (line 544) | EXTATTR_CMD_STOP = 0x2
constant EXTATTR_NAMESPACE_SYSTEM (line 545) | EXTATTR_NAMESPACE_SYSTEM = 0x2
constant EXTATTR_NAMESPACE_USER (line 546) | EXTATTR_NAMESPACE_USER = 0x1
constant EXTB (line 547) | EXTB = 0x9600
constant EXTPROC (line 548) | EXTPROC = 0x800
constant FD_CLOEXEC (line 549) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 550) | FD_SETSIZE = 0x100
constant FLUSHO (line 551) | FLUSHO = 0x800000
constant F_CLOSEM (line 552) | F_CLOSEM = 0xa
constant F_DUPFD (line 553) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 554) | F_DUPFD_CLOEXEC = 0xc
constant F_FSCTL (line 555) | F_FSCTL = -0x80000000
constant F_FSDIRMASK (line 556) | F_FSDIRMASK = 0x70000000
constant F_FSIN (line 557) | F_FSIN = 0x10000000
constant F_FSINOUT (line 558) | F_FSINOUT = 0x30000000
constant F_FSOUT (line 559) | F_FSOUT = 0x20000000
constant F_FSPRIV (line 560) | F_FSPRIV = 0x8000
constant F_FSVOID (line 561) | F_FSVOID = 0x40000000
constant F_GETFD (line 562) | F_GETFD = 0x1
constant F_GETFL (line 563) | F_GETFL = 0x3
constant F_GETLK (line 564) | F_GETLK = 0x7
constant F_GETNOSIGPIPE (line 565) | F_GETNOSIGPIPE = 0xd
constant F_GETOWN (line 566) | F_GETOWN = 0x5
constant F_MAXFD (line 567) | F_MAXFD = 0xb
constant F_OK (line 568) | F_OK = 0x0
constant F_PARAM_MASK (line 569) | F_PARAM_MASK = 0xfff
constant F_PARAM_MAX (line 570) | F_PARAM_MAX = 0xfff
constant F_RDLCK (line 571) | F_RDLCK = 0x1
constant F_SETFD (line 572) | F_SETFD = 0x2
constant F_SETFL (line 573) | F_SETFL = 0x4
constant F_SETLK (line 574) | F_SETLK = 0x8
constant F_SETLKW (line 575) | F_SETLKW = 0x9
constant F_SETNOSIGPIPE (line 576) | F_SETNOSIGPIPE = 0xe
constant F_SETOWN (line 577) | F_SETOWN = 0x6
constant F_UNLCK (line 578) | F_UNLCK = 0x2
constant F_WRLCK (line 579) | F_WRLCK = 0x3
constant HUPCL (line 580) | HUPCL = 0x4000
constant HW_MACHINE (line 581) | HW_MACHINE = 0x1
constant ICANON (line 582) | ICANON = 0x100
constant ICMP6_FILTER (line 583) | ICMP6_FILTER = 0x12
constant ICRNL (line 584) | ICRNL = 0x100
constant IEXTEN (line 585) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 586) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 587) | IFAN_DEPARTURE = 0x1
constant IFA_ROUTE (line 588) | IFA_ROUTE = 0x1
constant IFF_ALLMULTI (line 589) | IFF_ALLMULTI = 0x200
constant IFF_BROADCAST (line 590) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 591) | IFF_CANTCHANGE = 0x8f52
constant IFF_DEBUG (line 592) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 593) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 594) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 595) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 596) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 597) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 598) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 599) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 600) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 601) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 602) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 603) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 604) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 605) | IFF_UP = 0x1
constant IFNAMSIZ (line 606) | IFNAMSIZ = 0x10
constant IFT_1822 (line 607) | IFT_1822 = 0x2
constant IFT_A12MPPSWITCH (line 608) | IFT_A12MPPSWITCH = 0x82
constant IFT_AAL2 (line 609) | IFT_AAL2 = 0xbb
constant IFT_AAL5 (line 610) | IFT_AAL5 = 0x31
constant IFT_ADSL (line 611) | IFT_ADSL = 0x5e
constant IFT_AFLANE8023 (line 612) | IFT_AFLANE8023 = 0x3b
constant IFT_AFLANE8025 (line 613) | IFT_AFLANE8025 = 0x3c
constant IFT_ARAP (line 614) | IFT_ARAP = 0x58
constant IFT_ARCNET (line 615) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 616) | IFT_ARCNETPLUS = 0x24
constant IFT_ASYNC (line 617) | IFT_ASYNC = 0x54
constant IFT_ATM (line 618) | IFT_ATM = 0x25
constant IFT_ATMDXI (line 619) | IFT_ATMDXI = 0x69
constant IFT_ATMFUNI (line 620) | IFT_ATMFUNI = 0x6a
constant IFT_ATMIMA (line 621) | IFT_ATMIMA = 0x6b
constant IFT_ATMLOGICAL (line 622) | IFT_ATMLOGICAL = 0x50
constant IFT_ATMRADIO (line 623) | IFT_ATMRADIO = 0xbd
constant IFT_ATMSUBINTERFACE (line 624) | IFT_ATMSUBINTERFACE = 0x86
constant IFT_ATMVCIENDPT (line 625) | IFT_ATMVCIENDPT = 0xc2
constant IFT_ATMVIRTUAL (line 626) | IFT_ATMVIRTUAL = 0x95
constant IFT_BGPPOLICYACCOUNTING (line 627) | IFT_BGPPOLICYACCOUNTING = 0xa2
constant IFT_BRIDGE (line 628) | IFT_BRIDGE = 0xd1
constant IFT_BSC (line 629) | IFT_BSC = 0x53
constant IFT_CARP (line 630) | IFT_CARP = 0xf8
constant IFT_CCTEMUL (line 631) | IFT_CCTEMUL = 0x3d
constant IFT_CEPT (line 632) | IFT_CEPT = 0x13
constant IFT_CES (line 633) | IFT_CES = 0x85
constant IFT_CHANNEL (line 634) | IFT_CHANNEL = 0x46
constant IFT_CNR (line 635) | IFT_CNR = 0x55
constant IFT_COFFEE (line 636) | IFT_COFFEE = 0x84
constant IFT_COMPOSITELINK (line 637) | IFT_COMPOSITELINK = 0x9b
constant IFT_DCN (line 638) | IFT_DCN = 0x8d
constant IFT_DIGITALPOWERLINE (line 639) | IFT_DIGITALPOWERLINE = 0x8a
constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 640) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
constant IFT_DLSW (line 641) | IFT_DLSW = 0x4a
constant IFT_DOCSCABLEDOWNSTREAM (line 642) | IFT_DOCSCABLEDOWNSTREAM = 0x80
constant IFT_DOCSCABLEMACLAYER (line 643) | IFT_DOCSCABLEMACLAYER = 0x7f
constant IFT_DOCSCABLEUPSTREAM (line 644) | IFT_DOCSCABLEUPSTREAM = 0x81
constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 645) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd
constant IFT_DS0 (line 646) | IFT_DS0 = 0x51
constant IFT_DS0BUNDLE (line 647) | IFT_DS0BUNDLE = 0x52
constant IFT_DS1FDL (line 648) | IFT_DS1FDL = 0xaa
constant IFT_DS3 (line 649) | IFT_DS3 = 0x1e
constant IFT_DTM (line 650) | IFT_DTM = 0x8c
constant IFT_DVBASILN (line 651) | IFT_DVBASILN = 0xac
constant IFT_DVBASIOUT (line 652) | IFT_DVBASIOUT = 0xad
constant IFT_DVBRCCDOWNSTREAM (line 653) | IFT_DVBRCCDOWNSTREAM = 0x93
constant IFT_DVBRCCMACLAYER (line 654) | IFT_DVBRCCMACLAYER = 0x92
constant IFT_DVBRCCUPSTREAM (line 655) | IFT_DVBRCCUPSTREAM = 0x94
constant IFT_ECONET (line 656) | IFT_ECONET = 0xce
constant IFT_EON (line 657) | IFT_EON = 0x19
constant IFT_EPLRS (line 658) | IFT_EPLRS = 0x57
constant IFT_ESCON (line 659) | IFT_ESCON = 0x49
constant IFT_ETHER (line 660) | IFT_ETHER = 0x6
constant IFT_FAITH (line 661) | IFT_FAITH = 0xf2
constant IFT_FAST (line 662) | IFT_FAST = 0x7d
constant IFT_FASTETHER (line 663) | IFT_FASTETHER = 0x3e
constant IFT_FASTETHERFX (line 664) | IFT_FASTETHERFX = 0x45
constant IFT_FDDI (line 665) | IFT_FDDI = 0xf
constant IFT_FIBRECHANNEL (line 666) | IFT_FIBRECHANNEL = 0x38
constant IFT_FRAMERELAYINTERCONNECT (line 667) | IFT_FRAMERELAYINTERCONNECT = 0x3a
constant IFT_FRAMERELAYMPI (line 668) | IFT_FRAMERELAYMPI = 0x5c
constant IFT_FRDLCIENDPT (line 669) | IFT_FRDLCIENDPT = 0xc1
constant IFT_FRELAY (line 670) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 671) | IFT_FRELAYDCE = 0x2c
constant IFT_FRF16MFRBUNDLE (line 672) | IFT_FRF16MFRBUNDLE = 0xa3
constant IFT_FRFORWARD (line 673) | IFT_FRFORWARD = 0x9e
constant IFT_G703AT2MB (line 674) | IFT_G703AT2MB = 0x43
constant IFT_G703AT64K (line 675) | IFT_G703AT64K = 0x42
constant IFT_GIF (line 676) | IFT_GIF = 0xf0
constant IFT_GIGABITETHERNET (line 677) | IFT_GIGABITETHERNET = 0x75
constant IFT_GR303IDT (line 678) | IFT_GR303IDT = 0xb2
constant IFT_GR303RDT (line 679) | IFT_GR303RDT = 0xb1
constant IFT_H323GATEKEEPER (line 680) | IFT_H323GATEKEEPER = 0xa4
constant IFT_H323PROXY (line 681) | IFT_H323PROXY = 0xa5
constant IFT_HDH1822 (line 682) | IFT_HDH1822 = 0x3
constant IFT_HDLC (line 683) | IFT_HDLC = 0x76
constant IFT_HDSL2 (line 684) | IFT_HDSL2 = 0xa8
constant IFT_HIPERLAN2 (line 685) | IFT_HIPERLAN2 = 0xb7
constant IFT_HIPPI (line 686) | IFT_HIPPI = 0x2f
constant IFT_HIPPIINTERFACE (line 687) | IFT_HIPPIINTERFACE = 0x39
constant IFT_HOSTPAD (line 688) | IFT_HOSTPAD = 0x5a
constant IFT_HSSI (line 689) | IFT_HSSI = 0x2e
constant IFT_HY (line 690) | IFT_HY = 0xe
constant IFT_IBM370PARCHAN (line 691) | IFT_IBM370PARCHAN = 0x48
constant IFT_IDSL (line 692) | IFT_IDSL = 0x9a
constant IFT_IEEE1394 (line 693) | IFT_IEEE1394 = 0x90
constant IFT_IEEE80211 (line 694) | IFT_IEEE80211 = 0x47
constant IFT_IEEE80212 (line 695) | IFT_IEEE80212 = 0x37
constant IFT_IEEE8023ADLAG (line 696) | IFT_IEEE8023ADLAG = 0xa1
constant IFT_IFGSN (line 697) | IFT_IFGSN = 0x91
constant IFT_IMT (line 698) | IFT_IMT = 0xbe
constant IFT_INFINIBAND (line 699) | IFT_INFINIBAND = 0xc7
constant IFT_INTERLEAVE (line 700) | IFT_INTERLEAVE = 0x7c
constant IFT_IP (line 701) | IFT_IP = 0x7e
constant IFT_IPFORWARD (line 702) | IFT_IPFORWARD = 0x8e
constant IFT_IPOVERATM (line 703) | IFT_IPOVERATM = 0x72
constant IFT_IPOVERCDLC (line 704) | IFT_IPOVERCDLC = 0x6d
constant IFT_IPOVERCLAW (line 705) | IFT_IPOVERCLAW = 0x6e
constant IFT_IPSWITCH (line 706) | IFT_IPSWITCH = 0x4e
constant IFT_ISDN (line 707) | IFT_ISDN = 0x3f
constant IFT_ISDNBASIC (line 708) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 709) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISDNS (line 710) | IFT_ISDNS = 0x4b
constant IFT_ISDNU (line 711) | IFT_ISDNU = 0x4c
constant IFT_ISO88022LLC (line 712) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 713) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 714) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 715) | IFT_ISO88025 = 0x9
constant IFT_ISO88025CRFPINT (line 716) | IFT_ISO88025CRFPINT = 0x62
constant IFT_ISO88025DTR (line 717) | IFT_ISO88025DTR = 0x56
constant IFT_ISO88025FIBER (line 718) | IFT_ISO88025FIBER = 0x73
constant IFT_ISO88026 (line 719) | IFT_ISO88026 = 0xa
constant IFT_ISUP (line 720) | IFT_ISUP = 0xb3
constant IFT_L2VLAN (line 721) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 722) | IFT_L3IPVLAN = 0x88
constant IFT_L3IPXVLAN (line 723) | IFT_L3IPXVLAN = 0x89
constant IFT_LAPB (line 724) | IFT_LAPB = 0x10
constant IFT_LAPD (line 725) | IFT_LAPD = 0x4d
constant IFT_LAPF (line 726) | IFT_LAPF = 0x77
constant IFT_LINEGROUP (line 727) | IFT_LINEGROUP = 0xd2
constant IFT_LOCALTALK (line 728) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 729) | IFT_LOOP = 0x18
constant IFT_MEDIAMAILOVERIP (line 730) | IFT_MEDIAMAILOVERIP = 0x8b
constant IFT_MFSIGLINK (line 731) | IFT_MFSIGLINK = 0xa7
constant IFT_MIOX25 (line 732) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 733) | IFT_MODEM = 0x30
constant IFT_MPC (line 734) | IFT_MPC = 0x71
constant IFT_MPLS (line 735) | IFT_MPLS = 0xa6
constant IFT_MPLSTUNNEL (line 736) | IFT_MPLSTUNNEL = 0x96
constant IFT_MSDSL (line 737) | IFT_MSDSL = 0x8f
constant IFT_MVL (line 738) | IFT_MVL = 0xbf
constant IFT_MYRINET (line 739) | IFT_MYRINET = 0x63
constant IFT_NFAS (line 740) | IFT_NFAS = 0xaf
constant IFT_NSIP (line 741) | IFT_NSIP = 0x1b
constant IFT_OPTICALCHANNEL (line 742) | IFT_OPTICALCHANNEL = 0xc3
constant IFT_OPTICALTRANSPORT (line 743) | IFT_OPTICALTRANSPORT = 0xc4
constant IFT_OTHER (line 744) | IFT_OTHER = 0x1
constant IFT_P10 (line 745) | IFT_P10 = 0xc
constant IFT_P80 (line 746) | IFT_P80 = 0xd
constant IFT_PARA (line 747) | IFT_PARA = 0x22
constant IFT_PFLOG (line 748) | IFT_PFLOG = 0xf5
constant IFT_PFSYNC (line 749) | IFT_PFSYNC = 0xf6
constant IFT_PLC (line 750) | IFT_PLC = 0xae
constant IFT_PON155 (line 751) | IFT_PON155 = 0xcf
constant IFT_PON622 (line 752) | IFT_PON622 = 0xd0
constant IFT_POS (line 753) | IFT_POS = 0xab
constant IFT_PPP (line 754) | IFT_PPP = 0x17
constant IFT_PPPMULTILINKBUNDLE (line 755) | IFT_PPPMULTILINKBUNDLE = 0x6c
constant IFT_PROPATM (line 756) | IFT_PROPATM = 0xc5
constant IFT_PROPBWAP2MP (line 757) | IFT_PROPBWAP2MP = 0xb8
constant IFT_PROPCNLS (line 758) | IFT_PROPCNLS = 0x59
constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 759) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5
constant IFT_PROPDOCSWIRELESSMACLAYER (line 760) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4
constant IFT_PROPDOCSWIRELESSUPSTREAM (line 761) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6
constant IFT_PROPMUX (line 762) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 763) | IFT_PROPVIRTUAL = 0x35
constant IFT_PROPWIRELESSP2P (line 764) | IFT_PROPWIRELESSP2P = 0x9d
constant IFT_PTPSERIAL (line 765) | IFT_PTPSERIAL = 0x16
constant IFT_PVC (line 766) | IFT_PVC = 0xf1
constant IFT_Q2931 (line 767) | IFT_Q2931 = 0xc9
constant IFT_QLLC (line 768) | IFT_QLLC = 0x44
constant IFT_RADIOMAC (line 769) | IFT_RADIOMAC = 0xbc
constant IFT_RADSL (line 770) | IFT_RADSL = 0x5f
constant IFT_REACHDSL (line 771) | IFT_REACHDSL = 0xc0
constant IFT_RFC1483 (line 772) | IFT_RFC1483 = 0x9f
constant IFT_RS232 (line 773) | IFT_RS232 = 0x21
constant IFT_RSRB (line 774) | IFT_RSRB = 0x4f
constant IFT_SDLC (line 775) | IFT_SDLC = 0x11
constant IFT_SDSL (line 776) | IFT_SDSL = 0x60
constant IFT_SHDSL (line 777) | IFT_SHDSL = 0xa9
constant IFT_SIP (line 778) | IFT_SIP = 0x1f
constant IFT_SIPSIG (line 779) | IFT_SIPSIG = 0xcc
constant IFT_SIPTG (line 780) | IFT_SIPTG = 0xcb
constant IFT_SLIP (line 781) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 782) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 783) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 784) | IFT_SONET = 0x27
constant IFT_SONETOVERHEADCHANNEL (line 785) | IFT_SONETOVERHEADCHANNEL = 0xb9
constant IFT_SONETPATH (line 786) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 787) | IFT_SONETVT = 0x33
constant IFT_SRP (line 788) | IFT_SRP = 0x97
constant IFT_SS7SIGLINK (line 789) | IFT_SS7SIGLINK = 0x9c
constant IFT_STACKTOSTACK (line 790) | IFT_STACKTOSTACK = 0x6f
constant IFT_STARLAN (line 791) | IFT_STARLAN = 0xb
constant IFT_STF (line 792) | IFT_STF = 0xd7
constant IFT_T1 (line 793) | IFT_T1 = 0x12
constant IFT_TDLC (line 794) | IFT_TDLC = 0x74
constant IFT_TELINK (line 795) | IFT_TELINK = 0xc8
constant IFT_TERMPAD (line 796) | IFT_TERMPAD = 0x5b
constant IFT_TR008 (line 797) | IFT_TR008 = 0xb0
constant IFT_TRANSPHDLC (line 798) | IFT_TRANSPHDLC = 0x7b
constant IFT_TUNNEL (line 799) | IFT_TUNNEL = 0x83
constant IFT_ULTRA (line 800) | IFT_ULTRA = 0x1d
constant IFT_USB (line 801) | IFT_USB = 0xa0
constant IFT_V11 (line 802) | IFT_V11 = 0x40
constant IFT_V35 (line 803) | IFT_V35 = 0x2d
constant IFT_V36 (line 804) | IFT_V36 = 0x41
constant IFT_V37 (line 805) | IFT_V37 = 0x78
constant IFT_VDSL (line 806) | IFT_VDSL = 0x61
constant IFT_VIRTUALIPADDRESS (line 807) | IFT_VIRTUALIPADDRESS = 0x70
constant IFT_VIRTUALTG (line 808) | IFT_VIRTUALTG = 0xca
constant IFT_VOICEDID (line 809) | IFT_VOICEDID = 0xd5
constant IFT_VOICEEM (line 810) | IFT_VOICEEM = 0x64
constant IFT_VOICEEMFGD (line 811) | IFT_VOICEEMFGD = 0xd3
constant IFT_VOICEENCAP (line 812) | IFT_VOICEENCAP = 0x67
constant IFT_VOICEFGDEANA (line 813) | IFT_VOICEFGDEANA = 0xd4
constant IFT_VOICEFXO (line 814) | IFT_VOICEFXO = 0x65
constant IFT_VOICEFXS (line 815) | IFT_VOICEFXS = 0x66
constant IFT_VOICEOVERATM (line 816) | IFT_VOICEOVERATM = 0x98
constant IFT_VOICEOVERCABLE (line 817) | IFT_VOICEOVERCABLE = 0xc6
constant IFT_VOICEOVERFRAMERELAY (line 818) | IFT_VOICEOVERFRAMERELAY = 0x99
constant IFT_VOICEOVERIP (line 819) | IFT_VOICEOVERIP = 0x68
constant IFT_X213 (line 820) | IFT_X213 = 0x5d
constant IFT_X25 (line 821) | IFT_X25 = 0x5
constant IFT_X25DDN (line 822) | IFT_X25DDN = 0x4
constant IFT_X25HUNTGROUP (line 823) | IFT_X25HUNTGROUP = 0x7a
constant IFT_X25MLP (line 824) | IFT_X25MLP = 0x79
constant IFT_X25PLE (line 825) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 826) | IFT_XETHER = 0x1a
constant IGNBRK (line 827) | IGNBRK = 0x1
constant IGNCR (line 828) | IGNCR = 0x80
constant IGNPAR (line 829) | IGNPAR = 0x4
constant IMAXBEL (line 830) | IMAXBEL = 0x2000
constant INLCR (line 831) | INLCR = 0x40
constant INPCK (line 832) | INPCK = 0x10
constant IN_CLASSA_HOST (line 833) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 834) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 835) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 836) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 837) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 838) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 839) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 840) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 841) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 842) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 843) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 844) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 845) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 846) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 847) | IN_LOOPBACKNET = 0x7f
constant IPPROTO_AH (line 848) | IPPROTO_AH = 0x33
constant IPPROTO_CARP (line 849) | IPPROTO_CARP = 0x70
constant IPPROTO_DONE (line 850) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 851) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 852) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 853) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 854) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 855) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 856) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 857) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 858) | IPPROTO_GGP = 0x3
constant IPPROTO_GRE (line 859) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 860) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 861) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 862) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 863) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 864) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 865) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 866) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPIP (line 867) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV4 (line 868) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 869) | IPPROTO_IPV6 = 0x29
constant IPPROTO_IPV6_ICMP (line 870) | IPPROTO_IPV6_ICMP = 0x3a
constant IPPROTO_MAX (line 871) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 872) | IPPROTO_MAXID = 0x34
constant IPPROTO_MOBILE (line 873) | IPPROTO_MOBILE = 0x37
constant IPPROTO_NONE (line 874) | IPPROTO_NONE = 0x3b
constant IPPROTO_PFSYNC (line 875) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PIM (line 876) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 877) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 878) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 879) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 880) | IPPROTO_RSVP = 0x2e
constant IPPROTO_TCP (line 881) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 882) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 883) | IPPROTO_UDP = 0x11
constant IPPROTO_VRRP (line 884) | IPPROTO_VRRP = 0x70
constant IPV6_CHECKSUM (line 885) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 886) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 887) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 888) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 889) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 890) | IPV6_DSTOPTS = 0x32
constant IPV6_FAITH (line 891) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 892) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 893) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FRAGTTL (line 894) | IPV6_FRAGTTL = 0x78
constant IPV6_HLIMDEC (line 895) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 896) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 897) | IPV6_HOPOPTS = 0x31
constant IPV6_IPSEC_POLICY (line 898) | IPV6_IPSEC_POLICY = 0x1c
constant IPV6_JOIN_GROUP (line 899) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 900) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 901) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXPACKET (line 902) | IPV6_MAXPACKET = 0xffff
constant IPV6_MMTU (line 903) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 904) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 905) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 906) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 907) | IPV6_NEXTHOP = 0x30
constant IPV6_PATHMTU (line 908) | IPV6_PATHMTU = 0x2c
constant IPV6_PKTINFO (line 909) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 910) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 911) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 912) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 913) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVDSTOPTS (line 914) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVHOPLIMIT (line 915) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 916) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 917) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 918) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRTHDR (line 919) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 920) | IPV6_RECVTCLASS = 0x39
constant IPV6_RTHDR (line 921) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 922) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 923) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 924) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 925) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 926) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 927) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 928) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 929) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 930) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 931) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 932) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 933) | IP_ADD_MEMBERSHIP = 0xc
constant IP_DEFAULT_MULTICAST_LOOP (line 934) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 935) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 936) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 937) | IP_DROP_MEMBERSHIP = 0xd
constant IP_EF (line 938) | IP_EF = 0x8000
constant IP_ERRORMTU (line 939) | IP_ERRORMTU = 0x15
constant IP_HDRINCL (line 940) | IP_HDRINCL = 0x2
constant IP_IPSEC_POLICY (line 941) | IP_IPSEC_POLICY = 0x16
constant IP_MAXPACKET (line 942) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 943) | IP_MAX_MEMBERSHIPS = 0x14
constant IP_MF (line 944) | IP_MF = 0x2000
constant IP_MINFRAGSIZE (line 945) | IP_MINFRAGSIZE = 0x45
constant IP_MINTTL (line 946) | IP_MINTTL = 0x18
constant IP_MSS (line 947) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 948) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 949) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 950) | IP_MULTICAST_TTL = 0xa
constant IP_OFFMASK (line 951) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 952) | IP_OPTIONS = 0x1
constant IP_PORTRANGE (line 953) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 954) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 955) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 956) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 957) | IP_RECVDSTADDR = 0x7
constant IP_RECVIF (line 958) | IP_RECVIF = 0x14
constant IP_RECVOPTS (line 959) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 960) | IP_RECVRETOPTS = 0x6
constant IP_RECVTTL (line 961) | IP_RECVTTL = 0x17
constant IP_RETOPTS (line 962) | IP_RETOPTS = 0x8
constant IP_RF (line 963) | IP_RF = 0x8000
constant IP_TOS (line 964) | IP_TOS = 0x3
constant IP_TTL (line 965) | IP_TTL = 0x4
constant ISIG (line 966) | ISIG = 0x80
constant ISTRIP (line 967) | ISTRIP = 0x20
constant IXANY (line 968) | IXANY = 0x800
constant IXOFF (line 969) | IXOFF = 0x400
constant IXON (line 970) | IXON = 0x200
constant KERN_HOSTNAME (line 971) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 972) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 973) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 974) | KERN_VERSION = 0x4
constant LOCK_EX (line 975) | LOCK_EX = 0x2
constant LOCK_NB (line 976) | LOCK_NB = 0x4
constant LOCK_SH (line 977) | LOCK_SH = 0x1
constant LOCK_UN (line 978) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 979) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 980) | MADV_FREE = 0x6
constant MADV_NORMAL (line 981) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 982) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 983) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 984) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 985) | MADV_WILLNEED = 0x3
constant MAP_ALIGNMENT_16MB (line 986) | MAP_ALIGNMENT_16MB = 0x18000000
constant MAP_ALIGNMENT_1TB (line 987) | MAP_ALIGNMENT_1TB = 0x28000000
constant MAP_ALIGNMENT_256TB (line 988) | MAP_ALIGNMENT_256TB = 0x30000000
constant MAP_ALIGNMENT_4GB (line 989) | MAP_ALIGNMENT_4GB = 0x20000000
constant MAP_ALIGNMENT_64KB (line 990) | MAP_ALIGNMENT_64KB = 0x10000000
constant MAP_ALIGNMENT_64PB (line 991) | MAP_ALIGNMENT_64PB = 0x38000000
constant MAP_ALIGNMENT_MASK (line 992) | MAP_ALIGNMENT_MASK = -0x1000000
constant MAP_ALIGNMENT_SHIFT (line 993) | MAP_ALIGNMENT_SHIFT = 0x18
constant MAP_ANON (line 994) | MAP_ANON = 0x1000
constant MAP_FILE (line 995) | MAP_FILE = 0x0
constant MAP_FIXED (line 996) | MAP_FIXED = 0x10
constant MAP_HASSEMAPHORE (line 997) | MAP_HASSEMAPHORE = 0x200
constant MAP_INHERIT (line 998) | MAP_INHERIT = 0x80
constant MAP_INHERIT_COPY (line 999) | MAP_INHERIT_COPY = 0x1
constant MAP_INHERIT_DEFAULT (line 1000) | MAP_INHERIT_DEFAULT = 0x1
constant MAP_INHERIT_DONATE_COPY (line 1001) | MAP_INHERIT_DONATE_COPY = 0x3
constant MAP_INHERIT_NONE (line 1002) | MAP_INHERIT_NONE = 0x2
constant MAP_INHERIT_SHARE (line 1003) | MAP_INHERIT_SHARE = 0x0
constant MAP_NORESERVE (line 1004) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 1005) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 1006) | MAP_RENAME = 0x20
constant MAP_SHARED (line 1007) | MAP_SHARED = 0x1
constant MAP_STACK (line 1008) | MAP_STACK = 0x2000
constant MAP_TRYFIXED (line 1009) | MAP_TRYFIXED = 0x400
constant MAP_WIRED (line 1010) | MAP_WIRED = 0x800
constant MCL_CURRENT (line 1011) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 1012) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 1013) | MNT_ASYNC = 0x40
constant MNT_BASIC_FLAGS (line 1014) | MNT_BASIC_FLAGS = 0xe782807f
constant MNT_DEFEXPORTED (line 1015) | MNT_DEFEXPORTED = 0x200
constant MNT_DISCARD (line 1016) | MNT_DISCARD = 0x800000
constant MNT_EXKERB (line 1017) | MNT_EXKERB = 0x800
constant MNT_EXNORESPORT (line 1018) | MNT_EXNORESPORT = 0x8000000
constant MNT_EXPORTANON (line 1019) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 1020) | MNT_EXPORTED = 0x100
constant MNT_EXPUBLIC (line 1021) | MNT_EXPUBLIC = 0x10000000
constant MNT_EXRDONLY (line 1022) | MNT_EXRDONLY = 0x80
constant MNT_EXTATTR (line 1023) | MNT_EXTATTR = 0x1000000
constant MNT_FORCE (line 1024) | MNT_FORCE = 0x80000
constant MNT_GETARGS (line 1025) | MNT_GETARGS = 0x400000
constant MNT_IGNORE (line 1026) | MNT_IGNORE = 0x100000
constant MNT_LAZY (line 1027) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 1028) | MNT_LOCAL = 0x1000
constant MNT_LOG (line 1029) | MNT_LOG = 0x2000000
constant MNT_NOATIME (line 1030) | MNT_NOATIME = 0x4000000
constant MNT_NOCOREDUMP (line 1031) | MNT_NOCOREDUMP = 0x8000
constant MNT_NODEV (line 1032) | MNT_NODEV = 0x10
constant MNT_NODEVMTIME (line 1033) | MNT_NODEVMTIME = 0x40000000
constant MNT_NOEXEC (line 1034) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 1035) | MNT_NOSUID = 0x8
constant MNT_NOWAIT (line 1036) | MNT_NOWAIT = 0x2
constant MNT_OP_FLAGS (line 1037) | MNT_OP_FLAGS = 0x4d0000
constant MNT_QUOTA (line 1038) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 1039) | MNT_RDONLY = 0x1
constant MNT_RELATIME (line 1040) | MNT_RELATIME = 0x20000
constant MNT_RELOAD (line 1041) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 1042) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 1043) | MNT_SOFTDEP = 0x80000000
constant MNT_SYMPERM (line 1044) | MNT_SYMPERM = 0x20000000
constant MNT_SYNCHRONOUS (line 1045) | MNT_SYNCHRONOUS = 0x2
constant MNT_UNION (line 1046) | MNT_UNION = 0x20
constant MNT_UPDATE (line 1047) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 1048) | MNT_VISFLAGMASK = 0xff90ffff
constant MNT_WAIT (line 1049) | MNT_WAIT = 0x1
constant MSG_BCAST (line 1050) | MSG_BCAST = 0x100
constant MSG_CMSG_CLOEXEC (line 1051) | MSG_CMSG_CLOEXEC = 0x800
constant MSG_CONTROLMBUF (line 1052) | MSG_CONTROLMBUF = 0x2000000
constant MSG_CTRUNC (line 1053) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 1054) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 1055) | MSG_DONTWAIT = 0x80
constant MSG_EOR (line 1056) | MSG_EOR = 0x8
constant MSG_IOVUSRSPACE (line 1057) | MSG_IOVUSRSPACE = 0x4000000
constant MSG_LENUSRSPACE (line 1058) | MSG_LENUSRSPACE = 0x8000000
constant MSG_MCAST (line 1059) | MSG_MCAST = 0x200
constant MSG_NAMEMBUF (line 1060) | MSG_NAMEMBUF = 0x1000000
constant MSG_NBIO (line 1061) | MSG_NBIO = 0x1000
constant MSG_NOSIGNAL (line 1062) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 1063) | MSG_OOB = 0x1
constant MSG_PEEK (line 1064) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 1065) | MSG_TRUNC = 0x10
constant MSG_USERFLAGS (line 1066) | MSG_USERFLAGS = 0xffffff
constant MSG_WAITALL (line 1067) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 1068) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 1069) | MS_INVALIDATE = 0x2
constant MS_SYNC (line 1070) | MS_SYNC = 0x4
constant NAME_MAX (line 1071) | NAME_MAX = 0x1ff
constant NET_RT_DUMP (line 1072) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 1073) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 1074) | NET_RT_IFLIST = 0x5
constant NET_RT_MAXID (line 1075) | NET_RT_MAXID = 0x6
constant NET_RT_OIFLIST (line 1076) | NET_RT_OIFLIST = 0x4
constant NET_RT_OOIFLIST (line 1077) | NET_RT_OOIFLIST = 0x3
constant NOFLSH (line 1078) | NOFLSH = 0x80000000
constant NOTE_ATTRIB (line 1079) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 1080) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 1081) | NOTE_DELETE = 0x1
constant NOTE_EXEC (line 1082) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1083) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1084) | NOTE_EXTEND = 0x4
constant NOTE_FORK (line 1085) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1086) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1087) | NOTE_LOWAT = 0x1
constant NOTE_PCTRLMASK (line 1088) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1089) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 1090) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1091) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 1092) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1093) | NOTE_TRACKERR = 0x2
constant NOTE_WRITE (line 1094) | NOTE_WRITE = 0x2
constant OCRNL (line 1095) | OCRNL = 0x10
constant OFIOGETBMAP (line 1096) | OFIOGETBMAP = 0xc004667a
constant ONLCR (line 1097) | ONLCR = 0x2
constant ONLRET (line 1098) | ONLRET = 0x40
constant ONOCR (line 1099) | ONOCR = 0x20
constant ONOEOT (line 1100) | ONOEOT = 0x8
constant OPOST (line 1101) | OPOST = 0x1
constant O_ACCMODE (line 1102) | O_ACCMODE = 0x3
constant O_ALT_IO (line 1103) | O_ALT_IO = 0x40000
constant O_APPEND (line 1104) | O_APPEND = 0x8
constant O_ASYNC (line 1105) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1106) | O_CLOEXEC = 0x400000
constant O_CREAT (line 1107) | O_CREAT = 0x200
constant O_DIRECT (line 1108) | O_DIRECT = 0x80000
constant O_DIRECTORY (line 1109) | O_DIRECTORY = 0x200000
constant O_DSYNC (line 1110) | O_DSYNC = 0x10000
constant O_EXCL (line 1111) | O_EXCL = 0x800
constant O_EXLOCK (line 1112) | O_EXLOCK = 0x20
constant O_FSYNC (line 1113) | O_FSYNC = 0x80
constant O_NDELAY (line 1114) | O_NDELAY = 0x4
constant O_NOCTTY (line 1115) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1116) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1117) | O_NONBLOCK = 0x4
constant O_NOSIGPIPE (line 1118) | O_NOSIGPIPE = 0x1000000
constant O_RDONLY (line 1119) | O_RDONLY = 0x0
constant O_RDWR (line 1120) | O_RDWR = 0x2
constant O_RSYNC (line 1121) | O_RSYNC = 0x20000
constant O_SHLOCK (line 1122) | O_SHLOCK = 0x10
constant O_SYNC (line 1123) | O_SYNC = 0x80
constant O_TRUNC (line 1124) | O_TRUNC = 0x400
constant O_WRONLY (line 1125) | O_WRONLY = 0x1
constant PARENB (line 1126) | PARENB = 0x1000
constant PARMRK (line 1127) | PARMRK = 0x8
constant PARODD (line 1128) | PARODD = 0x2000
constant PENDIN (line 1129) | PENDIN = 0x20000000
constant PRIO_PGRP (line 1130) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1131) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1132) | PRIO_USER = 0x2
constant PRI_IOFLUSH (line 1133) | PRI_IOFLUSH = 0x7c
constant PROT_EXEC (line 1134) | PROT_EXEC = 0x4
constant PROT_NONE (line 1135) | PROT_NONE = 0x0
constant PROT_READ (line 1136) | PROT_READ = 0x1
constant PROT_WRITE (line 1137) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 1138) | RLIMIT_AS = 0xa
constant RLIMIT_CORE (line 1139) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1140) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1141) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1142) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1143) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1144) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1145) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1146) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1147) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1148) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1149) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1150) | RTAX_BRD = 0x7
constant RTAX_DST (line 1151) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1152) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1153) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1154) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1155) | RTAX_IFP = 0x4
constant RTAX_MAX (line 1156) | RTAX_MAX = 0x9
constant RTAX_NETMASK (line 1157) | RTAX_NETMASK = 0x2
constant RTAX_TAG (line 1158) | RTAX_TAG = 0x8
constant RTA_AUTHOR (line 1159) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1160) | RTA_BRD = 0x80
constant RTA_DST (line 1161) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1162) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1163) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1164) | RTA_IFA = 0x20
constant RTA_IFP (line 1165) | RTA_IFP = 0x10
constant RTA_NETMASK (line 1166) | RTA_NETMASK = 0x4
constant RTA_TAG (line 1167) | RTA_TAG = 0x100
constant RTF_ANNOUNCE (line 1168) | RTF_ANNOUNCE = 0x20000
constant RTF_BLACKHOLE (line 1169) | RTF_BLACKHOLE = 0x1000
constant RTF_CLONED (line 1170) | RTF_CLONED = 0x2000
constant RTF_CLONING (line 1171) | RTF_CLONING = 0x100
constant RTF_DONE (line 1172) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1173) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 1174) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1175) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1176) | RTF_LLINFO = 0x400
constant RTF_MASK (line 1177) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 1178) | RTF_MODIFIED = 0x20
constant RTF_PROTO1 (line 1179) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1180) | RTF_PROTO2 = 0x4000
constant RTF_REJECT (line 1181) | RTF_REJECT = 0x8
constant RTF_SRC (line 1182) | RTF_SRC = 0x10000
constant RTF_STATIC (line 1183) | RTF_STATIC = 0x800
constant RTF_UP (line 1184) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 1185) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1186) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1187) | RTM_CHANGE = 0x3
constant RTM_CHGADDR (line 1188) | RTM_CHGADDR = 0x15
constant RTM_DELADDR (line 1189) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1190) | RTM_DELETE = 0x2
constant RTM_GET (line 1191) | RTM_GET = 0x4
constant RTM_IEEE80211 (line 1192) | RTM_IEEE80211 = 0x11
constant RTM_IFANNOUNCE (line 1193) | RTM_IFANNOUNCE = 0x10
constant RTM_IFINFO (line 1194) | RTM_IFINFO = 0x14
constant RTM_LLINFO_UPD (line 1195) | RTM_LLINFO_UPD = 0x13
constant RTM_LOCK (line 1196) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1197) | RTM_LOSING = 0x5
constant RTM_MISS (line 1198) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1199) | RTM_NEWADDR = 0xc
constant RTM_OIFINFO (line 1200) | RTM_OIFINFO = 0xf
constant RTM_OLDADD (line 1201) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 1202) | RTM_OLDDEL = 0xa
constant RTM_OOIFINFO (line 1203) | RTM_OOIFINFO = 0xe
constant RTM_REDIRECT (line 1204) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1205) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1206) | RTM_RTTUNIT = 0xf4240
constant RTM_SETGATE (line 1207) | RTM_SETGATE = 0x12
constant RTM_VERSION (line 1208) | RTM_VERSION = 0x4
constant RTV_EXPIRE (line 1209) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1210) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1211) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1212) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1213) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1214) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1215) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1216) | RTV_SSTHRESH = 0x20
constant RUSAGE_CHILDREN (line 1217) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1218) | RUSAGE_SELF = 0x0
constant SCM_CREDS (line 1219) | SCM_CREDS = 0x4
constant SCM_RIGHTS (line 1220) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1221) | SCM_TIMESTAMP = 0x8
constant SHUT_RD (line 1222) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1223) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1224) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1225) | SIOCADDMULTI = 0x80906931
constant SIOCADDRT (line 1226) | SIOCADDRT = 0x8038720a
constant SIOCAIFADDR (line 1227) | SIOCAIFADDR = 0x8040691a
constant SIOCALIFADDR (line 1228) | SIOCALIFADDR = 0x8118691c
constant SIOCATMARK (line 1229) | SIOCATMARK = 0x40047307
constant SIOCDELMULTI (line 1230) | SIOCDELMULTI = 0x80906932
constant SIOCDELRT (line 1231) | SIOCDELRT = 0x8038720b
constant SIOCDIFADDR (line 1232) | SIOCDIFADDR = 0x80906919
constant SIOCDIFPHYADDR (line 1233) | SIOCDIFPHYADDR = 0x80906949
constant SIOCDLIFADDR (line 1234) | SIOCDLIFADDR = 0x8118691e
constant SIOCGDRVSPEC (line 1235) | SIOCGDRVSPEC = 0xc028697b
constant SIOCGETPFSYNC (line 1236) | SIOCGETPFSYNC = 0xc09069f8
constant SIOCGETSGCNT (line 1237) | SIOCGETSGCNT = 0xc0207534
constant SIOCGETVIFCNT (line 1238) | SIOCGETVIFCNT = 0xc0287533
constant SIOCGHIWAT (line 1239) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1240) | SIOCGIFADDR = 0xc0906921
constant SIOCGIFADDRPREF (line 1241) | SIOCGIFADDRPREF = 0xc0986920
constant SIOCGIFALIAS (line 1242) | SIOCGIFALIAS = 0xc040691b
constant SIOCGIFBRDADDR (line 1243) | SIOCGIFBRDADDR = 0xc0906923
constant SIOCGIFCAP (line 1244) | SIOCGIFCAP = 0xc0206976
constant SIOCGIFCONF (line 1245) | SIOCGIFCONF = 0xc0106926
constant SIOCGIFDATA (line 1246) | SIOCGIFDATA = 0xc0986985
constant SIOCGIFDLT (line 1247) | SIOCGIFDLT = 0xc0906977
constant SIOCGIFDSTADDR (line 1248) | SIOCGIFDSTADDR = 0xc0906922
constant SIOCGIFFLAGS (line 1249) | SIOCGIFFLAGS = 0xc0906911
constant SIOCGIFGENERIC (line 1250) | SIOCGIFGENERIC = 0xc090693a
constant SIOCGIFMEDIA (line 1251) | SIOCGIFMEDIA = 0xc0306936
constant SIOCGIFMETRIC (line 1252) | SIOCGIFMETRIC = 0xc0906917
constant SIOCGIFMTU (line 1253) | SIOCGIFMTU = 0xc090697e
constant SIOCGIFNETMASK (line 1254) | SIOCGIFNETMASK = 0xc0906925
constant SIOCGIFPDSTADDR (line 1255) | SIOCGIFPDSTADDR = 0xc0906948
constant SIOCGIFPSRCADDR (line 1256) | SIOCGIFPSRCADDR = 0xc0906947
constant SIOCGLIFADDR (line 1257) | SIOCGLIFADDR = 0xc118691d
constant SIOCGLIFPHYADDR (line 1258) | SIOCGLIFPHYADDR = 0xc118694b
constant SIOCGLINKSTR (line 1259) | SIOCGLINKSTR = 0xc0286987
constant SIOCGLOWAT (line 1260) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1261) | SIOCGPGRP = 0x40047309
constant SIOCGVH (line 1262) | SIOCGVH = 0xc0906983
constant SIOCIFCREATE (line 1263) | SIOCIFCREATE = 0x8090697a
constant SIOCIFDESTROY (line 1264) | SIOCIFDESTROY = 0x80906979
constant SIOCIFGCLONERS (line 1265) | SIOCIFGCLONERS = 0xc0106978
constant SIOCINITIFADDR (line 1266) | SIOCINITIFADDR = 0xc0706984
constant SIOCSDRVSPEC (line 1267) | SIOCSDRVSPEC = 0x8028697b
constant SIOCSETPFSYNC (line 1268) | SIOCSETPFSYNC = 0x809069f7
constant SIOCSHIWAT (line 1269) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1270) | SIOCSIFADDR = 0x8090690c
constant SIOCSIFADDRPREF (line 1271) | SIOCSIFADDRPREF = 0x8098691f
constant SIOCSIFBRDADDR (line 1272) | SIOCSIFBRDADDR = 0x80906913
constant SIOCSIFCAP (line 1273) | SIOCSIFCAP = 0x80206975
constant SIOCSIFDSTADDR (line 1274) | SIOCSIFDSTADDR = 0x8090690e
constant SIOCSIFFLAGS (line 1275) | SIOCSIFFLAGS = 0x80906910
constant SIOCSIFGENERIC (line 1276) | SIOCSIFGENERIC = 0x80906939
constant SIOCSIFMEDIA (line 1277) | SIOCSIFMEDIA = 0xc0906935
constant SIOCSIFMETRIC (line 1278) | SIOCSIFMETRIC = 0x80906918
constant SIOCSIFMTU (line 1279) | SIOCSIFMTU = 0x8090697f
constant SIOCSIFNETMASK (line 1280) | SIOCSIFNETMASK = 0x80906916
constant SIOCSIFPHYADDR (line 1281) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSLIFPHYADDR (line 1282) | SIOCSLIFPHYADDR = 0x8118694a
constant SIOCSLINKSTR (line 1283) | SIOCSLINKSTR = 0x80286988
constant SIOCSLOWAT (line 1284) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1285) | SIOCSPGRP = 0x80047308
constant SIOCSVH (line 1286) | SIOCSVH = 0xc0906982
constant SIOCZIFDATA (line 1287) | SIOCZIFDATA = 0xc0986986
constant SOCK_CLOEXEC (line 1288) | SOCK_CLOEXEC = 0x10000000
constant SOCK_DGRAM (line 1289) | SOCK_DGRAM = 0x2
constant SOCK_FLAGS_MASK (line 1290) | SOCK_FLAGS_MASK = 0xf0000000
constant SOCK_NONBLOCK (line 1291) | SOCK_NONBLOCK = 0x20000000
constant SOCK_NOSIGPIPE (line 1292) | SOCK_NOSIGPIPE = 0x40000000
constant SOCK_RAW (line 1293) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1294) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1295) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1296) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1297) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1298) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1299) | SO_ACCEPTCONN = 0x2
constant SO_ACCEPTFILTER (line 1300) | SO_ACCEPTFILTER = 0x1000
constant SO_BROADCAST (line 1301) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1302) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1303) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1304) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1305) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1306) | SO_LINGER = 0x80
constant SO_NOHEADER (line 1307) | SO_NOHEADER = 0x100a
constant SO_NOSIGPIPE (line 1308) | SO_NOSIGPIPE = 0x800
constant SO_OOBINLINE (line 1309) | SO_OOBINLINE = 0x100
constant SO_OVERFLOWED (line 1310) | SO_OVERFLOWED = 0x1009
constant SO_RCVBUF (line 1311) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1312) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1313) | SO_RCVTIMEO = 0x100c
constant SO_REUSEADDR (line 1314) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1315) | SO_REUSEPORT = 0x200
constant SO_SNDBUF (line 1316) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1317) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1318) | SO_SNDTIMEO = 0x100b
constant SO_TIMESTAMP (line 1319) | SO_TIMESTAMP = 0x2000
constant SO_TYPE (line 1320) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1321) | SO_USELOOPBACK = 0x40
constant SYSCTL_VERSION (line 1322) | SYSCTL_VERSION = 0x1000000
constant SYSCTL_VERS_0 (line 1323) | SYSCTL_VERS_0 = 0x0
constant SYSCTL_VERS_1 (line 1324) | SYSCTL_VERS_1 = 0x1000000
constant SYSCTL_VERS_MASK (line 1325) | SYSCTL_VERS_MASK = 0xff000000
constant S_ARCH1 (line 1326) | S_ARCH1 = 0x10000
constant S_ARCH2 (line 1327) | S_ARCH2 = 0x20000
constant S_BLKSIZE (line 1328) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1329) | S_IEXEC = 0x40
constant S_IFBLK (line 1330) | S_IFBLK = 0x6000
constant S_IFCHR (line 1331) | S_IFCHR = 0x2000
constant S_IFDIR (line 1332) | S_IFDIR = 0x4000
constant S_IFIFO (line 1333) | S_IFIFO = 0x1000
constant S_IFLNK (line 1334) | S_IFLNK = 0xa000
constant S_IFMT (line 1335) | S_IFMT = 0xf000
constant S_IFREG (line 1336) | S_IFREG = 0x8000
constant S_IFSOCK (line 1337) | S_IFSOCK = 0xc000
constant S_IFWHT (line 1338) | S_IFWHT = 0xe000
constant S_IREAD (line 1339) | S_IREAD = 0x100
constant S_IRGRP (line 1340) | S_IRGRP = 0x20
constant S_IROTH (line 1341) | S_IROTH = 0x4
constant S_IRUSR (line 1342) | S_IRUSR = 0x100
constant S_IRWXG (line 1343) | S_IRWXG = 0x38
constant S_IRWXO (line 1344) | S_IRWXO = 0x7
constant S_IRWXU (line 1345) | S_IRWXU = 0x1c0
constant S_ISGID (line 1346) | S_ISGID = 0x400
constant S_ISTXT (line 1347) | S_ISTXT = 0x200
constant S_ISUID (line 1348) | S_ISUID = 0x800
constant S_ISVTX (line 1349) | S_ISVTX = 0x200
constant S_IWGRP (line 1350) | S_IWGRP = 0x10
constant S_IWOTH (line 1351) | S_IWOTH = 0x2
constant S_IWRITE (line 1352) | S_IWRITE = 0x80
constant S_IWUSR (line 1353) | S_IWUSR = 0x80
constant S_IXGRP (line 1354) | S_IXGRP = 0x8
constant S_IXOTH (line 1355) | S_IXOTH = 0x1
constant S_IXUSR (line 1356) | S_IXUSR = 0x40
constant S_LOGIN_SET (line 1357) | S_LOGIN_SET = 0x1
constant TCIFLUSH (line 1358) | TCIFLUSH = 0x1
constant TCIOFLUSH (line 1359) | TCIOFLUSH = 0x3
constant TCOFLUSH (line 1360) | TCOFLUSH = 0x2
constant TCP_CONGCTL (line 1361) | TCP_CONGCTL = 0x20
constant TCP_KEEPCNT (line 1362) | TCP_KEEPCNT = 0x6
constant TCP_KEEPIDLE (line 1363) | TCP_KEEPIDLE = 0x3
constant TCP_KEEPINIT (line 1364) | TCP_KEEPINIT = 0x7
constant TCP_KEEPINTVL (line 1365) | TCP_KEEPINTVL = 0x5
constant TCP_MAXBURST (line 1366) | TCP_MAXBURST = 0x4
constant TCP_MAXSEG (line 1367) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1368) | TCP_MAXWIN = 0xffff
constant TCP_MAX_WINSHIFT (line 1369) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1370) | TCP_MD5SIG = 0x10
constant TCP_MINMSS (line 1371) | TCP_MINMSS = 0xd8
constant TCP_MSS (line 1372) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1373) | TCP_NODELAY = 0x1
constant TCSAFLUSH (line 1374) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1375) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1376) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1377) | TIOCCONS = 0x80047462
constant TIOCDCDTIMESTAMP (line 1378) | TIOCDCDTIMESTAMP = 0x40107458
constant TIOCDRAIN (line 1379) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1380) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1381) | TIOCEXT = 0x80047460
constant TIOCFLAG_CDTRCTS (line 1382) | TIOCFLAG_CDTRCTS = 0x10
constant TIOCFLAG_CLOCAL (line 1383) | TIOCFLAG_CLOCAL = 0x2
constant TIOCFLAG_CRTSCTS (line 1384) | TIOCFLAG_CRTSCTS = 0x4
constant TIOCFLAG_MDMBUF (line 1385) | TIOCFLAG_MDMBUF = 0x8
constant TIOCFLAG_SOFTCAR (line 1386) | TIOCFLAG_SOFTCAR = 0x1
constant TIOCFLUSH (line 1387) | TIOCFLUSH = 0x80047410
constant TIOCGETA (line 1388) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1389) | TIOCGETD = 0x4004741a
constant TIOCGFLAGS (line 1390) | TIOCGFLAGS = 0x4004745d
constant TIOCGLINED (line 1391) | TIOCGLINED = 0x40207442
constant TIOCGPGRP (line 1392) | TIOCGPGRP = 0x40047477
constant TIOCGQSIZE (line 1393) | TIOCGQSIZE = 0x40047481
constant TIOCGRANTPT (line 1394) | TIOCGRANTPT = 0x20007447
constant TIOCGSID (line 1395) | TIOCGSID = 0x40047463
constant TIOCGSIZE (line 1396) | TIOCGSIZE = 0x40087468
constant TIOCGWINSZ (line 1397) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1398) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1399) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 1400) | TIOCMGET = 0x4004746a
constant TIOCMSET (line 1401) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1402) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1403) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1404) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1405) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1406) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1407) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1408) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1409) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1410) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1411) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1412) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1413) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1414) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1415) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1416) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1417) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1418) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1419) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1420) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1421) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1422) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1423) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1424) | TIOCPKT_STOP = 0x4
constant TIOCPTMGET (line 1425) | TIOCPTMGET = 0x40287446
constant TIOCPTSNAME (line 1426) | TIOCPTSNAME = 0x40287448
constant TIOCRCVFRAME (line 1427) | TIOCRCVFRAME = 0x80087445
constant TIOCREMOTE (line 1428) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1429) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1430) | TIOCSCTTY = 0x20007461
constant TIOCSDTR (line 1431) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1432) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1433) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1434) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1435) | TIOCSETD = 0x8004741b
constant TIOCSFLAGS (line 1436) | TIOCSFLAGS = 0x8004745c
constant TIOCSIG (line 1437) | TIOCSIG = 0x2000745f
constant TIOCSLINED (line 1438) | TIOCSLINED = 0x80207443
constant TIOCSPGRP (line 1439) | TIOCSPGRP = 0x80047476
constant TIOCSQSIZE (line 1440) | TIOCSQSIZE = 0x80047480
constant TIOCSSIZE (line 1441) | TIOCSSIZE = 0x80087467
constant TIOCSTART (line 1442) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1443) | TIOCSTAT = 0x80047465
constant TIOCSTI (line 1444) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1445) | TIOCSTOP = 0x2000746f
constant TIOCSWINSZ (line 1446) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 1447) | TIOCUCNTL = 0x80047466
constant TIOCXMTFRAME (line 1448) | TIOCXMTFRAME = 0x80087444
constant TOSTOP (line 1449) | TOSTOP = 0x400000
constant VDISCARD (line 1450) | VDISCARD = 0xf
constant VDSUSP (line 1451) | VDSUSP = 0xb
constant VEOF (line 1452) | VEOF = 0x0
constant VEOL (line 1453) | VEOL = 0x1
constant VEOL2 (line 1454) | VEOL2 = 0x2
constant VERASE (line 1455) | VERASE = 0x3
constant VINTR (line 1456) | VINTR = 0x8
constant VKILL (line 1457) | VKILL = 0x5
constant VLNEXT (line 1458) | VLNEXT = 0xe
constant VMIN (line 1459) | VMIN = 0x10
constant VQUIT (line 1460) | VQUIT = 0x9
constant VREPRINT (line 1461) | VREPRINT = 0x6
constant VSTART (line 1462) | VSTART = 0xc
constant VSTATUS (line 1463) | VSTATUS = 0x12
constant VSTOP (line 1464) | VSTOP = 0xd
constant VSUSP (line 1465) | VSUSP = 0xa
constant VTIME (line 1466) | VTIME = 0x11
constant VWERASE (line 1467) | VWERASE = 0x4
constant WALL (line 1468) | WALL = 0x8
constant WALLSIG (line 1469) | WALLSIG = 0x8
constant WALTSIG (line 1470) | WALTSIG = 0x4
constant WCLONE (line 1471) | WCLONE = 0x4
constant WCOREFLAG (line 1472) | WCOREFLAG = 0x80
constant WNOHANG (line 1473) | WNOHANG = 0x1
constant WNOWAIT (line 1474) | WNOWAIT = 0x10000
constant WNOZOMBIE (line 1475) | WNOZOMBIE = 0x20000
constant WOPTSCHECKED (line 1476) | WOPTSCHECKED = 0x40000
constant WSTOPPED (line 1477) | WSTOPPED = 0x7f
constant WUNTRACED (line 1478) | WUNTRACED = 0x2
constant E2BIG (line 1483) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1484) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1485) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1486) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1487) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1488) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1489) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1490) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1491) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1492) | EBADMSG = syscall.Errno(0x58)
constant EBADRPC (line 1493) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1494) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1495) | ECANCELED = syscall.Errno(0x57)
constant ECHILD (line 1496) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1497) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1498) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1499) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1500) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1501) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1502) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1503) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1504) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1505) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1506) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1507) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1508) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1509) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1510) | EIDRM = syscall.Errno(0x52)
constant EILSEQ (line 1511) | EILSEQ = syscall.Errno(0x55)
constant EINPROGRESS (line 1512) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1513) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1514) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1515) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1516) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1517) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1518) | ELAST = syscall.Errno(0x60)
constant ELOOP (line 1519) | ELOOP = syscall.Errno(0x3e)
constant EMFILE (line 1520) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1521) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1522) | EMSGSIZE = syscall.Errno(0x28)
constant EMULTIHOP (line 1523) | EMULTIHOP = syscall.Errno(0x5e)
constant ENAMETOOLONG (line 1524) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1525) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1526) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1527) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1528) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1529) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1530) | ENOATTR = syscall.Errno(0x5d)
constant ENOBUFS (line 1531) | ENOBUFS = syscall.Errno(0x37)
constant ENODATA (line 1532) | ENODATA = syscall.Errno(0x59)
constant ENODEV (line 1533) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1534) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1535) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1536) | ENOLCK = syscall.Errno(0x4d)
constant ENOLINK (line 1537) | ENOLINK = syscall.Errno(0x5f)
constant ENOMEM (line 1538) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1539) | ENOMSG = syscall.Errno(0x53)
constant ENOPROTOOPT (line 1540) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1541) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1542) | ENOSR = syscall.Errno(0x5a)
constant ENOSTR (line 1543) | ENOSTR = syscall.Errno(0x5b)
constant ENOSYS (line 1544) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1545) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1546) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1547) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1548) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTSOCK (line 1549) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1550) | ENOTSUP = syscall.Errno(0x56)
constant ENOTTY (line 1551) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1552) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1553) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1554) | EOVERFLOW = syscall.Errno(0x54)
constant EPERM (line 1555) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1556) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1557) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1558) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1559) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1560) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1561) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1562) | EPROTO = syscall.Errno(0x60)
constant EPROTONOSUPPORT (line 1563) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1564) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1565) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1566) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1567) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1568) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1569) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1570) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1571) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1572) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1573) | ESTALE = syscall.Errno(0x46)
constant ETIME (line 1574) | ETIME = syscall.Errno(0x5c)
constant ETIMEDOUT (line 1575) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1576) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1577) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1578) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1579) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1580) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1585) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1586) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1587) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1588) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1589) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1590) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1591) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1592) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1593) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1594) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1595) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1596) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1597) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1598) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1599) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1600) | SIGPROF = syscall.Signal(0x1b)
constant SIGPWR (line 1601) | SIGPWR = syscall.Signal(0x20)
constant SIGQUIT (line 1602) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1603) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1604) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1605) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1606) | SIGTERM = syscall.Signal(0xf)
constant SIGTRAP (line 1607) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1608) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1609) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1610) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1611) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1612) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1613) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1614) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1615) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1616) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1617) | 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 CRTSCTS (line 150) | CRTSCTS = 0x10000
constant CS5 (line 151) | CS5 = 0x0
constant CS6 (line 152) | CS6 = 0x100
constant CS7 (line 153) | CS7 = 0x200
constant CS8 (line 154) | CS8 = 0x300
constant CSIZE (line 155) | CSIZE = 0x300
constant CSTART (line 156) | CSTART = 0x11
constant CSTATUS (line 157) | CSTATUS = 0xff
constant CSTOP (line 158) | CSTOP = 0x13
constant CSTOPB (line 159) | CSTOPB = 0x400
constant CSUSP (line 160) | CSUSP = 0x1a
constant CTL_HW (line 161) | CTL_HW = 0x6
constant CTL_KERN (line 162) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 163) | CTL_MAXNAME = 0xc
constant CTL_NET (line 164) | CTL_NET = 0x4
constant DIOCOSFPFLUSH (line 165) | DIOCOSFPFLUSH = 0x2000444e
constant DLT_ARCNET (line 166) | DLT_ARCNET = 0x7
constant DLT_ATM_RFC1483 (line 167) | DLT_ATM_RFC1483 = 0xb
constant DLT_AX25 (line 168) | DLT_AX25 = 0x3
constant DLT_CHAOS (line 169) | DLT_CHAOS = 0x5
constant DLT_C_HDLC (line 170) | DLT_C_HDLC = 0x68
constant DLT_EN10MB (line 171) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 172) | DLT_EN3MB = 0x2
constant DLT_ENC (line 173) | DLT_ENC = 0xd
constant DLT_FDDI (line 174) | DLT_FDDI = 0xa
constant DLT_IEEE802 (line 175) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 176) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 177) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_LOOP (line 178) | DLT_LOOP = 0xc
constant DLT_MPLS (line 179) | DLT_MPLS = 0xdb
constant DLT_NULL (line 180) | DLT_NULL = 0x0
constant DLT_PFLOG (line 181) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 182) | DLT_PFSYNC = 0x12
constant DLT_PPP (line 183) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 184) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 185) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_SERIAL (line 186) | DLT_PPP_SERIAL = 0x32
constant DLT_PRONET (line 187) | DLT_PRONET = 0x4
constant DLT_RAW (line 188) | DLT_RAW = 0xe
constant DLT_SLIP (line 189) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 190) | DLT_SLIP_BSDOS = 0xf
constant DT_BLK (line 191) | DT_BLK = 0x6
constant DT_CHR (line 192) | DT_CHR = 0x2
constant DT_DIR (line 193) | DT_DIR = 0x4
constant DT_FIFO (line 194) | DT_FIFO = 0x1
constant DT_LNK (line 195) | DT_LNK = 0xa
constant DT_REG (line 196) | DT_REG = 0x8
constant DT_SOCK (line 197) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 198) | DT_UNKNOWN = 0x0
constant ECHO (line 199) | ECHO = 0x8
constant ECHOCTL (line 200) | ECHOCTL = 0x40
constant ECHOE (line 201) | ECHOE = 0x2
constant ECHOK (line 202) | ECHOK = 0x4
constant ECHOKE (line 203) | ECHOKE = 0x1
constant ECHONL (line 204) | ECHONL = 0x10
constant ECHOPRT (line 205) | ECHOPRT = 0x20
constant EMT_TAGOVF (line 206) | EMT_TAGOVF = 0x1
constant EMUL_ENABLED (line 207) | EMUL_ENABLED = 0x1
constant EMUL_NATIVE (line 208) | EMUL_NATIVE = 0x2
constant ENDRUNDISC (line 209) | ENDRUNDISC = 0x9
constant ETHERMIN (line 210) | ETHERMIN = 0x2e
constant ETHERMTU (line 211) | ETHERMTU = 0x5dc
constant ETHERTYPE_8023 (line 212) | ETHERTYPE_8023 = 0x4
constant ETHERTYPE_AARP (line 213) | ETHERTYPE_AARP = 0x80f3
constant ETHERTYPE_ACCTON (line 214) | ETHERTYPE_ACCTON = 0x8390
constant ETHERTYPE_AEONIC (line 215) | ETHERTYPE_AEONIC = 0x8036
constant ETHERTYPE_ALPHA (line 216) | ETHERTYPE_ALPHA = 0x814a
constant ETHERTYPE_AMBER (line 217) | ETHERTYPE_AMBER = 0x6008
constant ETHERTYPE_AMOEBA (line 218) | ETHERTYPE_AMOEBA = 0x8145
constant ETHERTYPE_AOE (line 219) | ETHERTYPE_AOE = 0x88a2
constant ETHERTYPE_APOLLO (line 220) | ETHERTYPE_APOLLO = 0x80f7
constant ETHERTYPE_APOLLODOMAIN (line 221) | ETHERTYPE_APOLLODOMAIN = 0x8019
constant ETHERTYPE_APPLETALK (line 222) | ETHERTYPE_APPLETALK = 0x809b
constant ETHERTYPE_APPLITEK (line 223) | ETHERTYPE_APPLITEK = 0x80c7
constant ETHERTYPE_ARGONAUT (line 224) | ETHERTYPE_ARGONAUT = 0x803a
constant ETHERTYPE_ARP (line 225) | ETHERTYPE_ARP = 0x806
constant ETHERTYPE_AT (line 226) | ETHERTYPE_AT = 0x809b
constant ETHERTYPE_ATALK (line 227) | ETHERTYPE_ATALK = 0x809b
constant ETHERTYPE_ATOMIC (line 228) | ETHERTYPE_ATOMIC = 0x86df
constant ETHERTYPE_ATT (line 229) | ETHERTYPE_ATT = 0x8069
constant ETHERTYPE_ATTSTANFORD (line 230) | ETHERTYPE_ATTSTANFORD = 0x8008
constant ETHERTYPE_AUTOPHON (line 231) | ETHERTYPE_AUTOPHON = 0x806a
constant ETHERTYPE_AXIS (line 232) | ETHERTYPE_AXIS = 0x8856
constant ETHERTYPE_BCLOOP (line 233) | ETHERTYPE_BCLOOP = 0x9003
constant ETHERTYPE_BOFL (line 234) | ETHERTYPE_BOFL = 0x8102
constant ETHERTYPE_CABLETRON (line 235) | ETHERTYPE_CABLETRON = 0x7034
constant ETHERTYPE_CHAOS (line 236) | ETHERTYPE_CHAOS = 0x804
constant ETHERTYPE_COMDESIGN (line 237) | ETHERTYPE_COMDESIGN = 0x806c
constant ETHERTYPE_COMPUGRAPHIC (line 238) | ETHERTYPE_COMPUGRAPHIC = 0x806d
constant ETHERTYPE_COUNTERPOINT (line 239) | ETHERTYPE_COUNTERPOINT = 0x8062
constant ETHERTYPE_CRONUS (line 240) | ETHERTYPE_CRONUS = 0x8004
constant ETHERTYPE_CRONUSVLN (line 241) | ETHERTYPE_CRONUSVLN = 0x8003
constant ETHERTYPE_DCA (line 242) | ETHERTYPE_DCA = 0x1234
constant ETHERTYPE_DDE (line 243) | ETHERTYPE_DDE = 0x807b
constant ETHERTYPE_DEBNI (line 244) | ETHERTYPE_DEBNI = 0xaaaa
constant ETHERTYPE_DECAM (line 245) | ETHERTYPE_DECAM = 0x8048
constant ETHERTYPE_DECCUST (line 246) | ETHERTYPE_DECCUST = 0x6006
constant ETHERTYPE_DECDIAG (line 247) | ETHERTYPE_DECDIAG = 0x6005
constant ETHERTYPE_DECDNS (line 248) | ETHERTYPE_DECDNS = 0x803c
constant ETHERTYPE_DECDTS (line 249) | ETHERTYPE_DECDTS = 0x803e
constant ETHERTYPE_DECEXPER (line 250) | ETHERTYPE_DECEXPER = 0x6000
constant ETHERTYPE_DECLAST (line 251) | ETHERTYPE_DECLAST = 0x8041
constant ETHERTYPE_DECLTM (line 252) | ETHERTYPE_DECLTM = 0x803f
constant ETHERTYPE_DECMUMPS (line 253) | ETHERTYPE_DECMUMPS = 0x6009
constant ETHERTYPE_DECNETBIOS (line 254) | ETHERTYPE_DECNETBIOS = 0x8040
constant ETHERTYPE_DELTACON (line 255) | ETHERTYPE_DELTACON = 0x86de
constant ETHERTYPE_DIDDLE (line 256) | ETHERTYPE_DIDDLE = 0x4321
constant ETHERTYPE_DLOG1 (line 257) | ETHERTYPE_DLOG1 = 0x660
constant ETHERTYPE_DLOG2 (line 258) | ETHERTYPE_DLOG2 = 0x661
constant ETHERTYPE_DN (line 259) | ETHERTYPE_DN = 0x6003
constant ETHERTYPE_DOGFIGHT (line 260) | ETHERTYPE_DOGFIGHT = 0x1989
constant ETHERTYPE_DSMD (line 261) | ETHERTYPE_DSMD = 0x8039
constant ETHERTYPE_ECMA (line 262) | ETHERTYPE_ECMA = 0x803
constant ETHERTYPE_ENCRYPT (line 263) | ETHERTYPE_ENCRYPT = 0x803d
constant ETHERTYPE_ES (line 264) | ETHERTYPE_ES = 0x805d
constant ETHERTYPE_EXCELAN (line 265) | ETHERTYPE_EXCELAN = 0x8010
constant ETHERTYPE_EXPERDATA (line 266) | ETHERTYPE_EXPERDATA = 0x8049
constant ETHERTYPE_FLIP (line 267) | ETHERTYPE_FLIP = 0x8146
constant ETHERTYPE_FLOWCONTROL (line 268) | ETHERTYPE_FLOWCONTROL = 0x8808
constant ETHERTYPE_FRARP (line 269) | ETHERTYPE_FRARP = 0x808
constant ETHERTYPE_GENDYN (line 270) | ETHERTYPE_GENDYN = 0x8068
constant ETHERTYPE_HAYES (line 271) | ETHERTYPE_HAYES = 0x8130
constant ETHERTYPE_HIPPI_FP (line 272) | ETHERTYPE_HIPPI_FP = 0x8180
constant ETHERTYPE_HITACHI (line 273) | ETHERTYPE_HITACHI = 0x8820
constant ETHERTYPE_HP (line 274) | ETHERTYPE_HP = 0x8005
constant ETHERTYPE_IEEEPUP (line 275) | ETHERTYPE_IEEEPUP = 0xa00
constant ETHERTYPE_IEEEPUPAT (line 276) | ETHERTYPE_IEEEPUPAT = 0xa01
constant ETHERTYPE_IMLBL (line 277) | ETHERTYPE_IMLBL = 0x4c42
constant ETHERTYPE_IMLBLDIAG (line 278) | ETHERTYPE_IMLBLDIAG = 0x424c
constant ETHERTYPE_IP (line 279) | ETHERTYPE_IP = 0x800
constant ETHERTYPE_IPAS (line 280) | ETHERTYPE_IPAS = 0x876c
constant ETHERTYPE_IPV6 (line 281) | ETHERTYPE_IPV6 = 0x86dd
constant ETHERTYPE_IPX (line 282) | ETHERTYPE_IPX = 0x8137
constant ETHERTYPE_IPXNEW (line 283) | ETHERTYPE_IPXNEW = 0x8037
constant ETHERTYPE_KALPANA (line 284) | ETHERTYPE_KALPANA = 0x8582
constant ETHERTYPE_LANBRIDGE (line 285) | ETHERTYPE_LANBRIDGE = 0x8038
constant ETHERTYPE_LANPROBE (line 286) | ETHERTYPE_LANPROBE = 0x8888
constant ETHERTYPE_LAT (line 287) | ETHERTYPE_LAT = 0x6004
constant ETHERTYPE_LBACK (line 288) | ETHERTYPE_LBACK = 0x9000
constant ETHERTYPE_LITTLE (line 289) | ETHERTYPE_LITTLE = 0x8060
constant ETHERTYPE_LLDP (line 290) | ETHERTYPE_LLDP = 0x88cc
constant ETHERTYPE_LOGICRAFT (line 291) | ETHERTYPE_LOGICRAFT = 0x8148
constant ETHERTYPE_LOOPBACK (line 292) | ETHERTYPE_LOOPBACK = 0x9000
constant ETHERTYPE_MATRA (line 293) | ETHERTYPE_MATRA = 0x807a
constant ETHERTYPE_MAX (line 294) | ETHERTYPE_MAX = 0xffff
constant ETHERTYPE_MERIT (line 295) | ETHERTYPE_MERIT = 0x807c
constant ETHERTYPE_MICP (line 296) | ETHERTYPE_MICP = 0x873a
constant ETHERTYPE_MOPDL (line 297) | ETHERTYPE_MOPDL = 0x6001
constant ETHERTYPE_MOPRC (line 298) | ETHERTYPE_MOPRC = 0x6002
constant ETHERTYPE_MOTOROLA (line 299) | ETHERTYPE_MOTOROLA = 0x818d
constant ETHERTYPE_MPLS (line 300) | ETHERTYPE_MPLS = 0x8847
constant ETHERTYPE_MPLS_MCAST (line 301) | ETHERTYPE_MPLS_MCAST = 0x8848
constant ETHERTYPE_MUMPS (line 302) | ETHERTYPE_MUMPS = 0x813f
constant ETHERTYPE_NBPCC (line 303) | ETHERTYPE_NBPCC = 0x3c04
constant ETHERTYPE_NBPCLAIM (line 304) | ETHERTYPE_NBPCLAIM = 0x3c09
constant ETHERTYPE_NBPCLREQ (line 305) | ETHERTYPE_NBPCLREQ = 0x3c05
constant ETHERTYPE_NBPCLRSP (line 306) | ETHERTYPE_NBPCLRSP = 0x3c06
constant ETHERTYPE_NBPCREQ (line 307) | ETHERTYPE_NBPCREQ = 0x3c02
constant ETHERTYPE_NBPCRSP (line 308) | ETHERTYPE_NBPCRSP = 0x3c03
constant ETHERTYPE_NBPDG (line 309) | ETHERTYPE_NBPDG = 0x3c07
constant ETHERTYPE_NBPDGB (line 310) | ETHERTYPE_NBPDGB = 0x3c08
constant ETHERTYPE_NBPDLTE (line 311) | ETHERTYPE_NBPDLTE = 0x3c0a
constant ETHERTYPE_NBPRAR (line 312) | ETHERTYPE_NBPRAR = 0x3c0c
constant ETHERTYPE_NBPRAS (line 313) | ETHERTYPE_NBPRAS = 0x3c0b
constant ETHERTYPE_NBPRST (line 314) | ETHERTYPE_NBPRST = 0x3c0d
constant ETHERTYPE_NBPSCD (line 315) | ETHERTYPE_NBPSCD = 0x3c01
constant ETHERTYPE_NBPVCD (line 316) | ETHERTYPE_NBPVCD = 0x3c00
constant ETHERTYPE_NBS (line 317) | ETHERTYPE_NBS = 0x802
constant ETHERTYPE_NCD (line 318) | ETHERTYPE_NCD = 0x8149
constant ETHERTYPE_NESTAR (line 319) | ETHERTYPE_NESTAR = 0x8006
constant ETHERTYPE_NETBEUI (line 320) | ETHERTYPE_NETBEUI = 0x8191
constant ETHERTYPE_NOVELL (line 321) | ETHERTYPE_NOVELL = 0x8138
constant ETHERTYPE_NS (line 322) | ETHERTYPE_NS = 0x600
constant ETHERTYPE_NSAT (line 323) | ETHERTYPE_NSAT = 0x601
constant ETHERTYPE_NSCOMPAT (line 324) | ETHERTYPE_NSCOMPAT = 0x807
constant ETHERTYPE_NTRAILER (line 325) | ETHERTYPE_NTRAILER = 0x10
constant ETHERTYPE_OS9 (line 326) | ETHERTYPE_OS9 = 0x7007
constant ETHERTYPE_OS9NET (line 327) | ETHERTYPE_OS9NET = 0x7009
constant ETHERTYPE_PACER (line 328) | ETHERTYPE_PACER = 0x80c6
constant ETHERTYPE_PAE (line 329) | ETHERTYPE_PAE = 0x888e
constant ETHERTYPE_PCS (line 330) | ETHERTYPE_PCS = 0x4242
constant ETHERTYPE_PLANNING (line 331) | ETHERTYPE_PLANNING = 0x8044
constant ETHERTYPE_PPP (line 332) | ETHERTYPE_PPP = 0x880b
constant ETHERTYPE_PPPOE (line 333) | ETHERTYPE_PPPOE = 0x8864
constant ETHERTYPE_PPPOEDISC (line 334) | ETHERTYPE_PPPOEDISC = 0x8863
constant ETHERTYPE_PRIMENTS (line 335) | ETHERTYPE_PRIMENTS = 0x7031
constant ETHERTYPE_PUP (line 336) | ETHERTYPE_PUP = 0x200
constant ETHERTYPE_PUPAT (line 337) | ETHERTYPE_PUPAT = 0x200
constant ETHERTYPE_QINQ (line 338) | ETHERTYPE_QINQ = 0x88a8
constant ETHERTYPE_RACAL (line 339) | ETHERTYPE_RACAL = 0x7030
constant ETHERTYPE_RATIONAL (line 340) | ETHERTYPE_RATIONAL = 0x8150
constant ETHERTYPE_RAWFR (line 341) | ETHERTYPE_RAWFR = 0x6559
constant ETHERTYPE_RCL (line 342) | ETHERTYPE_RCL = 0x1995
constant ETHERTYPE_RDP (line 343) | ETHERTYPE_RDP = 0x8739
constant ETHERTYPE_RETIX (line 344) | ETHERTYPE_RETIX = 0x80f2
constant ETHERTYPE_REVARP (line 345) | ETHERTYPE_REVARP = 0x8035
constant ETHERTYPE_SCA (line 346) | ETHERTYPE_SCA = 0x6007
constant ETHERTYPE_SECTRA (line 347) | ETHERTYPE_SECTRA = 0x86db
constant ETHERTYPE_SECUREDATA (line 348) | ETHERTYPE_SECUREDATA = 0x876d
constant ETHERTYPE_SGITW (line 349) | ETHERTYPE_SGITW = 0x817e
constant ETHERTYPE_SG_BOUNCE (line 350) | ETHERTYPE_SG_BOUNCE = 0x8016
constant ETHERTYPE_SG_DIAG (line 351) | ETHERTYPE_SG_DIAG = 0x8013
constant ETHERTYPE_SG_NETGAMES (line 352) | ETHERTYPE_SG_NETGAMES = 0x8014
constant ETHERTYPE_SG_RESV (line 353) | ETHERTYPE_SG_RESV = 0x8015
constant ETHERTYPE_SIMNET (line 354) | ETHERTYPE_SIMNET = 0x5208
constant ETHERTYPE_SLOW (line 355) | ETHERTYPE_SLOW = 0x8809
constant ETHERTYPE_SNA (line 356) | ETHERTYPE_SNA = 0x80d5
constant ETHERTYPE_SNMP (line 357) | ETHERTYPE_SNMP = 0x814c
constant ETHERTYPE_SONIX (line 358) | ETHERTYPE_SONIX = 0xfaf5
constant ETHERTYPE_SPIDER (line 359) | ETHERTYPE_SPIDER = 0x809f
constant ETHERTYPE_SPRITE (line 360) | ETHERTYPE_SPRITE = 0x500
constant ETHERTYPE_STP (line 361) | ETHERTYPE_STP = 0x8181
constant ETHERTYPE_TALARIS (line 362) | ETHERTYPE_TALARIS = 0x812b
constant ETHERTYPE_TALARISMC (line 363) | ETHERTYPE_TALARISMC = 0x852b
constant ETHERTYPE_TCPCOMP (line 364) | ETHERTYPE_TCPCOMP = 0x876b
constant ETHERTYPE_TCPSM (line 365) | ETHERTYPE_TCPSM = 0x9002
constant ETHERTYPE_TEC (line 366) | ETHERTYPE_TEC = 0x814f
constant ETHERTYPE_TIGAN (line 367) | ETHERTYPE_TIGAN = 0x802f
constant ETHERTYPE_TRAIL (line 368) | ETHERTYPE_TRAIL = 0x1000
constant ETHERTYPE_TRANSETHER (line 369) | ETHERTYPE_TRANSETHER = 0x6558
constant ETHERTYPE_TYMSHARE (line 370) | ETHERTYPE_TYMSHARE = 0x802e
constant ETHERTYPE_UBBST (line 371) | ETHERTYPE_UBBST = 0x7005
constant ETHERTYPE_UBDEBUG (line 372) | ETHERTYPE_UBDEBUG = 0x900
constant ETHERTYPE_UBDIAGLOOP (line 373) | ETHERTYPE_UBDIAGLOOP = 0x7002
constant ETHERTYPE_UBDL (line 374) | ETHERTYPE_UBDL = 0x7000
constant ETHERTYPE_UBNIU (line 375) | ETHERTYPE_UBNIU = 0x7001
constant ETHERTYPE_UBNMC (line 376) | ETHERTYPE_UBNMC = 0x7003
constant ETHERTYPE_VALID (line 377) | ETHERTYPE_VALID = 0x1600
constant ETHERTYPE_VARIAN (line 378) | ETHERTYPE_VARIAN = 0x80dd
constant ETHERTYPE_VAXELN (line 379) | ETHERTYPE_VAXELN = 0x803b
constant ETHERTYPE_VEECO (line 380) | ETHERTYPE_VEECO = 0x8067
constant ETHERTYPE_VEXP (line 381) | ETHERTYPE_VEXP = 0x805b
constant ETHERTYPE_VGLAB (line 382) | ETHERTYPE_VGLAB = 0x8131
constant ETHERTYPE_VINES (line 383) | ETHERTYPE_VINES = 0xbad
constant ETHERTYPE_VINESECHO (line 384) | ETHERTYPE_VINESECHO = 0xbaf
constant ETHERTYPE_VINESLOOP (line 385) | ETHERTYPE_VINESLOOP = 0xbae
constant ETHERTYPE_VITAL (line 386) | ETHERTYPE_VITAL = 0xff00
constant ETHERTYPE_VLAN (line 387) | ETHERTYPE_VLAN = 0x8100
constant ETHERTYPE_VLTLMAN (line 388) | ETHERTYPE_VLTLMAN = 0x8080
constant ETHERTYPE_VPROD (line 389) | ETHERTYPE_VPROD = 0x805c
constant ETHERTYPE_VURESERVED (line 390) | ETHERTYPE_VURESERVED = 0x8147
constant ETHERTYPE_WATERLOO (line 391) | ETHERTYPE_WATERLOO = 0x8130
constant ETHERTYPE_WELLFLEET (line 392) | ETHERTYPE_WELLFLEET = 0x8103
constant ETHERTYPE_X25 (line 393) | ETHERTYPE_X25 = 0x805
constant ETHERTYPE_X75 (line 394) | ETHERTYPE_X75 = 0x801
constant ETHERTYPE_XNSSM (line 395) | ETHERTYPE_XNSSM = 0x9001
constant ETHERTYPE_XTP (line 396) | ETHERTYPE_XTP = 0x817d
constant ETHER_ADDR_LEN (line 397) | ETHER_ADDR_LEN = 0x6
constant ETHER_ALIGN (line 398) | ETHER_ALIGN = 0x2
constant ETHER_CRC_LEN (line 399) | ETHER_CRC_LEN = 0x4
constant ETHER_CRC_POLY_BE (line 400) | ETHER_CRC_POLY_BE = 0x4c11db6
constant ETHER_CRC_POLY_LE (line 401) | ETHER_CRC_POLY_LE = 0xedb88320
constant ETHER_HDR_LEN (line 402) | ETHER_HDR_LEN = 0xe
constant ETHER_MAX_DIX_LEN (line 403) | ETHER_MAX_DIX_LEN = 0x600
constant ETHER_MAX_LEN (line 404) | ETHER_MAX_LEN = 0x5ee
constant ETHER_MIN_LEN (line 405) | ETHER_MIN_LEN = 0x40
constant ETHER_TYPE_LEN (line 406) | ETHER_TYPE_LEN = 0x2
constant ETHER_VLAN_ENCAP_LEN (line 407) | ETHER_VLAN_ENCAP_LEN = 0x4
constant EVFILT_AIO (line 408) | EVFILT_AIO = -0x3
constant EVFILT_PROC (line 409) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 410) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 411) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 412) | EVFILT_SYSCOUNT = 0x7
constant EVFILT_TIMER (line 413) | EVFILT_TIMER = -0x7
constant EVFILT_VNODE (line 414) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 415) | EVFILT_WRITE = -0x2
constant EV_ADD (line 416) | EV_ADD = 0x1
constant EV_CLEAR (line 417) | EV_CLEAR = 0x20
constant EV_DELETE (line 418) | EV_DELETE = 0x2
constant EV_DISABLE (line 419) | EV_DISABLE = 0x8
constant EV_ENABLE (line 420) | EV_ENABLE = 0x4
constant EV_EOF (line 421) | EV_EOF = 0x8000
constant EV_ERROR (line 422) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 423) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 424) | EV_ONESHOT = 0x10
constant EV_SYSFLAGS (line 425) | EV_SYSFLAGS = 0xf000
constant EXTA (line 426) | EXTA = 0x4b00
constant EXTB (line 427) | EXTB = 0x9600
constant EXTPROC (line 428) | EXTPROC = 0x800
constant FD_CLOEXEC (line 429) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 430) | FD_SETSIZE = 0x400
constant FLUSHO (line 431) | FLUSHO = 0x800000
constant F_DUPFD (line 432) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 433) | F_DUPFD_CLOEXEC = 0xa
constant F_GETFD (line 434) | F_GETFD = 0x1
constant F_GETFL (line 435) | F_GETFL = 0x3
constant F_GETLK (line 436) | F_GETLK = 0x7
constant F_GETOWN (line 437) | F_GETOWN = 0x5
constant F_OK (line 438) | F_OK = 0x0
constant F_RDLCK (line 439) | F_RDLCK = 0x1
constant F_SETFD (line 440) | F_SETFD = 0x2
constant F_SETFL (line 441) | F_SETFL = 0x4
constant F_SETLK (line 442) | F_SETLK = 0x8
constant F_SETLKW (line 443) | F_SETLKW = 0x9
constant F_SETOWN (line 444) | F_SETOWN = 0x6
constant F_UNLCK (line 445) | F_UNLCK = 0x2
constant F_WRLCK (line 446) | F_WRLCK = 0x3
constant HUPCL (line 447) | HUPCL = 0x4000
constant HW_MACHINE (line 448) | HW_MACHINE = 0x1
constant ICANON (line 449) | ICANON = 0x100
constant ICMP6_FILTER (line 450) | ICMP6_FILTER = 0x12
constant ICRNL (line 451) | ICRNL = 0x100
constant IEXTEN (line 452) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 453) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 454) | IFAN_DEPARTURE = 0x1
constant IFA_ROUTE (line 455) | IFA_ROUTE = 0x1
constant IFF_ALLMULTI (line 456) | IFF_ALLMULTI = 0x200
constant IFF_BROADCAST (line 457) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 458) | IFF_CANTCHANGE = 0x8e52
constant IFF_DEBUG (line 459) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 460) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 461) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 462) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 463) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 464) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 465) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 466) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 467) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 468) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 469) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 470) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 471) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 472) | IFF_UP = 0x1
constant IFNAMSIZ (line 473) | IFNAMSIZ = 0x10
constant IFT_1822 (line 474) | IFT_1822 = 0x2
constant IFT_A12MPPSWITCH (line 475) | IFT_A12MPPSWITCH = 0x82
constant IFT_AAL2 (line 476) | IFT_AAL2 = 0xbb
constant IFT_AAL5 (line 477) | IFT_AAL5 = 0x31
constant IFT_ADSL (line 478) | IFT_ADSL = 0x5e
constant IFT_AFLANE8023 (line 479) | IFT_AFLANE8023 = 0x3b
constant IFT_AFLANE8025 (line 480) | IFT_AFLANE8025 = 0x3c
constant IFT_ARAP (line 481) | IFT_ARAP = 0x58
constant IFT_ARCNET (line 482) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 483) | IFT_ARCNETPLUS = 0x24
constant IFT_ASYNC (line 484) | IFT_ASYNC = 0x54
constant IFT_ATM (line 485) | IFT_ATM = 0x25
constant IFT_ATMDXI (line 486) | IFT_ATMDXI = 0x69
constant IFT_ATMFUNI (line 487) | IFT_ATMFUNI = 0x6a
constant IFT_ATMIMA (line 488) | IFT_ATMIMA = 0x6b
constant IFT_ATMLOGICAL (line 489) | IFT_ATMLOGICAL = 0x50
constant IFT_ATMRADIO (line 490) | IFT_ATMRADIO = 0xbd
constant IFT_ATMSUBINTERFACE (line 491) | IFT_ATMSUBINTERFACE = 0x86
constant IFT_ATMVCIENDPT (line 492) | IFT_ATMVCIENDPT = 0xc2
constant IFT_ATMVIRTUAL (line 493) | IFT_ATMVIRTUAL = 0x95
constant IFT_BGPPOLICYACCOUNTING (line 494) | IFT_BGPPOLICYACCOUNTING = 0xa2
constant IFT_BLUETOOTH (line 495) | IFT_BLUETOOTH = 0xf8
constant IFT_BRIDGE (line 496) | IFT_BRIDGE = 0xd1
constant IFT_BSC (line 497) | IFT_BSC = 0x53
constant IFT_CARP (line 498) | IFT_CARP = 0xf7
constant IFT_CCTEMUL (line 499) | IFT_CCTEMUL = 0x3d
constant IFT_CEPT (line 500) | IFT_CEPT = 0x13
constant IFT_CES (line 501) | IFT_CES = 0x85
constant IFT_CHANNEL (line 502) | IFT_CHANNEL = 0x46
constant IFT_CNR (line 503) | IFT_CNR = 0x55
constant IFT_COFFEE (line 504) | IFT_COFFEE = 0x84
constant IFT_COMPOSITELINK (line 505) | IFT_COMPOSITELINK = 0x9b
constant IFT_DCN (line 506) | IFT_DCN = 0x8d
constant IFT_DIGITALPOWERLINE (line 507) | IFT_DIGITALPOWERLINE = 0x8a
constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 508) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
constant IFT_DLSW (line 509) | IFT_DLSW = 0x4a
constant IFT_DOCSCABLEDOWNSTREAM (line 510) | IFT_DOCSCABLEDOWNSTREAM = 0x80
constant IFT_DOCSCABLEMACLAYER (line 511) | IFT_DOCSCABLEMACLAYER = 0x7f
constant IFT_DOCSCABLEUPSTREAM (line 512) | IFT_DOCSCABLEUPSTREAM = 0x81
constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 513) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd
constant IFT_DS0 (line 514) | IFT_DS0 = 0x51
constant IFT_DS0BUNDLE (line 515) | IFT_DS0BUNDLE = 0x52
constant IFT_DS1FDL (line 516) | IFT_DS1FDL = 0xaa
constant IFT_DS3 (line 517) | IFT_DS3 = 0x1e
constant IFT_DTM (line 518) | IFT_DTM = 0x8c
constant IFT_DUMMY (line 519) | IFT_DUMMY = 0xf1
constant IFT_DVBASILN (line 520) | IFT_DVBASILN = 0xac
constant IFT_DVBASIOUT (line 521) | IFT_DVBASIOUT = 0xad
constant IFT_DVBRCCDOWNSTREAM (line 522) | IFT_DVBRCCDOWNSTREAM = 0x93
constant IFT_DVBRCCMACLAYER (line 523) | IFT_DVBRCCMACLAYER = 0x92
constant IFT_DVBRCCUPSTREAM (line 524) | IFT_DVBRCCUPSTREAM = 0x94
constant IFT_ECONET (line 525) | IFT_ECONET = 0xce
constant IFT_ENC (line 526) | IFT_ENC = 0xf4
constant IFT_EON (line 527) | IFT_EON = 0x19
constant IFT_EPLRS (line 528) | IFT_EPLRS = 0x57
constant IFT_ESCON (line 529) | IFT_ESCON = 0x49
constant IFT_ETHER (line 530) | IFT_ETHER = 0x6
constant IFT_FAITH (line 531) | IFT_FAITH = 0xf3
constant IFT_FAST (line 532) | IFT_FAST = 0x7d
constant IFT_FASTETHER (line 533) | IFT_FASTETHER = 0x3e
constant IFT_FASTETHERFX (line 534) | IFT_FASTETHERFX = 0x45
constant IFT_FDDI (line 535) | IFT_FDDI = 0xf
constant IFT_FIBRECHANNEL (line 536) | IFT_FIBRECHANNEL = 0x38
constant IFT_FRAMERELAYINTERCONNECT (line 537) | IFT_FRAMERELAYINTERCONNECT = 0x3a
constant IFT_FRAMERELAYMPI (line 538) | IFT_FRAMERELAYMPI = 0x5c
constant IFT_FRDLCIENDPT (line 539) | IFT_FRDLCIENDPT = 0xc1
constant IFT_FRELAY (line 540) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 541) | IFT_FRELAYDCE = 0x2c
constant IFT_FRF16MFRBUNDLE (line 542) | IFT_FRF16MFRBUNDLE = 0xa3
constant IFT_FRFORWARD (line 543) | IFT_FRFORWARD = 0x9e
constant IFT_G703AT2MB (line 544) | IFT_G703AT2MB = 0x43
constant IFT_G703AT64K (line 545) | IFT_G703AT64K = 0x42
constant IFT_GIF (line 546) | IFT_GIF = 0xf0
constant IFT_GIGABITETHERNET (line 547) | IFT_GIGABITETHERNET = 0x75
constant IFT_GR303IDT (line 548) | IFT_GR303IDT = 0xb2
constant IFT_GR303RDT (line 549) | IFT_GR303RDT = 0xb1
constant IFT_H323GATEKEEPER (line 550) | IFT_H323GATEKEEPER = 0xa4
constant IFT_H323PROXY (line 551) | IFT_H323PROXY = 0xa5
constant IFT_HDH1822 (line 552) | IFT_HDH1822 = 0x3
constant IFT_HDLC (line 553) | IFT_HDLC = 0x76
constant IFT_HDSL2 (line 554) | IFT_HDSL2 = 0xa8
constant IFT_HIPERLAN2 (line 555) | IFT_HIPERLAN2 = 0xb7
constant IFT_HIPPI (line 556) | IFT_HIPPI = 0x2f
constant IFT_HIPPIINTERFACE (line 557) | IFT_HIPPIINTERFACE = 0x39
constant IFT_HOSTPAD (line 558) | IFT_HOSTPAD = 0x5a
constant IFT_HSSI (line 559) | IFT_HSSI = 0x2e
constant IFT_HY (line 560) | IFT_HY = 0xe
constant IFT_IBM370PARCHAN (line 561) | IFT_IBM370PARCHAN = 0x48
constant IFT_IDSL (line 562) | IFT_IDSL = 0x9a
constant IFT_IEEE1394 (line 563) | IFT_IEEE1394 = 0x90
constant IFT_IEEE80211 (line 564) | IFT_IEEE80211 = 0x47
constant IFT_IEEE80212 (line 565) | IFT_IEEE80212 = 0x37
constant IFT_IEEE8023ADLAG (line 566) | IFT_IEEE8023ADLAG = 0xa1
constant IFT_IFGSN (line 567) | IFT_IFGSN = 0x91
constant IFT_IMT (line 568) | IFT_IMT = 0xbe
constant IFT_INFINIBAND (line 569) | IFT_INFINIBAND = 0xc7
constant IFT_INTERLEAVE (line 570) | IFT_INTERLEAVE = 0x7c
constant IFT_IP (line 571) | IFT_IP = 0x7e
constant IFT_IPFORWARD (line 572) | IFT_IPFORWARD = 0x8e
constant IFT_IPOVERATM (line 573) | IFT_IPOVERATM = 0x72
constant IFT_IPOVERCDLC (line 574) | IFT_IPOVERCDLC = 0x6d
constant IFT_IPOVERCLAW (line 575) | IFT_IPOVERCLAW = 0x6e
constant IFT_IPSWITCH (line 576) | IFT_IPSWITCH = 0x4e
constant IFT_ISDN (line 577) | IFT_ISDN = 0x3f
constant IFT_ISDNBASIC (line 578) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 579) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISDNS (line 580) | IFT_ISDNS = 0x4b
constant IFT_ISDNU (line 581) | IFT_ISDNU = 0x4c
constant IFT_ISO88022LLC (line 582) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 583) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 584) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 585) | IFT_ISO88025 = 0x9
constant IFT_ISO88025CRFPINT (line 586) | IFT_ISO88025CRFPINT = 0x62
constant IFT_ISO88025DTR (line 587) | IFT_ISO88025DTR = 0x56
constant IFT_ISO88025FIBER (line 588) | IFT_ISO88025FIBER = 0x73
constant IFT_ISO88026 (line 589) | IFT_ISO88026 = 0xa
constant IFT_ISUP (line 590) | IFT_ISUP = 0xb3
constant IFT_L2VLAN (line 591) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 592) | IFT_L3IPVLAN = 0x88
constant IFT_L3IPXVLAN (line 593) | IFT_L3IPXVLAN = 0x89
constant IFT_LAPB (line 594) | IFT_LAPB = 0x10
constant IFT_LAPD (line 595) | IFT_LAPD = 0x4d
constant IFT_LAPF (line 596) | IFT_LAPF = 0x77
constant IFT_LINEGROUP (line 597) | IFT_LINEGROUP = 0xd2
constant IFT_LOCALTALK (line 598) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 599) | IFT_LOOP = 0x18
constant IFT_MEDIAMAILOVERIP (line 600) | IFT_MEDIAMAILOVERIP = 0x8b
constant IFT_MFSIGLINK (line 601) | IFT_MFSIGLINK = 0xa7
constant IFT_MIOX25 (line 602) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 603) | IFT_MODEM = 0x30
constant IFT_MPC (line 604) | IFT_MPC = 0x71
constant IFT_MPLS (line 605) | IFT_MPLS = 0xa6
constant IFT_MPLSTUNNEL (line 606) | IFT_MPLSTUNNEL = 0x96
constant IFT_MSDSL (line 607) | IFT_MSDSL = 0x8f
constant IFT_MVL (line 608) | IFT_MVL = 0xbf
constant IFT_MYRINET (line 609) | IFT_MYRINET = 0x63
constant IFT_NFAS (line 610) | IFT_NFAS = 0xaf
constant IFT_NSIP (line 611) | IFT_NSIP = 0x1b
constant IFT_OPTICALCHANNEL (line 612) | IFT_OPTICALCHANNEL = 0xc3
constant IFT_OPTICALTRANSPORT (line 613) | IFT_OPTICALTRANSPORT = 0xc4
constant IFT_OTHER (line 614) | IFT_OTHER = 0x1
constant IFT_P10 (line 615) | IFT_P10 = 0xc
constant IFT_P80 (line 616) | IFT_P80 = 0xd
constant IFT_PARA (line 617) | IFT_PARA = 0x22
constant IFT_PFLOG (line 618) | IFT_PFLOG = 0xf5
constant IFT_PFLOW (line 619) | IFT_PFLOW = 0xf9
constant IFT_PFSYNC (line 620) | IFT_PFSYNC = 0xf6
constant IFT_PLC (line 621) | IFT_PLC = 0xae
constant IFT_PON155 (line 622) | IFT_PON155 = 0xcf
constant IFT_PON622 (line 623) | IFT_PON622 = 0xd0
constant IFT_POS (line 624) | IFT_POS = 0xab
constant IFT_PPP (line 625) | IFT_PPP = 0x17
constant IFT_PPPMULTILINKBUNDLE (line 626) | IFT_PPPMULTILINKBUNDLE = 0x6c
constant IFT_PROPATM (line 627) | IFT_PROPATM = 0xc5
constant IFT_PROPBWAP2MP (line 628) | IFT_PROPBWAP2MP = 0xb8
constant IFT_PROPCNLS (line 629) | IFT_PROPCNLS = 0x59
constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 630) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5
constant IFT_PROPDOCSWIRELESSMACLAYER (line 631) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4
constant IFT_PROPDOCSWIRELESSUPSTREAM (line 632) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6
constant IFT_PROPMUX (line 633) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 634) | IFT_PROPVIRTUAL = 0x35
constant IFT_PROPWIRELESSP2P (line 635) | IFT_PROPWIRELESSP2P = 0x9d
constant IFT_PTPSERIAL (line 636) | IFT_PTPSERIAL = 0x16
constant IFT_PVC (line 637) | IFT_PVC = 0xf2
constant IFT_Q2931 (line 638) | IFT_Q2931 = 0xc9
constant IFT_QLLC (line 639) | IFT_QLLC = 0x44
constant IFT_RADIOMAC (line 640) | IFT_RADIOMAC = 0xbc
constant IFT_RADSL (line 641) | IFT_RADSL = 0x5f
constant IFT_REACHDSL (line 642) | IFT_REACHDSL = 0xc0
constant IFT_RFC1483 (line 643) | IFT_RFC1483 = 0x9f
constant IFT_RS232 (line 644) | IFT_RS232 = 0x21
constant IFT_RSRB (line 645) | IFT_RSRB = 0x4f
constant IFT_SDLC (line 646) | IFT_SDLC = 0x11
constant IFT_SDSL (line 647) | IFT_SDSL = 0x60
constant IFT_SHDSL (line 648) | IFT_SHDSL = 0xa9
constant IFT_SIP (line 649) | IFT_SIP = 0x1f
constant IFT_SIPSIG (line 650) | IFT_SIPSIG = 0xcc
constant IFT_SIPTG (line 651) | IFT_SIPTG = 0xcb
constant IFT_SLIP (line 652) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 653) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 654) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 655) | IFT_SONET = 0x27
constant IFT_SONETOVERHEADCHANNEL (line 656) | IFT_SONETOVERHEADCHANNEL = 0xb9
constant IFT_SONETPATH (line 657) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 658) | IFT_SONETVT = 0x33
constant IFT_SRP (line 659) | IFT_SRP = 0x97
constant IFT_SS7SIGLINK (line 660) | IFT_SS7SIGLINK = 0x9c
constant IFT_STACKTOSTACK (line 661) | IFT_STACKTOSTACK = 0x6f
constant IFT_STARLAN (line 662) | IFT_STARLAN = 0xb
constant IFT_T1 (line 663) | IFT_T1 = 0x12
constant IFT_TDLC (line 664) | IFT_TDLC = 0x74
constant IFT_TELINK (line 665) | IFT_TELINK = 0xc8
constant IFT_TERMPAD (line 666) | IFT_TERMPAD = 0x5b
constant IFT_TR008 (line 667) | IFT_TR008 = 0xb0
constant IFT_TRANSPHDLC (line 668) | IFT_TRANSPHDLC = 0x7b
constant IFT_TUNNEL (line 669) | IFT_TUNNEL = 0x83
constant IFT_ULTRA (line 670) | IFT_ULTRA = 0x1d
constant IFT_USB (line 671) | IFT_USB = 0xa0
constant IFT_V11 (line 672) | IFT_V11 = 0x40
constant IFT_V35 (line 673) | IFT_V35 = 0x2d
constant IFT_V36 (line 674) | IFT_V36 = 0x41
constant IFT_V37 (line 675) | IFT_V37 = 0x78
constant IFT_VDSL (line 676) | IFT_VDSL = 0x61
constant IFT_VIRTUALIPADDRESS (line 677) | IFT_VIRTUALIPADDRESS = 0x70
constant IFT_VIRTUALTG (line 678) | IFT_VIRTUALTG = 0xca
constant IFT_VOICEDID (line 679) | IFT_VOICEDID = 0xd5
constant IFT_VOICEEM (line 680) | IFT_VOICEEM = 0x64
constant IFT_VOICEEMFGD (line 681) | IFT_VOICEEMFGD = 0xd3
constant IFT_VOICEENCAP (line 682) | IFT_VOICEENCAP = 0x67
constant IFT_VOICEFGDEANA (line 683) | IFT_VOICEFGDEANA = 0xd4
constant IFT_VOICEFXO (line 684) | IFT_VOICEFXO = 0x65
constant IFT_VOICEFXS (line 685) | IFT_VOICEFXS = 0x66
constant IFT_VOICEOVERATM (line 686) | IFT_VOICEOVERATM = 0x98
constant IFT_VOICEOVERCABLE (line 687) | IFT_VOICEOVERCABLE = 0xc6
constant IFT_VOICEOVERFRAMERELAY (line 688) | IFT_VOICEOVERFRAMERELAY = 0x99
constant IFT_VOICEOVERIP (line 689) | IFT_VOICEOVERIP = 0x68
constant IFT_X213 (line 690) | IFT_X213 = 0x5d
constant IFT_X25 (line 691) | IFT_X25 = 0x5
constant IFT_X25DDN (line 692) | IFT_X25DDN = 0x4
constant IFT_X25HUNTGROUP (line 693) | IFT_X25HUNTGROUP = 0x7a
constant IFT_X25MLP (line 694) | IFT_X25MLP = 0x79
constant IFT_X25PLE (line 695) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 696) | IFT_XETHER = 0x1a
constant IGNBRK (line 697) | IGNBRK = 0x1
constant IGNCR (line 698) | IGNCR = 0x80
constant IGNPAR (line 699) | IGNPAR = 0x4
constant IMAXBEL (line 700) | IMAXBEL = 0x2000
constant INLCR (line 701) | INLCR = 0x40
constant INPCK (line 702) | INPCK = 0x10
constant IN_CLASSA_HOST (line 703) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 704) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 705) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 706) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 707) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 708) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 709) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 710) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 711) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 712) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 713) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 714) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 715) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 716) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 717) | IN_LOOPBACKNET = 0x7f
constant IN_RFC3021_HOST (line 718) | IN_RFC3021_HOST = 0x1
constant IN_RFC3021_NET (line 719) | IN_RFC3021_NET = 0xfffffffe
constant IN_RFC3021_NSHIFT (line 720) | IN_RFC3021_NSHIFT = 0x1f
constant IPPROTO_AH (line 721) | IPPROTO_AH = 0x33
constant IPPROTO_CARP (line 722) | IPPROTO_CARP = 0x70
constant IPPROTO_DIVERT (line 723) | IPPROTO_DIVERT = 0x102
constant IPPROTO_DIVERT_INIT (line 724) | IPPROTO_DIVERT_INIT = 0x2
constant IPPROTO_DIVERT_RESP (line 725) | IPPROTO_DIVERT_RESP = 0x1
constant IPPROTO_DONE (line 726) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 727) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 728) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 729) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 730) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 731) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 732) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 733) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 734) | IPPROTO_GGP = 0x3
constant IPPROTO_GRE (line 735) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 736) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 737) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 738) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 739) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 740) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 741) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 742) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPIP (line 743) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV4 (line 744) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 745) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MAX (line 746) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 747) | IPPROTO_MAXID = 0x103
constant IPPROTO_MOBILE (line 748) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MPLS (line 749) | IPPROTO_MPLS = 0x89
constant IPPROTO_NONE (line 750) | IPPROTO_NONE = 0x3b
constant IPPROTO_PFSYNC (line 751) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PIM (line 752) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 753) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 754) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 755) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 756) | IPPROTO_RSVP = 0x2e
constant IPPROTO_TCP (line 757) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 758) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 759) | IPPROTO_UDP = 0x11
constant IPV6_AUTH_LEVEL (line 760) | IPV6_AUTH_LEVEL = 0x35
constant IPV6_AUTOFLOWLABEL (line 761) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_CHECKSUM (line 762) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 763) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 764) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 765) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 766) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 767) | IPV6_DSTOPTS = 0x32
constant IPV6_ESP_NETWORK_LEVEL (line 768) | IPV6_ESP_NETWORK_LEVEL = 0x37
constant IPV6_ESP_TRANS_LEVEL (line 769) | IPV6_ESP_TRANS_LEVEL = 0x36
constant IPV6_FAITH (line 770) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 771) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 772) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FRAGTTL (line 773) | IPV6_FRAGTTL = 0x78
constant IPV6_HLIMDEC (line 774) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 775) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 776) | IPV6_HOPOPTS = 0x31
constant IPV6_IPCOMP_LEVEL (line 777) | IPV6_IPCOMP_LEVEL = 0x3c
constant IPV6_JOIN_GROUP (line 778) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 779) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 780) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXPACKET (line 781) | IPV6_MAXPACKET = 0xffff
constant IPV6_MMTU (line 782) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 783) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 784) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 785) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 786) | IPV6_NEXTHOP = 0x30
constant IPV6_OPTIONS (line 787) | IPV6_OPTIONS = 0x1
constant IPV6_PATHMTU (line 788) | IPV6_PATHMTU = 0x2c
constant IPV6_PIPEX (line 789) | IPV6_PIPEX = 0x3f
constant IPV6_PKTINFO (line 790) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 791) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 792) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 793) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 794) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVDSTOPTS (line 795) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVDSTPORT (line 796) | IPV6_RECVDSTPORT = 0x40
constant IPV6_RECVHOPLIMIT (line 797) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 798) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 799) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 800) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRTHDR (line 801) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 802) | IPV6_RECVTCLASS = 0x39
constant IPV6_RTABLE (line 803) | IPV6_RTABLE = 0x1021
constant IPV6_RTHDR (line 804) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 805) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 806) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 807) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 808) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 809) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 810) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 811) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 812) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 813) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 814) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 815) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 816) | IP_ADD_MEMBERSHIP = 0xc
constant IP_AUTH_LEVEL (line 817) | IP_AUTH_LEVEL = 0x14
constant IP_DEFAULT_MULTICAST_LOOP (line 818) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 819) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 820) | IP_DF = 0x4000
constant IP_DIVERTFL (line 821) | IP_DIVERTFL = 0x1022
constant IP_DROP_MEMBERSHIP (line 822) | IP_DROP_MEMBERSHIP = 0xd
constant IP_ESP_NETWORK_LEVEL (line 823) | IP_ESP_NETWORK_LEVEL = 0x16
constant IP_ESP_TRANS_LEVEL (line 824) | IP_ESP_TRANS_LEVEL = 0x15
constant IP_HDRINCL (line 825) | IP_HDRINCL = 0x2
constant IP_IPCOMP_LEVEL (line 826) | IP_IPCOMP_LEVEL = 0x1d
constant IP_IPSECFLOWINFO (line 827) | IP_IPSECFLOWINFO = 0x24
constant IP_IPSEC_LOCAL_AUTH (line 828) | IP_IPSEC_LOCAL_AUTH = 0x1b
constant IP_IPSEC_LOCAL_CRED (line 829) | IP_IPSEC_LOCAL_CRED = 0x19
constant IP_IPSEC_LOCAL_ID (line 830) | IP_IPSEC_LOCAL_ID = 0x17
constant IP_IPSEC_REMOTE_AUTH (line 831) | IP_IPSEC_REMOTE_AUTH = 0x1c
constant IP_IPSEC_REMOTE_CRED (line 832) | IP_IPSEC_REMOTE_CRED = 0x1a
constant IP_IPSEC_REMOTE_ID (line 833) | IP_IPSEC_REMOTE_ID = 0x18
constant IP_MAXPACKET (line 834) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 835) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MF (line 836) | IP_MF = 0x2000
constant IP_MINTTL (line 837) | IP_MINTTL = 0x20
constant IP_MIN_MEMBERSHIPS (line 838) | IP_MIN_MEMBERSHIPS = 0xf
constant IP_MSS (line 839) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 840) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 841) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 842) | IP_MULTICAST_TTL = 0xa
constant IP_OFFMASK (line 843) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 844) | IP_OPTIONS = 0x1
constant IP_PIPEX (line 845) | IP_PIPEX = 0x22
constant IP_PORTRANGE (line 846) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 847) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 848) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 849) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 850) | IP_RECVDSTADDR = 0x7
constant IP_RECVDSTPORT (line 851) | IP_RECVDSTPORT = 0x21
constant IP_RECVIF (line 852) | IP_RECVIF = 0x1e
constant IP_RECVOPTS (line 853) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 854) | IP_RECVRETOPTS = 0x6
constant IP_RECVRTABLE (line 855) | IP_RECVRTABLE = 0x23
constant IP_RECVTTL (line 856) | IP_RECVTTL = 0x1f
constant IP_RETOPTS (line 857) | IP_RETOPTS = 0x8
constant IP_RF (line 858) | IP_RF = 0x8000
constant IP_RTABLE (line 859) | IP_RTABLE = 0x1021
constant IP_TOS (line 860) | IP_TOS = 0x3
constant IP_TTL (line 861) | IP_TTL = 0x4
constant ISIG (line 862) | ISIG = 0x80
constant ISTRIP (line 863) | ISTRIP = 0x20
constant IXANY (line 864) | IXANY = 0x800
constant IXOFF (line 865) | IXOFF = 0x400
constant IXON (line 866) | IXON = 0x200
constant KERN_HOSTNAME (line 867) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 868) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 869) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 870) | KERN_VERSION = 0x4
constant LCNT_OVERLOAD_FLUSH (line 871) | LCNT_OVERLOAD_FLUSH = 0x6
constant LOCK_EX (line 872) | LOCK_EX = 0x2
constant LOCK_NB (line 873) | LOCK_NB = 0x4
constant LOCK_SH (line 874) | LOCK_SH = 0x1
constant LOCK_UN (line 875) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 876) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 877) | MADV_FREE = 0x6
constant MADV_NORMAL (line 878) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 879) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 880) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 881) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 882) | MADV_WILLNEED = 0x3
constant MAP_ANON (line 883) | MAP_ANON = 0x1000
constant MAP_COPY (line 884) | MAP_COPY = 0x4
constant MAP_FILE (line 885) | MAP_FILE = 0x0
constant MAP_FIXED (line 886) | MAP_FIXED = 0x10
constant MAP_FLAGMASK (line 887) | MAP_FLAGMASK = 0x1ff7
constant MAP_HASSEMAPHORE (line 888) | MAP_HASSEMAPHORE = 0x200
constant MAP_INHERIT (line 889) | MAP_INHERIT = 0x80
constant MAP_INHERIT_COPY (line 890) | MAP_INHERIT_COPY = 0x1
constant MAP_INHERIT_DONATE_COPY (line 891) | MAP_INHERIT_DONATE_COPY = 0x3
constant MAP_INHERIT_NONE (line 892) | MAP_INHERIT_NONE = 0x2
constant MAP_INHERIT_SHARE (line 893) | MAP_INHERIT_SHARE = 0x0
constant MAP_NOEXTEND (line 894) | MAP_NOEXTEND = 0x100
constant MAP_NORESERVE (line 895) | MAP_NORESERVE = 0x40
constant MAP_PRIVATE (line 896) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 897) | MAP_RENAME = 0x20
constant MAP_SHARED (line 898) | MAP_SHARED = 0x1
constant MAP_TRYFIXED (line 899) | MAP_TRYFIXED = 0x400
constant MCL_CURRENT (line 900) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 901) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 902) | MNT_ASYNC = 0x40
constant MNT_DEFEXPORTED (line 903) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 904) | MNT_DELEXPORT = 0x20000
constant MNT_DOOMED (line 905) | MNT_DOOMED = 0x8000000
constant MNT_EXPORTANON (line 906) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 907) | MNT_EXPORTED = 0x100
constant MNT_EXRDONLY (line 908) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 909) | MNT_FORCE = 0x80000
constant MNT_LAZY (line 910) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 911) | MNT_LOCAL = 0x1000
constant MNT_NOATIME (line 912) | MNT_NOATIME = 0x8000
constant MNT_NODEV (line 913) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 914) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 915) | MNT_NOSUID = 0x8
constant MNT_NOWAIT (line 916) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 917) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 918) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 919) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 920) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 921) | MNT_SOFTDEP = 0x4000000
constant MNT_SYNCHRONOUS (line 922) | MNT_SYNCHRONOUS = 0x2
constant MNT_UPDATE (line 923) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 924) | MNT_VISFLAGMASK = 0x400ffff
constant MNT_WAIT (line 925) | MNT_WAIT = 0x1
constant MNT_WANTRDWR (line 926) | MNT_WANTRDWR = 0x2000000
constant MNT_WXALLOWED (line 927) | MNT_WXALLOWED = 0x800
constant MSG_BCAST (line 928) | MSG_BCAST = 0x100
constant MSG_CTRUNC (line 929) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 930) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 931) | MSG_DONTWAIT = 0x80
constant MSG_EOR (line 932) | MSG_EOR = 0x8
constant MSG_MCAST (line 933) | MSG_MCAST = 0x200
constant MSG_NOSIGNAL (line 934) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 935) | MSG_OOB = 0x1
constant MSG_PEEK (line 936) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 937) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 938) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 939) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 940) | MS_INVALIDATE = 0x4
constant MS_SYNC (line 941) | MS_SYNC = 0x2
constant NAME_MAX (line 942) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 943) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 944) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 945) | NET_RT_IFLIST = 0x3
constant NET_RT_MAXID (line 946) | NET_RT_MAXID = 0x6
constant NET_RT_STATS (line 947) | NET_RT_STATS = 0x4
constant NET_RT_TABLE (line 948) | NET_RT_TABLE = 0x5
constant NOFLSH (line 949) | NOFLSH = 0x80000000
constant NOTE_ATTRIB (line 950) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 951) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 952) | NOTE_DELETE = 0x1
constant NOTE_EOF (line 953) | NOTE_EOF = 0x2
constant NOTE_EXEC (line 954) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 955) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 956) | NOTE_EXTEND = 0x4
constant NOTE_FORK (line 957) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 958) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 959) | NOTE_LOWAT = 0x1
constant NOTE_PCTRLMASK (line 960) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 961) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 962) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 963) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 964) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 965) | NOTE_TRACKERR = 0x2
constant NOTE_TRUNCATE (line 966) | NOTE_TRUNCATE = 0x80
constant NOTE_WRITE (line 967) | NOTE_WRITE = 0x2
constant OCRNL (line 968) | OCRNL = 0x10
constant ONLCR (line 969) | ONLCR = 0x2
constant ONLRET (line 970) | ONLRET = 0x80
constant ONOCR (line 971) | ONOCR = 0x40
constant ONOEOT (line 972) | ONOEOT = 0x8
constant OPOST (line 973) | OPOST = 0x1
constant O_ACCMODE (line 974) | O_ACCMODE = 0x3
constant O_APPEND (line 975) | O_APPEND = 0x8
constant O_ASYNC (line 976) | O_ASYNC = 0x40
constant O_CLOEXEC (line 977) | O_CLOEXEC = 0x10000
constant O_CREAT (line 978) | O_CREAT = 0x200
constant O_DIRECTORY (line 979) | O_DIRECTORY = 0x20000
constant O_DSYNC (line 980) | O_DSYNC = 0x80
constant O_EXCL (line 981) | O_EXCL = 0x800
constant O_EXLOCK (line 982) | O_EXLOCK = 0x20
constant O_FSYNC (line 983) | O_FSYNC = 0x80
constant O_NDELAY (line 984) | O_NDELAY = 0x4
constant O_NOCTTY (line 985) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 986) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 987) | O_NONBLOCK = 0x4
constant O_RDONLY (line 988) | O_RDONLY = 0x0
constant O_RDWR (line 989) | O_RDWR = 0x2
constant O_RSYNC (line 990) | O_RSYNC = 0x80
constant O_SHLOCK (line 991) | O_SHLOCK = 0x10
constant O_SYNC (line 992) | O_SYNC = 0x80
constant O_TRUNC (line 993) | O_TRUNC = 0x400
constant O_WRONLY (line 994) | O_WRONLY = 0x1
constant PARENB (line 995) | PARENB = 0x1000
constant PARMRK (line 996) | PARMRK = 0x8
constant PARODD (line 997) | PARODD = 0x2000
constant PENDIN (line 998) | PENDIN = 0x20000000
constant PF_FLUSH (line 999) | PF_FLUSH = 0x1
constant PRIO_PGRP (line 1000) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1001) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1002) | PRIO_USER = 0x2
constant PROT_EXEC (line 1003) | PROT_EXEC = 0x4
constant PROT_NONE (line 1004) | PROT_NONE = 0x0
constant PROT_READ (line 1005) | PROT_READ = 0x1
constant PROT_WRITE (line 1006) | PROT_WRITE = 0x2
constant PT_MASK (line 1007) | PT_MASK = 0x3ff000
constant RLIMIT_CORE (line 1008) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1009) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1010) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1011) | RLIMIT_FSIZE = 0x1
constant RLIMIT_NOFILE (line 1012) | RLIMIT_NOFILE = 0x8
constant RLIMIT_STACK (line 1013) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1014) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1015) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1016) | RTAX_BRD = 0x7
constant RTAX_DST (line 1017) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1018) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1019) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1020) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1021) | RTAX_IFP = 0x4
constant RTAX_LABEL (line 1022) | RTAX_LABEL = 0xa
constant RTAX_MAX (line 1023) | RTAX_MAX = 0xb
constant RTAX_NETMASK (line 1024) | RTAX_NETMASK = 0x2
constant RTAX_SRC (line 1025) | RTAX_SRC = 0x8
constant RTAX_SRCMASK (line 1026) | RTAX_SRCMASK = 0x9
constant RTA_AUTHOR (line 1027) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1028) | RTA_BRD = 0x80
constant RTA_DST (line 1029) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1030) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1031) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1032) | RTA_IFA = 0x20
constant RTA_IFP (line 1033) | RTA_IFP = 0x10
constant RTA_LABEL (line 1034) | RTA_LABEL = 0x400
constant RTA_NETMASK (line 1035) | RTA_NETMASK = 0x4
constant RTA_SRC (line 1036) | RTA_SRC = 0x100
constant RTA_SRCMASK (line 1037) | RTA_SRCMASK = 0x200
constant RTF_ANNOUNCE (line 1038) | RTF_ANNOUNCE = 0x4000
constant RTF_BLACKHOLE (line 1039) | RTF_BLACKHOLE = 0x1000
constant RTF_CLONED (line 1040) | RTF_CLONED = 0x10000
constant RTF_CLONING (line 1041) | RTF_CLONING = 0x100
constant RTF_DONE (line 1042) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1043) | RTF_DYNAMIC = 0x10
constant RTF_FMASK (line 1044) | RTF_FMASK = 0x10f808
constant RTF_GATEWAY (line 1045) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1046) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1047) | RTF_LLINFO = 0x400
constant RTF_MASK (line 1048) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 1049) | RTF_MODIFIED = 0x20
constant RTF_MPATH (line 1050) | RTF_MPATH = 0x40000
constant RTF_MPLS (line 1051) | RTF_MPLS = 0x100000
constant RTF_PERMANENT_ARP (line 1052) | RTF_PERMANENT_ARP = 0x2000
constant RTF_PROTO1 (line 1053) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1054) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1055) | RTF_PROTO3 = 0x2000
constant RTF_REJECT (line 1056) | RTF_REJECT = 0x8
constant RTF_SOURCE (line 1057) | RTF_SOURCE = 0x20000
constant RTF_STATIC (line 1058) | RTF_STATIC = 0x800
constant RTF_TUNNEL (line 1059) | RTF_TUNNEL = 0x100000
constant RTF_UP (line 1060) | RTF_UP = 0x1
constant RTF_USETRAILERS (line 1061) | RTF_USETRAILERS = 0x8000
constant RTF_XRESOLVE (line 1062) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1063) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1064) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1065) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1066) | RTM_DELETE = 0x2
constant RTM_DESYNC (line 1067) | RTM_DESYNC = 0x10
constant RTM_GET (line 1068) | RTM_GET = 0x4
constant RTM_IFANNOUNCE (line 1069) | RTM_IFANNOUNCE = 0xf
constant RTM_IFINFO (line 1070) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 1071) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1072) | RTM_LOSING = 0x5
constant RTM_MAXSIZE (line 1073) | RTM_MAXSIZE = 0x800
constant RTM_MISS (line 1074) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1075) | RTM_NEWADDR = 0xc
constant RTM_REDIRECT (line 1076) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1077) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1078) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1079) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1080) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1081) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1082) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1083) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1084) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1085) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1086) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1087) | RTV_SSTHRESH = 0x20
constant RT_TABLEID_MAX (line 1088) | RT_TABLEID_MAX = 0xff
constant RUSAGE_CHILDREN (line 1089) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1090) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1091) | RUSAGE_THREAD = 0x1
constant SCM_RIGHTS (line 1092) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1093) | SCM_TIMESTAMP = 0x4
constant SHUT_RD (line 1094) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1095) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1096) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1097) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1098) | SIOCAIFADDR = 0x8040691a
constant SIOCAIFGROUP (line 1099) | SIOCAIFGROUP = 0x80246987
constant SIOCALIFADDR (line 1100) | SIOCALIFADDR = 0x8218691c
constant SIOCATMARK (line 1101) | SIOCATMARK = 0x40047307
constant SIOCBRDGADD (line 1102) | SIOCBRDGADD = 0x8054693c
constant SIOCBRDGADDS (line 1103) | SIOCBRDGADDS = 0x80546941
constant SIOCBRDGARL (line 1104) | SIOCBRDGARL = 0x806e694d
constant SIOCBRDGDADDR (line 1105) | SIOCBRDGDADDR = 0x81286947
constant SIOCBRDGDEL (line 1106) | SIOCBRDGDEL = 0x8054693d
constant SIOCBRDGDELS (line 1107) | SIOCBRDGDELS = 0x80546942
constant SIOCBRDGFLUSH (line 1108) | SIOCBRDGFLUSH = 0x80546948
constant SIOCBRDGFRL (line 1109) | SIOCBRDGFRL = 0x806e694e
constant SIOCBRDGGCACHE (line 1110) | SIOCBRDGGCACHE = 0xc0146941
constant SIOCBRDGGFD (line 1111) | SIOCBRDGGFD = 0xc0146952
constant SIOCBRDGGHT (line 1112) | SIOCBRDGGHT = 0xc0146951
constant SIOCBRDGGIFFLGS (line 1113) | SIOCBRDGGIFFLGS = 0xc054693e
constant SIOCBRDGGMA (line 1114) | SIOCBRDGGMA = 0xc0146953
constant SIOCBRDGGPARAM (line 1115) | SIOCBRDGGPARAM = 0xc03c6958
constant SIOCBRDGGPRI (line 1116) | SIOCBRDGGPRI = 0xc0146950
constant SIOCBRDGGRL (line 1117) | SIOCBRDGGRL = 0xc028694f
constant SIOCBRDGGSIFS (line 1118) | SIOCBRDGGSIFS = 0xc054693c
constant SIOCBRDGGTO (line 1119) | SIOCBRDGGTO = 0xc0146946
constant SIOCBRDGIFS (line 1120) | SIOCBRDGIFS = 0xc0546942
constant SIOCBRDGRTS (line 1121) | SIOCBRDGRTS = 0xc0186943
constant SIOCBRDGSADDR (line 1122) | SIOCBRDGSADDR = 0xc1286944
constant SIOCBRDGSCACHE (line 1123) | SIOCBRDGSCACHE = 0x80146940
constant SIOCBRDGSFD (line 1124) | SIOCBRDGSFD = 0x80146952
constant SIOCBRDGSHT (line 1125) | SIOCBRDGSHT = 0x80146951
constant SIOCBRDGSIFCOST (line 1126) | SIOCBRDGSIFCOST = 0x80546955
constant SIOCBRDGSIFFLGS (line 1127) | SIOCBRDGSIFFLGS = 0x8054693f
constant SIOCBRDGSIFPRIO (line 1128) | SIOCBRDGSIFPRIO = 0x80546954
constant SIOCBRDGSMA (line 1129) | SIOCBRDGSMA = 0x80146953
constant SIOCBRDGSPRI (line 1130) | SIOCBRDGSPRI = 0x80146950
constant SIOCBRDGSPROTO (line 1131) | SIOCBRDGSPROTO = 0x8014695a
constant SIOCBRDGSTO (line 1132) | SIOCBRDGSTO = 0x80146945
constant SIOCBRDGSTXHC (line 1133) | SIOCBRDGSTXHC = 0x80146959
constant SIOCDELMULTI (line 1134) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1135) | SIOCDIFADDR = 0x80206919
constant SIOCDIFGROUP (line 1136) | SIOCDIFGROUP = 0x80246989
constant SIOCDIFPHYADDR (line 1137) | SIOCDIFPHYADDR = 0x80206949
constant SIOCDLIFADDR (line 1138) | SIOCDLIFADDR = 0x8218691e
constant SIOCGETKALIVE (line 1139) | SIOCGETKALIVE = 0xc01869a4
constant SIOCGETLABEL (line 1140) | SIOCGETLABEL = 0x8020699a
constant SIOCGETPFLOW (line 1141) | SIOCGETPFLOW = 0xc02069fe
constant SIOCGETPFSYNC (line 1142) | SIOCGETPFSYNC = 0xc02069f8
constant SIOCGETSGCNT (line 1143) | SIOCGETSGCNT = 0xc0147534
constant SIOCGETVIFCNT (line 1144) | SIOCGETVIFCNT = 0xc0147533
constant SIOCGETVLAN (line 1145) | SIOCGETVLAN = 0xc0206990
constant SIOCGHIWAT (line 1146) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1147) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFASYNCMAP (line 1148) | SIOCGIFASYNCMAP = 0xc020697c
constant SIOCGIFBRDADDR (line 1149) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCONF (line 1150) | SIOCGIFCONF = 0xc0086924
constant SIOCGIFDATA (line 1151) | SIOCGIFDATA = 0xc020691b
constant SIOCGIFDESCR (line 1152) | SIOCGIFDESCR = 0xc0206981
constant SIOCGIFDSTADDR (line 1153) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1154) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGATTR (line 1155) | SIOCGIFGATTR = 0xc024698b
constant SIOCGIFGENERIC (line 1156) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGMEMB (line 1157) | SIOCGIFGMEMB = 0xc024698a
constant SIOCGIFGROUP (line 1158) | SIOCGIFGROUP = 0xc0246988
constant SIOCGIFHARDMTU (line 1159) | SIOCGIFHARDMTU = 0xc02069a5
constant SIOCGIFMEDIA (line 1160) | SIOCGIFMEDIA = 0xc0286936
constant SIOCGIFMETRIC (line 1161) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1162) | SIOCGIFMTU = 0xc020697e
constant SIOCGIFNETMASK (line 1163) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1164) | SIOCGIFPDSTADDR = 0xc0206948
constant SIOCGIFPRIORITY (line 1165) | SIOCGIFPRIORITY = 0xc020699c
constant SIOCGIFPSRCADDR (line 1166) | SIOCGIFPSRCADDR = 0xc0206947
constant SIOCGIFRDOMAIN (line 1167) | SIOCGIFRDOMAIN = 0xc02069a0
constant SIOCGIFRTLABEL (line 1168) | SIOCGIFRTLABEL = 0xc0206983
constant SIOCGIFTIMESLOT (line 1169) | SIOCGIFTIMESLOT = 0xc0206986
constant SIOCGIFXFLAGS (line 1170) | SIOCGIFXFLAGS = 0xc020699e
constant SIOCGLIFADDR (line 1171) | SIOCGLIFADDR = 0xc218691d
constant SIOCGLIFPHYADDR (line 1172) | SIOCGLIFPHYADDR = 0xc218694b
constant SIOCGLIFPHYRTABLE (line 1173) | SIOCGLIFPHYRTABLE = 0xc02069a2
constant SIOCGLIFPHYTTL (line 1174) | SIOCGLIFPHYTTL = 0xc02069a9
constant SIOCGLOWAT (line 1175) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1176) | SIOCGPGRP = 0x40047309
constant SIOCGSPPPPARAMS (line 1177) | SIOCGSPPPPARAMS = 0xc0206994
constant SIOCGVH (line 1178) | SIOCGVH = 0xc02069f6
constant SIOCGVNETID (line 1179) | SIOCGVNETID = 0xc02069a7
constant SIOCIFCREATE (line 1180) | SIOCIFCREATE = 0x8020697a
constant SIOCIFDESTROY (line 1181) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1182) | SIOCIFGCLONERS = 0xc00c6978
constant SIOCSETKALIVE (line 1183) | SIOCSETKALIVE = 0x801869a3
constant SIOCSETLABEL (line 1184) | SIOCSETLABEL = 0x80206999
constant SIOCSETPFLOW (line 1185) | SIOCSETPFLOW = 0x802069fd
constant SIOCSETPFSYNC (line 1186) | SIOCSETPFSYNC = 0x802069f7
constant SIOCSETVLAN (line 1187) | SIOCSETVLAN = 0x8020698f
constant SIOCSHIWAT (line 1188) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1189) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFASYNCMAP (line 1190) | SIOCSIFASYNCMAP = 0x8020697d
constant SIOCSIFBRDADDR (line 1191) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFDESCR (line 1192) | SIOCSIFDESCR = 0x80206980
constant SIOCSIFDSTADDR (line 1193) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1194) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGATTR (line 1195) | SIOCSIFGATTR = 0x8024698c
constant SIOCSIFGENERIC (line 1196) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1197) | SIOCSIFLLADDR = 0x8020691f
constant SIOCSIFMEDIA (line 1198) | SIOCSIFMEDIA = 0xc0206935
constant SIOCSIFMETRIC (line 1199) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1200) | SIOCSIFMTU = 0x8020697f
constant SIOCSIFNETMASK (line 1201) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1202) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSIFPRIORITY (line 1203) | SIOCSIFPRIORITY = 0x8020699b
constant SIOCSIFRDOMAIN (line 1204) | SIOCSIFRDOMAIN = 0x8020699f
constant SIOCSIFRTLABEL (line 1205) | SIOCSIFRTLABEL = 0x80206982
constant SIOCSIFTIMESLOT (line 1206) | SIOCSIFTIMESLOT = 0x80206985
constant SIOCSIFXFLAGS (line 1207) | SIOCSIFXFLAGS = 0x8020699d
constant SIOCSLIFPHYADDR (line 1208) | SIOCSLIFPHYADDR = 0x8218694a
constant SIOCSLIFPHYRTABLE (line 1209) | SIOCSLIFPHYRTABLE = 0x802069a1
constant SIOCSLIFPHYTTL (line 1210) | SIOCSLIFPHYTTL = 0x802069a8
constant SIOCSLOWAT (line 1211) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1212) | SIOCSPGRP = 0x80047308
constant SIOCSSPPPPARAMS (line 1213) | SIOCSSPPPPARAMS = 0x80206993
constant SIOCSVH (line 1214) | SIOCSVH = 0xc02069f5
constant SIOCSVNETID (line 1215) | SIOCSVNETID = 0x802069a6
constant SOCK_DGRAM (line 1216) | SOCK_DGRAM = 0x2
constant SOCK_RAW (line 1217) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1218) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1219) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1220) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1221) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1222) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1223) | SO_ACCEPTCONN = 0x2
constant SO_BINDANY (line 1224) | SO_BINDANY = 0x1000
constant SO_BROADCAST (line 1225) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1226) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1227) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1228) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1229) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1230) | SO_LINGER = 0x80
constant SO_NETPROC (line 1231) | SO_NETPROC = 0x1020
constant SO_OOBINLINE (line 1232) | SO_OOBINLINE = 0x100
constant SO_PEERCRED (line 1233) | SO_PEERCRED = 0x1022
constant SO_RCVBUF (line 1234) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1235) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1236) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1237) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1238) | SO_REUSEPORT = 0x200
constant SO_RTABLE (line 1239) | SO_RTABLE = 0x1021
constant SO_SNDBUF (line 1240) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1241) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1242) | SO_SNDTIMEO = 0x1005
constant SO_SPLICE (line 1243) | SO_SPLICE = 0x1023
constant SO_TIMESTAMP (line 1244) | SO_TIMESTAMP = 0x800
constant SO_TYPE (line 1245) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1246) | SO_USELOOPBACK = 0x40
constant S_BLKSIZE (line 1247) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1248) | S_IEXEC = 0x40
constant S_IFBLK (line 1249) | S_IFBLK = 0x6000
constant S_IFCHR (line 1250) | S_IFCHR = 0x2000
constant S_IFDIR (line 1251) | S_IFDIR = 0x4000
constant S_IFIFO (line 1252) | S_IFIFO = 0x1000
constant S_IFLNK (line 1253) | S_IFLNK = 0xa000
constant S_IFMT (line 1254) | S_IFMT = 0xf000
constant S_IFREG (line 1255) | S_IFREG = 0x8000
constant S_IFSOCK (line 1256) | S_IFSOCK = 0xc000
constant S_IREAD (line 1257) | S_IREAD = 0x100
constant S_IRGRP (line 1258) | S_IRGRP = 0x20
constant S_IROTH (line 1259) | S_IROTH = 0x4
constant S_IRUSR (line 1260) | S_IRUSR = 0x100
constant S_IRWXG (line 1261) | S_IRWXG = 0x38
constant S_IRWXO (line 1262) | S_IRWXO = 0x7
constant S_IRWXU (line 1263) | S_IRWXU = 0x1c0
constant S_ISGID (line 1264) | S_ISGID = 0x400
constant S_ISTXT (line 1265) | S_ISTXT = 0x200
constant S_ISUID (line 1266) | S_ISUID = 0x800
constant S_ISVTX (line 1267) | S_ISVTX = 0x200
constant S_IWGRP (line 1268) | S_IWGRP = 0x10
constant S_IWOTH (line 1269) | S_IWOTH = 0x2
constant S_IWRITE (line 1270) | S_IWRITE = 0x80
constant S_IWUSR (line 1271) | S_IWUSR = 0x80
constant S_IXGRP (line 1272) | S_IXGRP = 0x8
constant S_IXOTH (line 1273) | S_IXOTH = 0x1
constant S_IXUSR (line 1274) | S_IXUSR = 0x40
constant TCIFLUSH (line 1275) | TCIFLUSH = 0x1
constant TCIOFLUSH (line 1276) | TCIOFLUSH = 0x3
constant TCOFLUSH (line 1277) | TCOFLUSH = 0x2
constant TCP_MAXBURST (line 1278) | TCP_MAXBURST = 0x4
constant TCP_MAXSEG (line 1279) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1280) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1281) | TCP_MAX_SACK = 0x3
constant TCP_MAX_WINSHIFT (line 1282) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1283) | TCP_MD5SIG = 0x4
constant TCP_MSS (line 1284) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1285) | TCP_NODELAY = 0x1
constant TCP_NOPUSH (line 1286) | TCP_NOPUSH = 0x10
constant TCP_NSTATES (line 1287) | TCP_NSTATES = 0xb
constant TCP_SACK_ENABLE (line 1288) | TCP_SACK_ENABLE = 0x8
constant TCSAFLUSH (line 1289) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1290) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1291) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1292) | TIOCCONS = 0x80047462
constant TIOCDRAIN (line 1293) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1294) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1295) | TIOCEXT = 0x80047460
constant TIOCFLAG_CLOCAL (line 1296) | TIOCFLAG_CLOCAL = 0x2
constant TIOCFLAG_CRTSCTS (line 1297) | TIOCFLAG_CRTSCTS = 0x4
constant TIOCFLAG_MDMBUF (line 1298) | TIOCFLAG_MDMBUF = 0x8
constant TIOCFLAG_PPS (line 1299) | TIOCFLAG_PPS = 0x10
constant TIOCFLAG_SOFTCAR (line 1300) | TIOCFLAG_SOFTCAR = 0x1
constant TIOCFLUSH (line 1301) | TIOCFLUSH = 0x80047410
constant TIOCGETA (line 1302) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1303) | TIOCGETD = 0x4004741a
constant TIOCGFLAGS (line 1304) | TIOCGFLAGS = 0x4004745d
constant TIOCGPGRP (line 1305) | TIOCGPGRP = 0x40047477
constant TIOCGSID (line 1306) | TIOCGSID = 0x40047463
constant TIOCGTSTAMP (line 1307) | TIOCGTSTAMP = 0x400c745b
constant TIOCGWINSZ (line 1308) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1309) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1310) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 1311) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1312) | TIOCMODG = 0x4004746a
constant TIOCMODS (line 1313) | TIOCMODS = 0x8004746d
constant TIOCMSET (line 1314) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1315) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1316) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1317) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1318) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1319) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1320) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1321) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1322) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1323) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1324) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1325) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1326) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1327) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1328) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1329) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1330) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1331) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1332) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1333) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1334) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1335) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1336) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1337) | TIOCPKT_STOP = 0x4
constant TIOCREMOTE (line 1338) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1339) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1340) | TIOCSCTTY = 0x20007461
constant TIOCSDTR (line 1341) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1342) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1343) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1344) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1345) | TIOCSETD = 0x8004741b
constant TIOCSFLAGS (line 1346) | TIOCSFLAGS = 0x8004745c
constant TIOCSIG (line 1347) | TIOCSIG = 0x8004745f
constant TIOCSPGRP (line 1348) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1349) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1350) | TIOCSTAT = 0x80047465
constant TIOCSTI (line 1351) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1352) | TIOCSTOP = 0x2000746f
constant TIOCSTSTAMP (line 1353) | TIOCSTSTAMP = 0x8008745a
constant TIOCSWINSZ (line 1354) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 1355) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1356) | TOSTOP = 0x400000
constant VDISCARD (line 1357) | VDISCARD = 0xf
constant VDSUSP (line 1358) | VDSUSP = 0xb
constant VEOF (line 1359) | VEOF = 0x0
constant VEOL (line 1360) | VEOL = 0x1
constant VEOL2 (line 1361) | VEOL2 = 0x2
constant VERASE (line 1362) | VERASE = 0x3
constant VINTR (line 1363) | VINTR = 0x8
constant VKILL (line 1364) | VKILL = 0x5
constant VLNEXT (line 1365) | VLNEXT = 0xe
constant VMIN (line 1366) | VMIN = 0x10
constant VQUIT (line 1367) | VQUIT = 0x9
constant VREPRINT (line 1368) | VREPRINT = 0x6
constant VSTART (line 1369) | VSTART = 0xc
constant VSTATUS (line 1370) | VSTATUS = 0x12
constant VSTOP (line 1371) | VSTOP = 0xd
constant VSUSP (line 1372) | VSUSP = 0xa
constant VTIME (line 1373) | VTIME = 0x11
constant VWERASE (line 1374) | VWERASE = 0x4
constant WALTSIG (line 1375) | WALTSIG = 0x4
constant WCONTINUED (line 1376) | WCONTINUED = 0x8
constant WCOREFLAG (line 1377) | WCOREFLAG = 0x80
constant WNOHANG (line 1378) | WNOHANG = 0x1
constant WSTOPPED (line 1379) | WSTOPPED = 0x7f
constant WUNTRACED (line 1380) | WUNTRACED = 0x2
constant E2BIG (line 1385) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1386) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1387) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1388) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1389) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1390) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1391) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1392) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1393) | EBADF = syscall.Errno(0x9)
constant EBADRPC (line 1394) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1395) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1396) | ECANCELED = syscall.Errno(0x58)
constant ECHILD (line 1397) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1398) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1399) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1400) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1401) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1402) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1403) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1404) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1405) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1406) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1407) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1408) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1409) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1410) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1411) | EIDRM = syscall.Errno(0x59)
constant EILSEQ (line 1412) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 1413) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1414) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1415) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1416) | EIO = syscall.Errno(0x5)
constant EIPSEC (line 1417) | EIPSEC = syscall.Errno(0x52)
constant EISCONN (line 1418) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1419) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1420) | ELAST = syscall.Errno(0x5b)
constant ELOOP (line 1421) | ELOOP = syscall.Errno(0x3e)
constant EMEDIUMTYPE (line 1422) | EMEDIUMTYPE = syscall.Errno(0x56)
constant EMFILE (line 1423) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1424) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1425) | EMSGSIZE = syscall.Errno(0x28)
constant ENAMETOOLONG (line 1426) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1427) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1428) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1429) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1430) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1431) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1432) | ENOATTR = syscall.Errno(0x53)
constant ENOBUFS (line 1433) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1434) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1435) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1436) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1437) | ENOLCK = syscall.Errno(0x4d)
constant ENOMEDIUM (line 1438) | ENOMEDIUM = syscall.Errno(0x55)
constant ENOMEM (line 1439) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1440) | ENOMSG = syscall.Errno(0x5a)
constant ENOPROTOOPT (line 1441) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1442) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1443) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1444) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1445) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1446) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1447) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTSOCK (line 1448) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1449) | ENOTSUP = syscall.Errno(0x5b)
constant ENOTTY (line 1450) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1451) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1452) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1453) | EOVERFLOW = syscall.Errno(0x57)
constant EPERM (line 1454) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1455) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1456) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1457) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1458) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1459) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1460) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTONOSUPPORT (line 1461) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1462) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1463) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1464) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1465) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1466) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1467) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1468) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1469) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1470) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1471) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1472) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1473) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1474) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1475) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1476) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1477) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1482) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1483) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1484) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1485) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1486) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1487) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1488) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1489) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1490) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1491) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1492) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1493) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1494) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1495) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1496) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1497) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1498) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1499) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1500) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1501) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1502) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1503) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1504) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1505) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1506) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1507) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1508) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1509) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1510) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1511) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1512) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1513) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1514) | 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 ALTWERASE (line 48) | ALTWERASE = 0x200
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 B0 (line 53) | B0 = 0x0
constant B110 (line 54) | B110 = 0x6e
constant B115200 (line 55) | B115200 = 0x1c200
constant B1200 (line 56) | B1200 = 0x4b0
constant B134 (line 57) | B134 = 0x86
constant B14400 (line 58) | B14400 = 0x3840
constant B150 (line 59) | B150 = 0x96
constant B1800 (line 60) | B1800 = 0x708
constant B19200 (line 61) | B19200 = 0x4b00
constant B200 (line 62) | B200 = 0xc8
constant B230400 (line 63) | B230400 = 0x38400
constant B2400 (line 64) | B2400 = 0x960
constant B28800 (line 65) | B28800 = 0x7080
constant B300 (line 66) | B300 = 0x12c
constant B38400 (line 67) | B38400 = 0x9600
constant B4800 (line 68) | B4800 = 0x12c0
constant B50 (line 69) | B50 = 0x32
constant B57600 (line 70) | B57600 = 0xe100
constant B600 (line 71) | B600 = 0x258
constant B7200 (line 72) | B7200 = 0x1c20
constant B75 (line 73) | B75 = 0x4b
constant B76800 (line 74) | B76800 = 0x12c00
constant B9600 (line 75) | B9600 = 0x2580
constant BIOCFLUSH (line 76) | BIOCFLUSH = 0x20004268
constant BIOCGBLEN (line 77) | BIOCGBLEN = 0x40044266
constant BIOCGDIRFILT (line 78) | BIOCGDIRFILT = 0x4004427c
constant BIOCGDLT (line 79) | BIOCGDLT = 0x4004426a
constant BIOCGDLTLIST (line 80) | BIOCGDLTLIST = 0xc010427b
constant BIOCGETIF (line 81) | BIOCGETIF = 0x4020426b
constant BIOCGFILDROP (line 82) | BIOCGFILDROP = 0x40044278
constant BIOCGHDRCMPLT (line 83) | BIOCGHDRCMPLT = 0x40044274
constant BIOCGRSIG (line 84) | BIOCGRSIG = 0x40044273
constant BIOCGRTIMEOUT (line 85) | BIOCGRTIMEOUT = 0x4010426e
constant BIOCGSTATS (line 86) | BIOCGSTATS = 0x4008426f
constant BIOCIMMEDIATE (line 87) | BIOCIMMEDIATE = 0x80044270
constant BIOCLOCK (line 88) | BIOCLOCK = 0x20004276
constant BIOCPROMISC (line 89) | BIOCPROMISC = 0x20004269
constant BIOCSBLEN (line 90) | BIOCSBLEN = 0xc0044266
constant BIOCSDIRFILT (line 91) | BIOCSDIRFILT = 0x8004427d
constant BIOCSDLT (line 92) | BIOCSDLT = 0x8004427a
constant BIOCSETF (line 93) | BIOCSETF = 0x80104267
constant BIOCSETIF (line 94) | BIOCSETIF = 0x8020426c
constant BIOCSETWF (line 95) | BIOCSETWF = 0x80104277
constant BIOCSFILDROP (line 96) | BIOCSFILDROP = 0x80044279
constant BIOCSHDRCMPLT (line 97) | BIOCSHDRCMPLT = 0x80044275
constant BIOCSRSIG (line 98) | BIOCSRSIG = 0x80044272
constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x8010426d
constant BIOCVERSION (line 100) | BIOCVERSION = 0x40044271
constant BPF_A (line 101) | BPF_A = 0x10
constant BPF_ABS (line 102) | BPF_ABS = 0x20
constant BPF_ADD (line 103) | BPF_ADD = 0x0
constant BPF_ALIGNMENT (line 104) | BPF_ALIGNMENT = 0x4
constant BPF_ALU (line 105) | BPF_ALU = 0x4
constant BPF_AND (line 106) | BPF_AND = 0x50
constant BPF_B (line 107) | BPF_B = 0x10
constant BPF_DIRECTION_IN (line 108) | BPF_DIRECTION_IN = 0x1
constant BPF_DIRECTION_OUT (line 109) | BPF_DIRECTION_OUT = 0x2
constant BPF_DIV (line 110) | BPF_DIV = 0x30
constant BPF_H (line 111) | BPF_H = 0x8
constant BPF_IMM (line 112) | BPF_IMM = 0x0
constant BPF_IND (line 113) | BPF_IND = 0x40
constant BPF_JA (line 114) | BPF_JA = 0x0
constant BPF_JEQ (line 115) | BPF_JEQ = 0x10
constant BPF_JGE (line 116) | BPF_JGE = 0x30
constant BPF_JGT (line 117) | BPF_JGT = 0x20
constant BPF_JMP (line 118) | BPF_JMP = 0x5
constant BPF_JSET (line 119) | BPF_JSET = 0x40
constant BPF_K (line 120) | BPF_K = 0x0
constant BPF_LD (line 121) | BPF_LD = 0x0
constant BPF_LDX (line 122) | BPF_LDX = 0x1
constant BPF_LEN (line 123) | BPF_LEN = 0x80
constant BPF_LSH (line 124) | BPF_LSH = 0x60
constant BPF_MAJOR_VERSION (line 125) | BPF_MAJOR_VERSION = 0x1
constant BPF_MAXBUFSIZE (line 126) | BPF_MAXBUFSIZE = 0x200000
constant BPF_MAXINSNS (line 127) | BPF_MAXINSNS = 0x200
constant BPF_MEM (line 128) | BPF_MEM = 0x60
constant BPF_MEMWORDS (line 129) | BPF_MEMWORDS = 0x10
constant BPF_MINBUFSIZE (line 130) | BPF_MINBUFSIZE = 0x20
constant BPF_MINOR_VERSION (line 131) | BPF_MINOR_VERSION = 0x1
constant BPF_MISC (line 132) | BPF_MISC = 0x7
constant BPF_MSH (line 133) | BPF_MSH = 0xa0
constant BPF_MUL (line 134) | BPF_MUL = 0x20
constant BPF_NEG (line 135) | BPF_NEG = 0x80
constant BPF_OR (line 136) | BPF_OR = 0x40
constant BPF_RELEASE (line 137) | BPF_RELEASE = 0x30bb6
constant BPF_RET (line 138) | BPF_RET = 0x6
constant BPF_RSH (line 139) | BPF_RSH = 0x70
constant BPF_ST (line 140) | BPF_ST = 0x2
constant BPF_STX (line 141) | BPF_STX = 0x3
constant BPF_SUB (line 142) | BPF_SUB = 0x10
constant BPF_TAX (line 143) | BPF_TAX = 0x0
constant BPF_TXA (line 144) | BPF_TXA = 0x80
constant BPF_W (line 145) | BPF_W = 0x0
constant BPF_X (line 146) | BPF_X = 0x8
constant BRKINT (line 147) | BRKINT = 0x2
constant CFLUSH (line 148) | CFLUSH = 0xf
constant CLOCAL (line 149) | CLOCAL = 0x8000
constant CLOCK_BOOTTIME (line 150) | CLOCK_BOOTTIME = 0x6
constant CLOCK_MONOTONIC (line 151) | CLOCK_MONOTONIC = 0x3
constant CLOCK_PROCESS_CPUTIME_ID (line 152) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 153) | CLOCK_REALTIME = 0x0
constant CLOCK_THREAD_CPUTIME_ID (line 154) | CLOCK_THREAD_CPUTIME_ID = 0x4
constant CLOCK_UPTIME (line 155) | CLOCK_UPTIME = 0x5
constant CREAD (line 156) | CREAD = 0x800
constant CRTSCTS (line 157) | CRTSCTS = 0x10000
constant CS5 (line 158) | CS5 = 0x0
constant CS6 (line 159) | CS6 = 0x100
constant CS7 (line 160) | CS7 = 0x200
constant CS8 (line 161) | CS8 = 0x300
constant CSIZE (line 162) | CSIZE = 0x300
constant CSTART (line 163) | CSTART = 0x11
constant CSTATUS (line 164) | CSTATUS = 0xff
constant CSTOP (line 165) | CSTOP = 0x13
constant CSTOPB (line 166) | CSTOPB = 0x400
constant CSUSP (line 167) | CSUSP = 0x1a
constant CTL_HW (line 168) | CTL_HW = 0x6
constant CTL_KERN (line 169) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 170) | CTL_MAXNAME = 0xc
constant CTL_NET (line 171) | CTL_NET = 0x4
constant DIOCOSFPFLUSH (line 172) | DIOCOSFPFLUSH = 0x2000444e
constant DLT_ARCNET (line 173) | DLT_ARCNET = 0x7
constant DLT_ATM_RFC1483 (line 174) | DLT_ATM_RFC1483 = 0xb
constant DLT_AX25 (line 175) | DLT_AX25 = 0x3
constant DLT_CHAOS (line 176) | DLT_CHAOS = 0x5
constant DLT_C_HDLC (line 177) | DLT_C_HDLC = 0x68
constant DLT_EN10MB (line 178) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 179) | DLT_EN3MB = 0x2
constant DLT_ENC (line 180) | DLT_ENC = 0xd
constant DLT_FDDI (line 181) | DLT_FDDI = 0xa
constant DLT_IEEE802 (line 182) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 183) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 184) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_LOOP (line 185) | DLT_LOOP = 0xc
constant DLT_MPLS (line 186) | DLT_MPLS = 0xdb
constant DLT_NULL (line 187) | DLT_NULL = 0x0
constant DLT_OPENFLOW (line 188) | DLT_OPENFLOW = 0x10b
constant DLT_PFLOG (line 189) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 190) | DLT_PFSYNC = 0x12
constant DLT_PPP (line 191) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 192) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 193) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_SERIAL (line 194) | DLT_PPP_SERIAL = 0x32
constant DLT_PRONET (line 195) | DLT_PRONET = 0x4
constant DLT_RAW (line 196) | DLT_RAW = 0xe
constant DLT_SLIP (line 197) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 198) | DLT_SLIP_BSDOS = 0xf
constant DLT_USBPCAP (line 199) | DLT_USBPCAP = 0xf9
constant DLT_USER0 (line 200) | DLT_USER0 = 0x93
constant DLT_USER1 (line 201) | DLT_USER1 = 0x94
constant DLT_USER10 (line 202) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 203) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 204) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 205) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 206) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 207) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 208) | DLT_USER2 = 0x95
constant DLT_USER3 (line 209) | DLT_USER3 = 0x96
constant DLT_USER4 (line 210) | DLT_USER4 = 0x97
constant DLT_USER5 (line 211) | DLT_USER5 = 0x98
constant DLT_USER6 (line 212) | DLT_USER6 = 0x99
constant DLT_USER7 (line 213) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 214) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 215) | DLT_USER9 = 0x9c
constant DT_BLK (line 216) | DT_BLK = 0x6
constant DT_CHR (line 217) | DT_CHR = 0x2
constant DT_DIR (line 218) | DT_DIR = 0x4
constant DT_FIFO (line 219) | DT_FIFO = 0x1
constant DT_LNK (line 220) | DT_LNK = 0xa
constant DT_REG (line 221) | DT_REG = 0x8
constant DT_SOCK (line 222) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 223) | DT_UNKNOWN = 0x0
constant ECHO (line 224) | ECHO = 0x8
constant ECHOCTL (line 225) | ECHOCTL = 0x40
constant ECHOE (line 226) | ECHOE = 0x2
constant ECHOK (line 227) | ECHOK = 0x4
constant ECHOKE (line 228) | ECHOKE = 0x1
constant ECHONL (line 229) | ECHONL = 0x10
constant ECHOPRT (line 230) | ECHOPRT = 0x20
constant EMT_TAGOVF (line 231) | EMT_TAGOVF = 0x1
constant EMUL_ENABLED (line 232) | EMUL_ENABLED = 0x1
constant EMUL_NATIVE (line 233) | EMUL_NATIVE = 0x2
constant ENDRUNDISC (line 234) | ENDRUNDISC = 0x9
constant ETHERMIN (line 235) | ETHERMIN = 0x2e
constant ETHERMTU (line 236) | ETHERMTU = 0x5dc
constant ETHERTYPE_8023 (line 237) | ETHERTYPE_8023 = 0x4
constant ETHERTYPE_AARP (line 238) | ETHERTYPE_AARP = 0x80f3
constant ETHERTYPE_ACCTON (line 239) | ETHERTYPE_ACCTON = 0x8390
constant ETHERTYPE_AEONIC (line 240) | ETHERTYPE_AEONIC = 0x8036
constant ETHERTYPE_ALPHA (line 241) | ETHERTYPE_ALPHA = 0x814a
constant ETHERTYPE_AMBER (line 242) | ETHERTYPE_AMBER = 0x6008
constant ETHERTYPE_AMOEBA (line 243) | ETHERTYPE_AMOEBA = 0x8145
constant ETHERTYPE_AOE (line 244) | ETHERTYPE_AOE = 0x88a2
constant ETHERTYPE_APOLLO (line 245) | ETHERTYPE_APOLLO = 0x80f7
constant ETHERTYPE_APOLLODOMAIN (line 246) | ETHERTYPE_APOLLODOMAIN = 0x8019
constant ETHERTYPE_APPLETALK (line 247) | ETHERTYPE_APPLETALK = 0x809b
constant ETHERTYPE_APPLITEK (line 248) | ETHERTYPE_APPLITEK = 0x80c7
constant ETHERTYPE_ARGONAUT (line 249) | ETHERTYPE_ARGONAUT = 0x803a
constant ETHERTYPE_ARP (line 250) | ETHERTYPE_ARP = 0x806
constant ETHERTYPE_AT (line 251) | ETHERTYPE_AT = 0x809b
constant ETHERTYPE_ATALK (line 252) | ETHERTYPE_ATALK = 0x809b
constant ETHERTYPE_ATOMIC (line 253) | ETHERTYPE_ATOMIC = 0x86df
constant ETHERTYPE_ATT (line 254) | ETHERTYPE_ATT = 0x8069
constant ETHERTYPE_ATTSTANFORD (line 255) | ETHERTYPE_ATTSTANFORD = 0x8008
constant ETHERTYPE_AUTOPHON (line 256) | ETHERTYPE_AUTOPHON = 0x806a
constant ETHERTYPE_AXIS (line 257) | ETHERTYPE_AXIS = 0x8856
constant ETHERTYPE_BCLOOP (line 258) | ETHERTYPE_BCLOOP = 0x9003
constant ETHERTYPE_BOFL (line 259) | ETHERTYPE_BOFL = 0x8102
constant ETHERTYPE_CABLETRON (line 260) | ETHERTYPE_CABLETRON = 0x7034
constant ETHERTYPE_CHAOS (line 261) | ETHERTYPE_CHAOS = 0x804
constant ETHERTYPE_COMDESIGN (line 262) | ETHERTYPE_COMDESIGN = 0x806c
constant ETHERTYPE_COMPUGRAPHIC (line 263) | ETHERTYPE_COMPUGRAPHIC = 0x806d
constant ETHERTYPE_COUNTERPOINT (line 264) | ETHERTYPE_COUNTERPOINT = 0x8062
constant ETHERTYPE_CRONUS (line 265) | ETHERTYPE_CRONUS = 0x8004
constant ETHERTYPE_CRONUSVLN (line 266) | ETHERTYPE_CRONUSVLN = 0x8003
constant ETHERTYPE_DCA (line 267) | ETHERTYPE_DCA = 0x1234
constant ETHERTYPE_DDE (line 268) | ETHERTYPE_DDE = 0x807b
constant ETHERTYPE_DEBNI (line 269) | ETHERTYPE_DEBNI = 0xaaaa
constant ETHERTYPE_DECAM (line 270) | ETHERTYPE_DECAM = 0x8048
constant ETHERTYPE_DECCUST (line 271) | ETHERTYPE_DECCUST = 0x6006
constant ETHERTYPE_DECDIAG (line 272) | ETHERTYPE_DECDIAG = 0x6005
constant ETHERTYPE_DECDNS (line 273) | ETHERTYPE_DECDNS = 0x803c
constant ETHERTYPE_DECDTS (line 274) | ETHERTYPE_DECDTS = 0x803e
constant ETHERTYPE_DECEXPER (line 275) | ETHERTYPE_DECEXPER = 0x6000
constant ETHERTYPE_DECLAST (line 276) | ETHERTYPE_DECLAST = 0x8041
constant ETHERTYPE_DECLTM (line 277) | ETHERTYPE_DECLTM = 0x803f
constant ETHERTYPE_DECMUMPS (line 278) | ETHERTYPE_DECMUMPS = 0x6009
constant ETHERTYPE_DECNETBIOS (line 279) | ETHERTYPE_DECNETBIOS = 0x8040
constant ETHERTYPE_DELTACON (line 280) | ETHERTYPE_DELTACON = 0x86de
constant ETHERTYPE_DIDDLE (line 281) | ETHERTYPE_DIDDLE = 0x4321
constant ETHERTYPE_DLOG1 (line 282) | ETHERTYPE_DLOG1 = 0x660
constant ETHERTYPE_DLOG2 (line 283) | ETHERTYPE_DLOG2 = 0x661
constant ETHERTYPE_DN (line 284) | ETHERTYPE_DN = 0x6003
constant ETHERTYPE_DOGFIGHT (line 285) | ETHERTYPE_DOGFIGHT = 0x1989
constant ETHERTYPE_DSMD (line 286) | ETHERTYPE_DSMD = 0x8039
constant ETHERTYPE_ECMA (line 287) | ETHERTYPE_ECMA = 0x803
constant ETHERTYPE_ENCRYPT (line 288) | ETHERTYPE_ENCRYPT = 0x803d
constant ETHERTYPE_ES (line 289) | ETHERTYPE_ES = 0x805d
constant ETHERTYPE_EXCELAN (line 290) | ETHERTYPE_EXCELAN = 0x8010
constant ETHERTYPE_EXPERDATA (line 291) | ETHERTYPE_EXPERDATA = 0x8049
constant ETHERTYPE_FLIP (line 292) | ETHERTYPE_FLIP = 0x8146
constant ETHERTYPE_FLOWCONTROL (line 293) | ETHERTYPE_FLOWCONTROL = 0x8808
constant ETHERTYPE_FRARP (line 294) | ETHERTYPE_FRARP = 0x808
constant ETHERTYPE_GENDYN (line 295) | ETHERTYPE_GENDYN = 0x8068
constant ETHERTYPE_HAYES (line 296) | ETHERTYPE_HAYES = 0x8130
constant ETHERTYPE_HIPPI_FP (line 297) | ETHERTYPE_HIPPI_FP = 0x8180
constant ETHERTYPE_HITACHI (line 298) | ETHERTYPE_HITACHI = 0x8820
constant ETHERTYPE_HP (line 299) | ETHERTYPE_HP = 0x8005
constant ETHERTYPE_IEEEPUP (line 300) | ETHERTYPE_IEEEPUP = 0xa00
constant ETHERTYPE_IEEEPUPAT (line 301) | ETHERTYPE_IEEEPUPAT = 0xa01
constant ETHERTYPE_IMLBL (line 302) | ETHERTYPE_IMLBL = 0x4c42
constant ETHERTYPE_IMLBLDIAG (line 303) | ETHERTYPE_IMLBLDIAG = 0x424c
constant ETHERTYPE_IP (line 304) | ETHERTYPE_IP = 0x800
constant ETHERTYPE_IPAS (line 305) | ETHERTYPE_IPAS = 0x876c
constant ETHERTYPE_IPV6 (line 306) | ETHERTYPE_IPV6 = 0x86dd
constant ETHERTYPE_IPX (line 307) | ETHERTYPE_IPX = 0x8137
constant ETHERTYPE_IPXNEW (line 308) | ETHERTYPE_IPXNEW = 0x8037
constant ETHERTYPE_KALPANA (line 309) | ETHERTYPE_KALPANA = 0x8582
constant ETHERTYPE_LANBRIDGE (line 310) | ETHERTYPE_LANBRIDGE = 0x8038
constant ETHERTYPE_LANPROBE (line 311) | ETHERTYPE_LANPROBE = 0x8888
constant ETHERTYPE_LAT (line 312) | ETHERTYPE_LAT = 0x6004
constant ETHERTYPE_LBACK (line 313) | ETHERTYPE_LBACK = 0x9000
constant ETHERTYPE_LITTLE (line 314) | ETHERTYPE_LITTLE = 0x8060
constant ETHERTYPE_LLDP (line 315) | ETHERTYPE_LLDP = 0x88cc
constant ETHERTYPE_LOGICRAFT (line 316) | ETHERTYPE_LOGICRAFT = 0x8148
constant ETHERTYPE_LOOPBACK (line 317) | ETHERTYPE_LOOPBACK = 0x9000
constant ETHERTYPE_MATRA (line 318) | ETHERTYPE_MATRA = 0x807a
constant ETHERTYPE_MAX (line 319) | ETHERTYPE_MAX = 0xffff
constant ETHERTYPE_MERIT (line 320) | ETHERTYPE_MERIT = 0x807c
constant ETHERTYPE_MICP (line 321) | ETHERTYPE_MICP = 0x873a
constant ETHERTYPE_MOPDL (line 322) | ETHERTYPE_MOPDL = 0x6001
constant ETHERTYPE_MOPRC (line 323) | ETHERTYPE_MOPRC = 0x6002
constant ETHERTYPE_MOTOROLA (line 324) | ETHERTYPE_MOTOROLA = 0x818d
constant ETHERTYPE_MPLS (line 325) | ETHERTYPE_MPLS = 0x8847
constant ETHERTYPE_MPLS_MCAST (line 326) | ETHERTYPE_MPLS_MCAST = 0x8848
constant ETHERTYPE_MUMPS (line 327) | ETHERTYPE_MUMPS = 0x813f
constant ETHERTYPE_NBPCC (line 328) | ETHERTYPE_NBPCC = 0x3c04
constant ETHERTYPE_NBPCLAIM (line 329) | ETHERTYPE_NBPCLAIM = 0x3c09
constant ETHERTYPE_NBPCLREQ (line 330) | ETHERTYPE_NBPCLREQ = 0x3c05
constant ETHERTYPE_NBPCLRSP (line 331) | ETHERTYPE_NBPCLRSP = 0x3c06
constant ETHERTYPE_NBPCREQ (line 332) | ETHERTYPE_NBPCREQ = 0x3c02
constant ETHERTYPE_NBPCRSP (line 333) | ETHERTYPE_NBPCRSP = 0x3c03
constant ETHERTYPE_NBPDG (line 334) | ETHERTYPE_NBPDG = 0x3c07
constant ETHERTYPE_NBPDGB (line 335) | ETHERTYPE_NBPDGB = 0x3c08
constant ETHERTYPE_NBPDLTE (line 336) | ETHERTYPE_NBPDLTE = 0x3c0a
constant ETHERTYPE_NBPRAR (line 337) | ETHERTYPE_NBPRAR = 0x3c0c
constant ETHERTYPE_NBPRAS (line 338) | ETHERTYPE_NBPRAS = 0x3c0b
constant ETHERTYPE_NBPRST (line 339) | ETHERTYPE_NBPRST = 0x3c0d
constant ETHERTYPE_NBPSCD (line 340) | ETHERTYPE_NBPSCD = 0x3c01
constant ETHERTYPE_NBPVCD (line 341) | ETHERTYPE_NBPVCD = 0x3c00
constant ETHERTYPE_NBS (line 342) | ETHERTYPE_NBS = 0x802
constant ETHERTYPE_NCD (line 343) | ETHERTYPE_NCD = 0x8149
constant ETHERTYPE_NESTAR (line 344) | ETHERTYPE_NESTAR = 0x8006
constant ETHERTYPE_NETBEUI (line 345) | ETHERTYPE_NETBEUI = 0x8191
constant ETHERTYPE_NOVELL (line 346) | ETHERTYPE_NOVELL = 0x8138
constant ETHERTYPE_NS (line 347) | ETHERTYPE_NS = 0x600
constant ETHERTYPE_NSAT (line 348) | ETHERTYPE_NSAT = 0x601
constant ETHERTYPE_NSCOMPAT (line 349) | ETHERTYPE_NSCOMPAT = 0x807
constant ETHERTYPE_NTRAILER (line 350) | ETHERTYPE_NTRAILER = 0x10
constant ETHERTYPE_OS9 (line 351) | ETHERTYPE_OS9 = 0x7007
constant ETHERTYPE_OS9NET (line 352) | ETHERTYPE_OS9NET = 0x7009
constant ETHERTYPE_PACER (line 353) | ETHERTYPE_PACER = 0x80c6
constant ETHERTYPE_PAE (line 354) | ETHERTYPE_PAE = 0x888e
constant ETHERTYPE_PCS (line 355) | ETHERTYPE_PCS = 0x4242
constant ETHERTYPE_PLANNING (line 356) | ETHERTYPE_PLANNING = 0x8044
constant ETHERTYPE_PPP (line 357) | ETHERTYPE_PPP = 0x880b
constant ETHERTYPE_PPPOE (line 358) | ETHERTYPE_PPPOE = 0x8864
constant ETHERTYPE_PPPOEDISC (line 359) | ETHERTYPE_PPPOEDISC = 0x8863
constant ETHERTYPE_PRIMENTS (line 360) | ETHERTYPE_PRIMENTS = 0x7031
constant ETHERTYPE_PUP (line 361) | ETHERTYPE_PUP = 0x200
constant ETHERTYPE_PUPAT (line 362) | ETHERTYPE_PUPAT = 0x200
constant ETHERTYPE_QINQ (line 363) | ETHERTYPE_QINQ = 0x88a8
constant ETHERTYPE_RACAL (line 364) | ETHERTYPE_RACAL = 0x7030
constant ETHERTYPE_RATIONAL (line 365) | ETHERTYPE_RATIONAL = 0x8150
constant ETHERTYPE_RAWFR (line 366) | ETHERTYPE_RAWFR = 0x6559
constant ETHERTYPE_RCL (line 367) | ETHERTYPE_RCL = 0x1995
constant ETHERTYPE_RDP (line 368) | ETHERTYPE_RDP = 0x8739
constant ETHERTYPE_RETIX (line 369) | ETHERTYPE_RETIX = 0x80f2
constant ETHERTYPE_REVARP (line 370) | ETHERTYPE_REVARP = 0x8035
constant ETHERTYPE_SCA (line 371) | ETHERTYPE_SCA = 0x6007
constant ETHERTYPE_SECTRA (line 372) | ETHERTYPE_SECTRA = 0x86db
constant ETHERTYPE_SECUREDATA (line 373) | ETHERTYPE_SECUREDATA = 0x876d
constant ETHERTYPE_SGITW (line 374) | ETHERTYPE_SGITW = 0x817e
constant ETHERTYPE_SG_BOUNCE (line 375) | ETHERTYPE_SG_BOUNCE = 0x8016
constant ETHERTYPE_SG_DIAG (line 376) | ETHERTYPE_SG_DIAG = 0x8013
constant ETHERTYPE_SG_NETGAMES (line 377) | ETHERTYPE_SG_NETGAMES = 0x8014
constant ETHERTYPE_SG_RESV (line 378) | ETHERTYPE_SG_RESV = 0x8015
constant ETHERTYPE_SIMNET (line 379) | ETHERTYPE_SIMNET = 0x5208
constant ETHERTYPE_SLOW (line 380) | ETHERTYPE_SLOW = 0x8809
constant ETHERTYPE_SNA (line 381) | ETHERTYPE_SNA = 0x80d5
constant ETHERTYPE_SNMP (line 382) | ETHERTYPE_SNMP = 0x814c
constant ETHERTYPE_SONIX (line 383) | ETHERTYPE_SONIX = 0xfaf5
constant ETHERTYPE_SPIDER (line 384) | ETHERTYPE_SPIDER = 0x809f
constant ETHERTYPE_SPRITE (line 385) | ETHERTYPE_SPRITE = 0x500
constant ETHERTYPE_STP (line 386) | ETHERTYPE_STP = 0x8181
constant ETHERTYPE_TALARIS (line 387) | ETHERTYPE_TALARIS = 0x812b
constant ETHERTYPE_TALARISMC (line 388) | ETHERTYPE_TALARISMC = 0x852b
constant ETHERTYPE_TCPCOMP (line 389) | ETHERTYPE_TCPCOMP = 0x876b
constant ETHERTYPE_TCPSM (line 390) | ETHERTYPE_TCPSM = 0x9002
constant ETHERTYPE_TEC (line 391) | ETHERTYPE_TEC = 0x814f
constant ETHERTYPE_TIGAN (line 392) | ETHERTYPE_TIGAN = 0x802f
constant ETHERTYPE_TRAIL (line 393) | ETHERTYPE_TRAIL = 0x1000
constant ETHERTYPE_TRANSETHER (line 394) | ETHERTYPE_TRANSETHER = 0x6558
constant ETHERTYPE_TYMSHARE (line 395) | ETHERTYPE_TYMSHARE = 0x802e
constant ETHERTYPE_UBBST (line 396) | ETHERTYPE_UBBST = 0x7005
constant ETHERTYPE_UBDEBUG (line 397) | ETHERTYPE_UBDEBUG = 0x900
constant ETHERTYPE_UBDIAGLOOP (line 398) | ETHERTYPE_UBDIAGLOOP = 0x7002
constant ETHERTYPE_UBDL (line 399) | ETHERTYPE_UBDL = 0x7000
constant ETHERTYPE_UBNIU (line 400) | ETHERTYPE_UBNIU = 0x7001
constant ETHERTYPE_UBNMC (line 401) | ETHERTYPE_UBNMC = 0x7003
constant ETHERTYPE_VALID (line 402) | ETHERTYPE_VALID = 0x1600
constant ETHERTYPE_VARIAN (line 403) | ETHERTYPE_VARIAN = 0x80dd
constant ETHERTYPE_VAXELN (line 404) | ETHERTYPE_VAXELN = 0x803b
constant ETHERTYPE_VEECO (line 405) | ETHERTYPE_VEECO = 0x8067
constant ETHERTYPE_VEXP (line 406) | ETHERTYPE_VEXP = 0x805b
constant ETHERTYPE_VGLAB (line 407) | ETHERTYPE_VGLAB = 0x8131
constant ETHERTYPE_VINES (line 408) | ETHERTYPE_VINES = 0xbad
constant ETHERTYPE_VINESECHO (line 409) | ETHERTYPE_VINESECHO = 0xbaf
constant ETHERTYPE_VINESLOOP (line 410) | ETHERTYPE_VINESLOOP = 0xbae
constant ETHERTYPE_VITAL (line 411) | ETHERTYPE_VITAL = 0xff00
constant ETHERTYPE_VLAN (line 412) | ETHERTYPE_VLAN = 0x8100
constant ETHERTYPE_VLTLMAN (line 413) | ETHERTYPE_VLTLMAN = 0x8080
constant ETHERTYPE_VPROD (line 414) | ETHERTYPE_VPROD = 0x805c
constant ETHERTYPE_VURESERVED (line 415) | ETHERTYPE_VURESERVED = 0x8147
constant ETHERTYPE_WATERLOO (line 416) | ETHERTYPE_WATERLOO = 0x8130
constant ETHERTYPE_WELLFLEET (line 417) | ETHERTYPE_WELLFLEET = 0x8103
constant ETHERTYPE_X25 (line 418) | ETHERTYPE_X25 = 0x805
constant ETHERTYPE_X75 (line 419) | ETHERTYPE_X75 = 0x801
constant ETHERTYPE_XNSSM (line 420) | ETHERTYPE_XNSSM = 0x9001
constant ETHERTYPE_XTP (line 421) | ETHERTYPE_XTP = 0x817d
constant ETHER_ADDR_LEN (line 422) | ETHER_ADDR_LEN = 0x6
constant ETHER_ALIGN (line 423) | ETHER_ALIGN = 0x2
constant ETHER_CRC_LEN (line 424) | ETHER_CRC_LEN = 0x4
constant ETHER_CRC_POLY_BE (line 425) | ETHER_CRC_POLY_BE = 0x4c11db6
constant ETHER_CRC_POLY_LE (line 426) | ETHER_CRC_POLY_LE = 0xedb88320
constant ETHER_HDR_LEN (line 427) | ETHER_HDR_LEN = 0xe
constant ETHER_MAX_DIX_LEN (line 428) | ETHER_MAX_DIX_LEN = 0x600
constant ETHER_MAX_HARDMTU_LEN (line 429) | ETHER_MAX_HARDMTU_LEN = 0xff9b
constant ETHER_MAX_LEN (line 430) | ETHER_MAX_LEN = 0x5ee
constant ETHER_MIN_LEN (line 431) | ETHER_MIN_LEN = 0x40
constant ETHER_TYPE_LEN (line 432) | ETHER_TYPE_LEN = 0x2
constant ETHER_VLAN_ENCAP_LEN (line 433) | ETHER_VLAN_ENCAP_LEN = 0x4
constant EVFILT_AIO (line 434) | EVFILT_AIO = -0x3
constant EVFILT_DEVICE (line 435) | EVFILT_DEVICE = -0x8
constant EVFILT_PROC (line 436) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 437) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 438) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 439) | EVFILT_SYSCOUNT = 0x8
constant EVFILT_TIMER (line 440) | EVFILT_TIMER = -0x7
constant EVFILT_VNODE (line 441) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 442) | EVFILT_WRITE = -0x2
constant EVL_ENCAPLEN (line 443) | EVL_ENCAPLEN = 0x4
constant EVL_PRIO_BITS (line 444) | EVL_PRIO_BITS = 0xd
constant EVL_PRIO_MAX (line 445) | EVL_PRIO_MAX = 0x7
constant EVL_VLID_MASK (line 446) | EVL_VLID_MASK = 0xfff
constant EVL_VLID_MAX (line 447) | EVL_VLID_MAX = 0xffe
constant EVL_VLID_MIN (line 448) | EVL_VLID_MIN = 0x1
constant EVL_VLID_NULL (line 449) | EVL_VLID_NULL = 0x0
constant EV_ADD (line 450) | EV_ADD = 0x1
constant EV_CLEAR (line 451) | EV_CLEAR = 0x20
constant EV_DELETE (line 452) | EV_DELETE = 0x2
constant EV_DISABLE (line 453) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 454) | EV_DISPATCH = 0x80
constant EV_ENABLE (line 455) | EV_ENABLE = 0x4
constant EV_EOF (line 456) | EV_EOF = 0x8000
constant EV_ERROR (line 457) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 458) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 459) | EV_ONESHOT = 0x10
constant EV_RECEIPT (line 460) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 461) | EV_SYSFLAGS = 0xf000
constant EXTA (line 462) | EXTA = 0x4b00
constant EXTB (line 463) | EXTB = 0x9600
constant EXTPROC (line 464) | EXTPROC = 0x800
constant FD_CLOEXEC (line 465) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 466) | FD_SETSIZE = 0x400
constant FLUSHO (line 467) | FLUSHO = 0x800000
constant F_DUPFD (line 468) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 469) | F_DUPFD_CLOEXEC = 0xa
constant F_GETFD (line 470) | F_GETFD = 0x1
constant F_GETFL (line 471) | F_GETFL = 0x3
constant F_GETLK (line 472) | F_GETLK = 0x7
constant F_GETOWN (line 473) | F_GETOWN = 0x5
constant F_ISATTY (line 474) | F_ISATTY = 0xb
constant F_OK (line 475) | F_OK = 0x0
constant F_RDLCK (line 476) | F_RDLCK = 0x1
constant F_SETFD (line 477) | F_SETFD = 0x2
constant F_SETFL (line 478) | F_SETFL = 0x4
constant F_SETLK (line 479) | F_SETLK = 0x8
constant F_SETLKW (line 480) | F_SETLKW = 0x9
constant F_SETOWN (line 481) | F_SETOWN = 0x6
constant F_UNLCK (line 482) | F_UNLCK = 0x2
constant F_WRLCK (line 483) | F_WRLCK = 0x3
constant HUPCL (line 484) | HUPCL = 0x4000
constant HW_MACHINE (line 485) | HW_MACHINE = 0x1
constant ICANON (line 486) | ICANON = 0x100
constant ICMP6_FILTER (line 487) | ICMP6_FILTER = 0x12
constant ICRNL (line 488) | ICRNL = 0x100
constant IEXTEN (line 489) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 490) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 491) | IFAN_DEPARTURE = 0x1
constant IFF_ALLMULTI (line 492) | IFF_ALLMULTI = 0x200
constant IFF_BROADCAST (line 493) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 494) | IFF_CANTCHANGE = 0x8e52
constant IFF_DEBUG (line 495) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 496) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 497) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 498) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 499) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 500) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 501) | IFF_NOARP = 0x80
constant IFF_OACTIVE (line 502) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 503) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 504) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 505) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 506) | IFF_SIMPLEX = 0x800
constant IFF_STATICARP (line 507) | IFF_STATICARP = 0x20
constant IFF_UP (line 508) | IFF_UP = 0x1
constant IFNAMSIZ (line 509) | IFNAMSIZ = 0x10
constant IFT_1822 (line 510) | IFT_1822 = 0x2
constant IFT_A12MPPSWITCH (line 511) | IFT_A12MPPSWITCH = 0x82
constant IFT_AAL2 (line 512) | IFT_AAL2 = 0xbb
constant IFT_AAL5 (line 513) | IFT_AAL5 = 0x31
constant IFT_ADSL (line 514) | IFT_ADSL = 0x5e
constant IFT_AFLANE8023 (line 515) | IFT_AFLANE8023 = 0x3b
constant IFT_AFLANE8025 (line 516) | IFT_AFLANE8025 = 0x3c
constant IFT_ARAP (line 517) | IFT_ARAP = 0x58
constant IFT_ARCNET (line 518) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 519) | IFT_ARCNETPLUS = 0x24
constant IFT_ASYNC (line 520) | IFT_ASYNC = 0x54
constant IFT_ATM (line 521) | IFT_ATM = 0x25
constant IFT_ATMDXI (line 522) | IFT_ATMDXI = 0x69
constant IFT_ATMFUNI (line 523) | IFT_ATMFUNI = 0x6a
constant IFT_ATMIMA (line 524) | IFT_ATMIMA = 0x6b
constant IFT_ATMLOGICAL (line 525) | IFT_ATMLOGICAL = 0x50
constant IFT_ATMRADIO (line 526) | IFT_ATMRADIO = 0xbd
constant IFT_ATMSUBINTERFACE (line 527) | IFT_ATMSUBINTERFACE = 0x86
constant IFT_ATMVCIENDPT (line 528) | IFT_ATMVCIENDPT = 0xc2
constant IFT_ATMVIRTUAL (line 529) | IFT_ATMVIRTUAL = 0x95
constant IFT_BGPPOLICYACCOUNTING (line 530) | IFT_BGPPOLICYACCOUNTING = 0xa2
constant IFT_BLUETOOTH (line 531) | IFT_BLUETOOTH = 0xf8
constant IFT_BRIDGE (line 532) | IFT_BRIDGE = 0xd1
constant IFT_BSC (line 533) | IFT_BSC = 0x53
constant IFT_CARP (line 534) | IFT_CARP = 0xf7
constant IFT_CCTEMUL (line 535) | IFT_CCTEMUL = 0x3d
constant IFT_CEPT (line 536) | IFT_CEPT = 0x13
constant IFT_CES (line 537) | IFT_CES = 0x85
constant IFT_CHANNEL (line 538) | IFT_CHANNEL = 0x46
constant IFT_CNR (line 539) | IFT_CNR = 0x55
constant IFT_COFFEE (line 540) | IFT_COFFEE = 0x84
constant IFT_COMPOSITELINK (line 541) | IFT_COMPOSITELINK = 0x9b
constant IFT_DCN (line 542) | IFT_DCN = 0x8d
constant IFT_DIGITALPOWERLINE (line 543) | IFT_DIGITALPOWERLINE = 0x8a
constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 544) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
constant IFT_DLSW (line 545) | IFT_DLSW = 0x4a
constant IFT_DOCSCABLEDOWNSTREAM (line 546) | IFT_DOCSCABLEDOWNSTREAM = 0x80
constant IFT_DOCSCABLEMACLAYER (line 547) | IFT_DOCSCABLEMACLAYER = 0x7f
constant IFT_DOCSCABLEUPSTREAM (line 548) | IFT_DOCSCABLEUPSTREAM = 0x81
constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 549) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd
constant IFT_DS0 (line 550) | IFT_DS0 = 0x51
constant IFT_DS0BUNDLE (line 551) | IFT_DS0BUNDLE = 0x52
constant IFT_DS1FDL (line 552) | IFT_DS1FDL = 0xaa
constant IFT_DS3 (line 553) | IFT_DS3 = 0x1e
constant IFT_DTM (line 554) | IFT_DTM = 0x8c
constant IFT_DUMMY (line 555) | IFT_DUMMY = 0xf1
constant IFT_DVBASILN (line 556) | IFT_DVBASILN = 0xac
constant IFT_DVBASIOUT (line 557) | IFT_DVBASIOUT = 0xad
constant IFT_DVBRCCDOWNSTREAM (line 558) | IFT_DVBRCCDOWNSTREAM = 0x93
constant IFT_DVBRCCMACLAYER (line 559) | IFT_DVBRCCMACLAYER = 0x92
constant IFT_DVBRCCUPSTREAM (line 560) | IFT_DVBRCCUPSTREAM = 0x94
constant IFT_ECONET (line 561) | IFT_ECONET = 0xce
constant IFT_ENC (line 562) | IFT_ENC = 0xf4
constant IFT_EON (line 563) | IFT_EON = 0x19
constant IFT_EPLRS (line 564) | IFT_EPLRS = 0x57
constant IFT_ESCON (line 565) | IFT_ESCON = 0x49
constant IFT_ETHER (line 566) | IFT_ETHER = 0x6
constant IFT_FAITH (line 567) | IFT_FAITH = 0xf3
constant IFT_FAST (line 568) | IFT_FAST = 0x7d
constant IFT_FASTETHER (line 569) | IFT_FASTETHER = 0x3e
constant IFT_FASTETHERFX (line 570) | IFT_FASTETHERFX = 0x45
constant IFT_FDDI (line 571) | IFT_FDDI = 0xf
constant IFT_FIBRECHANNEL (line 572) | IFT_FIBRECHANNEL = 0x38
constant IFT_FRAMERELAYINTERCONNECT (line 573) | IFT_FRAMERELAYINTERCONNECT = 0x3a
constant IFT_FRAMERELAYMPI (line 574) | IFT_FRAMERELAYMPI = 0x5c
constant IFT_FRDLCIENDPT (line 575) | IFT_FRDLCIENDPT = 0xc1
constant IFT_FRELAY (line 576) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 577) | IFT_FRELAYDCE = 0x2c
constant IFT_FRF16MFRBUNDLE (line 578) | IFT_FRF16MFRBUNDLE = 0xa3
constant IFT_FRFORWARD (line 579) | IFT_FRFORWARD = 0x9e
constant IFT_G703AT2MB (line 580) | IFT_G703AT2MB = 0x43
constant IFT_G703AT64K (line 581) | IFT_G703AT64K = 0x42
constant IFT_GIF (line 582) | IFT_GIF = 0xf0
constant IFT_GIGABITETHERNET (line 583) | IFT_GIGABITETHERNET = 0x75
constant IFT_GR303IDT (line 584) | IFT_GR303IDT = 0xb2
constant IFT_GR303RDT (line 585) | IFT_GR303RDT = 0xb1
constant IFT_H323GATEKEEPER (line 586) | IFT_H323GATEKEEPER = 0xa4
constant IFT_H323PROXY (line 587) | IFT_H323PROXY = 0xa5
constant IFT_HDH1822 (line 588) | IFT_HDH1822 = 0x3
constant IFT_HDLC (line 589) | IFT_HDLC = 0x76
constant IFT_HDSL2 (line 590) | IFT_HDSL2 = 0xa8
constant IFT_HIPERLAN2 (line 591) | IFT_HIPERLAN2 = 0xb7
constant IFT_HIPPI (line 592) | IFT_HIPPI = 0x2f
constant IFT_HIPPIINTERFACE (line 593) | IFT_HIPPIINTERFACE = 0x39
constant IFT_HOSTPAD (line 594) | IFT_HOSTPAD = 0x5a
constant IFT_HSSI (line 595) | IFT_HSSI = 0x2e
constant IFT_HY (line 596) | IFT_HY = 0xe
constant IFT_IBM370PARCHAN (line 597) | IFT_IBM370PARCHAN = 0x48
constant IFT_IDSL (line 598) | IFT_IDSL = 0x9a
constant IFT_IEEE1394 (line 599) | IFT_IEEE1394 = 0x90
constant IFT_IEEE80211 (line 600) | IFT_IEEE80211 = 0x47
constant IFT_IEEE80212 (line 601) | IFT_IEEE80212 = 0x37
constant IFT_IEEE8023ADLAG (line 602) | IFT_IEEE8023ADLAG = 0xa1
constant IFT_IFGSN (line 603) | IFT_IFGSN = 0x91
constant IFT_IMT (line 604) | IFT_IMT = 0xbe
constant IFT_INFINIBAND (line 605) | IFT_INFINIBAND = 0xc7
constant IFT_INTERLEAVE (line 606) | IFT_INTERLEAVE = 0x7c
constant IFT_IP (line 607) | IFT_IP = 0x7e
constant IFT_IPFORWARD (line 608) | IFT_IPFORWARD = 0x8e
constant IFT_IPOVERATM (line 609) | IFT_IPOVERATM = 0x72
constant IFT_IPOVERCDLC (line 610) | IFT_IPOVERCDLC = 0x6d
constant IFT_IPOVERCLAW (line 611) | IFT_IPOVERCLAW = 0x6e
constant IFT_IPSWITCH (line 612) | IFT_IPSWITCH = 0x4e
constant IFT_ISDN (line 613) | IFT_ISDN = 0x3f
constant IFT_ISDNBASIC (line 614) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 615) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISDNS (line 616) | IFT_ISDNS = 0x4b
constant IFT_ISDNU (line 617) | IFT_ISDNU = 0x4c
constant IFT_ISO88022LLC (line 618) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 619) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 620) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 621) | IFT_ISO88025 = 0x9
constant IFT_ISO88025CRFPINT (line 622) | IFT_ISO88025CRFPINT = 0x62
constant IFT_ISO88025DTR (line 623) | IFT_ISO88025DTR = 0x56
constant IFT_ISO88025FIBER (line 624) | IFT_ISO88025FIBER = 0x73
constant IFT_ISO88026 (line 625) | IFT_ISO88026 = 0xa
constant IFT_ISUP (line 626) | IFT_ISUP = 0xb3
constant IFT_L2VLAN (line 627) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 628) | IFT_L3IPVLAN = 0x88
constant IFT_L3IPXVLAN (line 629) | IFT_L3IPXVLAN = 0x89
constant IFT_LAPB (line 630) | IFT_LAPB = 0x10
constant IFT_LAPD (line 631) | IFT_LAPD = 0x4d
constant IFT_LAPF (line 632) | IFT_LAPF = 0x77
constant IFT_LINEGROUP (line 633) | IFT_LINEGROUP = 0xd2
constant IFT_LOCALTALK (line 634) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 635) | IFT_LOOP = 0x18
constant IFT_MBIM (line 636) | IFT_MBIM = 0xfa
constant IFT_MEDIAMAILOVERIP (line 637) | IFT_MEDIAMAILOVERIP = 0x8b
constant IFT_MFSIGLINK (line 638) | IFT_MFSIGLINK = 0xa7
constant IFT_MIOX25 (line 639) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 640) | IFT_MODEM = 0x30
constant IFT_MPC (line 641) | IFT_MPC = 0x71
constant IFT_MPLS (line 642) | IFT_MPLS = 0xa6
constant IFT_MPLSTUNNEL (line 643) | IFT_MPLSTUNNEL = 0x96
constant IFT_MSDSL (line 644) | IFT_MSDSL = 0x8f
constant IFT_MVL (line 645) | IFT_MVL = 0xbf
constant IFT_MYRINET (line 646) | IFT_MYRINET = 0x63
constant IFT_NFAS (line 647) | IFT_NFAS = 0xaf
constant IFT_NSIP (line 648) | IFT_NSIP = 0x1b
constant IFT_OPTICALCHANNEL (line 649) | IFT_OPTICALCHANNEL = 0xc3
constant IFT_OPTICALTRANSPORT (line 650) | IFT_OPTICALTRANSPORT = 0xc4
constant IFT_OTHER (line 651) | IFT_OTHER = 0x1
constant IFT_P10 (line 652) | IFT_P10 = 0xc
constant IFT_P80 (line 653) | IFT_P80 = 0xd
constant IFT_PARA (line 654) | IFT_PARA = 0x22
constant IFT_PFLOG (line 655) | IFT_PFLOG = 0xf5
constant IFT_PFLOW (line 656) | IFT_PFLOW = 0xf9
constant IFT_PFSYNC (line 657) | IFT_PFSYNC = 0xf6
constant IFT_PLC (line 658) | IFT_PLC = 0xae
constant IFT_PON155 (line 659) | IFT_PON155 = 0xcf
constant IFT_PON622 (line 660) | IFT_PON622 = 0xd0
constant IFT_POS (line 661) | IFT_POS = 0xab
constant IFT_PPP (line 662) | IFT_PPP = 0x17
constant IFT_PPPMULTILINKBUNDLE (line 663) | IFT_PPPMULTILINKBUNDLE = 0x6c
constant IFT_PROPATM (line 664) | IFT_PROPATM = 0xc5
constant IFT_PROPBWAP2MP (line 665) | IFT_PROPBWAP2MP = 0xb8
constant IFT_PROPCNLS (line 666) | IFT_PROPCNLS = 0x59
constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 667) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5
constant IFT_PROPDOCSWIRELESSMACLAYER (line 668) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4
constant IFT_PROPDOCSWIRELESSUPSTREAM (line 669) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6
constant IFT_PROPMUX (line 670) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 671) | IFT_PROPVIRTUAL = 0x35
constant IFT_PROPWIRELESSP2P (line 672) | IFT_PROPWIRELESSP2P = 0x9d
constant IFT_PTPSERIAL (line 673) | IFT_PTPSERIAL = 0x16
constant IFT_PVC (line 674) | IFT_PVC = 0xf2
constant IFT_Q2931 (line 675) | IFT_Q2931 = 0xc9
constant IFT_QLLC (line 676) | IFT_QLLC = 0x44
constant IFT_RADIOMAC (line 677) | IFT_RADIOMAC = 0xbc
constant IFT_RADSL (line 678) | IFT_RADSL = 0x5f
constant IFT_REACHDSL (line 679) | IFT_REACHDSL = 0xc0
constant IFT_RFC1483 (line 680) | IFT_RFC1483 = 0x9f
constant IFT_RS232 (line 681) | IFT_RS232 = 0x21
constant IFT_RSRB (line 682) | IFT_RSRB = 0x4f
constant IFT_SDLC (line 683) | IFT_SDLC = 0x11
constant IFT_SDSL (line 684) | IFT_SDSL = 0x60
constant IFT_SHDSL (line 685) | IFT_SHDSL = 0xa9
constant IFT_SIP (line 686) | IFT_SIP = 0x1f
constant IFT_SIPSIG (line 687) | IFT_SIPSIG = 0xcc
constant IFT_SIPTG (line 688) | IFT_SIPTG = 0xcb
constant IFT_SLIP (line 689) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 690) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 691) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 692) | IFT_SONET = 0x27
constant IFT_SONETOVERHEADCHANNEL (line 693) | IFT_SONETOVERHEADCHANNEL = 0xb9
constant IFT_SONETPATH (line 694) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 695) | IFT_SONETVT = 0x33
constant IFT_SRP (line 696) | IFT_SRP = 0x97
constant IFT_SS7SIGLINK (line 697) | IFT_SS7SIGLINK = 0x9c
constant IFT_STACKTOSTACK (line 698) | IFT_STACKTOSTACK = 0x6f
constant IFT_STARLAN (line 699) | IFT_STARLAN = 0xb
constant IFT_T1 (line 700) | IFT_T1 = 0x12
constant IFT_TDLC (line 701) | IFT_TDLC = 0x74
constant IFT_TELINK (line 702) | IFT_TELINK = 0xc8
constant IFT_TERMPAD (line 703) | IFT_TERMPAD = 0x5b
constant IFT_TR008 (line 704) | IFT_TR008 = 0xb0
constant IFT_TRANSPHDLC (line 705) | IFT_TRANSPHDLC = 0x7b
constant IFT_TUNNEL (line 706) | IFT_TUNNEL = 0x83
constant IFT_ULTRA (line 707) | IFT_ULTRA = 0x1d
constant IFT_USB (line 708) | IFT_USB = 0xa0
constant IFT_V11 (line 709) | IFT_V11 = 0x40
constant IFT_V35 (line 710) | IFT_V35 = 0x2d
constant IFT_V36 (line 711) | IFT_V36 = 0x41
constant IFT_V37 (line 712) | IFT_V37 = 0x78
constant IFT_VDSL (line 713) | IFT_VDSL = 0x61
constant IFT_VIRTUALIPADDRESS (line 714) | IFT_VIRTUALIPADDRESS = 0x70
constant IFT_VIRTUALTG (line 715) | IFT_VIRTUALTG = 0xca
constant IFT_VOICEDID (line 716) | IFT_VOICEDID = 0xd5
constant IFT_VOICEEM (line 717) | IFT_VOICEEM = 0x64
constant IFT_VOICEEMFGD (line 718) | IFT_VOICEEMFGD = 0xd3
constant IFT_VOICEENCAP (line 719) | IFT_VOICEENCAP = 0x67
constant IFT_VOICEFGDEANA (line 720) | IFT_VOICEFGDEANA = 0xd4
constant IFT_VOICEFXO (line 721) | IFT_VOICEFXO = 0x65
constant IFT_VOICEFXS (line 722) | IFT_VOICEFXS = 0x66
constant IFT_VOICEOVERATM (line 723) | IFT_VOICEOVERATM = 0x98
constant IFT_VOICEOVERCABLE (line 724) | IFT_VOICEOVERCABLE = 0xc6
constant IFT_VOICEOVERFRAMERELAY (line 725) | IFT_VOICEOVERFRAMERELAY = 0x99
constant IFT_VOICEOVERIP (line 726) | IFT_VOICEOVERIP = 0x68
constant IFT_X213 (line 727) | IFT_X213 = 0x5d
constant IFT_X25 (line 728) | IFT_X25 = 0x5
constant IFT_X25DDN (line 729) | IFT_X25DDN = 0x4
constant IFT_X25HUNTGROUP (line 730) | IFT_X25HUNTGROUP = 0x7a
constant IFT_X25MLP (line 731) | IFT_X25MLP = 0x79
constant IFT_X25PLE (line 732) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 733) | IFT_XETHER = 0x1a
constant IGNBRK (line 734) | IGNBRK = 0x1
constant IGNCR (line 735) | IGNCR = 0x80
constant IGNPAR (line 736) | IGNPAR = 0x4
constant IMAXBEL (line 737) | IMAXBEL = 0x2000
constant INLCR (line 738) | INLCR = 0x40
constant INPCK (line 739) | INPCK = 0x10
constant IN_CLASSA_HOST (line 740) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 741) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 742) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 743) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 744) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 745) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 746) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 747) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 748) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 749) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 750) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 751) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 752) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 753) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 754) | IN_LOOPBACKNET = 0x7f
constant IN_RFC3021_HOST (line 755) | IN_RFC3021_HOST = 0x1
constant IN_RFC3021_NET (line 756) | IN_RFC3021_NET = 0xfffffffe
constant IN_RFC3021_NSHIFT (line 757) | IN_RFC3021_NSHIFT = 0x1f
constant IPPROTO_AH (line 758) | IPPROTO_AH = 0x33
constant IPPROTO_CARP (line 759) | IPPROTO_CARP = 0x70
constant IPPROTO_DIVERT (line 760) | IPPROTO_DIVERT = 0x102
constant IPPROTO_DONE (line 761) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 762) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 763) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 764) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 765) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 766) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 767) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 768) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 769) | IPPROTO_GGP = 0x3
constant IPPROTO_GRE (line 770) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 771) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 772) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 773) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 774) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 775) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 776) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 777) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPIP (line 778) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV4 (line 779) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 780) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MAX (line 781) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 782) | IPPROTO_MAXID = 0x103
constant IPPROTO_MOBILE (line 783) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MPLS (line 784) | IPPROTO_MPLS = 0x89
constant IPPROTO_NONE (line 785) | IPPROTO_NONE = 0x3b
constant IPPROTO_PFSYNC (line 786) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PIM (line 787) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 788) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 789) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 790) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 791) | IPPROTO_RSVP = 0x2e
constant IPPROTO_TCP (line 792) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 793) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 794) | IPPROTO_UDP = 0x11
constant IPV6_AUTH_LEVEL (line 795) | IPV6_AUTH_LEVEL = 0x35
constant IPV6_AUTOFLOWLABEL (line 796) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_CHECKSUM (line 797) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 798) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 799) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 800) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 801) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 802) | IPV6_DSTOPTS = 0x32
constant IPV6_ESP_NETWORK_LEVEL (line 803) | IPV6_ESP_NETWORK_LEVEL = 0x37
constant IPV6_ESP_TRANS_LEVEL (line 804) | IPV6_ESP_TRANS_LEVEL = 0x36
constant IPV6_FAITH (line 805) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 806) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 807) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FRAGTTL (line 808) | IPV6_FRAGTTL = 0x78
constant IPV6_HLIMDEC (line 809) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 810) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 811) | IPV6_HOPOPTS = 0x31
constant IPV6_IPCOMP_LEVEL (line 812) | IPV6_IPCOMP_LEVEL = 0x3c
constant IPV6_JOIN_GROUP (line 813) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 814) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 815) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXPACKET (line 816) | IPV6_MAXPACKET = 0xffff
constant IPV6_MINHOPCOUNT (line 817) | IPV6_MINHOPCOUNT = 0x41
constant IPV6_MMTU (line 818) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 819) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 820) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 821) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 822) | IPV6_NEXTHOP = 0x30
constant IPV6_OPTIONS (line 823) | IPV6_OPTIONS = 0x1
constant IPV6_PATHMTU (line 824) | IPV6_PATHMTU = 0x2c
constant IPV6_PIPEX (line 825) | IPV6_PIPEX = 0x3f
constant IPV6_PKTINFO (line 826) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 827) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 828) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 829) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 830) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVDSTOPTS (line 831) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVDSTPORT (line 832) | IPV6_RECVDSTPORT = 0x40
constant IPV6_RECVHOPLIMIT (line 833) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 834) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 835) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 836) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRTHDR (line 837) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 838) | IPV6_RECVTCLASS = 0x39
constant IPV6_RTABLE (line 839) | IPV6_RTABLE = 0x1021
constant IPV6_RTHDR (line 840) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 841) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 842) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 843) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 844) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 845) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 846) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 847) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 848) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 849) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 850) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 851) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 852) | IP_ADD_MEMBERSHIP = 0xc
constant IP_AUTH_LEVEL (line 853) | IP_AUTH_LEVEL = 0x14
constant IP_DEFAULT_MULTICAST_LOOP (line 854) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 855) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 856) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 857) | IP_DROP_MEMBERSHIP = 0xd
constant IP_ESP_NETWORK_LEVEL (line 858) | IP_ESP_NETWORK_LEVEL = 0x16
constant IP_ESP_TRANS_LEVEL (line 859) | IP_ESP_TRANS_LEVEL = 0x15
constant IP_HDRINCL (line 860) | IP_HDRINCL = 0x2
constant IP_IPCOMP_LEVEL (line 861) | IP_IPCOMP_LEVEL = 0x1d
constant IP_IPDEFTTL (line 862) | IP_IPDEFTTL = 0x25
constant IP_IPSECFLOWINFO (line 863) | IP_IPSECFLOWINFO = 0x24
constant IP_IPSEC_LOCAL_AUTH (line 864) | IP_IPSEC_LOCAL_AUTH = 0x1b
constant IP_IPSEC_LOCAL_CRED (line 865) | IP_IPSEC_LOCAL_CRED = 0x19
constant IP_IPSEC_LOCAL_ID (line 866) | IP_IPSEC_LOCAL_ID = 0x17
constant IP_IPSEC_REMOTE_AUTH (line 867) | IP_IPSEC_REMOTE_AUTH = 0x1c
constant IP_IPSEC_REMOTE_CRED (line 868) | IP_IPSEC_REMOTE_CRED = 0x1a
constant IP_IPSEC_REMOTE_ID (line 869) | IP_IPSEC_REMOTE_ID = 0x18
constant IP_MAXPACKET (line 870) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 871) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MF (line 872) | IP_MF = 0x2000
constant IP_MINTTL (line 873) | IP_MINTTL = 0x20
constant IP_MIN_MEMBERSHIPS (line 874) | IP_MIN_MEMBERSHIPS = 0xf
constant IP_MSS (line 875) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 876) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 877) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 878) | IP_MULTICAST_TTL = 0xa
constant IP_OFFMASK (line 879) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 880) | IP_OPTIONS = 0x1
constant IP_PIPEX (line 881) | IP_PIPEX = 0x22
constant IP_PORTRANGE (line 882) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 883) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 884) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 885) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 886) | IP_RECVDSTADDR = 0x7
constant IP_RECVDSTPORT (line 887) | IP_RECVDSTPORT = 0x21
constant IP_RECVIF (line 888) | IP_RECVIF = 0x1e
constant IP_RECVOPTS (line 889) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 890) | IP_RECVRETOPTS = 0x6
constant IP_RECVRTABLE (line 891) | IP_RECVRTABLE = 0x23
constant IP_RECVTTL (line 892) | IP_RECVTTL = 0x1f
constant IP_RETOPTS (line 893) | IP_RETOPTS = 0x8
constant IP_RF (line 894) | IP_RF = 0x8000
constant IP_RTABLE (line 895) | IP_RTABLE = 0x1021
constant IP_SENDSRCADDR (line 896) | IP_SENDSRCADDR = 0x7
constant IP_TOS (line 897) | IP_TOS = 0x3
constant IP_TTL (line 898) | IP_TTL = 0x4
constant ISIG (line 899) | ISIG = 0x80
constant ISTRIP (line 900) | ISTRIP = 0x20
constant IUCLC (line 901) | IUCLC = 0x1000
constant IXANY (line 902) | IXANY = 0x800
constant IXOFF (line 903) | IXOFF = 0x400
constant IXON (line 904) | IXON = 0x200
constant KERN_HOSTNAME (line 905) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 906) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 907) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 908) | KERN_VERSION = 0x4
constant LCNT_OVERLOAD_FLUSH (line 909) | LCNT_OVERLOAD_FLUSH = 0x6
constant LOCK_EX (line 910) | LOCK_EX = 0x2
constant LOCK_NB (line 911) | LOCK_NB = 0x4
constant LOCK_SH (line 912) | LOCK_SH = 0x1
constant LOCK_UN (line 913) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 914) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 915) | MADV_FREE = 0x6
constant MADV_NORMAL (line 916) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 917) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 918) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 919) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 920) | MADV_WILLNEED = 0x3
constant MAP_ANON (line 921) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 922) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 923) | MAP_COPY = 0x2
constant MAP_FILE (line 924) | MAP_FILE = 0x0
constant MAP_FIXED (line 925) | MAP_FIXED = 0x10
constant MAP_FLAGMASK (line 926) | MAP_FLAGMASK = 0x7ff7
constant MAP_HASSEMAPHORE (line 927) | MAP_HASSEMAPHORE = 0x0
constant MAP_INHERIT (line 928) | MAP_INHERIT = 0x0
constant MAP_INHERIT_COPY (line 929) | MAP_INHERIT_COPY = 0x1
constant MAP_INHERIT_NONE (line 930) | MAP_INHERIT_NONE = 0x2
constant MAP_INHERIT_SHARE (line 931) | MAP_INHERIT_SHARE = 0x0
constant MAP_INHERIT_ZERO (line 932) | MAP_INHERIT_ZERO = 0x3
constant MAP_NOEXTEND (line 933) | MAP_NOEXTEND = 0x0
constant MAP_NORESERVE (line 934) | MAP_NORESERVE = 0x0
constant MAP_PRIVATE (line 935) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 936) | MAP_RENAME = 0x0
constant MAP_SHARED (line 937) | MAP_SHARED = 0x1
constant MAP_STACK (line 938) | MAP_STACK = 0x4000
constant MAP_TRYFIXED (line 939) | MAP_TRYFIXED = 0x0
constant MCL_CURRENT (line 940) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 941) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 942) | MNT_ASYNC = 0x40
constant MNT_DEFEXPORTED (line 943) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 944) | MNT_DELEXPORT = 0x20000
constant MNT_DOOMED (line 945) | MNT_DOOMED = 0x8000000
constant MNT_EXPORTANON (line 946) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 947) | MNT_EXPORTED = 0x100
constant MNT_EXRDONLY (line 948) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 949) | MNT_FORCE = 0x80000
constant MNT_LAZY (line 950) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 951) | MNT_LOCAL = 0x1000
constant MNT_NOATIME (line 952) | MNT_NOATIME = 0x8000
constant MNT_NODEV (line 953) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 954) | MNT_NOEXEC = 0x4
constant MNT_NOPERM (line 955) | MNT_NOPERM = 0x20
constant MNT_NOSUID (line 956) | MNT_NOSUID = 0x8
constant MNT_NOWAIT (line 957) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 958) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 959) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 960) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 961) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 962) | MNT_SOFTDEP = 0x4000000
constant MNT_STALLED (line 963) | MNT_STALLED = 0x100000
constant MNT_SYNCHRONOUS (line 964) | MNT_SYNCHRONOUS = 0x2
constant MNT_UPDATE (line 965) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 966) | MNT_VISFLAGMASK = 0x400ffff
constant MNT_WAIT (line 967) | MNT_WAIT = 0x1
constant MNT_WANTRDWR (line 968) | MNT_WANTRDWR = 0x2000000
constant MNT_WXALLOWED (line 969) | MNT_WXALLOWED = 0x800
constant MSG_BCAST (line 970) | MSG_BCAST = 0x100
constant MSG_CMSG_CLOEXEC (line 971) | MSG_CMSG_CLOEXEC = 0x800
constant MSG_CTRUNC (line 972) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 973) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 974) | MSG_DONTWAIT = 0x80
constant MSG_EOR (line 975) | MSG_EOR = 0x8
constant MSG_MCAST (line 976) | MSG_MCAST = 0x200
constant MSG_NOSIGNAL (line 977) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 978) | MSG_OOB = 0x1
constant MSG_PEEK (line 979) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 980) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 981) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 982) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 983) | MS_INVALIDATE = 0x4
constant MS_SYNC (line 984) | MS_SYNC = 0x2
constant NAME_MAX (line 985) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 986) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 987) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 988) | NET_RT_IFLIST = 0x3
constant NET_RT_IFNAMES (line 989) | NET_RT_IFNAMES = 0x6
constant NET_RT_MAXID (line 990) | NET_RT_MAXID = 0x7
constant NET_RT_STATS (line 991) | NET_RT_STATS = 0x4
constant NET_RT_TABLE (line 992) | NET_RT_TABLE = 0x5
constant NOFLSH (line 993) | NOFLSH = 0x80000000
constant NOKERNINFO (line 994) | NOKERNINFO = 0x2000000
constant NOTE_ATTRIB (line 995) | NOTE_ATTRIB = 0x8
constant NOTE_CHANGE (line 996) | NOTE_CHANGE = 0x1
constant NOTE_CHILD (line 997) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 998) | NOTE_DELETE = 0x1
constant NOTE_EOF (line 999) | NOTE_EOF = 0x2
constant NOTE_EXEC (line 1000) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1001) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1002) | NOTE_EXTEND = 0x4
constant NOTE_FORK (line 1003) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1004) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1005) | NOTE_LOWAT = 0x1
constant NOTE_PCTRLMASK (line 1006) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1007) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 1008) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1009) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 1010) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1011) | NOTE_TRACKERR = 0x2
constant NOTE_TRUNCATE (line 1012) | NOTE_TRUNCATE = 0x80
constant NOTE_WRITE (line 1013) | NOTE_WRITE = 0x2
constant OCRNL (line 1014) | OCRNL = 0x10
constant OLCUC (line 1015) | OLCUC = 0x20
constant ONLCR (line 1016) | ONLCR = 0x2
constant ONLRET (line 1017) | ONLRET = 0x80
constant ONOCR (line 1018) | ONOCR = 0x40
constant ONOEOT (line 1019) | ONOEOT = 0x8
constant OPOST (line 1020) | OPOST = 0x1
constant OXTABS (line 1021) | OXTABS = 0x4
constant O_ACCMODE (line 1022) | O_ACCMODE = 0x3
constant O_APPEND (line 1023) | O_APPEND = 0x8
constant O_ASYNC (line 1024) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1025) | O_CLOEXEC = 0x10000
constant O_CREAT (line 1026) | O_CREAT = 0x200
constant O_DIRECTORY (line 1027) | O_DIRECTORY = 0x20000
constant O_DSYNC (line 1028) | O_DSYNC = 0x80
constant O_EXCL (line 1029) | O_EXCL = 0x800
constant O_EXLOCK (line 1030) | O_EXLOCK = 0x20
constant O_FSYNC (line 1031) | O_FSYNC = 0x80
constant O_NDELAY (line 1032) | O_NDELAY = 0x4
constant O_NOCTTY (line 1033) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1034) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1035) | O_NONBLOCK = 0x4
constant O_RDONLY (line 1036) | O_RDONLY = 0x0
constant O_RDWR (line 1037) | O_RDWR = 0x2
constant O_RSYNC (line 1038) | O_RSYNC = 0x80
constant O_SHLOCK (line 1039) | O_SHLOCK = 0x10
constant O_SYNC (line 1040) | O_SYNC = 0x80
constant O_TRUNC (line 1041) | O_TRUNC = 0x400
constant O_WRONLY (line 1042) | O_WRONLY = 0x1
constant PARENB (line 1043) | PARENB = 0x1000
constant PARMRK (line 1044) | PARMRK = 0x8
constant PARODD (line 1045) | PARODD = 0x2000
constant PENDIN (line 1046) | PENDIN = 0x20000000
constant PF_FLUSH (line 1047) | PF_FLUSH = 0x1
constant PRIO_PGRP (line 1048) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1049) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1050) | PRIO_USER = 0x2
constant PROT_EXEC (line 1051) | PROT_EXEC = 0x4
constant PROT_NONE (line 1052) | PROT_NONE = 0x0
constant PROT_READ (line 1053) | PROT_READ = 0x1
constant PROT_WRITE (line 1054) | PROT_WRITE = 0x2
constant RLIMIT_CORE (line 1055) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1056) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1057) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1058) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1059) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1060) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1061) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1062) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1063) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1064) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1065) | RTAX_AUTHOR = 0x6
constant RTAX_BFD (line 1066) | RTAX_BFD = 0xb
constant RTAX_BRD (line 1067) | RTAX_BRD = 0x7
constant RTAX_DNS (line 1068) | RTAX_DNS = 0xc
constant RTAX_DST (line 1069) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1070) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1071) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1072) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1073) | RTAX_IFP = 0x4
constant RTAX_LABEL (line 1074) | RTAX_LABEL = 0xa
constant RTAX_MAX (line 1075) | RTAX_MAX = 0xf
constant RTAX_NETMASK (line 1076) | RTAX_NETMASK = 0x2
constant RTAX_SEARCH (line 1077) | RTAX_SEARCH = 0xe
constant RTAX_SRC (line 1078) | RTAX_SRC = 0x8
constant RTAX_SRCMASK (line 1079) | RTAX_SRCMASK = 0x9
constant RTAX_STATIC (line 1080) | RTAX_STATIC = 0xd
constant RTA_AUTHOR (line 1081) | RTA_AUTHOR = 0x40
constant RTA_BFD (line 1082) | RTA_BFD = 0x800
constant RTA_BRD (line 1083) | RTA_BRD = 0x80
constant RTA_DNS (line 1084) | RTA_DNS = 0x1000
constant RTA_DST (line 1085) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1086) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1087) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1088) | RTA_IFA = 0x20
constant RTA_IFP (line 1089) | RTA_IFP = 0x10
constant RTA_LABEL (line 1090) | RTA_LABEL = 0x400
constant RTA_NETMASK (line 1091) | RTA_NETMASK = 0x4
constant RTA_SEARCH (line 1092) | RTA_SEARCH = 0x4000
constant RTA_SRC (line 1093) | RTA_SRC = 0x100
constant RTA_SRCMASK (line 1094) | RTA_SRCMASK = 0x200
constant RTA_STATIC (line 1095) | RTA_STATIC = 0x2000
constant RTF_ANNOUNCE (line 1096) | RTF_ANNOUNCE = 0x4000
constant RTF_BFD (line 1097) | RTF_BFD = 0x1000000
constant RTF_BLACKHOLE (line 1098) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1099) | RTF_BROADCAST = 0x400000
constant RTF_CACHED (line 1100) | RTF_CACHED = 0x20000
constant RTF_CLONED (line 1101) | RTF_CLONED = 0x10000
constant RTF_CLONING (line 1102) | RTF_CLONING = 0x100
constant RTF_CONNECTED (line 1103) | RTF_CONNECTED = 0x800000
constant RTF_DONE (line 1104) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1105) | RTF_DYNAMIC = 0x10
constant RTF_FMASK (line 1106) | RTF_FMASK = 0x110fc08
constant RTF_GATEWAY (line 1107) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1108) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1109) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1110) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1111) | RTF_MODIFIED = 0x20
constant RTF_MPATH (line 1112) | RTF_MPATH = 0x40000
constant RTF_MPLS (line 1113) | RTF_MPLS = 0x100000
constant RTF_MULTICAST (line 1114) | RTF_MULTICAST = 0x200
constant RTF_PERMANENT_ARP (line 1115) | RTF_PERMANENT_ARP = 0x2000
constant RTF_PROTO1 (line 1116) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1117) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1118) | RTF_PROTO3 = 0x2000
constant RTF_REJECT (line 1119) | RTF_REJECT = 0x8
constant RTF_STATIC (line 1120) | RTF_STATIC = 0x800
constant RTF_UP (line 1121) | RTF_UP = 0x1
constant RTF_USETRAILERS (line 1122) | RTF_USETRAILERS = 0x8000
constant RTM_ADD (line 1123) | RTM_ADD = 0x1
constant RTM_BFD (line 1124) | RTM_BFD = 0x12
constant RTM_CHANGE (line 1125) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1126) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1127) | RTM_DELETE = 0x2
constant RTM_DESYNC (line 1128) | RTM_DESYNC = 0x10
constant RTM_GET (line 1129) | RTM_GET = 0x4
constant RTM_IFANNOUNCE (line 1130) | RTM_IFANNOUNCE = 0xf
constant RTM_IFINFO (line 1131) | RTM_IFINFO = 0xe
constant RTM_INVALIDATE (line 1132) | RTM_INVALIDATE = 0x11
constant RTM_LOCK (line 1133) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1134) | RTM_LOSING = 0x5
constant RTM_MAXSIZE (line 1135) | RTM_MAXSIZE = 0x800
constant RTM_MISS (line 1136) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1137) | RTM_NEWADDR = 0xc
constant RTM_PROPOSAL (line 1138) | RTM_PROPOSAL = 0x13
constant RTM_REDIRECT (line 1139) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1140) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1141) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1142) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1143) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1144) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1145) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1146) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1147) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1148) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1149) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1150) | RTV_SSTHRESH = 0x20
constant RT_TABLEID_BITS (line 1151) | RT_TABLEID_BITS = 0x8
constant RT_TABLEID_MASK (line 1152) | RT_TABLEID_MASK = 0xff
constant RT_TABLEID_MAX (line 1153) | RT_TABLEID_MAX = 0xff
constant RUSAGE_CHILDREN (line 1154) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1155) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1156) | RUSAGE_THREAD = 0x1
constant SCM_RIGHTS (line 1157) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1158) | SCM_TIMESTAMP = 0x4
constant SHUT_RD (line 1159) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1160) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1161) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1162) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1163) | SIOCAIFADDR = 0x8040691a
constant SIOCAIFGROUP (line 1164) | SIOCAIFGROUP = 0x80286987
constant SIOCATMARK (line 1165) | SIOCATMARK = 0x40047307
constant SIOCBRDGADD (line 1166) | SIOCBRDGADD = 0x8060693c
constant SIOCBRDGADDL (line 1167) | SIOCBRDGADDL = 0x80606949
constant SIOCBRDGADDS (line 1168) | SIOCBRDGADDS = 0x80606941
constant SIOCBRDGARL (line 1169) | SIOCBRDGARL = 0x808c694d
constant SIOCBRDGDADDR (line 1170) | SIOCBRDGDADDR = 0x81286947
constant SIOCBRDGDEL (line 1171) | SIOCBRDGDEL = 0x8060693d
constant SIOCBRDGDELS (line 1172) | SIOCBRDGDELS = 0x80606942
constant SIOCBRDGFLUSH (line 1173) | SIOCBRDGFLUSH = 0x80606948
constant SIOCBRDGFRL (line 1174) | SIOCBRDGFRL = 0x808c694e
constant SIOCBRDGGCACHE (line 1175) | SIOCBRDGGCACHE = 0xc0186941
constant SIOCBRDGGFD (line 1176) | SIOCBRDGGFD = 0xc0186952
constant SIOCBRDGGHT (line 1177) | SIOCBRDGGHT = 0xc0186951
constant SIOCBRDGGIFFLGS (line 1178) | SIOCBRDGGIFFLGS = 0xc060693e
constant SIOCBRDGGMA (line 1179) | SIOCBRDGGMA = 0xc0186953
constant SIOCBRDGGPARAM (line 1180) | SIOCBRDGGPARAM = 0xc0406958
constant SIOCBRDGGPRI (line 1181) | SIOCBRDGGPRI = 0xc0186950
constant SIOCBRDGGRL (line 1182) | SIOCBRDGGRL = 0xc030694f
constant SIOCBRDGGTO (line 1183) | SIOCBRDGGTO = 0xc0186946
constant SIOCBRDGIFS (line 1184) | SIOCBRDGIFS = 0xc0606942
constant SIOCBRDGRTS (line 1185) | SIOCBRDGRTS = 0xc0206943
constant SIOCBRDGSADDR (line 1186) | SIOCBRDGSADDR = 0xc1286944
constant SIOCBRDGSCACHE (line 1187) | SIOCBRDGSCACHE = 0x80186940
constant SIOCBRDGSFD (line 1188) | SIOCBRDGSFD = 0x80186952
constant SIOCBRDGSHT (line 1189) | SIOCBRDGSHT = 0x80186951
constant SIOCBRDGSIFCOST (line 1190) | SIOCBRDGSIFCOST = 0x80606955
constant SIOCBRDGSIFFLGS (line 1191) | SIOCBRDGSIFFLGS = 0x8060693f
constant SIOCBRDGSIFPRIO (line 1192) | SIOCBRDGSIFPRIO = 0x80606954
constant SIOCBRDGSIFPROT (line 1193) | SIOCBRDGSIFPROT = 0x8060694a
constant SIOCBRDGSMA (line 1194) | SIOCBRDGSMA = 0x80186953
constant SIOCBRDGSPRI (line 1195) | SIOCBRDGSPRI = 0x80186950
constant SIOCBRDGSPROTO (line 1196) | SIOCBRDGSPROTO = 0x8018695a
constant SIOCBRDGSTO (line 1197) | SIOCBRDGSTO = 0x80186945
constant SIOCBRDGSTXHC (line 1198) | SIOCBRDGSTXHC = 0x80186959
constant SIOCDELMULTI (line 1199) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1200) | SIOCDIFADDR = 0x80206919
constant SIOCDIFGROUP (line 1201) | SIOCDIFGROUP = 0x80286989
constant SIOCDIFPARENT (line 1202) | SIOCDIFPARENT = 0x802069b4
constant SIOCDIFPHYADDR (line 1203) | SIOCDIFPHYADDR = 0x80206949
constant SIOCDVNETID (line 1204) | SIOCDVNETID = 0x802069af
constant SIOCGETKALIVE (line 1205) | SIOCGETKALIVE = 0xc01869a4
constant SIOCGETLABEL (line 1206) | SIOCGETLABEL = 0x8020699a
constant SIOCGETMPWCFG (line 1207) | SIOCGETMPWCFG = 0xc02069ae
constant SIOCGETPFLOW (line 1208) | SIOCGETPFLOW = 0xc02069fe
constant SIOCGETPFSYNC (line 1209) | SIOCGETPFSYNC = 0xc02069f8
constant SIOCGETSGCNT (line 1210) | SIOCGETSGCNT = 0xc0207534
constant SIOCGETVIFCNT (line 1211) | SIOCGETVIFCNT = 0xc0287533
constant SIOCGETVLAN (line 1212) | SIOCGETVLAN = 0xc0206990
constant SIOCGIFADDR (line 1213) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFBRDADDR (line 1214) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCONF (line 1215) | SIOCGIFCONF = 0xc0106924
constant SIOCGIFDATA (line 1216) | SIOCGIFDATA = 0xc020691b
constant SIOCGIFDESCR (line 1217) | SIOCGIFDESCR = 0xc0206981
constant SIOCGIFDSTADDR (line 1218) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1219) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGATTR (line 1220) | SIOCGIFGATTR = 0xc028698b
constant SIOCGIFGENERIC (line 1221) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGMEMB (line 1222) | SIOCGIFGMEMB = 0xc028698a
constant SIOCGIFGROUP (line 1223) | SIOCGIFGROUP = 0xc0286988
constant SIOCGIFHARDMTU (line 1224) | SIOCGIFHARDMTU = 0xc02069a5
constant SIOCGIFLLPRIO (line 1225) | SIOCGIFLLPRIO = 0xc02069b6
constant SIOCGIFMEDIA (line 1226) | SIOCGIFMEDIA = 0xc0406938
constant SIOCGIFMETRIC (line 1227) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1228) | SIOCGIFMTU = 0xc020697e
constant SIOCGIFNETMASK (line 1229) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPAIR (line 1230) | SIOCGIFPAIR = 0xc02069b1
constant SIOCGIFPARENT (line 1231) | SIOCGIFPARENT = 0xc02069b3
constant SIOCGIFPRIORITY (line 1232) | SIOCGIFPRIORITY = 0xc020699c
constant SIOCGIFRDOMAIN (line 1233) | SIOCGIFRDOMAIN = 0xc02069a0
constant SIOCGIFRTLABEL (line 1234) | SIOCGIFRTLABEL = 0xc0206983
constant SIOCGIFRXR (line 1235) | SIOCGIFRXR = 0x802069aa
constant SIOCGIFXFLAGS (line 1236) | SIOCGIFXFLAGS = 0xc020699e
constant SIOCGLIFPHYADDR (line 1237) | SIOCGLIFPHYADDR = 0xc218694b
constant SIOCGLIFPHYDF (line 1238) | SIOCGLIFPHYDF = 0xc02069c2
constant SIOCGLIFPHYRTABLE (line 1239) | SIOCGLIFPHYRTABLE = 0xc02069a2
constant SIOCGLIFPHYTTL (line 1240) | SIOCGLIFPHYTTL = 0xc02069a9
constant SIOCGPGRP (line 1241) | SIOCGPGRP = 0x40047309
constant SIOCGSPPPPARAMS (line 1242) | SIOCGSPPPPARAMS = 0xc0206994
constant SIOCGUMBINFO (line 1243) | SIOCGUMBINFO = 0xc02069be
constant SIOCGUMBPARAM (line 1244) | SIOCGUMBPARAM = 0xc02069c0
constant SIOCGVH (line 1245) | SIOCGVH = 0xc02069f6
constant SIOCGVNETFLOWID (line 1246) | SIOCGVNETFLOWID = 0xc02069c4
constant SIOCGVNETID (line 1247) | SIOCGVNETID = 0xc02069a7
constant SIOCIFAFATTACH (line 1248) | SIOCIFAFATTACH = 0x801169ab
constant SIOCIFAFDETACH (line 1249) | SIOCIFAFDETACH = 0x801169ac
constant SIOCIFCREATE (line 1250) | SIOCIFCREATE = 0x8020697a
constant SIOCIFDESTROY (line 1251) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1252) | SIOCIFGCLONERS = 0xc0106978
constant SIOCSETKALIVE (line 1253) | SIOCSETKALIVE = 0x801869a3
constant SIOCSETLABEL (line 1254) | SIOCSETLABEL = 0x80206999
constant SIOCSETMPWCFG (line 1255) | SIOCSETMPWCFG = 0x802069ad
constant SIOCSETPFLOW (line 1256) | SIOCSETPFLOW = 0x802069fd
constant SIOCSETPFSYNC (line 1257) | SIOCSETPFSYNC = 0x802069f7
constant SIOCSETVLAN (line 1258) | SIOCSETVLAN = 0x8020698f
constant SIOCSIFADDR (line 1259) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFBRDADDR (line 1260) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFDESCR (line 1261) | SIOCSIFDESCR = 0x80206980
constant SIOCSIFDSTADDR (line 1262) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1263) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGATTR (line 1264) | SIOCSIFGATTR = 0x8028698c
constant SIOCSIFGENERIC (line 1265) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1266) | SIOCSIFLLADDR = 0x8020691f
constant SIOCSIFLLPRIO (line 1267) | SIOCSIFLLPRIO = 0x802069b5
constant SIOCSIFMEDIA (line 1268) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1269) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1270) | SIOCSIFMTU = 0x8020697f
constant SIOCSIFNETMASK (line 1271) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPAIR (line 1272) | SIOCSIFPAIR = 0x802069b0
constant SIOCSIFPARENT (line 1273) | SIOCSIFPARENT = 0x802069b2
constant SIOCSIFPRIORITY (line 1274) | SIOCSIFPRIORITY = 0x8020699b
constant SIOCSIFRDOMAIN (line 1275) | SIOCSIFRDOMAIN = 0x8020699f
constant SIOCSIFRTLABEL (line 1276) | SIOCSIFRTLABEL = 0x80206982
constant SIOCSIFXFLAGS (line 1277) | SIOCSIFXFLAGS = 0x8020699d
constant SIOCSLIFPHYADDR (line 1278) | SIOCSLIFPHYADDR = 0x8218694a
constant SIOCSLIFPHYDF (line 1279) | SIOCSLIFPHYDF = 0x802069c1
constant SIOCSLIFPHYRTABLE (line 1280) | SIOCSLIFPHYRTABLE = 0x802069a1
constant SIOCSLIFPHYTTL (line 1281) | SIOCSLIFPHYTTL = 0x802069a8
constant SIOCSPGRP (line 1282) | SIOCSPGRP = 0x80047308
constant SIOCSSPPPPARAMS (line 1283) | SIOCSSPPPPARAMS = 0x80206993
constant SIOCSUMBPARAM (line 1284) | SIOCSUMBPARAM = 0x802069bf
constant SIOCSVH (line 1285) | SIOCSVH = 0xc02069f5
constant SIOCSVNETFLOWID (line 1286) | SIOCSVNETFLOWID = 0x802069c3
constant SIOCSVNETID (line 1287) | SIOCSVNETID = 0x802069a6
constant SIOCSWGDPID (line 1288) | SIOCSWGDPID = 0xc018695b
constant SIOCSWGMAXFLOW (line 1289) | SIOCSWGMAXFLOW = 0xc0186960
constant SIOCSWGMAXGROUP (line 1290) | SIOCSWGMAXGROUP = 0xc018695d
constant SIOCSWSDPID (line 1291) | SIOCSWSDPID = 0x8018695c
constant SIOCSWSPORTNO (line 1292) | SIOCSWSPORTNO = 0xc060695f
constant SOCK_CLOEXEC (line 1293) | SOCK_CLOEXEC = 0x8000
constant SOCK_DGRAM (line 1294) | SOCK_DGRAM = 0x2
constant SOCK_DNS (line 1295) | SOCK_DNS = 0x1000
constant SOCK_NONBLOCK (line 1296) | SOCK_NONBLOCK = 0x4000
constant SOCK_RAW (line 1297) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1298) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1299) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1300) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1301) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1302) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1303) | SO_ACCEPTCONN = 0x2
constant SO_BINDANY (line 1304) | SO_BINDANY = 0x1000
constant SO_BROADCAST (line 1305) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1306) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1307) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1308) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1309) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1310) | SO_LINGER = 0x80
constant SO_NETPROC (line 1311) | SO_NETPROC = 0x1020
constant SO_OOBINLINE (line 1312) | SO_OOBINLINE = 0x100
constant SO_PEERCRED (line 1313) | SO_PEERCRED = 0x1022
constant SO_RCVBUF (line 1314) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1315) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1316) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1317) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1318) | SO_REUSEPORT = 0x200
constant SO_RTABLE (line 1319) | SO_RTABLE = 0x1021
constant SO_SNDBUF (line 1320) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1321) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1322) | SO_SNDTIMEO = 0x1005
constant SO_SPLICE (line 1323) | SO_SPLICE = 0x1023
constant SO_TIMESTAMP (line 1324) | SO_TIMESTAMP = 0x800
constant SO_TYPE (line 1325) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1326) | SO_USELOOPBACK = 0x40
constant SO_ZEROIZE (line 1327) | SO_ZEROIZE = 0x2000
constant S_BLKSIZE (line 1328) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1329) | S_IEXEC = 0x40
constant S_IFBLK (line 1330) | S_IFBLK = 0x6000
constant S_IFCHR (line 1331) | S_IFCHR = 0x2000
constant S_IFDIR (line 1332) | S_IFDIR = 0x4000
constant S_IFIFO (line 1333) | S_IFIFO = 0x1000
constant S_IFLNK (line 1334) | S_IFLNK = 0xa000
constant S_IFMT (line 1335) | S_IFMT = 0xf000
constant S_IFREG (line 1336) | S_IFREG = 0x8000
constant S_IFSOCK (line 1337) | S_IFSOCK = 0xc000
constant S_IREAD (line 1338) | S_IREAD = 0x100
constant S_IRGRP (line 1339) | S_IRGRP = 0x20
constant S_IROTH (line 1340) | S_IROTH = 0x4
constant S_IRUSR (line 1341) | S_IRUSR = 0x100
constant S_IRWXG (line 1342) | S_IRWXG = 0x38
constant S_IRWXO (line 1343) | S_IRWXO = 0x7
constant S_IRWXU (line 1344) | S_IRWXU = 0x1c0
constant S_ISGID (line 1345) | S_ISGID = 0x400
constant S_ISTXT (line 1346) | S_ISTXT = 0x200
constant S_ISUID (line 1347) | S_ISUID = 0x800
constant S_ISVTX (line 1348) | S_ISVTX = 0x200
constant S_IWGRP (line 1349) | S_IWGRP = 0x10
constant S_IWOTH (line 1350) | S_IWOTH = 0x2
constant S_IWRITE (line 1351) | S_IWRITE = 0x80
constant S_IWUSR (line 1352) | S_IWUSR = 0x80
constant S_IXGRP (line 1353) | S_IXGRP = 0x8
constant S_IXOTH (line 1354) | S_IXOTH = 0x1
constant S_IXUSR (line 1355) | S_IXUSR = 0x40
constant TCIFLUSH (line 1356) | TCIFLUSH = 0x1
constant TCIOFF (line 1357) | TCIOFF = 0x3
constant TCIOFLUSH (line 1358) | TCIOFLUSH = 0x3
constant TCION (line 1359) | TCION = 0x4
constant TCOFLUSH (line 1360) | TCOFLUSH = 0x2
constant TCOOFF (line 1361) | TCOOFF = 0x1
constant TCOON (line 1362) | TCOON = 0x2
constant TCP_MAXBURST (line 1363) | TCP_MAXBURST = 0x4
constant TCP_MAXSEG (line 1364) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1365) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1366) | TCP_MAX_SACK = 0x3
constant TCP_MAX_WINSHIFT (line 1367) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1368) | TCP_MD5SIG = 0x4
constant TCP_MSS (line 1369) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1370) | TCP_NODELAY = 0x1
constant TCP_NOPUSH (line 1371) | TCP_NOPUSH = 0x10
constant TCP_SACK_ENABLE (line 1372) | TCP_SACK_ENABLE = 0x8
constant TCSAFLUSH (line 1373) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1374) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1375) | TIOCCDTR = 0x20007478
constant TIOCCHKVERAUTH (line 1376) | TIOCCHKVERAUTH = 0x2000741e
constant TIOCCLRVERAUTH (line 1377) | TIOCCLRVERAUTH = 0x2000741d
constant TIOCCONS (line 1378) | TIOCCONS = 0x80047462
constant TIOCDRAIN (line 1379) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1380) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1381) | TIOCEXT = 0x80047460
constant TIOCFLAG_CLOCAL (line 1382) | TIOCFLAG_CLOCAL = 0x2
constant TIOCFLAG_CRTSCTS (line 1383) | TIOCFLAG_CRTSCTS = 0x4
constant TIOCFLAG_MDMBUF (line 1384) | TIOCFLAG_MDMBUF = 0x8
constant TIOCFLAG_PPS (line 1385) | TIOCFLAG_PPS = 0x10
constant TIOCFLAG_SOFTCAR (line 1386) | TIOCFLAG_SOFTCAR = 0x1
constant TIOCFLUSH (line 1387) | TIOCFLUSH = 0x80047410
constant TIOCGETA (line 1388) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1389) | TIOCGETD = 0x4004741a
constant TIOCGFLAGS (line 1390) | TIOCGFLAGS = 0x4004745d
constant TIOCGPGRP (line 1391) | TIOCGPGRP = 0x40047477
constant TIOCGSID (line 1392) | TIOCGSID = 0x40047463
constant TIOCGTSTAMP (line 1393) | TIOCGTSTAMP = 0x4010745b
constant TIOCGWINSZ (line 1394) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1395) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1396) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 1397) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1398) | TIOCMODG = 0x4004746a
constant TIOCMODS (line 1399) | TIOCMODS = 0x8004746d
constant TIOCMSET (line 1400) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1401) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1402) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1403) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1404) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1405) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1406) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1407) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1408) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1409) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1410) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1411) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1412) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1413) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1414) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1415) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1416) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1417) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1418) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1419) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1420) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1421) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1422) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1423) | TIOCPKT_STOP = 0x4
constant TIOCREMOTE (line 1424) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1425) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1426) | TIOCSCTTY = 0x20007461
constant TIOCSDTR (line 1427) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1428) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1429) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1430) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1431) | TIOCSETD = 0x8004741b
constant TIOCSETVERAUTH (line 1432) | TIOCSETVERAUTH = 0x8004741c
constant TIOCSFLAGS (line 1433) | TIOCSFLAGS = 0x8004745c
constant TIOCSIG (line 1434) | TIOCSIG = 0x8004745f
constant TIOCSPGRP (line 1435) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1436) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1437) | TIOCSTAT = 0x20007465
constant TIOCSTI (line 1438) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1439) | TIOCSTOP = 0x2000746f
constant TIOCSTSTAMP (line 1440) | TIOCSTSTAMP = 0x8008745a
constant TIOCSWINSZ (line 1441) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 1442) | TIOCUCNTL = 0x80047466
constant TIOCUCNTL_CBRK (line 1443) | TIOCUCNTL_CBRK = 0x7a
constant TIOCUCNTL_SBRK (line 1444) | TIOCUCNTL_SBRK = 0x7b
constant TOSTOP (line 1445) | TOSTOP = 0x400000
constant UTIME_NOW (line 1446) | UTIME_NOW = -0x2
constant UTIME_OMIT (line 1447) | UTIME_OMIT = -0x1
constant VDISCARD (line 1448) | VDISCARD = 0xf
constant VDSUSP (line 1449) | VDSUSP = 0xb
constant VEOF (line 1450) | VEOF = 0x0
constant VEOL (line 1451) | VEOL = 0x1
constant VEOL2 (line 1452) | VEOL2 = 0x2
constant VERASE (line 1453) | VERASE = 0x3
constant VINTR (line 1454) | VINTR = 0x8
constant VKILL (line 1455) | VKILL = 0x5
constant VLNEXT (line 1456) | VLNEXT = 0xe
constant VMIN (line 1457) | VMIN = 0x10
constant VM_ANONMIN (line 1458) | VM_ANONMIN = 0x7
constant VM_LOADAVG (line 1459) | VM_LOADAVG = 0x2
constant VM_MAXID (line 1460) | VM_MAXID = 0xc
constant VM_MAXSLP (line 1461) | VM_MAXSLP = 0xa
constant VM_METER (line 1462) | VM_METER = 0x1
constant VM_NKMEMPAGES (line 1463) | VM_NKMEMPAGES = 0x6
constant VM_PSSTRINGS (line 1464) | VM_PSSTRINGS = 0x3
constant VM_SWAPENCRYPT (line 1465) | VM_SWAPENCRYPT = 0x5
constant VM_USPACE (line 1466) | VM_USPACE = 0xb
constant VM_UVMEXP (line 1467) | VM_UVMEXP = 0x4
constant VM_VNODEMIN (line 1468) | VM_VNODEMIN = 0x9
constant VM_VTEXTMIN (line 1469) | VM_VTEXTMIN = 0x8
constant VQUIT (line 1470) | VQUIT = 0x9
constant VREPRINT (line 1471) | VREPRINT = 0x6
constant VSTART (line 1472) | VSTART = 0xc
constant VSTATUS (line 1473) | VSTATUS = 0x12
constant VSTOP (line 1474) | VSTOP = 0xd
constant VSUSP (line 1475) | VSUSP = 0xa
constant VTIME (line 1476) | VTIME = 0x11
constant VWERASE (line 1477) | VWERASE = 0x4
constant WALTSIG (line 1478) | WALTSIG = 0x4
constant WCONTINUED (line 1479) | WCONTINUED = 0x8
constant WCOREFLAG (line 1480) | WCOREFLAG = 0x80
constant WNOHANG (line 1481) | WNOHANG = 0x1
constant WUNTRACED (line 1482) | WUNTRACED = 0x2
constant XCASE (line 1483) | XCASE = 0x1000000
constant E2BIG (line 1488) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1489) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1490) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1491) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1492) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1493) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1494) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1495) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1496) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1497) | EBADMSG = syscall.Errno(0x5c)
constant EBADRPC (line 1498) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1499) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1500) | ECANCELED = syscall.Errno(0x58)
constant ECHILD (line 1501) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1502) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1503) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1504) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1505) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1506) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1507) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1508) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1509) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1510) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1511) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1512) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1513) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1514) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1515) | EIDRM = syscall.Errno(0x59)
constant EILSEQ (line 1516) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 1517) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1518) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1519) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1520) | EIO = syscall.Errno(0x5)
constant EIPSEC (line 1521) | EIPSEC = syscall.Errno(0x52)
constant EISCONN (line 1522) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1523) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1524) | ELAST = syscall.Errno(0x5f)
constant ELOOP (line 1525) | ELOOP = syscall.Errno(0x3e)
constant EMEDIUMTYPE (line 1526) | EMEDIUMTYPE = syscall.Errno(0x56)
constant EMFILE (line 1527) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1528) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1529) | EMSGSIZE = syscall.Errno(0x28)
constant ENAMETOOLONG (line 1530) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1531) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1532) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1533) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1534) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1535) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1536) | ENOATTR = syscall.Errno(0x53)
constant ENOBUFS (line 1537) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1538) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1539) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1540) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1541) | ENOLCK = syscall.Errno(0x4d)
constant ENOMEDIUM (line 1542) | ENOMEDIUM = syscall.Errno(0x55)
constant ENOMEM (line 1543) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1544) | ENOMSG = syscall.Errno(0x5a)
constant ENOPROTOOPT (line 1545) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1546) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1547) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1548) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1549) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1550) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1551) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1552) | ENOTRECOVERABLE = syscall.Errno(0x5d)
constant ENOTSOCK (line 1553) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1554) | ENOTSUP = syscall.Errno(0x5b)
constant ENOTTY (line 1555) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1556) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1557) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1558) | EOVERFLOW = syscall.Errno(0x57)
constant EOWNERDEAD (line 1559) | EOWNERDEAD = syscall.Errno(0x5e)
constant EPERM (line 1560) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1561) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1562) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1563) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1564) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1565) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1566) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1567) | EPROTO = syscall.Errno(0x5f)
constant EPROTONOSUPPORT (line 1568) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1569) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1570) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1571) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1572) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1573) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1574) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1575) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1576) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1577) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1578) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1579) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1580) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1581) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1582) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1583) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1584) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1589) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1590) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1591) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1592) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1593) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1594) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1595) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1596) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1597) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1598) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1599) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1600) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1601) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1602) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1603) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1604) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1605) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1606) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1607) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1608) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1609) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1610) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1611) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1612) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1613) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1614) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1615) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1616) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1617) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1618) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1619) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1620) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1621) | 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 CRTSCTS (line 150) | CRTSCTS = 0x10000
constant CS5 (line 151) | CS5 = 0x0
constant CS6 (line 152) | CS6 = 0x100
constant CS7 (line 153) | CS7 = 0x200
constant CS8 (line 154) | CS8 = 0x300
constant CSIZE (line 155) | CSIZE = 0x300
constant CSTART (line 156) | CSTART = 0x11
constant CSTATUS (line 157) | CSTATUS = 0xff
constant CSTOP (line 158) | CSTOP = 0x13
constant CSTOPB (line 159) | CSTOPB = 0x400
constant CSUSP (line 160) | CSUSP = 0x1a
constant CTL_HW (line 161) | CTL_HW = 0x6
constant CTL_KERN (line 162) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 163) | CTL_MAXNAME = 0xc
constant CTL_NET (line 164) | CTL_NET = 0x4
constant DIOCOSFPFLUSH (line 165) | DIOCOSFPFLUSH = 0x2000444e
constant DLT_ARCNET (line 166) | DLT_ARCNET = 0x7
constant DLT_ATM_RFC1483 (line 167) | DLT_ATM_RFC1483 = 0xb
constant DLT_AX25 (line 168) | DLT_AX25 = 0x3
constant DLT_CHAOS (line 169) | DLT_CHAOS = 0x5
constant DLT_C_HDLC (line 170) | DLT_C_HDLC = 0x68
constant DLT_EN10MB (line 171) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 172) | DLT_EN3MB = 0x2
constant DLT_ENC (line 173) | DLT_ENC = 0xd
constant DLT_FDDI (line 174) | DLT_FDDI = 0xa
constant DLT_IEEE802 (line 175) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 176) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 177) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_LOOP (line 178) | DLT_LOOP = 0xc
constant DLT_MPLS (line 179) | DLT_MPLS = 0xdb
constant DLT_NULL (line 180) | DLT_NULL = 0x0
constant DLT_PFLOG (line 181) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 182) | DLT_PFSYNC = 0x12
constant DLT_PPP (line 183) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 184) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 185) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_SERIAL (line 186) | DLT_PPP_SERIAL = 0x32
constant DLT_PRONET (line 187) | DLT_PRONET = 0x4
constant DLT_RAW (line 188) | DLT_RAW = 0xe
constant DLT_SLIP (line 189) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 190) | DLT_SLIP_BSDOS = 0xf
constant DT_BLK (line 191) | DT_BLK = 0x6
constant DT_CHR (line 192) | DT_CHR = 0x2
constant DT_DIR (line 193) | DT_DIR = 0x4
constant DT_FIFO (line 194) | DT_FIFO = 0x1
constant DT_LNK (line 195) | DT_LNK = 0xa
constant DT_REG (line 196) | DT_REG = 0x8
constant DT_SOCK (line 197) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 198) | DT_UNKNOWN = 0x0
constant ECHO (line 199) | ECHO = 0x8
constant ECHOCTL (line 200) | ECHOCTL = 0x40
constant ECHOE (line 201) | ECHOE = 0x2
constant ECHOK (line 202) | ECHOK = 0x4
constant ECHOKE (line 203) | ECHOKE = 0x1
constant ECHONL (line 204) | ECHONL = 0x10
constant ECHOPRT (line 205) | ECHOPRT = 0x20
constant EMT_TAGOVF (line 206) | EMT_TAGOVF = 0x1
constant EMUL_ENABLED (line 207) | EMUL_ENABLED = 0x1
constant EMUL_NATIVE (line 208) | EMUL_NATIVE = 0x2
constant ENDRUNDISC (line 209) | ENDRUNDISC = 0x9
constant ETHERMIN (line 210) | ETHERMIN = 0x2e
constant ETHERMTU (line 211) | ETHERMTU = 0x5dc
constant ETHERTYPE_8023 (line 212) | ETHERTYPE_8023 = 0x4
constant ETHERTYPE_AARP (line 213) | ETHERTYPE_AARP = 0x80f3
constant ETHERTYPE_ACCTON (line 214) | ETHERTYPE_ACCTON = 0x8390
constant ETHERTYPE_AEONIC (line 215) | ETHERTYPE_AEONIC = 0x8036
constant ETHERTYPE_ALPHA (line 216) | ETHERTYPE_ALPHA = 0x814a
constant ETHERTYPE_AMBER (line 217) | ETHERTYPE_AMBER = 0x6008
constant ETHERTYPE_AMOEBA (line 218) | ETHERTYPE_AMOEBA = 0x8145
constant ETHERTYPE_AOE (line 219) | ETHERTYPE_AOE = 0x88a2
constant ETHERTYPE_APOLLO (line 220) | ETHERTYPE_APOLLO = 0x80f7
constant ETHERTYPE_APOLLODOMAIN (line 221) | ETHERTYPE_APOLLODOMAIN = 0x8019
constant ETHERTYPE_APPLETALK (line 222) | ETHERTYPE_APPLETALK = 0x809b
constant ETHERTYPE_APPLITEK (line 223) | ETHERTYPE_APPLITEK = 0x80c7
constant ETHERTYPE_ARGONAUT (line 224) | ETHERTYPE_ARGONAUT = 0x803a
constant ETHERTYPE_ARP (line 225) | ETHERTYPE_ARP = 0x806
constant ETHERTYPE_AT (line 226) | ETHERTYPE_AT = 0x809b
constant ETHERTYPE_ATALK (line 227) | ETHERTYPE_ATALK = 0x809b
constant ETHERTYPE_ATOMIC (line 228) | ETHERTYPE_ATOMIC = 0x86df
constant ETHERTYPE_ATT (line 229) | ETHERTYPE_ATT = 0x8069
constant ETHERTYPE_ATTSTANFORD (line 230) | ETHERTYPE_ATTSTANFORD = 0x8008
constant ETHERTYPE_AUTOPHON (line 231) | ETHERTYPE_AUTOPHON = 0x806a
constant ETHERTYPE_AXIS (line 232) | ETHERTYPE_AXIS = 0x8856
constant ETHERTYPE_BCLOOP (line 233) | ETHERTYPE_BCLOOP = 0x9003
constant ETHERTYPE_BOFL (line 234) | ETHERTYPE_BOFL = 0x8102
constant ETHERTYPE_CABLETRON (line 235) | ETHERTYPE_CABLETRON = 0x7034
constant ETHERTYPE_CHAOS (line 236) | ETHERTYPE_CHAOS = 0x804
constant ETHERTYPE_COMDESIGN (line 237) | ETHERTYPE_COMDESIGN = 0x806c
constant ETHERTYPE_COMPUGRAPHIC (line 238) | ETHERTYPE_COMPUGRAPHIC = 0x806d
constant ETHERTYPE_COUNTERPOINT (line 239) | ETHERTYPE_COUNTERPOINT = 0x8062
constant ETHERTYPE_CRONUS (line 240) | ETHERTYPE_CRONUS = 0x8004
constant ETHERTYPE_CRONUSVLN (line 241) | ETHERTYPE_CRONUSVLN = 0x8003
constant ETHERTYPE_DCA (line 242) | ETHERTYPE_DCA = 0x1234
constant ETHERTYPE_DDE (line 243) | ETHERTYPE_DDE = 0x807b
constant ETHERTYPE_DEBNI (line 244) | ETHERTYPE_DEBNI = 0xaaaa
constant ETHERTYPE_DECAM (line 245) | ETHERTYPE_DECAM = 0x8048
constant ETHERTYPE_DECCUST (line 246) | ETHERTYPE_DECCUST = 0x6006
constant ETHERTYPE_DECDIAG (line 247) | ETHERTYPE_DECDIAG = 0x6005
constant ETHERTYPE_DECDNS (line 248) | ETHERTYPE_DECDNS = 0x803c
constant ETHERTYPE_DECDTS (line 249) | ETHERTYPE_DECDTS = 0x803e
constant ETHERTYPE_DECEXPER (line 250) | ETHERTYPE_DECEXPER = 0x6000
constant ETHERTYPE_DECLAST (line 251) | ETHERTYPE_DECLAST = 0x8041
constant ETHERTYPE_DECLTM (line 252) | ETHERTYPE_DECLTM = 0x803f
constant ETHERTYPE_DECMUMPS (line 253) | ETHERTYPE_DECMUMPS = 0x6009
constant ETHERTYPE_DECNETBIOS (line 254) | ETHERTYPE_DECNETBIOS = 0x8040
constant ETHERTYPE_DELTACON (line 255) | ETHERTYPE_DELTACON = 0x86de
constant ETHERTYPE_DIDDLE (line 256) | ETHERTYPE_DIDDLE = 0x4321
constant ETHERTYPE_DLOG1 (line 257) | ETHERTYPE_DLOG1 = 0x660
constant ETHERTYPE_DLOG2 (line 258) | ETHERTYPE_DLOG2 = 0x661
constant ETHERTYPE_DN (line 259) | ETHERTYPE_DN = 0x6003
constant ETHERTYPE_DOGFIGHT (line 260) | ETHERTYPE_DOGFIGHT = 0x1989
constant ETHERTYPE_DSMD (line 261) | ETHERTYPE_DSMD = 0x8039
constant ETHERTYPE_ECMA (line 262) | ETHERTYPE_ECMA = 0x803
constant ETHERTYPE_ENCRYPT (line 263) | ETHERTYPE_ENCRYPT = 0x803d
constant ETHERTYPE_ES (line 264) | ETHERTYPE_ES = 0x805d
constant ETHERTYPE_EXCELAN (line 265) | ETHERTYPE_EXCELAN = 0x8010
constant ETHERTYPE_EXPERDATA (line 266) | ETHERTYPE_EXPERDATA = 0x8049
constant ETHERTYPE_FLIP (line 267) | ETHERTYPE_FLIP = 0x8146
constant ETHERTYPE_FLOWCONTROL (line 268) | ETHERTYPE_FLOWCONTROL = 0x8808
constant ETHERTYPE_FRARP (line 269) | ETHERTYPE_FRARP = 0x808
constant ETHERTYPE_GENDYN (line 270) | ETHERTYPE_GENDYN = 0x8068
constant ETHERTYPE_HAYES (line 271) | ETHERTYPE_HAYES = 0x8130
constant ETHERTYPE_HIPPI_FP (line 272) | ETHERTYPE_HIPPI_FP = 0x8180
constant ETHERTYPE_HITACHI (line 273) | ETHERTYPE_HITACHI = 0x8820
constant ETHERTYPE_HP (line 274) | ETHERTYPE_HP = 0x8005
constant ETHERTYPE_IEEEPUP (line 275) | ETHERTYPE_IEEEPUP = 0xa00
constant ETHERTYPE_IEEEPUPAT (line 276) | ETHERTYPE_IEEEPUPAT = 0xa01
constant ETHERTYPE_IMLBL (line 277) | ETHERTYPE_IMLBL = 0x4c42
constant ETHERTYPE_IMLBLDIAG (line 278) | ETHERTYPE_IMLBLDIAG = 0x424c
constant ETHERTYPE_IP (line 279) | ETHERTYPE_IP = 0x800
constant ETHERTYPE_IPAS (line 280) | ETHERTYPE_IPAS = 0x876c
constant ETHERTYPE_IPV6 (line 281) | ETHERTYPE_IPV6 = 0x86dd
constant ETHERTYPE_IPX (line 282) | ETHERTYPE_IPX = 0x8137
constant ETHERTYPE_IPXNEW (line 283) | ETHERTYPE_IPXNEW = 0x8037
constant ETHERTYPE_KALPANA (line 284) | ETHERTYPE_KALPANA = 0x8582
constant ETHERTYPE_LANBRIDGE (line 285) | ETHERTYPE_LANBRIDGE = 0x8038
constant ETHERTYPE_LANPROBE (line 286) | ETHERTYPE_LANPROBE = 0x8888
constant ETHERTYPE_LAT (line 287) | ETHERTYPE_LAT = 0x6004
constant ETHERTYPE_LBACK (line 288) | ETHERTYPE_LBACK = 0x9000
constant ETHERTYPE_LITTLE (line 289) | ETHERTYPE_LITTLE = 0x8060
constant ETHERTYPE_LLDP (line 290) | ETHERTYPE_LLDP = 0x88cc
constant ETHERTYPE_LOGICRAFT (line 291) | ETHERTYPE_LOGICRAFT = 0x8148
constant ETHERTYPE_LOOPBACK (line 292) | ETHERTYPE_LOOPBACK = 0x9000
constant ETHERTYPE_MATRA (line 293) | ETHERTYPE_MATRA = 0x807a
constant ETHERTYPE_MAX (line 294) | ETHERTYPE_MAX = 0xffff
constant ETHERTYPE_MERIT (line 295) | ETHERTYPE_MERIT = 0x807c
constant ETHERTYPE_MICP (line 296) | ETHERTYPE_MICP = 0x873a
constant ETHERTYPE_MOPDL (line 297) | ETHERTYPE_MOPDL = 0x6001
constant ETHERTYPE_MOPRC (line 298) | ETHERTYPE_MOPRC = 0x6002
constant ETHERTYPE_MOTOROLA (line 299) | ETHERTYPE_MOTOROLA = 0x818d
constant ETHERTYPE_MPLS (line 300) | ETHERTYPE_MPLS = 0x8847
constant ETHERTYPE_MPLS_MCAST (line 301) | ETHERTYPE_MPLS_MCAST = 0x8848
constant ETHERTYPE_MUMPS (line 302) | ETHERTYPE_MUMPS = 0x813f
constant ETHERTYPE_NBPCC (line 303) | ETHERTYPE_NBPCC = 0x3c04
constant ETHERTYPE_NBPCLAIM (line 304) | ETHERTYPE_NBPCLAIM = 0x3c09
constant ETHERTYPE_NBPCLREQ (line 305) | ETHERTYPE_NBPCLREQ = 0x3c05
constant ETHERTYPE_NBPCLRSP (line 306) | ETHERTYPE_NBPCLRSP = 0x3c06
constant ETHERTYPE_NBPCREQ (line 307) | ETHERTYPE_NBPCREQ = 0x3c02
constant ETHERTYPE_NBPCRSP (line 308) | ETHERTYPE_NBPCRSP = 0x3c03
constant ETHERTYPE_NBPDG (line 309) | ETHERTYPE_NBPDG = 0x3c07
constant ETHERTYPE_NBPDGB (line 310) | ETHERTYPE_NBPDGB = 0x3c08
constant ETHERTYPE_NBPDLTE (line 311) | ETHERTYPE_NBPDLTE = 0x3c0a
constant ETHERTYPE_NBPRAR (line 312) | ETHERTYPE_NBPRAR = 0x3c0c
constant ETHERTYPE_NBPRAS (line 313) | ETHERTYPE_NBPRAS = 0x3c0b
constant ETHERTYPE_NBPRST (line 314) | ETHERTYPE_NBPRST = 0x3c0d
constant ETHERTYPE_NBPSCD (line 315) | ETHERTYPE_NBPSCD = 0x3c01
constant ETHERTYPE_NBPVCD (line 316) | ETHERTYPE_NBPVCD = 0x3c00
constant ETHERTYPE_NBS (line 317) | ETHERTYPE_NBS = 0x802
constant ETHERTYPE_NCD (line 318) | ETHERTYPE_NCD = 0x8149
constant ETHERTYPE_NESTAR (line 319) | ETHERTYPE_NESTAR = 0x8006
constant ETHERTYPE_NETBEUI (line 320) | ETHERTYPE_NETBEUI = 0x8191
constant ETHERTYPE_NOVELL (line 321) | ETHERTYPE_NOVELL = 0x8138
constant ETHERTYPE_NS (line 322) | ETHERTYPE_NS = 0x600
constant ETHERTYPE_NSAT (line 323) | ETHERTYPE_NSAT = 0x601
constant ETHERTYPE_NSCOMPAT (line 324) | ETHERTYPE_NSCOMPAT = 0x807
constant ETHERTYPE_NTRAILER (line 325) | ETHERTYPE_NTRAILER = 0x10
constant ETHERTYPE_OS9 (line 326) | ETHERTYPE_OS9 = 0x7007
constant ETHERTYPE_OS9NET (line 327) | ETHERTYPE_OS9NET = 0x7009
constant ETHERTYPE_PACER (line 328) | ETHERTYPE_PACER = 0x80c6
constant ETHERTYPE_PAE (line 329) | ETHERTYPE_PAE = 0x888e
constant ETHERTYPE_PCS (line 330) | ETHERTYPE_PCS = 0x4242
constant ETHERTYPE_PLANNING (line 331) | ETHERTYPE_PLANNING = 0x8044
constant ETHERTYPE_PPP (line 332) | ETHERTYPE_PPP = 0x880b
constant ETHERTYPE_PPPOE (line 333) | ETHERTYPE_PPPOE = 0x8864
constant ETHERTYPE_PPPOEDISC (line 334) | ETHERTYPE_PPPOEDISC = 0x8863
constant ETHERTYPE_PRIMENTS (line 335) | ETHERTYPE_PRIMENTS = 0x7031
constant ETHERTYPE_PUP (line 336) | ETHERTYPE_PUP = 0x200
constant ETHERTYPE_PUPAT (line 337) | ETHERTYPE_PUPAT = 0x200
constant ETHERTYPE_QINQ (line 338) | ETHERTYPE_QINQ = 0x88a8
constant ETHERTYPE_RACAL (line 339) | ETHERTYPE_RACAL = 0x7030
constant ETHERTYPE_RATIONAL (line 340) | ETHERTYPE_RATIONAL = 0x8150
constant ETHERTYPE_RAWFR (line 341) | ETHERTYPE_RAWFR = 0x6559
constant ETHERTYPE_RCL (line 342) | ETHERTYPE_RCL = 0x1995
constant ETHERTYPE_RDP (line 343) | ETHERTYPE_RDP = 0x8739
constant ETHERTYPE_RETIX (line 344) | ETHERTYPE_RETIX = 0x80f2
constant ETHERTYPE_REVARP (line 345) | ETHERTYPE_REVARP = 0x8035
constant ETHERTYPE_SCA (line 346) | ETHERTYPE_SCA = 0x6007
constant ETHERTYPE_SECTRA (line 347) | ETHERTYPE_SECTRA = 0x86db
constant ETHERTYPE_SECUREDATA (line 348) | ETHERTYPE_SECUREDATA = 0x876d
constant ETHERTYPE_SGITW (line 349) | ETHERTYPE_SGITW = 0x817e
constant ETHERTYPE_SG_BOUNCE (line 350) | ETHERTYPE_SG_BOUNCE = 0x8016
constant ETHERTYPE_SG_DIAG (line 351) | ETHERTYPE_SG_DIAG = 0x8013
constant ETHERTYPE_SG_NETGAMES (line 352) | ETHERTYPE_SG_NETGAMES = 0x8014
constant ETHERTYPE_SG_RESV (line 353) | ETHERTYPE_SG_RESV = 0x8015
constant ETHERTYPE_SIMNET (line 354) | ETHERTYPE_SIMNET = 0x5208
constant ETHERTYPE_SLOW (line 355) | ETHERTYPE_SLOW = 0x8809
constant ETHERTYPE_SNA (line 356) | ETHERTYPE_SNA = 0x80d5
constant ETHERTYPE_SNMP (line 357) | ETHERTYPE_SNMP = 0x814c
constant ETHERTYPE_SONIX (line 358) | ETHERTYPE_SONIX = 0xfaf5
constant ETHERTYPE_SPIDER (line 359) | ETHERTYPE_SPIDER = 0x809f
constant ETHERTYPE_SPRITE (line 360) | ETHERTYPE_SPRITE = 0x500
constant ETHERTYPE_STP (line 361) | ETHERTYPE_STP = 0x8181
constant ETHERTYPE_TALARIS (line 362) | ETHERTYPE_TALARIS = 0x812b
constant ETHERTYPE_TALARISMC (line 363) | ETHERTYPE_TALARISMC = 0x852b
constant ETHERTYPE_TCPCOMP (line 364) | ETHERTYPE_TCPCOMP = 0x876b
constant ETHERTYPE_TCPSM (line 365) | ETHERTYPE_TCPSM = 0x9002
constant ETHERTYPE_TEC (line 366) | ETHERTYPE_TEC = 0x814f
constant ETHERTYPE_TIGAN (line 367) | ETHERTYPE_TIGAN = 0x802f
constant ETHERTYPE_TRAIL (line 368) | ETHERTYPE_TRAIL = 0x1000
constant ETHERTYPE_TRANSETHER (line 369) | ETHERTYPE_TRANSETHER = 0x6558
constant ETHERTYPE_TYMSHARE (line 370) | ETHERTYPE_TYMSHARE = 0x802e
constant ETHERTYPE_UBBST (line 371) | ETHERTYPE_UBBST = 0x7005
constant ETHERTYPE_UBDEBUG (line 372) | ETHERTYPE_UBDEBUG = 0x900
constant ETHERTYPE_UBDIAGLOOP (line 373) | ETHERTYPE_UBDIAGLOOP = 0x7002
constant ETHERTYPE_UBDL (line 374) | ETHERTYPE_UBDL = 0x7000
constant ETHERTYPE_UBNIU (line 375) | ETHERTYPE_UBNIU = 0x7001
constant ETHERTYPE_UBNMC (line 376) | ETHERTYPE_UBNMC = 0x7003
constant ETHERTYPE_VALID (line 377) | ETHERTYPE_VALID = 0x1600
constant ETHERTYPE_VARIAN (line 378) | ETHERTYPE_VARIAN = 0x80dd
constant ETHERTYPE_VAXELN (line 379) | ETHERTYPE_VAXELN = 0x803b
constant ETHERTYPE_VEECO (line 380) | ETHERTYPE_VEECO = 0x8067
constant ETHERTYPE_VEXP (line 381) | ETHERTYPE_VEXP = 0x805b
constant ETHERTYPE_VGLAB (line 382) | ETHERTYPE_VGLAB = 0x8131
constant ETHERTYPE_VINES (line 383) | ETHERTYPE_VINES = 0xbad
constant ETHERTYPE_VINESECHO (line 384) | ETHERTYPE_VINESECHO = 0xbaf
constant ETHERTYPE_VINESLOOP (line 385) | ETHERTYPE_VINESLOOP = 0xbae
constant ETHERTYPE_VITAL (line 386) | ETHERTYPE_VITAL = 0xff00
constant ETHERTYPE_VLAN (line 387) | ETHERTYPE_VLAN = 0x8100
constant ETHERTYPE_VLTLMAN (line 388) | ETHERTYPE_VLTLMAN = 0x8080
constant ETHERTYPE_VPROD (line 389) | ETHERTYPE_VPROD = 0x805c
constant ETHERTYPE_VURESERVED (line 390) | ETHERTYPE_VURESERVED = 0x8147
constant ETHERTYPE_WATERLOO (line 391) | ETHERTYPE_WATERLOO = 0x8130
constant ETHERTYPE_WELLFLEET (line 392) | ETHERTYPE_WELLFLEET = 0x8103
constant ETHERTYPE_X25 (line 393) | ETHERTYPE_X25 = 0x805
constant ETHERTYPE_X75 (line 394) | ETHERTYPE_X75 = 0x801
constant ETHERTYPE_XNSSM (line 395) | ETHERTYPE_XNSSM = 0x9001
constant ETHERTYPE_XTP (line 396) | ETHERTYPE_XTP = 0x817d
constant ETHER_ADDR_LEN (line 397) | ETHER_ADDR_LEN = 0x6
constant ETHER_ALIGN (line 398) | ETHER_ALIGN = 0x2
constant ETHER_CRC_LEN (line 399) | ETHER_CRC_LEN = 0x4
constant ETHER_CRC_POLY_BE (line 400) | ETHER_CRC_POLY_BE = 0x4c11db6
constant ETHER_CRC_POLY_LE (line 401) | ETHER_CRC_POLY_LE = 0xedb88320
constant ETHER_HDR_LEN (line 402) | ETHER_HDR_LEN = 0xe
constant ETHER_MAX_DIX_LEN (line 403) | ETHER_MAX_DIX_LEN = 0x600
constant ETHER_MAX_LEN (line 404) | ETHER_MAX_LEN = 0x5ee
constant ETHER_MIN_LEN (line 405) | ETHER_MIN_LEN = 0x40
constant ETHER_TYPE_LEN (line 406) | ETHER_TYPE_LEN = 0x2
constant ETHER_VLAN_ENCAP_LEN (line 407) | ETHER_VLAN_ENCAP_LEN = 0x4
constant EVFILT_AIO (line 408) | EVFILT_AIO = -0x3
constant EVFILT_PROC (line 409) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 410) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 411) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 412) | EVFILT_SYSCOUNT = 0x7
constant EVFILT_TIMER (line 413) | EVFILT_TIMER = -0x7
constant EVFILT_VNODE (line 414) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 415) | EVFILT_WRITE = -0x2
constant EV_ADD (line 416) | EV_ADD = 0x1
constant EV_CLEAR (line 417) | EV_CLEAR = 0x20
constant EV_DELETE (line 418) | EV_DELETE = 0x2
constant EV_DISABLE (line 419) | EV_DISABLE = 0x8
constant EV_ENABLE (line 420) | EV_ENABLE = 0x4
constant EV_EOF (line 421) | EV_EOF = 0x8000
constant EV_ERROR (line 422) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 423) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 424) | EV_ONESHOT = 0x10
constant EV_SYSFLAGS (line 425) | EV_SYSFLAGS = 0xf000
constant EXTA (line 426) | EXTA = 0x4b00
constant EXTB (line 427) | EXTB = 0x9600
constant EXTPROC (line 428) | EXTPROC = 0x800
constant FD_CLOEXEC (line 429) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 430) | FD_SETSIZE = 0x400
constant FLUSHO (line 431) | FLUSHO = 0x800000
constant F_DUPFD (line 432) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 433) | F_DUPFD_CLOEXEC = 0xa
constant F_GETFD (line 434) | F_GETFD = 0x1
constant F_GETFL (line 435) | F_GETFL = 0x3
constant F_GETLK (line 436) | F_GETLK = 0x7
constant F_GETOWN (line 437) | F_GETOWN = 0x5
constant F_RDLCK (line 438) | F_RDLCK = 0x1
constant F_SETFD (line 439) | F_SETFD = 0x2
constant F_SETFL (line 440) | F_SETFL = 0x4
constant F_SETLK (line 441) | F_SETLK = 0x8
constant F_SETLKW (line 442) | F_SETLKW = 0x9
constant F_SETOWN (line 443) | F_SETOWN = 0x6
constant F_UNLCK (line 444) | F_UNLCK = 0x2
constant F_WRLCK (line 445) | F_WRLCK = 0x3
constant HUPCL (line 446) | HUPCL = 0x4000
constant HW_MACHINE (line 447) | HW_MACHINE = 0x1
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 IFAN_ARRIVAL (line 452) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 453) | IFAN_DEPARTURE = 0x1
constant IFA_ROUTE (line 454) | IFA_ROUTE = 0x1
constant IFF_ALLMULTI (line 455) | IFF_ALLMULTI = 0x200
constant IFF_BROADCAST (line 456) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 457) | IFF_CANTCHANGE = 0x8e52
constant IFF_DEBUG (line 458) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 459) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 460) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 461) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 462) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 463) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 464) | IFF_NOARP = 0x80
constant IFF_NOTRAILERS (line 465) | IFF_NOTRAILERS = 0x20
constant IFF_OACTIVE (line 466) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 467) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 468) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 469) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 470) | IFF_SIMPLEX = 0x800
constant IFF_UP (line 471) | IFF_UP = 0x1
constant IFNAMSIZ (line 472) | IFNAMSIZ = 0x10
constant IFT_1822 (line 473) | IFT_1822 = 0x2
constant IFT_A12MPPSWITCH (line 474) | IFT_A12MPPSWITCH = 0x82
constant IFT_AAL2 (line 475) | IFT_AAL2 = 0xbb
constant IFT_AAL5 (line 476) | IFT_AAL5 = 0x31
constant IFT_ADSL (line 477) | IFT_ADSL = 0x5e
constant IFT_AFLANE8023 (line 478) | IFT_AFLANE8023 = 0x3b
constant IFT_AFLANE8025 (line 479) | IFT_AFLANE8025 = 0x3c
constant IFT_ARAP (line 480) | IFT_ARAP = 0x58
constant IFT_ARCNET (line 481) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 482) | IFT_ARCNETPLUS = 0x24
constant IFT_ASYNC (line 483) | IFT_ASYNC = 0x54
constant IFT_ATM (line 484) | IFT_ATM = 0x25
constant IFT_ATMDXI (line 485) | IFT_ATMDXI = 0x69
constant IFT_ATMFUNI (line 486) | IFT_ATMFUNI = 0x6a
constant IFT_ATMIMA (line 487) | IFT_ATMIMA = 0x6b
constant IFT_ATMLOGICAL (line 488) | IFT_ATMLOGICAL = 0x50
constant IFT_ATMRADIO (line 489) | IFT_ATMRADIO = 0xbd
constant IFT_ATMSUBINTERFACE (line 490) | IFT_ATMSUBINTERFACE = 0x86
constant IFT_ATMVCIENDPT (line 491) | IFT_ATMVCIENDPT = 0xc2
constant IFT_ATMVIRTUAL (line 492) | IFT_ATMVIRTUAL = 0x95
constant IFT_BGPPOLICYACCOUNTING (line 493) | IFT_BGPPOLICYACCOUNTING = 0xa2
constant IFT_BLUETOOTH (line 494) | IFT_BLUETOOTH = 0xf8
constant IFT_BRIDGE (line 495) | IFT_BRIDGE = 0xd1
constant IFT_BSC (line 496) | IFT_BSC = 0x53
constant IFT_CARP (line 497) | IFT_CARP = 0xf7
constant IFT_CCTEMUL (line 498) | IFT_CCTEMUL = 0x3d
constant IFT_CEPT (line 499) | IFT_CEPT = 0x13
constant IFT_CES (line 500) | IFT_CES = 0x85
constant IFT_CHANNEL (line 501) | IFT_CHANNEL = 0x46
constant IFT_CNR (line 502) | IFT_CNR = 0x55
constant IFT_COFFEE (line 503) | IFT_COFFEE = 0x84
constant IFT_COMPOSITELINK (line 504) | IFT_COMPOSITELINK = 0x9b
constant IFT_DCN (line 505) | IFT_DCN = 0x8d
constant IFT_DIGITALPOWERLINE (line 506) | IFT_DIGITALPOWERLINE = 0x8a
constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 507) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
constant IFT_DLSW (line 508) | IFT_DLSW = 0x4a
constant IFT_DOCSCABLEDOWNSTREAM (line 509) | IFT_DOCSCABLEDOWNSTREAM = 0x80
constant IFT_DOCSCABLEMACLAYER (line 510) | IFT_DOCSCABLEMACLAYER = 0x7f
constant IFT_DOCSCABLEUPSTREAM (line 511) | IFT_DOCSCABLEUPSTREAM = 0x81
constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 512) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd
constant IFT_DS0 (line 513) | IFT_DS0 = 0x51
constant IFT_DS0BUNDLE (line 514) | IFT_DS0BUNDLE = 0x52
constant IFT_DS1FDL (line 515) | IFT_DS1FDL = 0xaa
constant IFT_DS3 (line 516) | IFT_DS3 = 0x1e
constant IFT_DTM (line 517) | IFT_DTM = 0x8c
constant IFT_DUMMY (line 518) | IFT_DUMMY = 0xf1
constant IFT_DVBASILN (line 519) | IFT_DVBASILN = 0xac
constant IFT_DVBASIOUT (line 520) | IFT_DVBASIOUT = 0xad
constant IFT_DVBRCCDOWNSTREAM (line 521) | IFT_DVBRCCDOWNSTREAM = 0x93
constant IFT_DVBRCCMACLAYER (line 522) | IFT_DVBRCCMACLAYER = 0x92
constant IFT_DVBRCCUPSTREAM (line 523) | IFT_DVBRCCUPSTREAM = 0x94
constant IFT_ECONET (line 524) | IFT_ECONET = 0xce
constant IFT_ENC (line 525) | IFT_ENC = 0xf4
constant IFT_EON (line 526) | IFT_EON = 0x19
constant IFT_EPLRS (line 527) | IFT_EPLRS = 0x57
constant IFT_ESCON (line 528) | IFT_ESCON = 0x49
constant IFT_ETHER (line 529) | IFT_ETHER = 0x6
constant IFT_FAITH (line 530) | IFT_FAITH = 0xf3
constant IFT_FAST (line 531) | IFT_FAST = 0x7d
constant IFT_FASTETHER (line 532) | IFT_FASTETHER = 0x3e
constant IFT_FASTETHERFX (line 533) | IFT_FASTETHERFX = 0x45
constant IFT_FDDI (line 534) | IFT_FDDI = 0xf
constant IFT_FIBRECHANNEL (line 535) | IFT_FIBRECHANNEL = 0x38
constant IFT_FRAMERELAYINTERCONNECT (line 536) | IFT_FRAMERELAYINTERCONNECT = 0x3a
constant IFT_FRAMERELAYMPI (line 537) | IFT_FRAMERELAYMPI = 0x5c
constant IFT_FRDLCIENDPT (line 538) | IFT_FRDLCIENDPT = 0xc1
constant IFT_FRELAY (line 539) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 540) | IFT_FRELAYDCE = 0x2c
constant IFT_FRF16MFRBUNDLE (line 541) | IFT_FRF16MFRBUNDLE = 0xa3
constant IFT_FRFORWARD (line 542) | IFT_FRFORWARD = 0x9e
constant IFT_G703AT2MB (line 543) | IFT_G703AT2MB = 0x43
constant IFT_G703AT64K (line 544) | IFT_G703AT64K = 0x42
constant IFT_GIF (line 545) | IFT_GIF = 0xf0
constant IFT_GIGABITETHERNET (line 546) | IFT_GIGABITETHERNET = 0x75
constant IFT_GR303IDT (line 547) | IFT_GR303IDT = 0xb2
constant IFT_GR303RDT (line 548) | IFT_GR303RDT = 0xb1
constant IFT_H323GATEKEEPER (line 549) | IFT_H323GATEKEEPER = 0xa4
constant IFT_H323PROXY (line 550) | IFT_H323PROXY = 0xa5
constant IFT_HDH1822 (line 551) | IFT_HDH1822 = 0x3
constant IFT_HDLC (line 552) | IFT_HDLC = 0x76
constant IFT_HDSL2 (line 553) | IFT_HDSL2 = 0xa8
constant IFT_HIPERLAN2 (line 554) | IFT_HIPERLAN2 = 0xb7
constant IFT_HIPPI (line 555) | IFT_HIPPI = 0x2f
constant IFT_HIPPIINTERFACE (line 556) | IFT_HIPPIINTERFACE = 0x39
constant IFT_HOSTPAD (line 557) | IFT_HOSTPAD = 0x5a
constant IFT_HSSI (line 558) | IFT_HSSI = 0x2e
constant IFT_HY (line 559) | IFT_HY = 0xe
constant IFT_IBM370PARCHAN (line 560) | IFT_IBM370PARCHAN = 0x48
constant IFT_IDSL (line 561) | IFT_IDSL = 0x9a
constant IFT_IEEE1394 (line 562) | IFT_IEEE1394 = 0x90
constant IFT_IEEE80211 (line 563) | IFT_IEEE80211 = 0x47
constant IFT_IEEE80212 (line 564) | IFT_IEEE80212 = 0x37
constant IFT_IEEE8023ADLAG (line 565) | IFT_IEEE8023ADLAG = 0xa1
constant IFT_IFGSN (line 566) | IFT_IFGSN = 0x91
constant IFT_IMT (line 567) | IFT_IMT = 0xbe
constant IFT_INFINIBAND (line 568) | IFT_INFINIBAND = 0xc7
constant IFT_INTERLEAVE (line 569) | IFT_INTERLEAVE = 0x7c
constant IFT_IP (line 570) | IFT_IP = 0x7e
constant IFT_IPFORWARD (line 571) | IFT_IPFORWARD = 0x8e
constant IFT_IPOVERATM (line 572) | IFT_IPOVERATM = 0x72
constant IFT_IPOVERCDLC (line 573) | IFT_IPOVERCDLC = 0x6d
constant IFT_IPOVERCLAW (line 574) | IFT_IPOVERCLAW = 0x6e
constant IFT_IPSWITCH (line 575) | IFT_IPSWITCH = 0x4e
constant IFT_ISDN (line 576) | IFT_ISDN = 0x3f
constant IFT_ISDNBASIC (line 577) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 578) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISDNS (line 579) | IFT_ISDNS = 0x4b
constant IFT_ISDNU (line 580) | IFT_ISDNU = 0x4c
constant IFT_ISO88022LLC (line 581) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 582) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 583) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 584) | IFT_ISO88025 = 0x9
constant IFT_ISO88025CRFPINT (line 585) | IFT_ISO88025CRFPINT = 0x62
constant IFT_ISO88025DTR (line 586) | IFT_ISO88025DTR = 0x56
constant IFT_ISO88025FIBER (line 587) | IFT_ISO88025FIBER = 0x73
constant IFT_ISO88026 (line 588) | IFT_ISO88026 = 0xa
constant IFT_ISUP (line 589) | IFT_ISUP = 0xb3
constant IFT_L2VLAN (line 590) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 591) | IFT_L3IPVLAN = 0x88
constant IFT_L3IPXVLAN (line 592) | IFT_L3IPXVLAN = 0x89
constant IFT_LAPB (line 593) | IFT_LAPB = 0x10
constant IFT_LAPD (line 594) | IFT_LAPD = 0x4d
constant IFT_LAPF (line 595) | IFT_LAPF = 0x77
constant IFT_LINEGROUP (line 596) | IFT_LINEGROUP = 0xd2
constant IFT_LOCALTALK (line 597) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 598) | IFT_LOOP = 0x18
constant IFT_MEDIAMAILOVERIP (line 599) | IFT_MEDIAMAILOVERIP = 0x8b
constant IFT_MFSIGLINK (line 600) | IFT_MFSIGLINK = 0xa7
constant IFT_MIOX25 (line 601) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 602) | IFT_MODEM = 0x30
constant IFT_MPC (line 603) | IFT_MPC = 0x71
constant IFT_MPLS (line 604) | IFT_MPLS = 0xa6
constant IFT_MPLSTUNNEL (line 605) | IFT_MPLSTUNNEL = 0x96
constant IFT_MSDSL (line 606) | IFT_MSDSL = 0x8f
constant IFT_MVL (line 607) | IFT_MVL = 0xbf
constant IFT_MYRINET (line 608) | IFT_MYRINET = 0x63
constant IFT_NFAS (line 609) | IFT_NFAS = 0xaf
constant IFT_NSIP (line 610) | IFT_NSIP = 0x1b
constant IFT_OPTICALCHANNEL (line 611) | IFT_OPTICALCHANNEL = 0xc3
constant IFT_OPTICALTRANSPORT (line 612) | IFT_OPTICALTRANSPORT = 0xc4
constant IFT_OTHER (line 613) | IFT_OTHER = 0x1
constant IFT_P10 (line 614) | IFT_P10 = 0xc
constant IFT_P80 (line 615) | IFT_P80 = 0xd
constant IFT_PARA (line 616) | IFT_PARA = 0x22
constant IFT_PFLOG (line 617) | IFT_PFLOG = 0xf5
constant IFT_PFLOW (line 618) | IFT_PFLOW = 0xf9
constant IFT_PFSYNC (line 619) | IFT_PFSYNC = 0xf6
constant IFT_PLC (line 620) | IFT_PLC = 0xae
constant IFT_PON155 (line 621) | IFT_PON155 = 0xcf
constant IFT_PON622 (line 622) | IFT_PON622 = 0xd0
constant IFT_POS (line 623) | IFT_POS = 0xab
constant IFT_PPP (line 624) | IFT_PPP = 0x17
constant IFT_PPPMULTILINKBUNDLE (line 625) | IFT_PPPMULTILINKBUNDLE = 0x6c
constant IFT_PROPATM (line 626) | IFT_PROPATM = 0xc5
constant IFT_PROPBWAP2MP (line 627) | IFT_PROPBWAP2MP = 0xb8
constant IFT_PROPCNLS (line 628) | IFT_PROPCNLS = 0x59
constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 629) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5
constant IFT_PROPDOCSWIRELESSMACLAYER (line 630) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4
constant IFT_PROPDOCSWIRELESSUPSTREAM (line 631) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6
constant IFT_PROPMUX (line 632) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 633) | IFT_PROPVIRTUAL = 0x35
constant IFT_PROPWIRELESSP2P (line 634) | IFT_PROPWIRELESSP2P = 0x9d
constant IFT_PTPSERIAL (line 635) | IFT_PTPSERIAL = 0x16
constant IFT_PVC (line 636) | IFT_PVC = 0xf2
constant IFT_Q2931 (line 637) | IFT_Q2931 = 0xc9
constant IFT_QLLC (line 638) | IFT_QLLC = 0x44
constant IFT_RADIOMAC (line 639) | IFT_RADIOMAC = 0xbc
constant IFT_RADSL (line 640) | IFT_RADSL = 0x5f
constant IFT_REACHDSL (line 641) | IFT_REACHDSL = 0xc0
constant IFT_RFC1483 (line 642) | IFT_RFC1483 = 0x9f
constant IFT_RS232 (line 643) | IFT_RS232 = 0x21
constant IFT_RSRB (line 644) | IFT_RSRB = 0x4f
constant IFT_SDLC (line 645) | IFT_SDLC = 0x11
constant IFT_SDSL (line 646) | IFT_SDSL = 0x60
constant IFT_SHDSL (line 647) | IFT_SHDSL = 0xa9
constant IFT_SIP (line 648) | IFT_SIP = 0x1f
constant IFT_SIPSIG (line 649) | IFT_SIPSIG = 0xcc
constant IFT_SIPTG (line 650) | IFT_SIPTG = 0xcb
constant IFT_SLIP (line 651) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 652) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 653) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 654) | IFT_SONET = 0x27
constant IFT_SONETOVERHEADCHANNEL (line 655) | IFT_SONETOVERHEADCHANNEL = 0xb9
constant IFT_SONETPATH (line 656) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 657) | IFT_SONETVT = 0x33
constant IFT_SRP (line 658) | IFT_SRP = 0x97
constant IFT_SS7SIGLINK (line 659) | IFT_SS7SIGLINK = 0x9c
constant IFT_STACKTOSTACK (line 660) | IFT_STACKTOSTACK = 0x6f
constant IFT_STARLAN (line 661) | IFT_STARLAN = 0xb
constant IFT_T1 (line 662) | IFT_T1 = 0x12
constant IFT_TDLC (line 663) | IFT_TDLC = 0x74
constant IFT_TELINK (line 664) | IFT_TELINK = 0xc8
constant IFT_TERMPAD (line 665) | IFT_TERMPAD = 0x5b
constant IFT_TR008 (line 666) | IFT_TR008 = 0xb0
constant IFT_TRANSPHDLC (line 667) | IFT_TRANSPHDLC = 0x7b
constant IFT_TUNNEL (line 668) | IFT_TUNNEL = 0x83
constant IFT_ULTRA (line 669) | IFT_ULTRA = 0x1d
constant IFT_USB (line 670) | IFT_USB = 0xa0
constant IFT_V11 (line 671) | IFT_V11 = 0x40
constant IFT_V35 (line 672) | IFT_V35 = 0x2d
constant IFT_V36 (line 673) | IFT_V36 = 0x41
constant IFT_V37 (line 674) | IFT_V37 = 0x78
constant IFT_VDSL (line 675) | IFT_VDSL = 0x61
constant IFT_VIRTUALIPADDRESS (line 676) | IFT_VIRTUALIPADDRESS = 0x70
constant IFT_VIRTUALTG (line 677) | IFT_VIRTUALTG = 0xca
constant IFT_VOICEDID (line 678) | IFT_VOICEDID = 0xd5
constant IFT_VOICEEM (line 679) | IFT_VOICEEM = 0x64
constant IFT_VOICEEMFGD (line 680) | IFT_VOICEEMFGD = 0xd3
constant IFT_VOICEENCAP (line 681) | IFT_VOICEENCAP = 0x67
constant IFT_VOICEFGDEANA (line 682) | IFT_VOICEFGDEANA = 0xd4
constant IFT_VOICEFXO (line 683) | IFT_VOICEFXO = 0x65
constant IFT_VOICEFXS (line 684) | IFT_VOICEFXS = 0x66
constant IFT_VOICEOVERATM (line 685) | IFT_VOICEOVERATM = 0x98
constant IFT_VOICEOVERCABLE (line 686) | IFT_VOICEOVERCABLE = 0xc6
constant IFT_VOICEOVERFRAMERELAY (line 687) | IFT_VOICEOVERFRAMERELAY = 0x99
constant IFT_VOICEOVERIP (line 688) | IFT_VOICEOVERIP = 0x68
constant IFT_X213 (line 689) | IFT_X213 = 0x5d
constant IFT_X25 (line 690) | IFT_X25 = 0x5
constant IFT_X25DDN (line 691) | IFT_X25DDN = 0x4
constant IFT_X25HUNTGROUP (line 692) | IFT_X25HUNTGROUP = 0x7a
constant IFT_X25MLP (line 693) | IFT_X25MLP = 0x79
constant IFT_X25PLE (line 694) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 695) | IFT_XETHER = 0x1a
constant IGNBRK (line 696) | IGNBRK = 0x1
constant IGNCR (line 697) | IGNCR = 0x80
constant IGNPAR (line 698) | IGNPAR = 0x4
constant IMAXBEL (line 699) | IMAXBEL = 0x2000
constant INLCR (line 700) | INLCR = 0x40
constant INPCK (line 701) | INPCK = 0x10
constant IN_CLASSA_HOST (line 702) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 703) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 704) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 705) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 706) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 707) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 708) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 709) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 710) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 711) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 712) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 713) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 714) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 715) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 716) | IN_LOOPBACKNET = 0x7f
constant IN_RFC3021_HOST (line 717) | IN_RFC3021_HOST = 0x1
constant IN_RFC3021_NET (line 718) | IN_RFC3021_NET = 0xfffffffe
constant IN_RFC3021_NSHIFT (line 719) | IN_RFC3021_NSHIFT = 0x1f
constant IPPROTO_AH (line 720) | IPPROTO_AH = 0x33
constant IPPROTO_CARP (line 721) | IPPROTO_CARP = 0x70
constant IPPROTO_DIVERT (line 722) | IPPROTO_DIVERT = 0x102
constant IPPROTO_DIVERT_INIT (line 723) | IPPROTO_DIVERT_INIT = 0x2
constant IPPROTO_DIVERT_RESP (line 724) | IPPROTO_DIVERT_RESP = 0x1
constant IPPROTO_DONE (line 725) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 726) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 727) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 728) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 729) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 730) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 731) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 732) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 733) | IPPROTO_GGP = 0x3
constant IPPROTO_GRE (line 734) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 735) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 736) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 737) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 738) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 739) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 740) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 741) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPIP (line 742) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV4 (line 743) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 744) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MAX (line 745) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 746) | IPPROTO_MAXID = 0x103
constant IPPROTO_MOBILE (line 747) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MPLS (line 748) | IPPROTO_MPLS = 0x89
constant IPPROTO_NONE (line 749) | IPPROTO_NONE = 0x3b
constant IPPROTO_PFSYNC (line 750) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PIM (line 751) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 752) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 753) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 754) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 755) | IPPROTO_RSVP = 0x2e
constant IPPROTO_TCP (line 756) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 757) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 758) | IPPROTO_UDP = 0x11
constant IPV6_AUTH_LEVEL (line 759) | IPV6_AUTH_LEVEL = 0x35
constant IPV6_AUTOFLOWLABEL (line 760) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_CHECKSUM (line 761) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 762) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 763) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 764) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 765) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 766) | IPV6_DSTOPTS = 0x32
constant IPV6_ESP_NETWORK_LEVEL (line 767) | IPV6_ESP_NETWORK_LEVEL = 0x37
constant IPV6_ESP_TRANS_LEVEL (line 768) | IPV6_ESP_TRANS_LEVEL = 0x36
constant IPV6_FAITH (line 769) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 770) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 771) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FRAGTTL (line 772) | IPV6_FRAGTTL = 0x78
constant IPV6_HLIMDEC (line 773) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 774) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 775) | IPV6_HOPOPTS = 0x31
constant IPV6_IPCOMP_LEVEL (line 776) | IPV6_IPCOMP_LEVEL = 0x3c
constant IPV6_JOIN_GROUP (line 777) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 778) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 779) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXPACKET (line 780) | IPV6_MAXPACKET = 0xffff
constant IPV6_MMTU (line 781) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 782) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 783) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 784) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 785) | IPV6_NEXTHOP = 0x30
constant IPV6_OPTIONS (line 786) | IPV6_OPTIONS = 0x1
constant IPV6_PATHMTU (line 787) | IPV6_PATHMTU = 0x2c
constant IPV6_PIPEX (line 788) | IPV6_PIPEX = 0x3f
constant IPV6_PKTINFO (line 789) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 790) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 791) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 792) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 793) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVDSTOPTS (line 794) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVDSTPORT (line 795) | IPV6_RECVDSTPORT = 0x40
constant IPV6_RECVHOPLIMIT (line 796) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 797) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 798) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 799) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRTHDR (line 800) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 801) | IPV6_RECVTCLASS = 0x39
constant IPV6_RTABLE (line 802) | IPV6_RTABLE = 0x1021
constant IPV6_RTHDR (line 803) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 804) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 805) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 806) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 807) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 808) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 809) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 810) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 811) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 812) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 813) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 814) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 815) | IP_ADD_MEMBERSHIP = 0xc
constant IP_AUTH_LEVEL (line 816) | IP_AUTH_LEVEL = 0x14
constant IP_DEFAULT_MULTICAST_LOOP (line 817) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 818) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 819) | IP_DF = 0x4000
constant IP_DIVERTFL (line 820) | IP_DIVERTFL = 0x1022
constant IP_DROP_MEMBERSHIP (line 821) | IP_DROP_MEMBERSHIP = 0xd
constant IP_ESP_NETWORK_LEVEL (line 822) | IP_ESP_NETWORK_LEVEL = 0x16
constant IP_ESP_TRANS_LEVEL (line 823) | IP_ESP_TRANS_LEVEL = 0x15
constant IP_HDRINCL (line 824) | IP_HDRINCL = 0x2
constant IP_IPCOMP_LEVEL (line 825) | IP_IPCOMP_LEVEL = 0x1d
constant IP_IPSECFLOWINFO (line 826) | IP_IPSECFLOWINFO = 0x24
constant IP_IPSEC_LOCAL_AUTH (line 827) | IP_IPSEC_LOCAL_AUTH = 0x1b
constant IP_IPSEC_LOCAL_CRED (line 828) | IP_IPSEC_LOCAL_CRED = 0x19
constant IP_IPSEC_LOCAL_ID (line 829) | IP_IPSEC_LOCAL_ID = 0x17
constant IP_IPSEC_REMOTE_AUTH (line 830) | IP_IPSEC_REMOTE_AUTH = 0x1c
constant IP_IPSEC_REMOTE_CRED (line 831) | IP_IPSEC_REMOTE_CRED = 0x1a
constant IP_IPSEC_REMOTE_ID (line 832) | IP_IPSEC_REMOTE_ID = 0x18
constant IP_MAXPACKET (line 833) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 834) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MF (line 835) | IP_MF = 0x2000
constant IP_MINTTL (line 836) | IP_MINTTL = 0x20
constant IP_MIN_MEMBERSHIPS (line 837) | IP_MIN_MEMBERSHIPS = 0xf
constant IP_MSS (line 838) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 839) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 840) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 841) | IP_MULTICAST_TTL = 0xa
constant IP_OFFMASK (line 842) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 843) | IP_OPTIONS = 0x1
constant IP_PIPEX (line 844) | IP_PIPEX = 0x22
constant IP_PORTRANGE (line 845) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 846) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 847) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 848) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 849) | IP_RECVDSTADDR = 0x7
constant IP_RECVDSTPORT (line 850) | IP_RECVDSTPORT = 0x21
constant IP_RECVIF (line 851) | IP_RECVIF = 0x1e
constant IP_RECVOPTS (line 852) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 853) | IP_RECVRETOPTS = 0x6
constant IP_RECVRTABLE (line 854) | IP_RECVRTABLE = 0x23
constant IP_RECVTTL (line 855) | IP_RECVTTL = 0x1f
constant IP_RETOPTS (line 856) | IP_RETOPTS = 0x8
constant IP_RF (line 857) | IP_RF = 0x8000
constant IP_RTABLE (line 858) | IP_RTABLE = 0x1021
constant IP_TOS (line 859) | IP_TOS = 0x3
constant IP_TTL (line 860) | IP_TTL = 0x4
constant ISIG (line 861) | ISIG = 0x80
constant ISTRIP (line 862) | ISTRIP = 0x20
constant IXANY (line 863) | IXANY = 0x800
constant IXOFF (line 864) | IXOFF = 0x400
constant IXON (line 865) | IXON = 0x200
constant KERN_HOSTNAME (line 866) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 867) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 868) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 869) | KERN_VERSION = 0x4
constant LCNT_OVERLOAD_FLUSH (line 870) | LCNT_OVERLOAD_FLUSH = 0x6
constant LOCK_EX (line 871) | LOCK_EX = 0x2
constant LOCK_NB (line 872) | LOCK_NB = 0x4
constant LOCK_SH (line 873) | LOCK_SH = 0x1
constant LOCK_UN (line 874) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 875) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 876) | MADV_FREE = 0x6
constant MADV_NORMAL (line 877) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 878) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 879) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 880) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 881) | MADV_WILLNEED = 0x3
constant MAP_ANON (line 882) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 883) | MAP_ANONYMOUS = 0x1000
constant MAP_COPY (line 884) | MAP_COPY = 0x2
constant MAP_FILE (line 885) | MAP_FILE = 0x0
constant MAP_FIXED (line 886) | MAP_FIXED = 0x10
constant MAP_FLAGMASK (line 887) | MAP_FLAGMASK = 0x3ff7
constant MAP_HASSEMAPHORE (line 888) | MAP_HASSEMAPHORE = 0x0
constant MAP_INHERIT (line 889) | MAP_INHERIT = 0x0
constant MAP_INHERIT_COPY (line 890) | MAP_INHERIT_COPY = 0x1
constant MAP_INHERIT_NONE (line 891) | MAP_INHERIT_NONE = 0x2
constant MAP_INHERIT_SHARE (line 892) | MAP_INHERIT_SHARE = 0x0
constant MAP_INHERIT_ZERO (line 893) | MAP_INHERIT_ZERO = 0x3
constant MAP_NOEXTEND (line 894) | MAP_NOEXTEND = 0x0
constant MAP_NORESERVE (line 895) | MAP_NORESERVE = 0x0
constant MAP_PRIVATE (line 896) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 897) | MAP_RENAME = 0x0
constant MAP_SHARED (line 898) | MAP_SHARED = 0x1
constant MAP_TRYFIXED (line 899) | MAP_TRYFIXED = 0x0
constant MCL_CURRENT (line 900) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 901) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 902) | MNT_ASYNC = 0x40
constant MNT_DEFEXPORTED (line 903) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 904) | MNT_DELEXPORT = 0x20000
constant MNT_DOOMED (line 905) | MNT_DOOMED = 0x8000000
constant MNT_EXPORTANON (line 906) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 907) | MNT_EXPORTED = 0x100
constant MNT_EXRDONLY (line 908) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 909) | MNT_FORCE = 0x80000
constant MNT_LAZY (line 910) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 911) | MNT_LOCAL = 0x1000
constant MNT_NOATIME (line 912) | MNT_NOATIME = 0x8000
constant MNT_NODEV (line 913) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 914) | MNT_NOEXEC = 0x4
constant MNT_NOSUID (line 915) | MNT_NOSUID = 0x8
constant MNT_NOWAIT (line 916) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 917) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 918) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 919) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 920) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 921) | MNT_SOFTDEP = 0x4000000
constant MNT_SYNCHRONOUS (line 922) | MNT_SYNCHRONOUS = 0x2
constant MNT_UPDATE (line 923) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 924) | MNT_VISFLAGMASK = 0x400ffff
constant MNT_WAIT (line 925) | MNT_WAIT = 0x1
constant MNT_WANTRDWR (line 926) | MNT_WANTRDWR = 0x2000000
constant MNT_WXALLOWED (line 927) | MNT_WXALLOWED = 0x800
constant MSG_BCAST (line 928) | MSG_BCAST = 0x100
constant MSG_CMSG_CLOEXEC (line 929) | MSG_CMSG_CLOEXEC = 0x800
constant MSG_CTRUNC (line 930) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 931) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 932) | MSG_DONTWAIT = 0x80
constant MSG_EOR (line 933) | MSG_EOR = 0x8
constant MSG_MCAST (line 934) | MSG_MCAST = 0x200
constant MSG_NOSIGNAL (line 935) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 936) | MSG_OOB = 0x1
constant MSG_PEEK (line 937) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 938) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 939) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 940) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 941) | MS_INVALIDATE = 0x4
constant MS_SYNC (line 942) | MS_SYNC = 0x2
constant NAME_MAX (line 943) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 944) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 945) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 946) | NET_RT_IFLIST = 0x3
constant NET_RT_MAXID (line 947) | NET_RT_MAXID = 0x6
constant NET_RT_STATS (line 948) | NET_RT_STATS = 0x4
constant NET_RT_TABLE (line 949) | NET_RT_TABLE = 0x5
constant NOFLSH (line 950) | NOFLSH = 0x80000000
constant NOTE_ATTRIB (line 951) | NOTE_ATTRIB = 0x8
constant NOTE_CHILD (line 952) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 953) | NOTE_DELETE = 0x1
constant NOTE_EOF (line 954) | NOTE_EOF = 0x2
constant NOTE_EXEC (line 955) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 956) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 957) | NOTE_EXTEND = 0x4
constant NOTE_FORK (line 958) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 959) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 960) | NOTE_LOWAT = 0x1
constant NOTE_PCTRLMASK (line 961) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 962) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 963) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 964) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 965) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 966) | NOTE_TRACKERR = 0x2
constant NOTE_TRUNCATE (line 967) | NOTE_TRUNCATE = 0x80
constant NOTE_WRITE (line 968) | NOTE_WRITE = 0x2
constant OCRNL (line 969) | OCRNL = 0x10
constant ONLCR (line 970) | ONLCR = 0x2
constant ONLRET (line 971) | ONLRET = 0x80
constant ONOCR (line 972) | ONOCR = 0x40
constant ONOEOT (line 973) | ONOEOT = 0x8
constant OPOST (line 974) | OPOST = 0x1
constant O_ACCMODE (line 975) | O_ACCMODE = 0x3
constant O_APPEND (line 976) | O_APPEND = 0x8
constant O_ASYNC (line 977) | O_ASYNC = 0x40
constant O_CLOEXEC (line 978) | O_CLOEXEC = 0x10000
constant O_CREAT (line 979) | O_CREAT = 0x200
constant O_DIRECTORY (line 980) | O_DIRECTORY = 0x20000
constant O_DSYNC (line 981) | O_DSYNC = 0x80
constant O_EXCL (line 982) | O_EXCL = 0x800
constant O_EXLOCK (line 983) | O_EXLOCK = 0x20
constant O_FSYNC (line 984) | O_FSYNC = 0x80
constant O_NDELAY (line 985) | O_NDELAY = 0x4
constant O_NOCTTY (line 986) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 987) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 988) | O_NONBLOCK = 0x4
constant O_RDONLY (line 989) | O_RDONLY = 0x0
constant O_RDWR (line 990) | O_RDWR = 0x2
constant O_RSYNC (line 991) | O_RSYNC = 0x80
constant O_SHLOCK (line 992) | O_SHLOCK = 0x10
constant O_SYNC (line 993) | O_SYNC = 0x80
constant O_TRUNC (line 994) | O_TRUNC = 0x400
constant O_WRONLY (line 995) | O_WRONLY = 0x1
constant PARENB (line 996) | PARENB = 0x1000
constant PARMRK (line 997) | PARMRK = 0x8
constant PARODD (line 998) | PARODD = 0x2000
constant PENDIN (line 999) | PENDIN = 0x20000000
constant PF_FLUSH (line 1000) | PF_FLUSH = 0x1
constant PRIO_PGRP (line 1001) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1002) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1003) | PRIO_USER = 0x2
constant PROT_EXEC (line 1004) | PROT_EXEC = 0x4
constant PROT_NONE (line 1005) | PROT_NONE = 0x0
constant PROT_READ (line 1006) | PROT_READ = 0x1
constant PROT_WRITE (line 1007) | PROT_WRITE = 0x2
constant RLIMIT_CORE (line 1008) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1009) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1010) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1011) | RLIMIT_FSIZE = 0x1
constant RLIMIT_NOFILE (line 1012) | RLIMIT_NOFILE = 0x8
constant RLIMIT_STACK (line 1013) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1014) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1015) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 1016) | RTAX_BRD = 0x7
constant RTAX_DST (line 1017) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1018) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1019) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1020) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1021) | RTAX_IFP = 0x4
constant RTAX_LABEL (line 1022) | RTAX_LABEL = 0xa
constant RTAX_MAX (line 1023) | RTAX_MAX = 0xb
constant RTAX_NETMASK (line 1024) | RTAX_NETMASK = 0x2
constant RTAX_SRC (line 1025) | RTAX_SRC = 0x8
constant RTAX_SRCMASK (line 1026) | RTAX_SRCMASK = 0x9
constant RTA_AUTHOR (line 1027) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 1028) | RTA_BRD = 0x80
constant RTA_DST (line 1029) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1030) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1031) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1032) | RTA_IFA = 0x20
constant RTA_IFP (line 1033) | RTA_IFP = 0x10
constant RTA_LABEL (line 1034) | RTA_LABEL = 0x400
constant RTA_NETMASK (line 1035) | RTA_NETMASK = 0x4
constant RTA_SRC (line 1036) | RTA_SRC = 0x100
constant RTA_SRCMASK (line 1037) | RTA_SRCMASK = 0x200
constant RTF_ANNOUNCE (line 1038) | RTF_ANNOUNCE = 0x4000
constant RTF_BLACKHOLE (line 1039) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1040) | RTF_BROADCAST = 0x400000
constant RTF_CLONED (line 1041) | RTF_CLONED = 0x10000
constant RTF_CLONING (line 1042) | RTF_CLONING = 0x100
constant RTF_DONE (line 1043) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1044) | RTF_DYNAMIC = 0x10
constant RTF_FMASK (line 1045) | RTF_FMASK = 0x70f808
constant RTF_GATEWAY (line 1046) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1047) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1048) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1049) | RTF_LOCAL = 0x200000
constant RTF_MASK (line 1050) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 1051) | RTF_MODIFIED = 0x20
constant RTF_MPATH (line 1052) | RTF_MPATH = 0x40000
constant RTF_MPLS (line 1053) | RTF_MPLS = 0x100000
constant RTF_PERMANENT_ARP (line 1054) | RTF_PERMANENT_ARP = 0x2000
constant RTF_PROTO1 (line 1055) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1056) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1057) | RTF_PROTO3 = 0x2000
constant RTF_REJECT (line 1058) | RTF_REJECT = 0x8
constant RTF_STATIC (line 1059) | RTF_STATIC = 0x800
constant RTF_UP (line 1060) | RTF_UP = 0x1
constant RTF_USETRAILERS (line 1061) | RTF_USETRAILERS = 0x8000
constant RTF_XRESOLVE (line 1062) | RTF_XRESOLVE = 0x200
constant RTM_ADD (line 1063) | RTM_ADD = 0x1
constant RTM_CHANGE (line 1064) | RTM_CHANGE = 0x3
constant RTM_DELADDR (line 1065) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1066) | RTM_DELETE = 0x2
constant RTM_DESYNC (line 1067) | RTM_DESYNC = 0x10
constant RTM_GET (line 1068) | RTM_GET = 0x4
constant RTM_IFANNOUNCE (line 1069) | RTM_IFANNOUNCE = 0xf
constant RTM_IFINFO (line 1070) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 1071) | RTM_LOCK = 0x8
constant RTM_LOSING (line 1072) | RTM_LOSING = 0x5
constant RTM_MAXSIZE (line 1073) | RTM_MAXSIZE = 0x800
constant RTM_MISS (line 1074) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1075) | RTM_NEWADDR = 0xc
constant RTM_REDIRECT (line 1076) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1077) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1078) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1079) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1080) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1081) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1082) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1083) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1084) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1085) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1086) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1087) | RTV_SSTHRESH = 0x20
constant RT_TABLEID_MAX (line 1088) | RT_TABLEID_MAX = 0xff
constant RUSAGE_CHILDREN (line 1089) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1090) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1091) | RUSAGE_THREAD = 0x1
constant SCM_RIGHTS (line 1092) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1093) | SCM_TIMESTAMP = 0x4
constant SHUT_RD (line 1094) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1095) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1096) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1097) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1098) | SIOCAIFADDR = 0x8040691a
constant SIOCAIFGROUP (line 1099) | SIOCAIFGROUP = 0x80246987
constant SIOCALIFADDR (line 1100) | SIOCALIFADDR = 0x8218691c
constant SIOCATMARK (line 1101) | SIOCATMARK = 0x40047307
constant SIOCBRDGADD (line 1102) | SIOCBRDGADD = 0x8054693c
constant SIOCBRDGADDS (line 1103) | SIOCBRDGADDS = 0x80546941
constant SIOCBRDGARL (line 1104) | SIOCBRDGARL = 0x806e694d
constant SIOCBRDGDADDR (line 1105) | SIOCBRDGDADDR = 0x81286947
constant SIOCBRDGDEL (line 1106) | SIOCBRDGDEL = 0x8054693d
constant SIOCBRDGDELS (line 1107) | SIOCBRDGDELS = 0x80546942
constant SIOCBRDGFLUSH (line 1108) | SIOCBRDGFLUSH = 0x80546948
constant SIOCBRDGFRL (line 1109) | SIOCBRDGFRL = 0x806e694e
constant SIOCBRDGGCACHE (line 1110) | SIOCBRDGGCACHE = 0xc0146941
constant SIOCBRDGGFD (line 1111) | SIOCBRDGGFD = 0xc0146952
constant SIOCBRDGGHT (line 1112) | SIOCBRDGGHT = 0xc0146951
constant SIOCBRDGGIFFLGS (line 1113) | SIOCBRDGGIFFLGS = 0xc054693e
constant SIOCBRDGGMA (line 1114) | SIOCBRDGGMA = 0xc0146953
constant SIOCBRDGGPARAM (line 1115) | SIOCBRDGGPARAM = 0xc03c6958
constant SIOCBRDGGPRI (line 1116) | SIOCBRDGGPRI = 0xc0146950
constant SIOCBRDGGRL (line 1117) | SIOCBRDGGRL = 0xc028694f
constant SIOCBRDGGSIFS (line 1118) | SIOCBRDGGSIFS = 0xc054693c
constant SIOCBRDGGTO (line 1119) | SIOCBRDGGTO = 0xc0146946
constant SIOCBRDGIFS (line 1120) | SIOCBRDGIFS = 0xc0546942
constant SIOCBRDGRTS (line 1121) | SIOCBRDGRTS = 0xc0186943
constant SIOCBRDGSADDR (line 1122) | SIOCBRDGSADDR = 0xc1286944
constant SIOCBRDGSCACHE (line 1123) | SIOCBRDGSCACHE = 0x80146940
constant SIOCBRDGSFD (line 1124) | SIOCBRDGSFD = 0x80146952
constant SIOCBRDGSHT (line 1125) | SIOCBRDGSHT = 0x80146951
constant SIOCBRDGSIFCOST (line 1126) | SIOCBRDGSIFCOST = 0x80546955
constant SIOCBRDGSIFFLGS (line 1127) | SIOCBRDGSIFFLGS = 0x8054693f
constant SIOCBRDGSIFPRIO (line 1128) | SIOCBRDGSIFPRIO = 0x80546954
constant SIOCBRDGSMA (line 1129) | SIOCBRDGSMA = 0x80146953
constant SIOCBRDGSPRI (line 1130) | SIOCBRDGSPRI = 0x80146950
constant SIOCBRDGSPROTO (line 1131) | SIOCBRDGSPROTO = 0x8014695a
constant SIOCBRDGSTO (line 1132) | SIOCBRDGSTO = 0x80146945
constant SIOCBRDGSTXHC (line 1133) | SIOCBRDGSTXHC = 0x80146959
constant SIOCDELMULTI (line 1134) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1135) | SIOCDIFADDR = 0x80206919
constant SIOCDIFGROUP (line 1136) | SIOCDIFGROUP = 0x80246989
constant SIOCDIFPHYADDR (line 1137) | SIOCDIFPHYADDR = 0x80206949
constant SIOCDLIFADDR (line 1138) | SIOCDLIFADDR = 0x8218691e
constant SIOCGETKALIVE (line 1139) | SIOCGETKALIVE = 0xc01869a4
constant SIOCGETLABEL (line 1140) | SIOCGETLABEL = 0x8020699a
constant SIOCGETPFLOW (line 1141) | SIOCGETPFLOW = 0xc02069fe
constant SIOCGETPFSYNC (line 1142) | SIOCGETPFSYNC = 0xc02069f8
constant SIOCGETSGCNT (line 1143) | SIOCGETSGCNT = 0xc0147534
constant SIOCGETVIFCNT (line 1144) | SIOCGETVIFCNT = 0xc0147533
constant SIOCGETVLAN (line 1145) | SIOCGETVLAN = 0xc0206990
constant SIOCGHIWAT (line 1146) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 1147) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFASYNCMAP (line 1148) | SIOCGIFASYNCMAP = 0xc020697c
constant SIOCGIFBRDADDR (line 1149) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCONF (line 1150) | SIOCGIFCONF = 0xc0086924
constant SIOCGIFDATA (line 1151) | SIOCGIFDATA = 0xc020691b
constant SIOCGIFDESCR (line 1152) | SIOCGIFDESCR = 0xc0206981
constant SIOCGIFDSTADDR (line 1153) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1154) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGATTR (line 1155) | SIOCGIFGATTR = 0xc024698b
constant SIOCGIFGENERIC (line 1156) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGMEMB (line 1157) | SIOCGIFGMEMB = 0xc024698a
constant SIOCGIFGROUP (line 1158) | SIOCGIFGROUP = 0xc0246988
constant SIOCGIFHARDMTU (line 1159) | SIOCGIFHARDMTU = 0xc02069a5
constant SIOCGIFMEDIA (line 1160) | SIOCGIFMEDIA = 0xc0286936
constant SIOCGIFMETRIC (line 1161) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1162) | SIOCGIFMTU = 0xc020697e
constant SIOCGIFNETMASK (line 1163) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPDSTADDR (line 1164) | SIOCGIFPDSTADDR = 0xc0206948
constant SIOCGIFPRIORITY (line 1165) | SIOCGIFPRIORITY = 0xc020699c
constant SIOCGIFPSRCADDR (line 1166) | SIOCGIFPSRCADDR = 0xc0206947
constant SIOCGIFRDOMAIN (line 1167) | SIOCGIFRDOMAIN = 0xc02069a0
constant SIOCGIFRTLABEL (line 1168) | SIOCGIFRTLABEL = 0xc0206983
constant SIOCGIFRXR (line 1169) | SIOCGIFRXR = 0x802069aa
constant SIOCGIFTIMESLOT (line 1170) | SIOCGIFTIMESLOT = 0xc0206986
constant SIOCGIFXFLAGS (line 1171) | SIOCGIFXFLAGS = 0xc020699e
constant SIOCGLIFADDR (line 1172) | SIOCGLIFADDR = 0xc218691d
constant SIOCGLIFPHYADDR (line 1173) | SIOCGLIFPHYADDR = 0xc218694b
constant SIOCGLIFPHYRTABLE (line 1174) | SIOCGLIFPHYRTABLE = 0xc02069a2
constant SIOCGLIFPHYTTL (line 1175) | SIOCGLIFPHYTTL = 0xc02069a9
constant SIOCGLOWAT (line 1176) | SIOCGLOWAT = 0x40047303
constant SIOCGPGRP (line 1177) | SIOCGPGRP = 0x40047309
constant SIOCGSPPPPARAMS (line 1178) | SIOCGSPPPPARAMS = 0xc0206994
constant SIOCGVH (line 1179) | SIOCGVH = 0xc02069f6
constant SIOCGVNETID (line 1180) | SIOCGVNETID = 0xc02069a7
constant SIOCIFCREATE (line 1181) | SIOCIFCREATE = 0x8020697a
constant SIOCIFDESTROY (line 1182) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1183) | SIOCIFGCLONERS = 0xc00c6978
constant SIOCSETKALIVE (line 1184) | SIOCSETKALIVE = 0x801869a3
constant SIOCSETLABEL (line 1185) | SIOCSETLABEL = 0x80206999
constant SIOCSETPFLOW (line 1186) | SIOCSETPFLOW = 0x802069fd
constant SIOCSETPFSYNC (line 1187) | SIOCSETPFSYNC = 0x802069f7
constant SIOCSETVLAN (line 1188) | SIOCSETVLAN = 0x8020698f
constant SIOCSHIWAT (line 1189) | SIOCSHIWAT = 0x80047300
constant SIOCSIFADDR (line 1190) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFASYNCMAP (line 1191) | SIOCSIFASYNCMAP = 0x8020697d
constant SIOCSIFBRDADDR (line 1192) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFDESCR (line 1193) | SIOCSIFDESCR = 0x80206980
constant SIOCSIFDSTADDR (line 1194) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1195) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGATTR (line 1196) | SIOCSIFGATTR = 0x8024698c
constant SIOCSIFGENERIC (line 1197) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1198) | SIOCSIFLLADDR = 0x8020691f
constant SIOCSIFMEDIA (line 1199) | SIOCSIFMEDIA = 0xc0206935
constant SIOCSIFMETRIC (line 1200) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1201) | SIOCSIFMTU = 0x8020697f
constant SIOCSIFNETMASK (line 1202) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPHYADDR (line 1203) | SIOCSIFPHYADDR = 0x80406946
constant SIOCSIFPRIORITY (line 1204) | SIOCSIFPRIORITY = 0x8020699b
constant SIOCSIFRDOMAIN (line 1205) | SIOCSIFRDOMAIN = 0x8020699f
constant SIOCSIFRTLABEL (line 1206) | SIOCSIFRTLABEL = 0x80206982
constant SIOCSIFTIMESLOT (line 1207) | SIOCSIFTIMESLOT = 0x80206985
constant SIOCSIFXFLAGS (line 1208) | SIOCSIFXFLAGS = 0x8020699d
constant SIOCSLIFPHYADDR (line 1209) | SIOCSLIFPHYADDR = 0x8218694a
constant SIOCSLIFPHYRTABLE (line 1210) | SIOCSLIFPHYRTABLE = 0x802069a1
constant SIOCSLIFPHYTTL (line 1211) | SIOCSLIFPHYTTL = 0x802069a8
constant SIOCSLOWAT (line 1212) | SIOCSLOWAT = 0x80047302
constant SIOCSPGRP (line 1213) | SIOCSPGRP = 0x80047308
constant SIOCSSPPPPARAMS (line 1214) | SIOCSSPPPPARAMS = 0x80206993
constant SIOCSVH (line 1215) | SIOCSVH = 0xc02069f5
constant SIOCSVNETID (line 1216) | SIOCSVNETID = 0x802069a6
constant SOCK_CLOEXEC (line 1217) | SOCK_CLOEXEC = 0x8000
constant SOCK_DGRAM (line 1218) | SOCK_DGRAM = 0x2
constant SOCK_NONBLOCK (line 1219) | SOCK_NONBLOCK = 0x4000
constant SOCK_RAW (line 1220) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1221) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1222) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1223) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1224) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1225) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1226) | SO_ACCEPTCONN = 0x2
constant SO_BINDANY (line 1227) | SO_BINDANY = 0x1000
constant SO_BROADCAST (line 1228) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1229) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1230) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1231) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1232) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1233) | SO_LINGER = 0x80
constant SO_NETPROC (line 1234) | SO_NETPROC = 0x1020
constant SO_OOBINLINE (line 1235) | SO_OOBINLINE = 0x100
constant SO_PEERCRED (line 1236) | SO_PEERCRED = 0x1022
constant SO_RCVBUF (line 1237) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1238) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1239) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1240) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1241) | SO_REUSEPORT = 0x200
constant SO_RTABLE (line 1242) | SO_RTABLE = 0x1021
constant SO_SNDBUF (line 1243) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1244) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1245) | SO_SNDTIMEO = 0x1005
constant SO_SPLICE (line 1246) | SO_SPLICE = 0x1023
constant SO_TIMESTAMP (line 1247) | SO_TIMESTAMP = 0x800
constant SO_TYPE (line 1248) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1249) | SO_USELOOPBACK = 0x40
constant S_BLKSIZE (line 1250) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1251) | S_IEXEC = 0x40
constant S_IFBLK (line 1252) | S_IFBLK = 0x6000
constant S_IFCHR (line 1253) | S_IFCHR = 0x2000
constant S_IFDIR (line 1254) | S_IFDIR = 0x4000
constant S_IFIFO (line 1255) | S_IFIFO = 0x1000
constant S_IFLNK (line 1256) | S_IFLNK = 0xa000
constant S_IFMT (line 1257) | S_IFMT = 0xf000
constant S_IFREG (line 1258) | S_IFREG = 0x8000
constant S_IFSOCK (line 1259) | S_IFSOCK = 0xc000
constant S_IREAD (line 1260) | S_IREAD = 0x100
constant S_IRGRP (line 1261) | S_IRGRP = 0x20
constant S_IROTH (line 1262) | S_IROTH = 0x4
constant S_IRUSR (line 1263) | S_IRUSR = 0x100
constant S_IRWXG (line 1264) | S_IRWXG = 0x38
constant S_IRWXO (line 1265) | S_IRWXO = 0x7
constant S_IRWXU (line 1266) | S_IRWXU = 0x1c0
constant S_ISGID (line 1267) | S_ISGID = 0x400
constant S_ISTXT (line 1268) | S_ISTXT = 0x200
constant S_ISUID (line 1269) | S_ISUID = 0x800
constant S_ISVTX (line 1270) | S_ISVTX = 0x200
constant S_IWGRP (line 1271) | S_IWGRP = 0x10
constant S_IWOTH (line 1272) | S_IWOTH = 0x2
constant S_IWRITE (line 1273) | S_IWRITE = 0x80
constant S_IWUSR (line 1274) | S_IWUSR = 0x80
constant S_IXGRP (line 1275) | S_IXGRP = 0x8
constant S_IXOTH (line 1276) | S_IXOTH = 0x1
constant S_IXUSR (line 1277) | S_IXUSR = 0x40
constant TCIFLUSH (line 1278) | TCIFLUSH = 0x1
constant TCIOFLUSH (line 1279) | TCIOFLUSH = 0x3
constant TCOFLUSH (line 1280) | TCOFLUSH = 0x2
constant TCP_MAXBURST (line 1281) | TCP_MAXBURST = 0x4
constant TCP_MAXSEG (line 1282) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1283) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1284) | TCP_MAX_SACK = 0x3
constant TCP_MAX_WINSHIFT (line 1285) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1286) | TCP_MD5SIG = 0x4
constant TCP_MSS (line 1287) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1288) | TCP_NODELAY = 0x1
constant TCP_NOPUSH (line 1289) | TCP_NOPUSH = 0x10
constant TCP_NSTATES (line 1290) | TCP_NSTATES = 0xb
constant TCP_SACK_ENABLE (line 1291) | TCP_SACK_ENABLE = 0x8
constant TCSAFLUSH (line 1292) | TCSAFLUSH = 0x2
constant TIOCCBRK (line 1293) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1294) | TIOCCDTR = 0x20007478
constant TIOCCONS (line 1295) | TIOCCONS = 0x80047462
constant TIOCDRAIN (line 1296) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1297) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1298) | TIOCEXT = 0x80047460
constant TIOCFLAG_CLOCAL (line 1299) | TIOCFLAG_CLOCAL = 0x2
constant TIOCFLAG_CRTSCTS (line 1300) | TIOCFLAG_CRTSCTS = 0x4
constant TIOCFLAG_MDMBUF (line 1301) | TIOCFLAG_MDMBUF = 0x8
constant TIOCFLAG_PPS (line 1302) | TIOCFLAG_PPS = 0x10
constant TIOCFLAG_SOFTCAR (line 1303) | TIOCFLAG_SOFTCAR = 0x1
constant TIOCFLUSH (line 1304) | TIOCFLUSH = 0x80047410
constant TIOCGETA (line 1305) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1306) | TIOCGETD = 0x4004741a
constant TIOCGFLAGS (line 1307) | TIOCGFLAGS = 0x4004745d
constant TIOCGPGRP (line 1308) | TIOCGPGRP = 0x40047477
constant TIOCGSID (line 1309) | TIOCGSID = 0x40047463
constant TIOCGTSTAMP (line 1310) | TIOCGTSTAMP = 0x400c745b
constant TIOCGWINSZ (line 1311) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1312) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1313) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 1314) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1315) | TIOCMODG = 0x4004746a
constant TIOCMODS (line 1316) | TIOCMODS = 0x8004746d
constant TIOCMSET (line 1317) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1318) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1319) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1320) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1321) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1322) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1323) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1324) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1325) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1326) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1327) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1328) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1329) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1330) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1331) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1332) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1333) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1334) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1335) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1336) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1337) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1338) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1339) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1340) | TIOCPKT_STOP = 0x4
constant TIOCREMOTE (line 1341) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1342) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1343) | TIOCSCTTY = 0x20007461
constant TIOCSDTR (line 1344) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1345) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1346) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1347) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1348) | TIOCSETD = 0x8004741b
constant TIOCSFLAGS (line 1349) | TIOCSFLAGS = 0x8004745c
constant TIOCSIG (line 1350) | TIOCSIG = 0x8004745f
constant TIOCSPGRP (line 1351) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1352) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1353) | TIOCSTAT = 0x80047465
constant TIOCSTI (line 1354) | TIOCSTI = 0x80017472
constant TIOCSTOP (line 1355) | TIOCSTOP = 0x2000746f
constant TIOCSTSTAMP (line 1356) | TIOCSTSTAMP = 0x8008745a
constant TIOCSWINSZ (line 1357) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 1358) | TIOCUCNTL = 0x80047466
constant TOSTOP (line 1359) | TOSTOP = 0x400000
constant VDISCARD (line 1360) | VDISCARD = 0xf
constant VDSUSP (line 1361) | VDSUSP = 0xb
constant VEOF (line 1362) | VEOF = 0x0
constant VEOL (line 1363) | VEOL = 0x1
constant VEOL2 (line 1364) | VEOL2 = 0x2
constant VERASE (line 1365) | VERASE = 0x3
constant VINTR (line 1366) | VINTR = 0x8
constant VKILL (line 1367) | VKILL = 0x5
constant VLNEXT (line 1368) | VLNEXT = 0xe
constant VMIN (line 1369) | VMIN = 0x10
constant VQUIT (line 1370) | VQUIT = 0x9
constant VREPRINT (line 1371) | VREPRINT = 0x6
constant VSTART (line 1372) | VSTART = 0xc
constant VSTATUS (line 1373) | VSTATUS = 0x12
constant VSTOP (line 1374) | VSTOP = 0xd
constant VSUSP (line 1375) | VSUSP = 0xa
constant VTIME (line 1376) | VTIME = 0x11
constant VWERASE (line 1377) | VWERASE = 0x4
constant WALTSIG (line 1378) | WALTSIG = 0x4
constant WCONTINUED (line 1379) | WCONTINUED = 0x8
constant WCOREFLAG (line 1380) | WCOREFLAG = 0x80
constant WNOHANG (line 1381) | WNOHANG = 0x1
constant WUNTRACED (line 1382) | WUNTRACED = 0x2
constant E2BIG (line 1387) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1388) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1389) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1390) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1391) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1392) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1393) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1394) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1395) | EBADF = syscall.Errno(0x9)
constant EBADRPC (line 1396) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1397) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1398) | ECANCELED = syscall.Errno(0x58)
constant ECHILD (line 1399) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1400) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1401) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1402) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1403) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1404) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1405) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1406) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1407) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1408) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1409) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1410) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1411) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1412) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1413) | EIDRM = syscall.Errno(0x59)
constant EILSEQ (line 1414) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 1415) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1416) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1417) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1418) | EIO = syscall.Errno(0x5)
constant EIPSEC (line 1419) | EIPSEC = syscall.Errno(0x52)
constant EISCONN (line 1420) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1421) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1422) | ELAST = syscall.Errno(0x5b)
constant ELOOP (line 1423) | ELOOP = syscall.Errno(0x3e)
constant EMEDIUMTYPE (line 1424) | EMEDIUMTYPE = syscall.Errno(0x56)
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 ENAMETOOLONG (line 1428) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1429) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1430) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1431) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1432) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1433) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1434) | ENOATTR = syscall.Errno(0x53)
constant ENOBUFS (line 1435) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1436) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1437) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1438) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1439) | ENOLCK = syscall.Errno(0x4d)
constant ENOMEDIUM (line 1440) | ENOMEDIUM = syscall.Errno(0x55)
constant ENOMEM (line 1441) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1442) | ENOMSG = syscall.Errno(0x5a)
constant ENOPROTOOPT (line 1443) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1444) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1445) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1446) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1447) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1448) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1449) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTSOCK (line 1450) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1451) | ENOTSUP = syscall.Errno(0x5b)
constant ENOTTY (line 1452) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1453) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1454) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1455) | EOVERFLOW = syscall.Errno(0x57)
constant EPERM (line 1456) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1457) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1458) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1459) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1460) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1461) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1462) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTONOSUPPORT (line 1463) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1464) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1465) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1466) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1467) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1468) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1469) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1470) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1471) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1472) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1473) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1474) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1475) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1476) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1477) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1478) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1479) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1484) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1485) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1486) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1487) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1488) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1489) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1490) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1491) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1492) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1493) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1494) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1495) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1496) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1497) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1498) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1499) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1500) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1501) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1502) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1503) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1504) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1505) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1506) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1507) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1508) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1509) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1510) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1511) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1512) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1513) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1514) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1515) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1516) | SIGXFSZ = syscall.Signal(0x19)
FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.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 ALTWERASE (line 48) | ALTWERASE = 0x200
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 B0 (line 53) | B0 = 0x0
constant B110 (line 54) | B110 = 0x6e
constant B115200 (line 55) | B115200 = 0x1c200
constant B1200 (line 56) | B1200 = 0x4b0
constant B134 (line 57) | B134 = 0x86
constant B14400 (line 58) | B14400 = 0x3840
constant B150 (line 59) | B150 = 0x96
constant B1800 (line 60) | B1800 = 0x708
constant B19200 (line 61) | B19200 = 0x4b00
constant B200 (line 62) | B200 = 0xc8
constant B230400 (line 63) | B230400 = 0x38400
constant B2400 (line 64) | B2400 = 0x960
constant B28800 (line 65) | B28800 = 0x7080
constant B300 (line 66) | B300 = 0x12c
constant B38400 (line 67) | B38400 = 0x9600
constant B4800 (line 68) | B4800 = 0x12c0
constant B50 (line 69) | B50 = 0x32
constant B57600 (line 70) | B57600 = 0xe100
constant B600 (line 71) | B600 = 0x258
constant B7200 (line 72) | B7200 = 0x1c20
constant B75 (line 73) | B75 = 0x4b
constant B76800 (line 74) | B76800 = 0x12c00
constant B9600 (line 75) | B9600 = 0x2580
constant BIOCFLUSH (line 76) | BIOCFLUSH = 0x20004268
constant BIOCGBLEN (line 77) | BIOCGBLEN = 0x40044266
constant BIOCGDIRFILT (line 78) | BIOCGDIRFILT = 0x4004427c
constant BIOCGDLT (line 79) | BIOCGDLT = 0x4004426a
constant BIOCGDLTLIST (line 80) | BIOCGDLTLIST = 0xc010427b
constant BIOCGETIF (line 81) | BIOCGETIF = 0x4020426b
constant BIOCGFILDROP (line 82) | BIOCGFILDROP = 0x40044278
constant BIOCGHDRCMPLT (line 83) | BIOCGHDRCMPLT = 0x40044274
constant BIOCGRSIG (line 84) | BIOCGRSIG = 0x40044273
constant BIOCGRTIMEOUT (line 85) | BIOCGRTIMEOUT = 0x4010426e
constant BIOCGSTATS (line 86) | BIOCGSTATS = 0x4008426f
constant BIOCIMMEDIATE (line 87) | BIOCIMMEDIATE = 0x80044270
constant BIOCLOCK (line 88) | BIOCLOCK = 0x20004276
constant BIOCPROMISC (line 89) | BIOCPROMISC = 0x20004269
constant BIOCSBLEN (line 90) | BIOCSBLEN = 0xc0044266
constant BIOCSDIRFILT (line 91) | BIOCSDIRFILT = 0x8004427d
constant BIOCSDLT (line 92) | BIOCSDLT = 0x8004427a
constant BIOCSETF (line 93) | BIOCSETF = 0x80104267
constant BIOCSETIF (line 94) | BIOCSETIF = 0x8020426c
constant BIOCSETWF (line 95) | BIOCSETWF = 0x80104277
constant BIOCSFILDROP (line 96) | BIOCSFILDROP = 0x80044279
constant BIOCSHDRCMPLT (line 97) | BIOCSHDRCMPLT = 0x80044275
constant BIOCSRSIG (line 98) | BIOCSRSIG = 0x80044272
constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x8010426d
constant BIOCVERSION (line 100) | BIOCVERSION = 0x40044271
constant BPF_A (line 101) | BPF_A = 0x10
constant BPF_ABS (line 102) | BPF_ABS = 0x20
constant BPF_ADD (line 103) | BPF_ADD = 0x0
constant BPF_ALIGNMENT (line 104) | BPF_ALIGNMENT = 0x4
constant BPF_ALU (line 105) | BPF_ALU = 0x4
constant BPF_AND (line 106) | BPF_AND = 0x50
constant BPF_B (line 107) | BPF_B = 0x10
constant BPF_DIRECTION_IN (line 108) | BPF_DIRECTION_IN = 0x1
constant BPF_DIRECTION_OUT (line 109) | BPF_DIRECTION_OUT = 0x2
constant BPF_DIV (line 110) | BPF_DIV = 0x30
constant BPF_FILDROP_CAPTURE (line 111) | BPF_FILDROP_CAPTURE = 0x1
constant BPF_FILDROP_DROP (line 112) | BPF_FILDROP_DROP = 0x2
constant BPF_FILDROP_PASS (line 113) | BPF_FILDROP_PASS = 0x0
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 = 0x200000
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 CLOCK_BOOTTIME (line 153) | CLOCK_BOOTTIME = 0x6
constant CLOCK_MONOTONIC (line 154) | CLOCK_MONOTONIC = 0x3
constant CLOCK_PROCESS_CPUTIME_ID (line 155) | CLOCK_PROCESS_CPUTIME_ID = 0x2
constant CLOCK_REALTIME (line 156) | CLOCK_REALTIME = 0x0
constant CLOCK_THREAD_CPUTIME_ID (line 157) | CLOCK_THREAD_CPUTIME_ID = 0x4
constant CLOCK_UPTIME (line 158) | CLOCK_UPTIME = 0x5
constant CREAD (line 159) | CREAD = 0x800
constant CRTSCTS (line 160) | CRTSCTS = 0x10000
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 = 0xff
constant CSTOP (line 168) | CSTOP = 0x13
constant CSTOPB (line 169) | CSTOPB = 0x400
constant CSUSP (line 170) | CSUSP = 0x1a
constant CTL_HW (line 171) | CTL_HW = 0x6
constant CTL_KERN (line 172) | CTL_KERN = 0x1
constant CTL_MAXNAME (line 173) | CTL_MAXNAME = 0xc
constant CTL_NET (line 174) | CTL_NET = 0x4
constant DIOCOSFPFLUSH (line 175) | DIOCOSFPFLUSH = 0x2000444e
constant DLT_ARCNET (line 176) | DLT_ARCNET = 0x7
constant DLT_ATM_RFC1483 (line 177) | DLT_ATM_RFC1483 = 0xb
constant DLT_AX25 (line 178) | DLT_AX25 = 0x3
constant DLT_CHAOS (line 179) | DLT_CHAOS = 0x5
constant DLT_C_HDLC (line 180) | DLT_C_HDLC = 0x68
constant DLT_EN10MB (line 181) | DLT_EN10MB = 0x1
constant DLT_EN3MB (line 182) | DLT_EN3MB = 0x2
constant DLT_ENC (line 183) | DLT_ENC = 0xd
constant DLT_FDDI (line 184) | DLT_FDDI = 0xa
constant DLT_IEEE802 (line 185) | DLT_IEEE802 = 0x6
constant DLT_IEEE802_11 (line 186) | DLT_IEEE802_11 = 0x69
constant DLT_IEEE802_11_RADIO (line 187) | DLT_IEEE802_11_RADIO = 0x7f
constant DLT_LOOP (line 188) | DLT_LOOP = 0xc
constant DLT_MPLS (line 189) | DLT_MPLS = 0xdb
constant DLT_NULL (line 190) | DLT_NULL = 0x0
constant DLT_OPENFLOW (line 191) | DLT_OPENFLOW = 0x10b
constant DLT_PFLOG (line 192) | DLT_PFLOG = 0x75
constant DLT_PFSYNC (line 193) | DLT_PFSYNC = 0x12
constant DLT_PPP (line 194) | DLT_PPP = 0x9
constant DLT_PPP_BSDOS (line 195) | DLT_PPP_BSDOS = 0x10
constant DLT_PPP_ETHER (line 196) | DLT_PPP_ETHER = 0x33
constant DLT_PPP_SERIAL (line 197) | DLT_PPP_SERIAL = 0x32
constant DLT_PRONET (line 198) | DLT_PRONET = 0x4
constant DLT_RAW (line 199) | DLT_RAW = 0xe
constant DLT_SLIP (line 200) | DLT_SLIP = 0x8
constant DLT_SLIP_BSDOS (line 201) | DLT_SLIP_BSDOS = 0xf
constant DLT_USBPCAP (line 202) | DLT_USBPCAP = 0xf9
constant DLT_USER0 (line 203) | DLT_USER0 = 0x93
constant DLT_USER1 (line 204) | DLT_USER1 = 0x94
constant DLT_USER10 (line 205) | DLT_USER10 = 0x9d
constant DLT_USER11 (line 206) | DLT_USER11 = 0x9e
constant DLT_USER12 (line 207) | DLT_USER12 = 0x9f
constant DLT_USER13 (line 208) | DLT_USER13 = 0xa0
constant DLT_USER14 (line 209) | DLT_USER14 = 0xa1
constant DLT_USER15 (line 210) | DLT_USER15 = 0xa2
constant DLT_USER2 (line 211) | DLT_USER2 = 0x95
constant DLT_USER3 (line 212) | DLT_USER3 = 0x96
constant DLT_USER4 (line 213) | DLT_USER4 = 0x97
constant DLT_USER5 (line 214) | DLT_USER5 = 0x98
constant DLT_USER6 (line 215) | DLT_USER6 = 0x99
constant DLT_USER7 (line 216) | DLT_USER7 = 0x9a
constant DLT_USER8 (line 217) | DLT_USER8 = 0x9b
constant DLT_USER9 (line 218) | DLT_USER9 = 0x9c
constant DT_BLK (line 219) | DT_BLK = 0x6
constant DT_CHR (line 220) | DT_CHR = 0x2
constant DT_DIR (line 221) | DT_DIR = 0x4
constant DT_FIFO (line 222) | DT_FIFO = 0x1
constant DT_LNK (line 223) | DT_LNK = 0xa
constant DT_REG (line 224) | DT_REG = 0x8
constant DT_SOCK (line 225) | DT_SOCK = 0xc
constant DT_UNKNOWN (line 226) | DT_UNKNOWN = 0x0
constant ECHO (line 227) | ECHO = 0x8
constant ECHOCTL (line 228) | ECHOCTL = 0x40
constant ECHOE (line 229) | ECHOE = 0x2
constant ECHOK (line 230) | ECHOK = 0x4
constant ECHOKE (line 231) | ECHOKE = 0x1
constant ECHONL (line 232) | ECHONL = 0x10
constant ECHOPRT (line 233) | ECHOPRT = 0x20
constant EMT_TAGOVF (line 234) | EMT_TAGOVF = 0x1
constant EMUL_ENABLED (line 235) | EMUL_ENABLED = 0x1
constant EMUL_NATIVE (line 236) | EMUL_NATIVE = 0x2
constant ENDRUNDISC (line 237) | ENDRUNDISC = 0x9
constant ETHERMIN (line 238) | ETHERMIN = 0x2e
constant ETHERMTU (line 239) | ETHERMTU = 0x5dc
constant ETHERTYPE_8023 (line 240) | ETHERTYPE_8023 = 0x4
constant ETHERTYPE_AARP (line 241) | ETHERTYPE_AARP = 0x80f3
constant ETHERTYPE_ACCTON (line 242) | ETHERTYPE_ACCTON = 0x8390
constant ETHERTYPE_AEONIC (line 243) | ETHERTYPE_AEONIC = 0x8036
constant ETHERTYPE_ALPHA (line 244) | ETHERTYPE_ALPHA = 0x814a
constant ETHERTYPE_AMBER (line 245) | ETHERTYPE_AMBER = 0x6008
constant ETHERTYPE_AMOEBA (line 246) | ETHERTYPE_AMOEBA = 0x8145
constant ETHERTYPE_AOE (line 247) | ETHERTYPE_AOE = 0x88a2
constant ETHERTYPE_APOLLO (line 248) | ETHERTYPE_APOLLO = 0x80f7
constant ETHERTYPE_APOLLODOMAIN (line 249) | ETHERTYPE_APOLLODOMAIN = 0x8019
constant ETHERTYPE_APPLETALK (line 250) | ETHERTYPE_APPLETALK = 0x809b
constant ETHERTYPE_APPLITEK (line 251) | ETHERTYPE_APPLITEK = 0x80c7
constant ETHERTYPE_ARGONAUT (line 252) | ETHERTYPE_ARGONAUT = 0x803a
constant ETHERTYPE_ARP (line 253) | ETHERTYPE_ARP = 0x806
constant ETHERTYPE_AT (line 254) | ETHERTYPE_AT = 0x809b
constant ETHERTYPE_ATALK (line 255) | ETHERTYPE_ATALK = 0x809b
constant ETHERTYPE_ATOMIC (line 256) | ETHERTYPE_ATOMIC = 0x86df
constant ETHERTYPE_ATT (line 257) | ETHERTYPE_ATT = 0x8069
constant ETHERTYPE_ATTSTANFORD (line 258) | ETHERTYPE_ATTSTANFORD = 0x8008
constant ETHERTYPE_AUTOPHON (line 259) | ETHERTYPE_AUTOPHON = 0x806a
constant ETHERTYPE_AXIS (line 260) | ETHERTYPE_AXIS = 0x8856
constant ETHERTYPE_BCLOOP (line 261) | ETHERTYPE_BCLOOP = 0x9003
constant ETHERTYPE_BOFL (line 262) | ETHERTYPE_BOFL = 0x8102
constant ETHERTYPE_CABLETRON (line 263) | ETHERTYPE_CABLETRON = 0x7034
constant ETHERTYPE_CHAOS (line 264) | ETHERTYPE_CHAOS = 0x804
constant ETHERTYPE_COMDESIGN (line 265) | ETHERTYPE_COMDESIGN = 0x806c
constant ETHERTYPE_COMPUGRAPHIC (line 266) | ETHERTYPE_COMPUGRAPHIC = 0x806d
constant ETHERTYPE_COUNTERPOINT (line 267) | ETHERTYPE_COUNTERPOINT = 0x8062
constant ETHERTYPE_CRONUS (line 268) | ETHERTYPE_CRONUS = 0x8004
constant ETHERTYPE_CRONUSVLN (line 269) | ETHERTYPE_CRONUSVLN = 0x8003
constant ETHERTYPE_DCA (line 270) | ETHERTYPE_DCA = 0x1234
constant ETHERTYPE_DDE (line 271) | ETHERTYPE_DDE = 0x807b
constant ETHERTYPE_DEBNI (line 272) | ETHERTYPE_DEBNI = 0xaaaa
constant ETHERTYPE_DECAM (line 273) | ETHERTYPE_DECAM = 0x8048
constant ETHERTYPE_DECCUST (line 274) | ETHERTYPE_DECCUST = 0x6006
constant ETHERTYPE_DECDIAG (line 275) | ETHERTYPE_DECDIAG = 0x6005
constant ETHERTYPE_DECDNS (line 276) | ETHERTYPE_DECDNS = 0x803c
constant ETHERTYPE_DECDTS (line 277) | ETHERTYPE_DECDTS = 0x803e
constant ETHERTYPE_DECEXPER (line 278) | ETHERTYPE_DECEXPER = 0x6000
constant ETHERTYPE_DECLAST (line 279) | ETHERTYPE_DECLAST = 0x8041
constant ETHERTYPE_DECLTM (line 280) | ETHERTYPE_DECLTM = 0x803f
constant ETHERTYPE_DECMUMPS (line 281) | ETHERTYPE_DECMUMPS = 0x6009
constant ETHERTYPE_DECNETBIOS (line 282) | ETHERTYPE_DECNETBIOS = 0x8040
constant ETHERTYPE_DELTACON (line 283) | ETHERTYPE_DELTACON = 0x86de
constant ETHERTYPE_DIDDLE (line 284) | ETHERTYPE_DIDDLE = 0x4321
constant ETHERTYPE_DLOG1 (line 285) | ETHERTYPE_DLOG1 = 0x660
constant ETHERTYPE_DLOG2 (line 286) | ETHERTYPE_DLOG2 = 0x661
constant ETHERTYPE_DN (line 287) | ETHERTYPE_DN = 0x6003
constant ETHERTYPE_DOGFIGHT (line 288) | ETHERTYPE_DOGFIGHT = 0x1989
constant ETHERTYPE_DSMD (line 289) | ETHERTYPE_DSMD = 0x8039
constant ETHERTYPE_ECMA (line 290) | ETHERTYPE_ECMA = 0x803
constant ETHERTYPE_ENCRYPT (line 291) | ETHERTYPE_ENCRYPT = 0x803d
constant ETHERTYPE_ES (line 292) | ETHERTYPE_ES = 0x805d
constant ETHERTYPE_EXCELAN (line 293) | ETHERTYPE_EXCELAN = 0x8010
constant ETHERTYPE_EXPERDATA (line 294) | ETHERTYPE_EXPERDATA = 0x8049
constant ETHERTYPE_FLIP (line 295) | ETHERTYPE_FLIP = 0x8146
constant ETHERTYPE_FLOWCONTROL (line 296) | ETHERTYPE_FLOWCONTROL = 0x8808
constant ETHERTYPE_FRARP (line 297) | ETHERTYPE_FRARP = 0x808
constant ETHERTYPE_GENDYN (line 298) | ETHERTYPE_GENDYN = 0x8068
constant ETHERTYPE_HAYES (line 299) | ETHERTYPE_HAYES = 0x8130
constant ETHERTYPE_HIPPI_FP (line 300) | ETHERTYPE_HIPPI_FP = 0x8180
constant ETHERTYPE_HITACHI (line 301) | ETHERTYPE_HITACHI = 0x8820
constant ETHERTYPE_HP (line 302) | ETHERTYPE_HP = 0x8005
constant ETHERTYPE_IEEEPUP (line 303) | ETHERTYPE_IEEEPUP = 0xa00
constant ETHERTYPE_IEEEPUPAT (line 304) | ETHERTYPE_IEEEPUPAT = 0xa01
constant ETHERTYPE_IMLBL (line 305) | ETHERTYPE_IMLBL = 0x4c42
constant ETHERTYPE_IMLBLDIAG (line 306) | ETHERTYPE_IMLBLDIAG = 0x424c
constant ETHERTYPE_IP (line 307) | ETHERTYPE_IP = 0x800
constant ETHERTYPE_IPAS (line 308) | ETHERTYPE_IPAS = 0x876c
constant ETHERTYPE_IPV6 (line 309) | ETHERTYPE_IPV6 = 0x86dd
constant ETHERTYPE_IPX (line 310) | ETHERTYPE_IPX = 0x8137
constant ETHERTYPE_IPXNEW (line 311) | ETHERTYPE_IPXNEW = 0x8037
constant ETHERTYPE_KALPANA (line 312) | ETHERTYPE_KALPANA = 0x8582
constant ETHERTYPE_LANBRIDGE (line 313) | ETHERTYPE_LANBRIDGE = 0x8038
constant ETHERTYPE_LANPROBE (line 314) | ETHERTYPE_LANPROBE = 0x8888
constant ETHERTYPE_LAT (line 315) | ETHERTYPE_LAT = 0x6004
constant ETHERTYPE_LBACK (line 316) | ETHERTYPE_LBACK = 0x9000
constant ETHERTYPE_LITTLE (line 317) | ETHERTYPE_LITTLE = 0x8060
constant ETHERTYPE_LLDP (line 318) | ETHERTYPE_LLDP = 0x88cc
constant ETHERTYPE_LOGICRAFT (line 319) | ETHERTYPE_LOGICRAFT = 0x8148
constant ETHERTYPE_LOOPBACK (line 320) | ETHERTYPE_LOOPBACK = 0x9000
constant ETHERTYPE_MATRA (line 321) | ETHERTYPE_MATRA = 0x807a
constant ETHERTYPE_MAX (line 322) | ETHERTYPE_MAX = 0xffff
constant ETHERTYPE_MERIT (line 323) | ETHERTYPE_MERIT = 0x807c
constant ETHERTYPE_MICP (line 324) | ETHERTYPE_MICP = 0x873a
constant ETHERTYPE_MOPDL (line 325) | ETHERTYPE_MOPDL = 0x6001
constant ETHERTYPE_MOPRC (line 326) | ETHERTYPE_MOPRC = 0x6002
constant ETHERTYPE_MOTOROLA (line 327) | ETHERTYPE_MOTOROLA = 0x818d
constant ETHERTYPE_MPLS (line 328) | ETHERTYPE_MPLS = 0x8847
constant ETHERTYPE_MPLS_MCAST (line 329) | ETHERTYPE_MPLS_MCAST = 0x8848
constant ETHERTYPE_MUMPS (line 330) | ETHERTYPE_MUMPS = 0x813f
constant ETHERTYPE_NBPCC (line 331) | ETHERTYPE_NBPCC = 0x3c04
constant ETHERTYPE_NBPCLAIM (line 332) | ETHERTYPE_NBPCLAIM = 0x3c09
constant ETHERTYPE_NBPCLREQ (line 333) | ETHERTYPE_NBPCLREQ = 0x3c05
constant ETHERTYPE_NBPCLRSP (line 334) | ETHERTYPE_NBPCLRSP = 0x3c06
constant ETHERTYPE_NBPCREQ (line 335) | ETHERTYPE_NBPCREQ = 0x3c02
constant ETHERTYPE_NBPCRSP (line 336) | ETHERTYPE_NBPCRSP = 0x3c03
constant ETHERTYPE_NBPDG (line 337) | ETHERTYPE_NBPDG = 0x3c07
constant ETHERTYPE_NBPDGB (line 338) | ETHERTYPE_NBPDGB = 0x3c08
constant ETHERTYPE_NBPDLTE (line 339) | ETHERTYPE_NBPDLTE = 0x3c0a
constant ETHERTYPE_NBPRAR (line 340) | ETHERTYPE_NBPRAR = 0x3c0c
constant ETHERTYPE_NBPRAS (line 341) | ETHERTYPE_NBPRAS = 0x3c0b
constant ETHERTYPE_NBPRST (line 342) | ETHERTYPE_NBPRST = 0x3c0d
constant ETHERTYPE_NBPSCD (line 343) | ETHERTYPE_NBPSCD = 0x3c01
constant ETHERTYPE_NBPVCD (line 344) | ETHERTYPE_NBPVCD = 0x3c00
constant ETHERTYPE_NBS (line 345) | ETHERTYPE_NBS = 0x802
constant ETHERTYPE_NCD (line 346) | ETHERTYPE_NCD = 0x8149
constant ETHERTYPE_NESTAR (line 347) | ETHERTYPE_NESTAR = 0x8006
constant ETHERTYPE_NETBEUI (line 348) | ETHERTYPE_NETBEUI = 0x8191
constant ETHERTYPE_NOVELL (line 349) | ETHERTYPE_NOVELL = 0x8138
constant ETHERTYPE_NS (line 350) | ETHERTYPE_NS = 0x600
constant ETHERTYPE_NSAT (line 351) | ETHERTYPE_NSAT = 0x601
constant ETHERTYPE_NSCOMPAT (line 352) | ETHERTYPE_NSCOMPAT = 0x807
constant ETHERTYPE_NTRAILER (line 353) | ETHERTYPE_NTRAILER = 0x10
constant ETHERTYPE_OS9 (line 354) | ETHERTYPE_OS9 = 0x7007
constant ETHERTYPE_OS9NET (line 355) | ETHERTYPE_OS9NET = 0x7009
constant ETHERTYPE_PACER (line 356) | ETHERTYPE_PACER = 0x80c6
constant ETHERTYPE_PAE (line 357) | ETHERTYPE_PAE = 0x888e
constant ETHERTYPE_PBB (line 358) | ETHERTYPE_PBB = 0x88e7
constant ETHERTYPE_PCS (line 359) | ETHERTYPE_PCS = 0x4242
constant ETHERTYPE_PLANNING (line 360) | ETHERTYPE_PLANNING = 0x8044
constant ETHERTYPE_PPP (line 361) | ETHERTYPE_PPP = 0x880b
constant ETHERTYPE_PPPOE (line 362) | ETHERTYPE_PPPOE = 0x8864
constant ETHERTYPE_PPPOEDISC (line 363) | ETHERTYPE_PPPOEDISC = 0x8863
constant ETHERTYPE_PRIMENTS (line 364) | ETHERTYPE_PRIMENTS = 0x7031
constant ETHERTYPE_PUP (line 365) | ETHERTYPE_PUP = 0x200
constant ETHERTYPE_PUPAT (line 366) | ETHERTYPE_PUPAT = 0x200
constant ETHERTYPE_QINQ (line 367) | ETHERTYPE_QINQ = 0x88a8
constant ETHERTYPE_RACAL (line 368) | ETHERTYPE_RACAL = 0x7030
constant ETHERTYPE_RATIONAL (line 369) | ETHERTYPE_RATIONAL = 0x8150
constant ETHERTYPE_RAWFR (line 370) | ETHERTYPE_RAWFR = 0x6559
constant ETHERTYPE_RCL (line 371) | ETHERTYPE_RCL = 0x1995
constant ETHERTYPE_RDP (line 372) | ETHERTYPE_RDP = 0x8739
constant ETHERTYPE_RETIX (line 373) | ETHERTYPE_RETIX = 0x80f2
constant ETHERTYPE_REVARP (line 374) | ETHERTYPE_REVARP = 0x8035
constant ETHERTYPE_SCA (line 375) | ETHERTYPE_SCA = 0x6007
constant ETHERTYPE_SECTRA (line 376) | ETHERTYPE_SECTRA = 0x86db
constant ETHERTYPE_SECUREDATA (line 377) | ETHERTYPE_SECUREDATA = 0x876d
constant ETHERTYPE_SGITW (line 378) | ETHERTYPE_SGITW = 0x817e
constant ETHERTYPE_SG_BOUNCE (line 379) | ETHERTYPE_SG_BOUNCE = 0x8016
constant ETHERTYPE_SG_DIAG (line 380) | ETHERTYPE_SG_DIAG = 0x8013
constant ETHERTYPE_SG_NETGAMES (line 381) | ETHERTYPE_SG_NETGAMES = 0x8014
constant ETHERTYPE_SG_RESV (line 382) | ETHERTYPE_SG_RESV = 0x8015
constant ETHERTYPE_SIMNET (line 383) | ETHERTYPE_SIMNET = 0x5208
constant ETHERTYPE_SLOW (line 384) | ETHERTYPE_SLOW = 0x8809
constant ETHERTYPE_SNA (line 385) | ETHERTYPE_SNA = 0x80d5
constant ETHERTYPE_SNMP (line 386) | ETHERTYPE_SNMP = 0x814c
constant ETHERTYPE_SONIX (line 387) | ETHERTYPE_SONIX = 0xfaf5
constant ETHERTYPE_SPIDER (line 388) | ETHERTYPE_SPIDER = 0x809f
constant ETHERTYPE_SPRITE (line 389) | ETHERTYPE_SPRITE = 0x500
constant ETHERTYPE_STP (line 390) | ETHERTYPE_STP = 0x8181
constant ETHERTYPE_TALARIS (line 391) | ETHERTYPE_TALARIS = 0x812b
constant ETHERTYPE_TALARISMC (line 392) | ETHERTYPE_TALARISMC = 0x852b
constant ETHERTYPE_TCPCOMP (line 393) | ETHERTYPE_TCPCOMP = 0x876b
constant ETHERTYPE_TCPSM (line 394) | ETHERTYPE_TCPSM = 0x9002
constant ETHERTYPE_TEC (line 395) | ETHERTYPE_TEC = 0x814f
constant ETHERTYPE_TIGAN (line 396) | ETHERTYPE_TIGAN = 0x802f
constant ETHERTYPE_TRAIL (line 397) | ETHERTYPE_TRAIL = 0x1000
constant ETHERTYPE_TRANSETHER (line 398) | ETHERTYPE_TRANSETHER = 0x6558
constant ETHERTYPE_TYMSHARE (line 399) | ETHERTYPE_TYMSHARE = 0x802e
constant ETHERTYPE_UBBST (line 400) | ETHERTYPE_UBBST = 0x7005
constant ETHERTYPE_UBDEBUG (line 401) | ETHERTYPE_UBDEBUG = 0x900
constant ETHERTYPE_UBDIAGLOOP (line 402) | ETHERTYPE_UBDIAGLOOP = 0x7002
constant ETHERTYPE_UBDL (line 403) | ETHERTYPE_UBDL = 0x7000
constant ETHERTYPE_UBNIU (line 404) | ETHERTYPE_UBNIU = 0x7001
constant ETHERTYPE_UBNMC (line 405) | ETHERTYPE_UBNMC = 0x7003
constant ETHERTYPE_VALID (line 406) | ETHERTYPE_VALID = 0x1600
constant ETHERTYPE_VARIAN (line 407) | ETHERTYPE_VARIAN = 0x80dd
constant ETHERTYPE_VAXELN (line 408) | ETHERTYPE_VAXELN = 0x803b
constant ETHERTYPE_VEECO (line 409) | ETHERTYPE_VEECO = 0x8067
constant ETHERTYPE_VEXP (line 410) | ETHERTYPE_VEXP = 0x805b
constant ETHERTYPE_VGLAB (line 411) | ETHERTYPE_VGLAB = 0x8131
constant ETHERTYPE_VINES (line 412) | ETHERTYPE_VINES = 0xbad
constant ETHERTYPE_VINESECHO (line 413) | ETHERTYPE_VINESECHO = 0xbaf
constant ETHERTYPE_VINESLOOP (line 414) | ETHERTYPE_VINESLOOP = 0xbae
constant ETHERTYPE_VITAL (line 415) | ETHERTYPE_VITAL = 0xff00
constant ETHERTYPE_VLAN (line 416) | ETHERTYPE_VLAN = 0x8100
constant ETHERTYPE_VLTLMAN (line 417) | ETHERTYPE_VLTLMAN = 0x8080
constant ETHERTYPE_VPROD (line 418) | ETHERTYPE_VPROD = 0x805c
constant ETHERTYPE_VURESERVED (line 419) | ETHERTYPE_VURESERVED = 0x8147
constant ETHERTYPE_WATERLOO (line 420) | ETHERTYPE_WATERLOO = 0x8130
constant ETHERTYPE_WELLFLEET (line 421) | ETHERTYPE_WELLFLEET = 0x8103
constant ETHERTYPE_X25 (line 422) | ETHERTYPE_X25 = 0x805
constant ETHERTYPE_X75 (line 423) | ETHERTYPE_X75 = 0x801
constant ETHERTYPE_XNSSM (line 424) | ETHERTYPE_XNSSM = 0x9001
constant ETHERTYPE_XTP (line 425) | ETHERTYPE_XTP = 0x817d
constant ETHER_ADDR_LEN (line 426) | ETHER_ADDR_LEN = 0x6
constant ETHER_ALIGN (line 427) | ETHER_ALIGN = 0x2
constant ETHER_CRC_LEN (line 428) | ETHER_CRC_LEN = 0x4
constant ETHER_CRC_POLY_BE (line 429) | ETHER_CRC_POLY_BE = 0x4c11db6
constant ETHER_CRC_POLY_LE (line 430) | ETHER_CRC_POLY_LE = 0xedb88320
constant ETHER_HDR_LEN (line 431) | ETHER_HDR_LEN = 0xe
constant ETHER_MAX_DIX_LEN (line 432) | ETHER_MAX_DIX_LEN = 0x600
constant ETHER_MAX_HARDMTU_LEN (line 433) | ETHER_MAX_HARDMTU_LEN = 0xff9b
constant ETHER_MAX_LEN (line 434) | ETHER_MAX_LEN = 0x5ee
constant ETHER_MIN_LEN (line 435) | ETHER_MIN_LEN = 0x40
constant ETHER_TYPE_LEN (line 436) | ETHER_TYPE_LEN = 0x2
constant ETHER_VLAN_ENCAP_LEN (line 437) | ETHER_VLAN_ENCAP_LEN = 0x4
constant EVFILT_AIO (line 438) | EVFILT_AIO = -0x3
constant EVFILT_DEVICE (line 439) | EVFILT_DEVICE = -0x8
constant EVFILT_PROC (line 440) | EVFILT_PROC = -0x5
constant EVFILT_READ (line 441) | EVFILT_READ = -0x1
constant EVFILT_SIGNAL (line 442) | EVFILT_SIGNAL = -0x6
constant EVFILT_SYSCOUNT (line 443) | EVFILT_SYSCOUNT = 0x8
constant EVFILT_TIMER (line 444) | EVFILT_TIMER = -0x7
constant EVFILT_VNODE (line 445) | EVFILT_VNODE = -0x4
constant EVFILT_WRITE (line 446) | EVFILT_WRITE = -0x2
constant EVL_ENCAPLEN (line 447) | EVL_ENCAPLEN = 0x4
constant EVL_PRIO_BITS (line 448) | EVL_PRIO_BITS = 0xd
constant EVL_PRIO_MAX (line 449) | EVL_PRIO_MAX = 0x7
constant EVL_VLID_MASK (line 450) | EVL_VLID_MASK = 0xfff
constant EVL_VLID_MAX (line 451) | EVL_VLID_MAX = 0xffe
constant EVL_VLID_MIN (line 452) | EVL_VLID_MIN = 0x1
constant EVL_VLID_NULL (line 453) | EVL_VLID_NULL = 0x0
constant EV_ADD (line 454) | EV_ADD = 0x1
constant EV_CLEAR (line 455) | EV_CLEAR = 0x20
constant EV_DELETE (line 456) | EV_DELETE = 0x2
constant EV_DISABLE (line 457) | EV_DISABLE = 0x8
constant EV_DISPATCH (line 458) | EV_DISPATCH = 0x80
constant EV_ENABLE (line 459) | EV_ENABLE = 0x4
constant EV_EOF (line 460) | EV_EOF = 0x8000
constant EV_ERROR (line 461) | EV_ERROR = 0x4000
constant EV_FLAG1 (line 462) | EV_FLAG1 = 0x2000
constant EV_ONESHOT (line 463) | EV_ONESHOT = 0x10
constant EV_RECEIPT (line 464) | EV_RECEIPT = 0x40
constant EV_SYSFLAGS (line 465) | EV_SYSFLAGS = 0xf000
constant EXTA (line 466) | EXTA = 0x4b00
constant EXTB (line 467) | EXTB = 0x9600
constant EXTPROC (line 468) | EXTPROC = 0x800
constant FD_CLOEXEC (line 469) | FD_CLOEXEC = 0x1
constant FD_SETSIZE (line 470) | FD_SETSIZE = 0x400
constant FLUSHO (line 471) | FLUSHO = 0x800000
constant F_DUPFD (line 472) | F_DUPFD = 0x0
constant F_DUPFD_CLOEXEC (line 473) | F_DUPFD_CLOEXEC = 0xa
constant F_GETFD (line 474) | F_GETFD = 0x1
constant F_GETFL (line 475) | F_GETFL = 0x3
constant F_GETLK (line 476) | F_GETLK = 0x7
constant F_GETOWN (line 477) | F_GETOWN = 0x5
constant F_ISATTY (line 478) | F_ISATTY = 0xb
constant F_OK (line 479) | F_OK = 0x0
constant F_RDLCK (line 480) | F_RDLCK = 0x1
constant F_SETFD (line 481) | F_SETFD = 0x2
constant F_SETFL (line 482) | F_SETFL = 0x4
constant F_SETLK (line 483) | F_SETLK = 0x8
constant F_SETLKW (line 484) | F_SETLKW = 0x9
constant F_SETOWN (line 485) | F_SETOWN = 0x6
constant F_UNLCK (line 486) | F_UNLCK = 0x2
constant F_WRLCK (line 487) | F_WRLCK = 0x3
constant HUPCL (line 488) | HUPCL = 0x4000
constant HW_MACHINE (line 489) | HW_MACHINE = 0x1
constant ICANON (line 490) | ICANON = 0x100
constant ICMP6_FILTER (line 491) | ICMP6_FILTER = 0x12
constant ICRNL (line 492) | ICRNL = 0x100
constant IEXTEN (line 493) | IEXTEN = 0x400
constant IFAN_ARRIVAL (line 494) | IFAN_ARRIVAL = 0x0
constant IFAN_DEPARTURE (line 495) | IFAN_DEPARTURE = 0x1
constant IFF_ALLMULTI (line 496) | IFF_ALLMULTI = 0x200
constant IFF_BROADCAST (line 497) | IFF_BROADCAST = 0x2
constant IFF_CANTCHANGE (line 498) | IFF_CANTCHANGE = 0x8e52
constant IFF_DEBUG (line 499) | IFF_DEBUG = 0x4
constant IFF_LINK0 (line 500) | IFF_LINK0 = 0x1000
constant IFF_LINK1 (line 501) | IFF_LINK1 = 0x2000
constant IFF_LINK2 (line 502) | IFF_LINK2 = 0x4000
constant IFF_LOOPBACK (line 503) | IFF_LOOPBACK = 0x8
constant IFF_MULTICAST (line 504) | IFF_MULTICAST = 0x8000
constant IFF_NOARP (line 505) | IFF_NOARP = 0x80
constant IFF_OACTIVE (line 506) | IFF_OACTIVE = 0x400
constant IFF_POINTOPOINT (line 507) | IFF_POINTOPOINT = 0x10
constant IFF_PROMISC (line 508) | IFF_PROMISC = 0x100
constant IFF_RUNNING (line 509) | IFF_RUNNING = 0x40
constant IFF_SIMPLEX (line 510) | IFF_SIMPLEX = 0x800
constant IFF_STATICARP (line 511) | IFF_STATICARP = 0x20
constant IFF_UP (line 512) | IFF_UP = 0x1
constant IFNAMSIZ (line 513) | IFNAMSIZ = 0x10
constant IFT_1822 (line 514) | IFT_1822 = 0x2
constant IFT_A12MPPSWITCH (line 515) | IFT_A12MPPSWITCH = 0x82
constant IFT_AAL2 (line 516) | IFT_AAL2 = 0xbb
constant IFT_AAL5 (line 517) | IFT_AAL5 = 0x31
constant IFT_ADSL (line 518) | IFT_ADSL = 0x5e
constant IFT_AFLANE8023 (line 519) | IFT_AFLANE8023 = 0x3b
constant IFT_AFLANE8025 (line 520) | IFT_AFLANE8025 = 0x3c
constant IFT_ARAP (line 521) | IFT_ARAP = 0x58
constant IFT_ARCNET (line 522) | IFT_ARCNET = 0x23
constant IFT_ARCNETPLUS (line 523) | IFT_ARCNETPLUS = 0x24
constant IFT_ASYNC (line 524) | IFT_ASYNC = 0x54
constant IFT_ATM (line 525) | IFT_ATM = 0x25
constant IFT_ATMDXI (line 526) | IFT_ATMDXI = 0x69
constant IFT_ATMFUNI (line 527) | IFT_ATMFUNI = 0x6a
constant IFT_ATMIMA (line 528) | IFT_ATMIMA = 0x6b
constant IFT_ATMLOGICAL (line 529) | IFT_ATMLOGICAL = 0x50
constant IFT_ATMRADIO (line 530) | IFT_ATMRADIO = 0xbd
constant IFT_ATMSUBINTERFACE (line 531) | IFT_ATMSUBINTERFACE = 0x86
constant IFT_ATMVCIENDPT (line 532) | IFT_ATMVCIENDPT = 0xc2
constant IFT_ATMVIRTUAL (line 533) | IFT_ATMVIRTUAL = 0x95
constant IFT_BGPPOLICYACCOUNTING (line 534) | IFT_BGPPOLICYACCOUNTING = 0xa2
constant IFT_BLUETOOTH (line 535) | IFT_BLUETOOTH = 0xf8
constant IFT_BRIDGE (line 536) | IFT_BRIDGE = 0xd1
constant IFT_BSC (line 537) | IFT_BSC = 0x53
constant IFT_CARP (line 538) | IFT_CARP = 0xf7
constant IFT_CCTEMUL (line 539) | IFT_CCTEMUL = 0x3d
constant IFT_CEPT (line 540) | IFT_CEPT = 0x13
constant IFT_CES (line 541) | IFT_CES = 0x85
constant IFT_CHANNEL (line 542) | IFT_CHANNEL = 0x46
constant IFT_CNR (line 543) | IFT_CNR = 0x55
constant IFT_COFFEE (line 544) | IFT_COFFEE = 0x84
constant IFT_COMPOSITELINK (line 545) | IFT_COMPOSITELINK = 0x9b
constant IFT_DCN (line 546) | IFT_DCN = 0x8d
constant IFT_DIGITALPOWERLINE (line 547) | IFT_DIGITALPOWERLINE = 0x8a
constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 548) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
constant IFT_DLSW (line 549) | IFT_DLSW = 0x4a
constant IFT_DOCSCABLEDOWNSTREAM (line 550) | IFT_DOCSCABLEDOWNSTREAM = 0x80
constant IFT_DOCSCABLEMACLAYER (line 551) | IFT_DOCSCABLEMACLAYER = 0x7f
constant IFT_DOCSCABLEUPSTREAM (line 552) | IFT_DOCSCABLEUPSTREAM = 0x81
constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 553) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd
constant IFT_DS0 (line 554) | IFT_DS0 = 0x51
constant IFT_DS0BUNDLE (line 555) | IFT_DS0BUNDLE = 0x52
constant IFT_DS1FDL (line 556) | IFT_DS1FDL = 0xaa
constant IFT_DS3 (line 557) | IFT_DS3 = 0x1e
constant IFT_DTM (line 558) | IFT_DTM = 0x8c
constant IFT_DUMMY (line 559) | IFT_DUMMY = 0xf1
constant IFT_DVBASILN (line 560) | IFT_DVBASILN = 0xac
constant IFT_DVBASIOUT (line 561) | IFT_DVBASIOUT = 0xad
constant IFT_DVBRCCDOWNSTREAM (line 562) | IFT_DVBRCCDOWNSTREAM = 0x93
constant IFT_DVBRCCMACLAYER (line 563) | IFT_DVBRCCMACLAYER = 0x92
constant IFT_DVBRCCUPSTREAM (line 564) | IFT_DVBRCCUPSTREAM = 0x94
constant IFT_ECONET (line 565) | IFT_ECONET = 0xce
constant IFT_ENC (line 566) | IFT_ENC = 0xf4
constant IFT_EON (line 567) | IFT_EON = 0x19
constant IFT_EPLRS (line 568) | IFT_EPLRS = 0x57
constant IFT_ESCON (line 569) | IFT_ESCON = 0x49
constant IFT_ETHER (line 570) | IFT_ETHER = 0x6
constant IFT_FAITH (line 571) | IFT_FAITH = 0xf3
constant IFT_FAST (line 572) | IFT_FAST = 0x7d
constant IFT_FASTETHER (line 573) | IFT_FASTETHER = 0x3e
constant IFT_FASTETHERFX (line 574) | IFT_FASTETHERFX = 0x45
constant IFT_FDDI (line 575) | IFT_FDDI = 0xf
constant IFT_FIBRECHANNEL (line 576) | IFT_FIBRECHANNEL = 0x38
constant IFT_FRAMERELAYINTERCONNECT (line 577) | IFT_FRAMERELAYINTERCONNECT = 0x3a
constant IFT_FRAMERELAYMPI (line 578) | IFT_FRAMERELAYMPI = 0x5c
constant IFT_FRDLCIENDPT (line 579) | IFT_FRDLCIENDPT = 0xc1
constant IFT_FRELAY (line 580) | IFT_FRELAY = 0x20
constant IFT_FRELAYDCE (line 581) | IFT_FRELAYDCE = 0x2c
constant IFT_FRF16MFRBUNDLE (line 582) | IFT_FRF16MFRBUNDLE = 0xa3
constant IFT_FRFORWARD (line 583) | IFT_FRFORWARD = 0x9e
constant IFT_G703AT2MB (line 584) | IFT_G703AT2MB = 0x43
constant IFT_G703AT64K (line 585) | IFT_G703AT64K = 0x42
constant IFT_GIF (line 586) | IFT_GIF = 0xf0
constant IFT_GIGABITETHERNET (line 587) | IFT_GIGABITETHERNET = 0x75
constant IFT_GR303IDT (line 588) | IFT_GR303IDT = 0xb2
constant IFT_GR303RDT (line 589) | IFT_GR303RDT = 0xb1
constant IFT_H323GATEKEEPER (line 590) | IFT_H323GATEKEEPER = 0xa4
constant IFT_H323PROXY (line 591) | IFT_H323PROXY = 0xa5
constant IFT_HDH1822 (line 592) | IFT_HDH1822 = 0x3
constant IFT_HDLC (line 593) | IFT_HDLC = 0x76
constant IFT_HDSL2 (line 594) | IFT_HDSL2 = 0xa8
constant IFT_HIPERLAN2 (line 595) | IFT_HIPERLAN2 = 0xb7
constant IFT_HIPPI (line 596) | IFT_HIPPI = 0x2f
constant IFT_HIPPIINTERFACE (line 597) | IFT_HIPPIINTERFACE = 0x39
constant IFT_HOSTPAD (line 598) | IFT_HOSTPAD = 0x5a
constant IFT_HSSI (line 599) | IFT_HSSI = 0x2e
constant IFT_HY (line 600) | IFT_HY = 0xe
constant IFT_IBM370PARCHAN (line 601) | IFT_IBM370PARCHAN = 0x48
constant IFT_IDSL (line 602) | IFT_IDSL = 0x9a
constant IFT_IEEE1394 (line 603) | IFT_IEEE1394 = 0x90
constant IFT_IEEE80211 (line 604) | IFT_IEEE80211 = 0x47
constant IFT_IEEE80212 (line 605) | IFT_IEEE80212 = 0x37
constant IFT_IEEE8023ADLAG (line 606) | IFT_IEEE8023ADLAG = 0xa1
constant IFT_IFGSN (line 607) | IFT_IFGSN = 0x91
constant IFT_IMT (line 608) | IFT_IMT = 0xbe
constant IFT_INFINIBAND (line 609) | IFT_INFINIBAND = 0xc7
constant IFT_INTERLEAVE (line 610) | IFT_INTERLEAVE = 0x7c
constant IFT_IP (line 611) | IFT_IP = 0x7e
constant IFT_IPFORWARD (line 612) | IFT_IPFORWARD = 0x8e
constant IFT_IPOVERATM (line 613) | IFT_IPOVERATM = 0x72
constant IFT_IPOVERCDLC (line 614) | IFT_IPOVERCDLC = 0x6d
constant IFT_IPOVERCLAW (line 615) | IFT_IPOVERCLAW = 0x6e
constant IFT_IPSWITCH (line 616) | IFT_IPSWITCH = 0x4e
constant IFT_ISDN (line 617) | IFT_ISDN = 0x3f
constant IFT_ISDNBASIC (line 618) | IFT_ISDNBASIC = 0x14
constant IFT_ISDNPRIMARY (line 619) | IFT_ISDNPRIMARY = 0x15
constant IFT_ISDNS (line 620) | IFT_ISDNS = 0x4b
constant IFT_ISDNU (line 621) | IFT_ISDNU = 0x4c
constant IFT_ISO88022LLC (line 622) | IFT_ISO88022LLC = 0x29
constant IFT_ISO88023 (line 623) | IFT_ISO88023 = 0x7
constant IFT_ISO88024 (line 624) | IFT_ISO88024 = 0x8
constant IFT_ISO88025 (line 625) | IFT_ISO88025 = 0x9
constant IFT_ISO88025CRFPINT (line 626) | IFT_ISO88025CRFPINT = 0x62
constant IFT_ISO88025DTR (line 627) | IFT_ISO88025DTR = 0x56
constant IFT_ISO88025FIBER (line 628) | IFT_ISO88025FIBER = 0x73
constant IFT_ISO88026 (line 629) | IFT_ISO88026 = 0xa
constant IFT_ISUP (line 630) | IFT_ISUP = 0xb3
constant IFT_L2VLAN (line 631) | IFT_L2VLAN = 0x87
constant IFT_L3IPVLAN (line 632) | IFT_L3IPVLAN = 0x88
constant IFT_L3IPXVLAN (line 633) | IFT_L3IPXVLAN = 0x89
constant IFT_LAPB (line 634) | IFT_LAPB = 0x10
constant IFT_LAPD (line 635) | IFT_LAPD = 0x4d
constant IFT_LAPF (line 636) | IFT_LAPF = 0x77
constant IFT_LINEGROUP (line 637) | IFT_LINEGROUP = 0xd2
constant IFT_LOCALTALK (line 638) | IFT_LOCALTALK = 0x2a
constant IFT_LOOP (line 639) | IFT_LOOP = 0x18
constant IFT_MBIM (line 640) | IFT_MBIM = 0xfa
constant IFT_MEDIAMAILOVERIP (line 641) | IFT_MEDIAMAILOVERIP = 0x8b
constant IFT_MFSIGLINK (line 642) | IFT_MFSIGLINK = 0xa7
constant IFT_MIOX25 (line 643) | IFT_MIOX25 = 0x26
constant IFT_MODEM (line 644) | IFT_MODEM = 0x30
constant IFT_MPC (line 645) | IFT_MPC = 0x71
constant IFT_MPLS (line 646) | IFT_MPLS = 0xa6
constant IFT_MPLSTUNNEL (line 647) | IFT_MPLSTUNNEL = 0x96
constant IFT_MSDSL (line 648) | IFT_MSDSL = 0x8f
constant IFT_MVL (line 649) | IFT_MVL = 0xbf
constant IFT_MYRINET (line 650) | IFT_MYRINET = 0x63
constant IFT_NFAS (line 651) | IFT_NFAS = 0xaf
constant IFT_NSIP (line 652) | IFT_NSIP = 0x1b
constant IFT_OPTICALCHANNEL (line 653) | IFT_OPTICALCHANNEL = 0xc3
constant IFT_OPTICALTRANSPORT (line 654) | IFT_OPTICALTRANSPORT = 0xc4
constant IFT_OTHER (line 655) | IFT_OTHER = 0x1
constant IFT_P10 (line 656) | IFT_P10 = 0xc
constant IFT_P80 (line 657) | IFT_P80 = 0xd
constant IFT_PARA (line 658) | IFT_PARA = 0x22
constant IFT_PFLOG (line 659) | IFT_PFLOG = 0xf5
constant IFT_PFLOW (line 660) | IFT_PFLOW = 0xf9
constant IFT_PFSYNC (line 661) | IFT_PFSYNC = 0xf6
constant IFT_PLC (line 662) | IFT_PLC = 0xae
constant IFT_PON155 (line 663) | IFT_PON155 = 0xcf
constant IFT_PON622 (line 664) | IFT_PON622 = 0xd0
constant IFT_POS (line 665) | IFT_POS = 0xab
constant IFT_PPP (line 666) | IFT_PPP = 0x17
constant IFT_PPPMULTILINKBUNDLE (line 667) | IFT_PPPMULTILINKBUNDLE = 0x6c
constant IFT_PROPATM (line 668) | IFT_PROPATM = 0xc5
constant IFT_PROPBWAP2MP (line 669) | IFT_PROPBWAP2MP = 0xb8
constant IFT_PROPCNLS (line 670) | IFT_PROPCNLS = 0x59
constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 671) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5
constant IFT_PROPDOCSWIRELESSMACLAYER (line 672) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4
constant IFT_PROPDOCSWIRELESSUPSTREAM (line 673) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6
constant IFT_PROPMUX (line 674) | IFT_PROPMUX = 0x36
constant IFT_PROPVIRTUAL (line 675) | IFT_PROPVIRTUAL = 0x35
constant IFT_PROPWIRELESSP2P (line 676) | IFT_PROPWIRELESSP2P = 0x9d
constant IFT_PTPSERIAL (line 677) | IFT_PTPSERIAL = 0x16
constant IFT_PVC (line 678) | IFT_PVC = 0xf2
constant IFT_Q2931 (line 679) | IFT_Q2931 = 0xc9
constant IFT_QLLC (line 680) | IFT_QLLC = 0x44
constant IFT_RADIOMAC (line 681) | IFT_RADIOMAC = 0xbc
constant IFT_RADSL (line 682) | IFT_RADSL = 0x5f
constant IFT_REACHDSL (line 683) | IFT_REACHDSL = 0xc0
constant IFT_RFC1483 (line 684) | IFT_RFC1483 = 0x9f
constant IFT_RS232 (line 685) | IFT_RS232 = 0x21
constant IFT_RSRB (line 686) | IFT_RSRB = 0x4f
constant IFT_SDLC (line 687) | IFT_SDLC = 0x11
constant IFT_SDSL (line 688) | IFT_SDSL = 0x60
constant IFT_SHDSL (line 689) | IFT_SHDSL = 0xa9
constant IFT_SIP (line 690) | IFT_SIP = 0x1f
constant IFT_SIPSIG (line 691) | IFT_SIPSIG = 0xcc
constant IFT_SIPTG (line 692) | IFT_SIPTG = 0xcb
constant IFT_SLIP (line 693) | IFT_SLIP = 0x1c
constant IFT_SMDSDXI (line 694) | IFT_SMDSDXI = 0x2b
constant IFT_SMDSICIP (line 695) | IFT_SMDSICIP = 0x34
constant IFT_SONET (line 696) | IFT_SONET = 0x27
constant IFT_SONETOVERHEADCHANNEL (line 697) | IFT_SONETOVERHEADCHANNEL = 0xb9
constant IFT_SONETPATH (line 698) | IFT_SONETPATH = 0x32
constant IFT_SONETVT (line 699) | IFT_SONETVT = 0x33
constant IFT_SRP (line 700) | IFT_SRP = 0x97
constant IFT_SS7SIGLINK (line 701) | IFT_SS7SIGLINK = 0x9c
constant IFT_STACKTOSTACK (line 702) | IFT_STACKTOSTACK = 0x6f
constant IFT_STARLAN (line 703) | IFT_STARLAN = 0xb
constant IFT_T1 (line 704) | IFT_T1 = 0x12
constant IFT_TDLC (line 705) | IFT_TDLC = 0x74
constant IFT_TELINK (line 706) | IFT_TELINK = 0xc8
constant IFT_TERMPAD (line 707) | IFT_TERMPAD = 0x5b
constant IFT_TR008 (line 708) | IFT_TR008 = 0xb0
constant IFT_TRANSPHDLC (line 709) | IFT_TRANSPHDLC = 0x7b
constant IFT_TUNNEL (line 710) | IFT_TUNNEL = 0x83
constant IFT_ULTRA (line 711) | IFT_ULTRA = 0x1d
constant IFT_USB (line 712) | IFT_USB = 0xa0
constant IFT_V11 (line 713) | IFT_V11 = 0x40
constant IFT_V35 (line 714) | IFT_V35 = 0x2d
constant IFT_V36 (line 715) | IFT_V36 = 0x41
constant IFT_V37 (line 716) | IFT_V37 = 0x78
constant IFT_VDSL (line 717) | IFT_VDSL = 0x61
constant IFT_VIRTUALIPADDRESS (line 718) | IFT_VIRTUALIPADDRESS = 0x70
constant IFT_VIRTUALTG (line 719) | IFT_VIRTUALTG = 0xca
constant IFT_VOICEDID (line 720) | IFT_VOICEDID = 0xd5
constant IFT_VOICEEM (line 721) | IFT_VOICEEM = 0x64
constant IFT_VOICEEMFGD (line 722) | IFT_VOICEEMFGD = 0xd3
constant IFT_VOICEENCAP (line 723) | IFT_VOICEENCAP = 0x67
constant IFT_VOICEFGDEANA (line 724) | IFT_VOICEFGDEANA = 0xd4
constant IFT_VOICEFXO (line 725) | IFT_VOICEFXO = 0x65
constant IFT_VOICEFXS (line 726) | IFT_VOICEFXS = 0x66
constant IFT_VOICEOVERATM (line 727) | IFT_VOICEOVERATM = 0x98
constant IFT_VOICEOVERCABLE (line 728) | IFT_VOICEOVERCABLE = 0xc6
constant IFT_VOICEOVERFRAMERELAY (line 729) | IFT_VOICEOVERFRAMERELAY = 0x99
constant IFT_VOICEOVERIP (line 730) | IFT_VOICEOVERIP = 0x68
constant IFT_X213 (line 731) | IFT_X213 = 0x5d
constant IFT_X25 (line 732) | IFT_X25 = 0x5
constant IFT_X25DDN (line 733) | IFT_X25DDN = 0x4
constant IFT_X25HUNTGROUP (line 734) | IFT_X25HUNTGROUP = 0x7a
constant IFT_X25MLP (line 735) | IFT_X25MLP = 0x79
constant IFT_X25PLE (line 736) | IFT_X25PLE = 0x28
constant IFT_XETHER (line 737) | IFT_XETHER = 0x1a
constant IGNBRK (line 738) | IGNBRK = 0x1
constant IGNCR (line 739) | IGNCR = 0x80
constant IGNPAR (line 740) | IGNPAR = 0x4
constant IMAXBEL (line 741) | IMAXBEL = 0x2000
constant INLCR (line 742) | INLCR = 0x40
constant INPCK (line 743) | INPCK = 0x10
constant IN_CLASSA_HOST (line 744) | IN_CLASSA_HOST = 0xffffff
constant IN_CLASSA_MAX (line 745) | IN_CLASSA_MAX = 0x80
constant IN_CLASSA_NET (line 746) | IN_CLASSA_NET = 0xff000000
constant IN_CLASSA_NSHIFT (line 747) | IN_CLASSA_NSHIFT = 0x18
constant IN_CLASSB_HOST (line 748) | IN_CLASSB_HOST = 0xffff
constant IN_CLASSB_MAX (line 749) | IN_CLASSB_MAX = 0x10000
constant IN_CLASSB_NET (line 750) | IN_CLASSB_NET = 0xffff0000
constant IN_CLASSB_NSHIFT (line 751) | IN_CLASSB_NSHIFT = 0x10
constant IN_CLASSC_HOST (line 752) | IN_CLASSC_HOST = 0xff
constant IN_CLASSC_NET (line 753) | IN_CLASSC_NET = 0xffffff00
constant IN_CLASSC_NSHIFT (line 754) | IN_CLASSC_NSHIFT = 0x8
constant IN_CLASSD_HOST (line 755) | IN_CLASSD_HOST = 0xfffffff
constant IN_CLASSD_NET (line 756) | IN_CLASSD_NET = 0xf0000000
constant IN_CLASSD_NSHIFT (line 757) | IN_CLASSD_NSHIFT = 0x1c
constant IN_LOOPBACKNET (line 758) | IN_LOOPBACKNET = 0x7f
constant IN_RFC3021_HOST (line 759) | IN_RFC3021_HOST = 0x1
constant IN_RFC3021_NET (line 760) | IN_RFC3021_NET = 0xfffffffe
constant IN_RFC3021_NSHIFT (line 761) | IN_RFC3021_NSHIFT = 0x1f
constant IPPROTO_AH (line 762) | IPPROTO_AH = 0x33
constant IPPROTO_CARP (line 763) | IPPROTO_CARP = 0x70
constant IPPROTO_DIVERT (line 764) | IPPROTO_DIVERT = 0x102
constant IPPROTO_DONE (line 765) | IPPROTO_DONE = 0x101
constant IPPROTO_DSTOPTS (line 766) | IPPROTO_DSTOPTS = 0x3c
constant IPPROTO_EGP (line 767) | IPPROTO_EGP = 0x8
constant IPPROTO_ENCAP (line 768) | IPPROTO_ENCAP = 0x62
constant IPPROTO_EON (line 769) | IPPROTO_EON = 0x50
constant IPPROTO_ESP (line 770) | IPPROTO_ESP = 0x32
constant IPPROTO_ETHERIP (line 771) | IPPROTO_ETHERIP = 0x61
constant IPPROTO_FRAGMENT (line 772) | IPPROTO_FRAGMENT = 0x2c
constant IPPROTO_GGP (line 773) | IPPROTO_GGP = 0x3
constant IPPROTO_GRE (line 774) | IPPROTO_GRE = 0x2f
constant IPPROTO_HOPOPTS (line 775) | IPPROTO_HOPOPTS = 0x0
constant IPPROTO_ICMP (line 776) | IPPROTO_ICMP = 0x1
constant IPPROTO_ICMPV6 (line 777) | IPPROTO_ICMPV6 = 0x3a
constant IPPROTO_IDP (line 778) | IPPROTO_IDP = 0x16
constant IPPROTO_IGMP (line 779) | IPPROTO_IGMP = 0x2
constant IPPROTO_IP (line 780) | IPPROTO_IP = 0x0
constant IPPROTO_IPCOMP (line 781) | IPPROTO_IPCOMP = 0x6c
constant IPPROTO_IPIP (line 782) | IPPROTO_IPIP = 0x4
constant IPPROTO_IPV4 (line 783) | IPPROTO_IPV4 = 0x4
constant IPPROTO_IPV6 (line 784) | IPPROTO_IPV6 = 0x29
constant IPPROTO_MAX (line 785) | IPPROTO_MAX = 0x100
constant IPPROTO_MAXID (line 786) | IPPROTO_MAXID = 0x103
constant IPPROTO_MOBILE (line 787) | IPPROTO_MOBILE = 0x37
constant IPPROTO_MPLS (line 788) | IPPROTO_MPLS = 0x89
constant IPPROTO_NONE (line 789) | IPPROTO_NONE = 0x3b
constant IPPROTO_PFSYNC (line 790) | IPPROTO_PFSYNC = 0xf0
constant IPPROTO_PIM (line 791) | IPPROTO_PIM = 0x67
constant IPPROTO_PUP (line 792) | IPPROTO_PUP = 0xc
constant IPPROTO_RAW (line 793) | IPPROTO_RAW = 0xff
constant IPPROTO_ROUTING (line 794) | IPPROTO_ROUTING = 0x2b
constant IPPROTO_RSVP (line 795) | IPPROTO_RSVP = 0x2e
constant IPPROTO_TCP (line 796) | IPPROTO_TCP = 0x6
constant IPPROTO_TP (line 797) | IPPROTO_TP = 0x1d
constant IPPROTO_UDP (line 798) | IPPROTO_UDP = 0x11
constant IPV6_AUTH_LEVEL (line 799) | IPV6_AUTH_LEVEL = 0x35
constant IPV6_AUTOFLOWLABEL (line 800) | IPV6_AUTOFLOWLABEL = 0x3b
constant IPV6_CHECKSUM (line 801) | IPV6_CHECKSUM = 0x1a
constant IPV6_DEFAULT_MULTICAST_HOPS (line 802) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1
constant IPV6_DEFAULT_MULTICAST_LOOP (line 803) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1
constant IPV6_DEFHLIM (line 804) | IPV6_DEFHLIM = 0x40
constant IPV6_DONTFRAG (line 805) | IPV6_DONTFRAG = 0x3e
constant IPV6_DSTOPTS (line 806) | IPV6_DSTOPTS = 0x32
constant IPV6_ESP_NETWORK_LEVEL (line 807) | IPV6_ESP_NETWORK_LEVEL = 0x37
constant IPV6_ESP_TRANS_LEVEL (line 808) | IPV6_ESP_TRANS_LEVEL = 0x36
constant IPV6_FAITH (line 809) | IPV6_FAITH = 0x1d
constant IPV6_FLOWINFO_MASK (line 810) | IPV6_FLOWINFO_MASK = 0xffffff0f
constant IPV6_FLOWLABEL_MASK (line 811) | IPV6_FLOWLABEL_MASK = 0xffff0f00
constant IPV6_FRAGTTL (line 812) | IPV6_FRAGTTL = 0x78
constant IPV6_HLIMDEC (line 813) | IPV6_HLIMDEC = 0x1
constant IPV6_HOPLIMIT (line 814) | IPV6_HOPLIMIT = 0x2f
constant IPV6_HOPOPTS (line 815) | IPV6_HOPOPTS = 0x31
constant IPV6_IPCOMP_LEVEL (line 816) | IPV6_IPCOMP_LEVEL = 0x3c
constant IPV6_JOIN_GROUP (line 817) | IPV6_JOIN_GROUP = 0xc
constant IPV6_LEAVE_GROUP (line 818) | IPV6_LEAVE_GROUP = 0xd
constant IPV6_MAXHLIM (line 819) | IPV6_MAXHLIM = 0xff
constant IPV6_MAXPACKET (line 820) | IPV6_MAXPACKET = 0xffff
constant IPV6_MINHOPCOUNT (line 821) | IPV6_MINHOPCOUNT = 0x41
constant IPV6_MMTU (line 822) | IPV6_MMTU = 0x500
constant IPV6_MULTICAST_HOPS (line 823) | IPV6_MULTICAST_HOPS = 0xa
constant IPV6_MULTICAST_IF (line 824) | IPV6_MULTICAST_IF = 0x9
constant IPV6_MULTICAST_LOOP (line 825) | IPV6_MULTICAST_LOOP = 0xb
constant IPV6_NEXTHOP (line 826) | IPV6_NEXTHOP = 0x30
constant IPV6_OPTIONS (line 827) | IPV6_OPTIONS = 0x1
constant IPV6_PATHMTU (line 828) | IPV6_PATHMTU = 0x2c
constant IPV6_PIPEX (line 829) | IPV6_PIPEX = 0x3f
constant IPV6_PKTINFO (line 830) | IPV6_PKTINFO = 0x2e
constant IPV6_PORTRANGE (line 831) | IPV6_PORTRANGE = 0xe
constant IPV6_PORTRANGE_DEFAULT (line 832) | IPV6_PORTRANGE_DEFAULT = 0x0
constant IPV6_PORTRANGE_HIGH (line 833) | IPV6_PORTRANGE_HIGH = 0x1
constant IPV6_PORTRANGE_LOW (line 834) | IPV6_PORTRANGE_LOW = 0x2
constant IPV6_RECVDSTOPTS (line 835) | IPV6_RECVDSTOPTS = 0x28
constant IPV6_RECVDSTPORT (line 836) | IPV6_RECVDSTPORT = 0x40
constant IPV6_RECVHOPLIMIT (line 837) | IPV6_RECVHOPLIMIT = 0x25
constant IPV6_RECVHOPOPTS (line 838) | IPV6_RECVHOPOPTS = 0x27
constant IPV6_RECVPATHMTU (line 839) | IPV6_RECVPATHMTU = 0x2b
constant IPV6_RECVPKTINFO (line 840) | IPV6_RECVPKTINFO = 0x24
constant IPV6_RECVRTHDR (line 841) | IPV6_RECVRTHDR = 0x26
constant IPV6_RECVTCLASS (line 842) | IPV6_RECVTCLASS = 0x39
constant IPV6_RTABLE (line 843) | IPV6_RTABLE = 0x1021
constant IPV6_RTHDR (line 844) | IPV6_RTHDR = 0x33
constant IPV6_RTHDRDSTOPTS (line 845) | IPV6_RTHDRDSTOPTS = 0x23
constant IPV6_RTHDR_LOOSE (line 846) | IPV6_RTHDR_LOOSE = 0x0
constant IPV6_RTHDR_STRICT (line 847) | IPV6_RTHDR_STRICT = 0x1
constant IPV6_RTHDR_TYPE_0 (line 848) | IPV6_RTHDR_TYPE_0 = 0x0
constant IPV6_SOCKOPT_RESERVED1 (line 849) | IPV6_SOCKOPT_RESERVED1 = 0x3
constant IPV6_TCLASS (line 850) | IPV6_TCLASS = 0x3d
constant IPV6_UNICAST_HOPS (line 851) | IPV6_UNICAST_HOPS = 0x4
constant IPV6_USE_MIN_MTU (line 852) | IPV6_USE_MIN_MTU = 0x2a
constant IPV6_V6ONLY (line 853) | IPV6_V6ONLY = 0x1b
constant IPV6_VERSION (line 854) | IPV6_VERSION = 0x60
constant IPV6_VERSION_MASK (line 855) | IPV6_VERSION_MASK = 0xf0
constant IP_ADD_MEMBERSHIP (line 856) | IP_ADD_MEMBERSHIP = 0xc
constant IP_AUTH_LEVEL (line 857) | IP_AUTH_LEVEL = 0x14
constant IP_DEFAULT_MULTICAST_LOOP (line 858) | IP_DEFAULT_MULTICAST_LOOP = 0x1
constant IP_DEFAULT_MULTICAST_TTL (line 859) | IP_DEFAULT_MULTICAST_TTL = 0x1
constant IP_DF (line 860) | IP_DF = 0x4000
constant IP_DROP_MEMBERSHIP (line 861) | IP_DROP_MEMBERSHIP = 0xd
constant IP_ESP_NETWORK_LEVEL (line 862) | IP_ESP_NETWORK_LEVEL = 0x16
constant IP_ESP_TRANS_LEVEL (line 863) | IP_ESP_TRANS_LEVEL = 0x15
constant IP_HDRINCL (line 864) | IP_HDRINCL = 0x2
constant IP_IPCOMP_LEVEL (line 865) | IP_IPCOMP_LEVEL = 0x1d
constant IP_IPDEFTTL (line 866) | IP_IPDEFTTL = 0x25
constant IP_IPSECFLOWINFO (line 867) | IP_IPSECFLOWINFO = 0x24
constant IP_IPSEC_LOCAL_AUTH (line 868) | IP_IPSEC_LOCAL_AUTH = 0x1b
constant IP_IPSEC_LOCAL_CRED (line 869) | IP_IPSEC_LOCAL_CRED = 0x19
constant IP_IPSEC_LOCAL_ID (line 870) | IP_IPSEC_LOCAL_ID = 0x17
constant IP_IPSEC_REMOTE_AUTH (line 871) | IP_IPSEC_REMOTE_AUTH = 0x1c
constant IP_IPSEC_REMOTE_CRED (line 872) | IP_IPSEC_REMOTE_CRED = 0x1a
constant IP_IPSEC_REMOTE_ID (line 873) | IP_IPSEC_REMOTE_ID = 0x18
constant IP_MAXPACKET (line 874) | IP_MAXPACKET = 0xffff
constant IP_MAX_MEMBERSHIPS (line 875) | IP_MAX_MEMBERSHIPS = 0xfff
constant IP_MF (line 876) | IP_MF = 0x2000
constant IP_MINTTL (line 877) | IP_MINTTL = 0x20
constant IP_MIN_MEMBERSHIPS (line 878) | IP_MIN_MEMBERSHIPS = 0xf
constant IP_MSS (line 879) | IP_MSS = 0x240
constant IP_MULTICAST_IF (line 880) | IP_MULTICAST_IF = 0x9
constant IP_MULTICAST_LOOP (line 881) | IP_MULTICAST_LOOP = 0xb
constant IP_MULTICAST_TTL (line 882) | IP_MULTICAST_TTL = 0xa
constant IP_OFFMASK (line 883) | IP_OFFMASK = 0x1fff
constant IP_OPTIONS (line 884) | IP_OPTIONS = 0x1
constant IP_PIPEX (line 885) | IP_PIPEX = 0x22
constant IP_PORTRANGE (line 886) | IP_PORTRANGE = 0x13
constant IP_PORTRANGE_DEFAULT (line 887) | IP_PORTRANGE_DEFAULT = 0x0
constant IP_PORTRANGE_HIGH (line 888) | IP_PORTRANGE_HIGH = 0x1
constant IP_PORTRANGE_LOW (line 889) | IP_PORTRANGE_LOW = 0x2
constant IP_RECVDSTADDR (line 890) | IP_RECVDSTADDR = 0x7
constant IP_RECVDSTPORT (line 891) | IP_RECVDSTPORT = 0x21
constant IP_RECVIF (line 892) | IP_RECVIF = 0x1e
constant IP_RECVOPTS (line 893) | IP_RECVOPTS = 0x5
constant IP_RECVRETOPTS (line 894) | IP_RECVRETOPTS = 0x6
constant IP_RECVRTABLE (line 895) | IP_RECVRTABLE = 0x23
constant IP_RECVTTL (line 896) | IP_RECVTTL = 0x1f
constant IP_RETOPTS (line 897) | IP_RETOPTS = 0x8
constant IP_RF (line 898) | IP_RF = 0x8000
constant IP_RTABLE (line 899) | IP_RTABLE = 0x1021
constant IP_SENDSRCADDR (line 900) | IP_SENDSRCADDR = 0x7
constant IP_TOS (line 901) | IP_TOS = 0x3
constant IP_TTL (line 902) | IP_TTL = 0x4
constant ISIG (line 903) | ISIG = 0x80
constant ISTRIP (line 904) | ISTRIP = 0x20
constant IUCLC (line 905) | IUCLC = 0x1000
constant IXANY (line 906) | IXANY = 0x800
constant IXOFF (line 907) | IXOFF = 0x400
constant IXON (line 908) | IXON = 0x200
constant KERN_HOSTNAME (line 909) | KERN_HOSTNAME = 0xa
constant KERN_OSRELEASE (line 910) | KERN_OSRELEASE = 0x2
constant KERN_OSTYPE (line 911) | KERN_OSTYPE = 0x1
constant KERN_VERSION (line 912) | KERN_VERSION = 0x4
constant LCNT_OVERLOAD_FLUSH (line 913) | LCNT_OVERLOAD_FLUSH = 0x6
constant LOCK_EX (line 914) | LOCK_EX = 0x2
constant LOCK_NB (line 915) | LOCK_NB = 0x4
constant LOCK_SH (line 916) | LOCK_SH = 0x1
constant LOCK_UN (line 917) | LOCK_UN = 0x8
constant MADV_DONTNEED (line 918) | MADV_DONTNEED = 0x4
constant MADV_FREE (line 919) | MADV_FREE = 0x6
constant MADV_NORMAL (line 920) | MADV_NORMAL = 0x0
constant MADV_RANDOM (line 921) | MADV_RANDOM = 0x1
constant MADV_SEQUENTIAL (line 922) | MADV_SEQUENTIAL = 0x2
constant MADV_SPACEAVAIL (line 923) | MADV_SPACEAVAIL = 0x5
constant MADV_WILLNEED (line 924) | MADV_WILLNEED = 0x3
constant MAP_ANON (line 925) | MAP_ANON = 0x1000
constant MAP_ANONYMOUS (line 926) | MAP_ANONYMOUS = 0x1000
constant MAP_CONCEAL (line 927) | MAP_CONCEAL = 0x8000
constant MAP_COPY (line 928) | MAP_COPY = 0x2
constant MAP_FILE (line 929) | MAP_FILE = 0x0
constant MAP_FIXED (line 930) | MAP_FIXED = 0x10
constant MAP_FLAGMASK (line 931) | MAP_FLAGMASK = 0xfff7
constant MAP_HASSEMAPHORE (line 932) | MAP_HASSEMAPHORE = 0x0
constant MAP_INHERIT (line 933) | MAP_INHERIT = 0x0
constant MAP_INHERIT_COPY (line 934) | MAP_INHERIT_COPY = 0x1
constant MAP_INHERIT_NONE (line 935) | MAP_INHERIT_NONE = 0x2
constant MAP_INHERIT_SHARE (line 936) | MAP_INHERIT_SHARE = 0x0
constant MAP_INHERIT_ZERO (line 937) | MAP_INHERIT_ZERO = 0x3
constant MAP_NOEXTEND (line 938) | MAP_NOEXTEND = 0x0
constant MAP_NORESERVE (line 939) | MAP_NORESERVE = 0x0
constant MAP_PRIVATE (line 940) | MAP_PRIVATE = 0x2
constant MAP_RENAME (line 941) | MAP_RENAME = 0x0
constant MAP_SHARED (line 942) | MAP_SHARED = 0x1
constant MAP_STACK (line 943) | MAP_STACK = 0x4000
constant MAP_TRYFIXED (line 944) | MAP_TRYFIXED = 0x0
constant MCL_CURRENT (line 945) | MCL_CURRENT = 0x1
constant MCL_FUTURE (line 946) | MCL_FUTURE = 0x2
constant MNT_ASYNC (line 947) | MNT_ASYNC = 0x40
constant MNT_DEFEXPORTED (line 948) | MNT_DEFEXPORTED = 0x200
constant MNT_DELEXPORT (line 949) | MNT_DELEXPORT = 0x20000
constant MNT_DOOMED (line 950) | MNT_DOOMED = 0x8000000
constant MNT_EXPORTANON (line 951) | MNT_EXPORTANON = 0x400
constant MNT_EXPORTED (line 952) | MNT_EXPORTED = 0x100
constant MNT_EXRDONLY (line 953) | MNT_EXRDONLY = 0x80
constant MNT_FORCE (line 954) | MNT_FORCE = 0x80000
constant MNT_LAZY (line 955) | MNT_LAZY = 0x3
constant MNT_LOCAL (line 956) | MNT_LOCAL = 0x1000
constant MNT_NOATIME (line 957) | MNT_NOATIME = 0x8000
constant MNT_NODEV (line 958) | MNT_NODEV = 0x10
constant MNT_NOEXEC (line 959) | MNT_NOEXEC = 0x4
constant MNT_NOPERM (line 960) | MNT_NOPERM = 0x20
constant MNT_NOSUID (line 961) | MNT_NOSUID = 0x8
constant MNT_NOWAIT (line 962) | MNT_NOWAIT = 0x2
constant MNT_QUOTA (line 963) | MNT_QUOTA = 0x2000
constant MNT_RDONLY (line 964) | MNT_RDONLY = 0x1
constant MNT_RELOAD (line 965) | MNT_RELOAD = 0x40000
constant MNT_ROOTFS (line 966) | MNT_ROOTFS = 0x4000
constant MNT_SOFTDEP (line 967) | MNT_SOFTDEP = 0x4000000
constant MNT_STALLED (line 968) | MNT_STALLED = 0x100000
constant MNT_SWAPPABLE (line 969) | MNT_SWAPPABLE = 0x200000
constant MNT_SYNCHRONOUS (line 970) | MNT_SYNCHRONOUS = 0x2
constant MNT_UPDATE (line 971) | MNT_UPDATE = 0x10000
constant MNT_VISFLAGMASK (line 972) | MNT_VISFLAGMASK = 0x400ffff
constant MNT_WAIT (line 973) | MNT_WAIT = 0x1
constant MNT_WANTRDWR (line 974) | MNT_WANTRDWR = 0x2000000
constant MNT_WXALLOWED (line 975) | MNT_WXALLOWED = 0x800
constant MSG_BCAST (line 976) | MSG_BCAST = 0x100
constant MSG_CMSG_CLOEXEC (line 977) | MSG_CMSG_CLOEXEC = 0x800
constant MSG_CTRUNC (line 978) | MSG_CTRUNC = 0x20
constant MSG_DONTROUTE (line 979) | MSG_DONTROUTE = 0x4
constant MSG_DONTWAIT (line 980) | MSG_DONTWAIT = 0x80
constant MSG_EOR (line 981) | MSG_EOR = 0x8
constant MSG_MCAST (line 982) | MSG_MCAST = 0x200
constant MSG_NOSIGNAL (line 983) | MSG_NOSIGNAL = 0x400
constant MSG_OOB (line 984) | MSG_OOB = 0x1
constant MSG_PEEK (line 985) | MSG_PEEK = 0x2
constant MSG_TRUNC (line 986) | MSG_TRUNC = 0x10
constant MSG_WAITALL (line 987) | MSG_WAITALL = 0x40
constant MS_ASYNC (line 988) | MS_ASYNC = 0x1
constant MS_INVALIDATE (line 989) | MS_INVALIDATE = 0x4
constant MS_SYNC (line 990) | MS_SYNC = 0x2
constant NAME_MAX (line 991) | NAME_MAX = 0xff
constant NET_RT_DUMP (line 992) | NET_RT_DUMP = 0x1
constant NET_RT_FLAGS (line 993) | NET_RT_FLAGS = 0x2
constant NET_RT_IFLIST (line 994) | NET_RT_IFLIST = 0x3
constant NET_RT_IFNAMES (line 995) | NET_RT_IFNAMES = 0x6
constant NET_RT_MAXID (line 996) | NET_RT_MAXID = 0x7
constant NET_RT_STATS (line 997) | NET_RT_STATS = 0x4
constant NET_RT_TABLE (line 998) | NET_RT_TABLE = 0x5
constant NOFLSH (line 999) | NOFLSH = 0x80000000
constant NOKERNINFO (line 1000) | NOKERNINFO = 0x2000000
constant NOTE_ATTRIB (line 1001) | NOTE_ATTRIB = 0x8
constant NOTE_CHANGE (line 1002) | NOTE_CHANGE = 0x1
constant NOTE_CHILD (line 1003) | NOTE_CHILD = 0x4
constant NOTE_DELETE (line 1004) | NOTE_DELETE = 0x1
constant NOTE_EOF (line 1005) | NOTE_EOF = 0x2
constant NOTE_EXEC (line 1006) | NOTE_EXEC = 0x20000000
constant NOTE_EXIT (line 1007) | NOTE_EXIT = 0x80000000
constant NOTE_EXTEND (line 1008) | NOTE_EXTEND = 0x4
constant NOTE_FORK (line 1009) | NOTE_FORK = 0x40000000
constant NOTE_LINK (line 1010) | NOTE_LINK = 0x10
constant NOTE_LOWAT (line 1011) | NOTE_LOWAT = 0x1
constant NOTE_PCTRLMASK (line 1012) | NOTE_PCTRLMASK = 0xf0000000
constant NOTE_PDATAMASK (line 1013) | NOTE_PDATAMASK = 0xfffff
constant NOTE_RENAME (line 1014) | NOTE_RENAME = 0x20
constant NOTE_REVOKE (line 1015) | NOTE_REVOKE = 0x40
constant NOTE_TRACK (line 1016) | NOTE_TRACK = 0x1
constant NOTE_TRACKERR (line 1017) | NOTE_TRACKERR = 0x2
constant NOTE_TRUNCATE (line 1018) | NOTE_TRUNCATE = 0x80
constant NOTE_WRITE (line 1019) | NOTE_WRITE = 0x2
constant OCRNL (line 1020) | OCRNL = 0x10
constant OLCUC (line 1021) | OLCUC = 0x20
constant ONLCR (line 1022) | ONLCR = 0x2
constant ONLRET (line 1023) | ONLRET = 0x80
constant ONOCR (line 1024) | ONOCR = 0x40
constant ONOEOT (line 1025) | ONOEOT = 0x8
constant OPOST (line 1026) | OPOST = 0x1
constant OXTABS (line 1027) | OXTABS = 0x4
constant O_ACCMODE (line 1028) | O_ACCMODE = 0x3
constant O_APPEND (line 1029) | O_APPEND = 0x8
constant O_ASYNC (line 1030) | O_ASYNC = 0x40
constant O_CLOEXEC (line 1031) | O_CLOEXEC = 0x10000
constant O_CREAT (line 1032) | O_CREAT = 0x200
constant O_DIRECTORY (line 1033) | O_DIRECTORY = 0x20000
constant O_DSYNC (line 1034) | O_DSYNC = 0x80
constant O_EXCL (line 1035) | O_EXCL = 0x800
constant O_EXLOCK (line 1036) | O_EXLOCK = 0x20
constant O_FSYNC (line 1037) | O_FSYNC = 0x80
constant O_NDELAY (line 1038) | O_NDELAY = 0x4
constant O_NOCTTY (line 1039) | O_NOCTTY = 0x8000
constant O_NOFOLLOW (line 1040) | O_NOFOLLOW = 0x100
constant O_NONBLOCK (line 1041) | O_NONBLOCK = 0x4
constant O_RDONLY (line 1042) | O_RDONLY = 0x0
constant O_RDWR (line 1043) | O_RDWR = 0x2
constant O_RSYNC (line 1044) | O_RSYNC = 0x80
constant O_SHLOCK (line 1045) | O_SHLOCK = 0x10
constant O_SYNC (line 1046) | O_SYNC = 0x80
constant O_TRUNC (line 1047) | O_TRUNC = 0x400
constant O_WRONLY (line 1048) | O_WRONLY = 0x1
constant PARENB (line 1049) | PARENB = 0x1000
constant PARMRK (line 1050) | PARMRK = 0x8
constant PARODD (line 1051) | PARODD = 0x2000
constant PENDIN (line 1052) | PENDIN = 0x20000000
constant PF_FLUSH (line 1053) | PF_FLUSH = 0x1
constant PRIO_PGRP (line 1054) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 1055) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 1056) | PRIO_USER = 0x2
constant PROT_EXEC (line 1057) | PROT_EXEC = 0x4
constant PROT_NONE (line 1058) | PROT_NONE = 0x0
constant PROT_READ (line 1059) | PROT_READ = 0x1
constant PROT_WRITE (line 1060) | PROT_WRITE = 0x2
constant RLIMIT_CORE (line 1061) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 1062) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 1063) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 1064) | RLIMIT_FSIZE = 0x1
constant RLIMIT_MEMLOCK (line 1065) | RLIMIT_MEMLOCK = 0x6
constant RLIMIT_NOFILE (line 1066) | RLIMIT_NOFILE = 0x8
constant RLIMIT_NPROC (line 1067) | RLIMIT_NPROC = 0x7
constant RLIMIT_RSS (line 1068) | RLIMIT_RSS = 0x5
constant RLIMIT_STACK (line 1069) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 1070) | RLIM_INFINITY = 0x7fffffffffffffff
constant RTAX_AUTHOR (line 1071) | RTAX_AUTHOR = 0x6
constant RTAX_BFD (line 1072) | RTAX_BFD = 0xb
constant RTAX_BRD (line 1073) | RTAX_BRD = 0x7
constant RTAX_DNS (line 1074) | RTAX_DNS = 0xc
constant RTAX_DST (line 1075) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 1076) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 1077) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 1078) | RTAX_IFA = 0x5
constant RTAX_IFP (line 1079) | RTAX_IFP = 0x4
constant RTAX_LABEL (line 1080) | RTAX_LABEL = 0xa
constant RTAX_MAX (line 1081) | RTAX_MAX = 0xf
constant RTAX_NETMASK (line 1082) | RTAX_NETMASK = 0x2
constant RTAX_SEARCH (line 1083) | RTAX_SEARCH = 0xe
constant RTAX_SRC (line 1084) | RTAX_SRC = 0x8
constant RTAX_SRCMASK (line 1085) | RTAX_SRCMASK = 0x9
constant RTAX_STATIC (line 1086) | RTAX_STATIC = 0xd
constant RTA_AUTHOR (line 1087) | RTA_AUTHOR = 0x40
constant RTA_BFD (line 1088) | RTA_BFD = 0x800
constant RTA_BRD (line 1089) | RTA_BRD = 0x80
constant RTA_DNS (line 1090) | RTA_DNS = 0x1000
constant RTA_DST (line 1091) | RTA_DST = 0x1
constant RTA_GATEWAY (line 1092) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 1093) | RTA_GENMASK = 0x8
constant RTA_IFA (line 1094) | RTA_IFA = 0x20
constant RTA_IFP (line 1095) | RTA_IFP = 0x10
constant RTA_LABEL (line 1096) | RTA_LABEL = 0x400
constant RTA_NETMASK (line 1097) | RTA_NETMASK = 0x4
constant RTA_SEARCH (line 1098) | RTA_SEARCH = 0x4000
constant RTA_SRC (line 1099) | RTA_SRC = 0x100
constant RTA_SRCMASK (line 1100) | RTA_SRCMASK = 0x200
constant RTA_STATIC (line 1101) | RTA_STATIC = 0x2000
constant RTF_ANNOUNCE (line 1102) | RTF_ANNOUNCE = 0x4000
constant RTF_BFD (line 1103) | RTF_BFD = 0x1000000
constant RTF_BLACKHOLE (line 1104) | RTF_BLACKHOLE = 0x1000
constant RTF_BROADCAST (line 1105) | RTF_BROADCAST = 0x400000
constant RTF_CACHED (line 1106) | RTF_CACHED = 0x20000
constant RTF_CLONED (line 1107) | RTF_CLONED = 0x10000
constant RTF_CLONING (line 1108) | RTF_CLONING = 0x100
constant RTF_CONNECTED (line 1109) | RTF_CONNECTED = 0x800000
constant RTF_DONE (line 1110) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 1111) | RTF_DYNAMIC = 0x10
constant RTF_FMASK (line 1112) | RTF_FMASK = 0x110fc08
constant RTF_GATEWAY (line 1113) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 1114) | RTF_HOST = 0x4
constant RTF_LLINFO (line 1115) | RTF_LLINFO = 0x400
constant RTF_LOCAL (line 1116) | RTF_LOCAL = 0x200000
constant RTF_MODIFIED (line 1117) | RTF_MODIFIED = 0x20
constant RTF_MPATH (line 1118) | RTF_MPATH = 0x40000
constant RTF_MPLS (line 1119) | RTF_MPLS = 0x100000
constant RTF_MULTICAST (line 1120) | RTF_MULTICAST = 0x200
constant RTF_PERMANENT_ARP (line 1121) | RTF_PERMANENT_ARP = 0x2000
constant RTF_PROTO1 (line 1122) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 1123) | RTF_PROTO2 = 0x4000
constant RTF_PROTO3 (line 1124) | RTF_PROTO3 = 0x2000
constant RTF_REJECT (line 1125) | RTF_REJECT = 0x8
constant RTF_STATIC (line 1126) | RTF_STATIC = 0x800
constant RTF_UP (line 1127) | RTF_UP = 0x1
constant RTF_USETRAILERS (line 1128) | RTF_USETRAILERS = 0x8000
constant RTM_80211INFO (line 1129) | RTM_80211INFO = 0x15
constant RTM_ADD (line 1130) | RTM_ADD = 0x1
constant RTM_BFD (line 1131) | RTM_BFD = 0x12
constant RTM_CHANGE (line 1132) | RTM_CHANGE = 0x3
constant RTM_CHGADDRATTR (line 1133) | RTM_CHGADDRATTR = 0x14
constant RTM_DELADDR (line 1134) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 1135) | RTM_DELETE = 0x2
constant RTM_DESYNC (line 1136) | RTM_DESYNC = 0x10
constant RTM_GET (line 1137) | RTM_GET = 0x4
constant RTM_IFANNOUNCE (line 1138) | RTM_IFANNOUNCE = 0xf
constant RTM_IFINFO (line 1139) | RTM_IFINFO = 0xe
constant RTM_INVALIDATE (line 1140) | RTM_INVALIDATE = 0x11
constant RTM_LOSING (line 1141) | RTM_LOSING = 0x5
constant RTM_MAXSIZE (line 1142) | RTM_MAXSIZE = 0x800
constant RTM_MISS (line 1143) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 1144) | RTM_NEWADDR = 0xc
constant RTM_PROPOSAL (line 1145) | RTM_PROPOSAL = 0x13
constant RTM_REDIRECT (line 1146) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 1147) | RTM_RESOLVE = 0xb
constant RTM_RTTUNIT (line 1148) | RTM_RTTUNIT = 0xf4240
constant RTM_VERSION (line 1149) | RTM_VERSION = 0x5
constant RTV_EXPIRE (line 1150) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 1151) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 1152) | RTV_MTU = 0x1
constant RTV_RPIPE (line 1153) | RTV_RPIPE = 0x8
constant RTV_RTT (line 1154) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 1155) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 1156) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 1157) | RTV_SSTHRESH = 0x20
constant RT_TABLEID_BITS (line 1158) | RT_TABLEID_BITS = 0x8
constant RT_TABLEID_MASK (line 1159) | RT_TABLEID_MASK = 0xff
constant RT_TABLEID_MAX (line 1160) | RT_TABLEID_MAX = 0xff
constant RUSAGE_CHILDREN (line 1161) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 1162) | RUSAGE_SELF = 0x0
constant RUSAGE_THREAD (line 1163) | RUSAGE_THREAD = 0x1
constant SCM_RIGHTS (line 1164) | SCM_RIGHTS = 0x1
constant SCM_TIMESTAMP (line 1165) | SCM_TIMESTAMP = 0x4
constant SHUT_RD (line 1166) | SHUT_RD = 0x0
constant SHUT_RDWR (line 1167) | SHUT_RDWR = 0x2
constant SHUT_WR (line 1168) | SHUT_WR = 0x1
constant SIOCADDMULTI (line 1169) | SIOCADDMULTI = 0x80206931
constant SIOCAIFADDR (line 1170) | SIOCAIFADDR = 0x8040691a
constant SIOCAIFGROUP (line 1171) | SIOCAIFGROUP = 0x80286987
constant SIOCATMARK (line 1172) | SIOCATMARK = 0x40047307
constant SIOCBRDGADD (line 1173) | SIOCBRDGADD = 0x8060693c
constant SIOCBRDGADDL (line 1174) | SIOCBRDGADDL = 0x80606949
constant SIOCBRDGADDS (line 1175) | SIOCBRDGADDS = 0x80606941
constant SIOCBRDGARL (line 1176) | SIOCBRDGARL = 0x808c694d
constant SIOCBRDGDADDR (line 1177) | SIOCBRDGDADDR = 0x81286947
constant SIOCBRDGDEL (line 1178) | SIOCBRDGDEL = 0x8060693d
constant SIOCBRDGDELS (line 1179) | SIOCBRDGDELS = 0x80606942
constant SIOCBRDGFLUSH (line 1180) | SIOCBRDGFLUSH = 0x80606948
constant SIOCBRDGFRL (line 1181) | SIOCBRDGFRL = 0x808c694e
constant SIOCBRDGGCACHE (line 1182) | SIOCBRDGGCACHE = 0xc0186941
constant SIOCBRDGGFD (line 1183) | SIOCBRDGGFD = 0xc0186952
constant SIOCBRDGGHT (line 1184) | SIOCBRDGGHT = 0xc0186951
constant SIOCBRDGGIFFLGS (line 1185) | SIOCBRDGGIFFLGS = 0xc060693e
constant SIOCBRDGGMA (line 1186) | SIOCBRDGGMA = 0xc0186953
constant SIOCBRDGGPARAM (line 1187) | SIOCBRDGGPARAM = 0xc0406958
constant SIOCBRDGGPRI (line 1188) | SIOCBRDGGPRI = 0xc0186950
constant SIOCBRDGGRL (line 1189) | SIOCBRDGGRL = 0xc030694f
constant SIOCBRDGGTO (line 1190) | SIOCBRDGGTO = 0xc0186946
constant SIOCBRDGIFS (line 1191) | SIOCBRDGIFS = 0xc0606942
constant SIOCBRDGRTS (line 1192) | SIOCBRDGRTS = 0xc0206943
constant SIOCBRDGSADDR (line 1193) | SIOCBRDGSADDR = 0xc1286944
constant SIOCBRDGSCACHE (line 1194) | SIOCBRDGSCACHE = 0x80186940
constant SIOCBRDGSFD (line 1195) | SIOCBRDGSFD = 0x80186952
constant SIOCBRDGSHT (line 1196) | SIOCBRDGSHT = 0x80186951
constant SIOCBRDGSIFCOST (line 1197) | SIOCBRDGSIFCOST = 0x80606955
constant SIOCBRDGSIFFLGS (line 1198) | SIOCBRDGSIFFLGS = 0x8060693f
constant SIOCBRDGSIFPRIO (line 1199) | SIOCBRDGSIFPRIO = 0x80606954
constant SIOCBRDGSIFPROT (line 1200) | SIOCBRDGSIFPROT = 0x8060694a
constant SIOCBRDGSMA (line 1201) | SIOCBRDGSMA = 0x80186953
constant SIOCBRDGSPRI (line 1202) | SIOCBRDGSPRI = 0x80186950
constant SIOCBRDGSPROTO (line 1203) | SIOCBRDGSPROTO = 0x8018695a
constant SIOCBRDGSTO (line 1204) | SIOCBRDGSTO = 0x80186945
constant SIOCBRDGSTXHC (line 1205) | SIOCBRDGSTXHC = 0x80186959
constant SIOCDELLABEL (line 1206) | SIOCDELLABEL = 0x80206997
constant SIOCDELMULTI (line 1207) | SIOCDELMULTI = 0x80206932
constant SIOCDIFADDR (line 1208) | SIOCDIFADDR = 0x80206919
constant SIOCDIFGROUP (line 1209) | SIOCDIFGROUP = 0x80286989
constant SIOCDIFPARENT (line 1210) | SIOCDIFPARENT = 0x802069b4
constant SIOCDIFPHYADDR (line 1211) | SIOCDIFPHYADDR = 0x80206949
constant SIOCDPWE3NEIGHBOR (line 1212) | SIOCDPWE3NEIGHBOR = 0x802069de
constant SIOCDVNETID (line 1213) | SIOCDVNETID = 0x802069af
constant SIOCGETKALIVE (line 1214) | SIOCGETKALIVE = 0xc01869a4
constant SIOCGETLABEL (line 1215) | SIOCGETLABEL = 0x8020699a
constant SIOCGETMPWCFG (line 1216) | SIOCGETMPWCFG = 0xc02069ae
constant SIOCGETPFLOW (line 1217) | SIOCGETPFLOW = 0xc02069fe
constant SIOCGETPFSYNC (line 1218) | SIOCGETPFSYNC = 0xc02069f8
constant SIOCGETSGCNT (line 1219) | SIOCGETSGCNT = 0xc0207534
constant SIOCGETVIFCNT (line 1220) | SIOCGETVIFCNT = 0xc0287533
constant SIOCGETVLAN (line 1221) | SIOCGETVLAN = 0xc0206990
constant SIOCGIFADDR (line 1222) | SIOCGIFADDR = 0xc0206921
constant SIOCGIFBRDADDR (line 1223) | SIOCGIFBRDADDR = 0xc0206923
constant SIOCGIFCONF (line 1224) | SIOCGIFCONF = 0xc0106924
constant SIOCGIFDATA (line 1225) | SIOCGIFDATA = 0xc020691b
constant SIOCGIFDESCR (line 1226) | SIOCGIFDESCR = 0xc0206981
constant SIOCGIFDSTADDR (line 1227) | SIOCGIFDSTADDR = 0xc0206922
constant SIOCGIFFLAGS (line 1228) | SIOCGIFFLAGS = 0xc0206911
constant SIOCGIFGATTR (line 1229) | SIOCGIFGATTR = 0xc028698b
constant SIOCGIFGENERIC (line 1230) | SIOCGIFGENERIC = 0xc020693a
constant SIOCGIFGLIST (line 1231) | SIOCGIFGLIST = 0xc028698d
constant SIOCGIFGMEMB (line 1232) | SIOCGIFGMEMB = 0xc028698a
constant SIOCGIFGROUP (line 1233) | SIOCGIFGROUP = 0xc0286988
constant SIOCGIFHARDMTU (line 1234) | SIOCGIFHARDMTU = 0xc02069a5
constant SIOCGIFLLPRIO (line 1235) | SIOCGIFLLPRIO = 0xc02069b6
constant SIOCGIFMEDIA (line 1236) | SIOCGIFMEDIA = 0xc0406938
constant SIOCGIFMETRIC (line 1237) | SIOCGIFMETRIC = 0xc0206917
constant SIOCGIFMTU (line 1238) | SIOCGIFMTU = 0xc020697e
constant SIOCGIFNETMASK (line 1239) | SIOCGIFNETMASK = 0xc0206925
constant SIOCGIFPAIR (line 1240) | SIOCGIFPAIR = 0xc02069b1
constant SIOCGIFPARENT (line 1241) | SIOCGIFPARENT = 0xc02069b3
constant SIOCGIFPRIORITY (line 1242) | SIOCGIFPRIORITY = 0xc020699c
constant SIOCGIFRDOMAIN (line 1243) | SIOCGIFRDOMAIN = 0xc02069a0
constant SIOCGIFRTLABEL (line 1244) | SIOCGIFRTLABEL = 0xc0206983
constant SIOCGIFRXR (line 1245) | SIOCGIFRXR = 0x802069aa
constant SIOCGIFSFFPAGE (line 1246) | SIOCGIFSFFPAGE = 0xc1126939
constant SIOCGIFXFLAGS (line 1247) | SIOCGIFXFLAGS = 0xc020699e
constant SIOCGLIFPHYADDR (line 1248) | SIOCGLIFPHYADDR = 0xc218694b
constant SIOCGLIFPHYDF (line 1249) | SIOCGLIFPHYDF = 0xc02069c2
constant SIOCGLIFPHYECN (line 1250) | SIOCGLIFPHYECN = 0xc02069c8
constant SIOCGLIFPHYRTABLE (line 1251) | SIOCGLIFPHYRTABLE = 0xc02069a2
constant SIOCGLIFPHYTTL (line 1252) | SIOCGLIFPHYTTL = 0xc02069a9
constant SIOCGPGRP (line 1253) | SIOCGPGRP = 0x40047309
constant SIOCGPWE3 (line 1254) | SIOCGPWE3 = 0xc0206998
constant SIOCGPWE3CTRLWORD (line 1255) | SIOCGPWE3CTRLWORD = 0xc02069dc
constant SIOCGPWE3FAT (line 1256) | SIOCGPWE3FAT = 0xc02069dd
constant SIOCGPWE3NEIGHBOR (line 1257) | SIOCGPWE3NEIGHBOR = 0xc21869de
constant SIOCGSPPPPARAMS (line 1258) | SIOCGSPPPPARAMS = 0xc0206994
constant SIOCGTXHPRIO (line 1259) | SIOCGTXHPRIO = 0xc02069c6
constant SIOCGUMBINFO (line 1260) | SIOCGUMBINFO = 0xc02069be
constant SIOCGUMBPARAM (line 1261) | SIOCGUMBPARAM = 0xc02069c0
constant SIOCGVH (line 1262) | SIOCGVH = 0xc02069f6
constant SIOCGVNETFLOWID (line 1263) | SIOCGVNETFLOWID = 0xc02069c4
constant SIOCGVNETID (line 1264) | SIOCGVNETID = 0xc02069a7
constant SIOCIFAFATTACH (line 1265) | SIOCIFAFATTACH = 0x801169ab
constant SIOCIFAFDETACH (line 1266) | SIOCIFAFDETACH = 0x801169ac
constant SIOCIFCREATE (line 1267) | SIOCIFCREATE = 0x8020697a
constant SIOCIFDESTROY (line 1268) | SIOCIFDESTROY = 0x80206979
constant SIOCIFGCLONERS (line 1269) | SIOCIFGCLONERS = 0xc0106978
constant SIOCSETKALIVE (line 1270) | SIOCSETKALIVE = 0x801869a3
constant SIOCSETLABEL (line 1271) | SIOCSETLABEL = 0x80206999
constant SIOCSETMPWCFG (line 1272) | SIOCSETMPWCFG = 0x802069ad
constant SIOCSETPFLOW (line 1273) | SIOCSETPFLOW = 0x802069fd
constant SIOCSETPFSYNC (line 1274) | SIOCSETPFSYNC = 0x802069f7
constant SIOCSETVLAN (line 1275) | SIOCSETVLAN = 0x8020698f
constant SIOCSIFADDR (line 1276) | SIOCSIFADDR = 0x8020690c
constant SIOCSIFBRDADDR (line 1277) | SIOCSIFBRDADDR = 0x80206913
constant SIOCSIFDESCR (line 1278) | SIOCSIFDESCR = 0x80206980
constant SIOCSIFDSTADDR (line 1279) | SIOCSIFDSTADDR = 0x8020690e
constant SIOCSIFFLAGS (line 1280) | SIOCSIFFLAGS = 0x80206910
constant SIOCSIFGATTR (line 1281) | SIOCSIFGATTR = 0x8028698c
constant SIOCSIFGENERIC (line 1282) | SIOCSIFGENERIC = 0x80206939
constant SIOCSIFLLADDR (line 1283) | SIOCSIFLLADDR = 0x8020691f
constant SIOCSIFLLPRIO (line 1284) | SIOCSIFLLPRIO = 0x802069b5
constant SIOCSIFMEDIA (line 1285) | SIOCSIFMEDIA = 0xc0206937
constant SIOCSIFMETRIC (line 1286) | SIOCSIFMETRIC = 0x80206918
constant SIOCSIFMTU (line 1287) | SIOCSIFMTU = 0x8020697f
constant SIOCSIFNETMASK (line 1288) | SIOCSIFNETMASK = 0x80206916
constant SIOCSIFPAIR (line 1289) | SIOCSIFPAIR = 0x802069b0
constant SIOCSIFPARENT (line 1290) | SIOCSIFPARENT = 0x802069b2
constant SIOCSIFPRIORITY (line 1291) | SIOCSIFPRIORITY = 0x8020699b
constant SIOCSIFRDOMAIN (line 1292) | SIOCSIFRDOMAIN = 0x8020699f
constant SIOCSIFRTLABEL (line 1293) | SIOCSIFRTLABEL = 0x80206982
constant SIOCSIFXFLAGS (line 1294) | SIOCSIFXFLAGS = 0x8020699d
constant SIOCSLIFPHYADDR (line 1295) | SIOCSLIFPHYADDR = 0x8218694a
constant SIOCSLIFPHYDF (line 1296) | SIOCSLIFPHYDF = 0x802069c1
constant SIOCSLIFPHYECN (line 1297) | SIOCSLIFPHYECN = 0x802069c7
constant SIOCSLIFPHYRTABLE (line 1298) | SIOCSLIFPHYRTABLE = 0x802069a1
constant SIOCSLIFPHYTTL (line 1299) | SIOCSLIFPHYTTL = 0x802069a8
constant SIOCSPGRP (line 1300) | SIOCSPGRP = 0x80047308
constant SIOCSPWE3CTRLWORD (line 1301) | SIOCSPWE3CTRLWORD = 0x802069dc
constant SIOCSPWE3FAT (line 1302) | SIOCSPWE3FAT = 0x802069dd
constant SIOCSPWE3NEIGHBOR (line 1303) | SIOCSPWE3NEIGHBOR = 0x821869de
constant SIOCSSPPPPARAMS (line 1304) | SIOCSSPPPPARAMS = 0x80206993
constant SIOCSTXHPRIO (line 1305) | SIOCSTXHPRIO = 0x802069c5
constant SIOCSUMBPARAM (line 1306) | SIOCSUMBPARAM = 0x802069bf
constant SIOCSVH (line 1307) | SIOCSVH = 0xc02069f5
constant SIOCSVNETFLOWID (line 1308) | SIOCSVNETFLOWID = 0x802069c3
constant SIOCSVNETID (line 1309) | SIOCSVNETID = 0x802069a6
constant SIOCSWGDPID (line 1310) | SIOCSWGDPID = 0xc018695b
constant SIOCSWGMAXFLOW (line 1311) | SIOCSWGMAXFLOW = 0xc0186960
constant SIOCSWGMAXGROUP (line 1312) | SIOCSWGMAXGROUP = 0xc018695d
constant SIOCSWSDPID (line 1313) | SIOCSWSDPID = 0x8018695c
constant SIOCSWSPORTNO (line 1314) | SIOCSWSPORTNO = 0xc060695f
constant SOCK_CLOEXEC (line 1315) | SOCK_CLOEXEC = 0x8000
constant SOCK_DGRAM (line 1316) | SOCK_DGRAM = 0x2
constant SOCK_DNS (line 1317) | SOCK_DNS = 0x1000
constant SOCK_NONBLOCK (line 1318) | SOCK_NONBLOCK = 0x4000
constant SOCK_RAW (line 1319) | SOCK_RAW = 0x3
constant SOCK_RDM (line 1320) | SOCK_RDM = 0x4
constant SOCK_SEQPACKET (line 1321) | SOCK_SEQPACKET = 0x5
constant SOCK_STREAM (line 1322) | SOCK_STREAM = 0x1
constant SOL_SOCKET (line 1323) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 1324) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 1325) | SO_ACCEPTCONN = 0x2
constant SO_BINDANY (line 1326) | SO_BINDANY = 0x1000
constant SO_BROADCAST (line 1327) | SO_BROADCAST = 0x20
constant SO_DEBUG (line 1328) | SO_DEBUG = 0x1
constant SO_DONTROUTE (line 1329) | SO_DONTROUTE = 0x10
constant SO_ERROR (line 1330) | SO_ERROR = 0x1007
constant SO_KEEPALIVE (line 1331) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 1332) | SO_LINGER = 0x80
constant SO_NETPROC (line 1333) | SO_NETPROC = 0x1020
constant SO_OOBINLINE (line 1334) | SO_OOBINLINE = 0x100
constant SO_PEERCRED (line 1335) | SO_PEERCRED = 0x1022
constant SO_RCVBUF (line 1336) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 1337) | SO_RCVLOWAT = 0x1004
constant SO_RCVTIMEO (line 1338) | SO_RCVTIMEO = 0x1006
constant SO_REUSEADDR (line 1339) | SO_REUSEADDR = 0x4
constant SO_REUSEPORT (line 1340) | SO_REUSEPORT = 0x200
constant SO_RTABLE (line 1341) | SO_RTABLE = 0x1021
constant SO_SNDBUF (line 1342) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 1343) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 1344) | SO_SNDTIMEO = 0x1005
constant SO_SPLICE (line 1345) | SO_SPLICE = 0x1023
constant SO_TIMESTAMP (line 1346) | SO_TIMESTAMP = 0x800
constant SO_TYPE (line 1347) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 1348) | SO_USELOOPBACK = 0x40
constant SO_ZEROIZE (line 1349) | SO_ZEROIZE = 0x2000
constant S_BLKSIZE (line 1350) | S_BLKSIZE = 0x200
constant S_IEXEC (line 1351) | S_IEXEC = 0x40
constant S_IFBLK (line 1352) | S_IFBLK = 0x6000
constant S_IFCHR (line 1353) | S_IFCHR = 0x2000
constant S_IFDIR (line 1354) | S_IFDIR = 0x4000
constant S_IFIFO (line 1355) | S_IFIFO = 0x1000
constant S_IFLNK (line 1356) | S_IFLNK = 0xa000
constant S_IFMT (line 1357) | S_IFMT = 0xf000
constant S_IFREG (line 1358) | S_IFREG = 0x8000
constant S_IFSOCK (line 1359) | S_IFSOCK = 0xc000
constant S_IREAD (line 1360) | S_IREAD = 0x100
constant S_IRGRP (line 1361) | S_IRGRP = 0x20
constant S_IROTH (line 1362) | S_IROTH = 0x4
constant S_IRUSR (line 1363) | S_IRUSR = 0x100
constant S_IRWXG (line 1364) | S_IRWXG = 0x38
constant S_IRWXO (line 1365) | S_IRWXO = 0x7
constant S_IRWXU (line 1366) | S_IRWXU = 0x1c0
constant S_ISGID (line 1367) | S_ISGID = 0x400
constant S_ISTXT (line 1368) | S_ISTXT = 0x200
constant S_ISUID (line 1369) | S_ISUID = 0x800
constant S_ISVTX (line 1370) | S_ISVTX = 0x200
constant S_IWGRP (line 1371) | S_IWGRP = 0x10
constant S_IWOTH (line 1372) | S_IWOTH = 0x2
constant S_IWRITE (line 1373) | S_IWRITE = 0x80
constant S_IWUSR (line 1374) | S_IWUSR = 0x80
constant S_IXGRP (line 1375) | S_IXGRP = 0x8
constant S_IXOTH (line 1376) | S_IXOTH = 0x1
constant S_IXUSR (line 1377) | S_IXUSR = 0x40
constant TCIFLUSH (line 1378) | TCIFLUSH = 0x1
constant TCIOFF (line 1379) | TCIOFF = 0x3
constant TCIOFLUSH (line 1380) | TCIOFLUSH = 0x3
constant TCION (line 1381) | TCION = 0x4
constant TCOFLUSH (line 1382) | TCOFLUSH = 0x2
constant TCOOFF (line 1383) | TCOOFF = 0x1
constant TCOON (line 1384) | TCOON = 0x2
constant TCP_MAXBURST (line 1385) | TCP_MAXBURST = 0x4
constant TCP_MAXSEG (line 1386) | TCP_MAXSEG = 0x2
constant TCP_MAXWIN (line 1387) | TCP_MAXWIN = 0xffff
constant TCP_MAX_SACK (line 1388) | TCP_MAX_SACK = 0x3
constant TCP_MAX_WINSHIFT (line 1389) | TCP_MAX_WINSHIFT = 0xe
constant TCP_MD5SIG (line 1390) | TCP_MD5SIG = 0x4
constant TCP_MSS (line 1391) | TCP_MSS = 0x200
constant TCP_NODELAY (line 1392) | TCP_NODELAY = 0x1
constant TCP_NOPUSH (line 1393) | TCP_NOPUSH = 0x10
constant TCP_SACK_ENABLE (line 1394) | TCP_SACK_ENABLE = 0x8
constant TCSAFLUSH (line 1395) | TCSAFLUSH = 0x2
constant TIMER_ABSTIME (line 1396) | TIMER_ABSTIME = 0x1
constant TIMER_RELTIME (line 1397) | TIMER_RELTIME = 0x0
constant TIOCCBRK (line 1398) | TIOCCBRK = 0x2000747a
constant TIOCCDTR (line 1399) | TIOCCDTR = 0x20007478
constant TIOCCHKVERAUTH (line 1400) | TIOCCHKVERAUTH = 0x2000741e
constant TIOCCLRVERAUTH (line 1401) | TIOCCLRVERAUTH = 0x2000741d
constant TIOCCONS (line 1402) | TIOCCONS = 0x80047462
constant TIOCDRAIN (line 1403) | TIOCDRAIN = 0x2000745e
constant TIOCEXCL (line 1404) | TIOCEXCL = 0x2000740d
constant TIOCEXT (line 1405) | TIOCEXT = 0x80047460
constant TIOCFLAG_CLOCAL (line 1406) | TIOCFLAG_CLOCAL = 0x2
constant TIOCFLAG_CRTSCTS (line 1407) | TIOCFLAG_CRTSCTS = 0x4
constant TIOCFLAG_MDMBUF (line 1408) | TIOCFLAG_MDMBUF = 0x8
constant TIOCFLAG_PPS (line 1409) | TIOCFLAG_PPS = 0x10
constant TIOCFLAG_SOFTCAR (line 1410) | TIOCFLAG_SOFTCAR = 0x1
constant TIOCFLUSH (line 1411) | TIOCFLUSH = 0x80047410
constant TIOCGETA (line 1412) | TIOCGETA = 0x402c7413
constant TIOCGETD (line 1413) | TIOCGETD = 0x4004741a
constant TIOCGFLAGS (line 1414) | TIOCGFLAGS = 0x4004745d
constant TIOCGPGRP (line 1415) | TIOCGPGRP = 0x40047477
constant TIOCGSID (line 1416) | TIOCGSID = 0x40047463
constant TIOCGTSTAMP (line 1417) | TIOCGTSTAMP = 0x4010745b
constant TIOCGWINSZ (line 1418) | TIOCGWINSZ = 0x40087468
constant TIOCMBIC (line 1419) | TIOCMBIC = 0x8004746b
constant TIOCMBIS (line 1420) | TIOCMBIS = 0x8004746c
constant TIOCMGET (line 1421) | TIOCMGET = 0x4004746a
constant TIOCMODG (line 1422) | TIOCMODG = 0x4004746a
constant TIOCMODS (line 1423) | TIOCMODS = 0x8004746d
constant TIOCMSET (line 1424) | TIOCMSET = 0x8004746d
constant TIOCM_CAR (line 1425) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1426) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1427) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1428) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1429) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1430) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1431) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1432) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1433) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1434) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1435) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1436) | TIOCNOTTY = 0x20007471
constant TIOCNXCL (line 1437) | TIOCNXCL = 0x2000740e
constant TIOCOUTQ (line 1438) | TIOCOUTQ = 0x40047473
constant TIOCPKT (line 1439) | TIOCPKT = 0x80047470
constant TIOCPKT_DATA (line 1440) | TIOCPKT_DATA = 0x0
constant TIOCPKT_DOSTOP (line 1441) | TIOCPKT_DOSTOP = 0x20
constant TIOCPKT_FLUSHREAD (line 1442) | TIOCPKT_FLUSHREAD = 0x1
constant TIOCPKT_FLUSHWRITE (line 1443) | TIOCPKT_FLUSHWRITE = 0x2
constant TIOCPKT_IOCTL (line 1444) | TIOCPKT_IOCTL = 0x40
constant TIOCPKT_NOSTOP (line 1445) | TIOCPKT_NOSTOP = 0x10
constant TIOCPKT_START (line 1446) | TIOCPKT_START = 0x8
constant TIOCPKT_STOP (line 1447) | TIOCPKT_STOP = 0x4
constant TIOCREMOTE (line 1448) | TIOCREMOTE = 0x80047469
constant TIOCSBRK (line 1449) | TIOCSBRK = 0x2000747b
constant TIOCSCTTY (line 1450) | TIOCSCTTY = 0x20007461
constant TIOCSDTR (line 1451) | TIOCSDTR = 0x20007479
constant TIOCSETA (line 1452) | TIOCSETA = 0x802c7414
constant TIOCSETAF (line 1453) | TIOCSETAF = 0x802c7416
constant TIOCSETAW (line 1454) | TIOCSETAW = 0x802c7415
constant TIOCSETD (line 1455) | TIOCSETD = 0x8004741b
constant TIOCSETVERAUTH (line 1456) | TIOCSETVERAUTH = 0x8004741c
constant TIOCSFLAGS (line 1457) | TIOCSFLAGS = 0x8004745c
constant TIOCSIG (line 1458) | TIOCSIG = 0x8004745f
constant TIOCSPGRP (line 1459) | TIOCSPGRP = 0x80047476
constant TIOCSTART (line 1460) | TIOCSTART = 0x2000746e
constant TIOCSTAT (line 1461) | TIOCSTAT = 0x20007465
constant TIOCSTOP (line 1462) | TIOCSTOP = 0x2000746f
constant TIOCSTSTAMP (line 1463) | TIOCSTSTAMP = 0x8008745a
constant TIOCSWINSZ (line 1464) | TIOCSWINSZ = 0x80087467
constant TIOCUCNTL (line 1465) | TIOCUCNTL = 0x80047466
constant TIOCUCNTL_CBRK (line 1466) | TIOCUCNTL_CBRK = 0x7a
constant TIOCUCNTL_SBRK (line 1467) | TIOCUCNTL_SBRK = 0x7b
constant TOSTOP (line 1468) | TOSTOP = 0x400000
constant UTIME_NOW (line 1469) | UTIME_NOW = -0x2
constant UTIME_OMIT (line 1470) | UTIME_OMIT = -0x1
constant VDISCARD (line 1471) | VDISCARD = 0xf
constant VDSUSP (line 1472) | VDSUSP = 0xb
constant VEOF (line 1473) | VEOF = 0x0
constant VEOL (line 1474) | VEOL = 0x1
constant VEOL2 (line 1475) | VEOL2 = 0x2
constant VERASE (line 1476) | VERASE = 0x3
constant VINTR (line 1477) | VINTR = 0x8
constant VKILL (line 1478) | VKILL = 0x5
constant VLNEXT (line 1479) | VLNEXT = 0xe
constant VMIN (line 1480) | VMIN = 0x10
constant VM_ANONMIN (line 1481) | VM_ANONMIN = 0x7
constant VM_LOADAVG (line 1482) | VM_LOADAVG = 0x2
constant VM_MALLOC_CONF (line 1483) | VM_MALLOC_CONF = 0xc
constant VM_MAXID (line 1484) | VM_MAXID = 0xd
constant VM_MAXSLP (line 1485) | VM_MAXSLP = 0xa
constant VM_METER (line 1486) | VM_METER = 0x1
constant VM_NKMEMPAGES (line 1487) | VM_NKMEMPAGES = 0x6
constant VM_PSSTRINGS (line 1488) | VM_PSSTRINGS = 0x3
constant VM_SWAPENCRYPT (line 1489) | VM_SWAPENCRYPT = 0x5
constant VM_USPACE (line 1490) | VM_USPACE = 0xb
constant VM_UVMEXP (line 1491) | VM_UVMEXP = 0x4
constant VM_VNODEMIN (line 1492) | VM_VNODEMIN = 0x9
constant VM_VTEXTMIN (line 1493) | VM_VTEXTMIN = 0x8
constant VQUIT (line 1494) | VQUIT = 0x9
constant VREPRINT (line 1495) | VREPRINT = 0x6
constant VSTART (line 1496) | VSTART = 0xc
constant VSTATUS (line 1497) | VSTATUS = 0x12
constant VSTOP (line 1498) | VSTOP = 0xd
constant VSUSP (line 1499) | VSUSP = 0xa
constant VTIME (line 1500) | VTIME = 0x11
constant VWERASE (line 1501) | VWERASE = 0x4
constant WALTSIG (line 1502) | WALTSIG = 0x4
constant WCONTINUED (line 1503) | WCONTINUED = 0x8
constant WCOREFLAG (line 1504) | WCOREFLAG = 0x80
constant WNOHANG (line 1505) | WNOHANG = 0x1
constant WUNTRACED (line 1506) | WUNTRACED = 0x2
constant XCASE (line 1507) | XCASE = 0x1000000
constant E2BIG (line 1512) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1513) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1514) | EADDRINUSE = syscall.Errno(0x30)
constant EADDRNOTAVAIL (line 1515) | EADDRNOTAVAIL = syscall.Errno(0x31)
constant EAFNOSUPPORT (line 1516) | EAFNOSUPPORT = syscall.Errno(0x2f)
constant EAGAIN (line 1517) | EAGAIN = syscall.Errno(0x23)
constant EALREADY (line 1518) | EALREADY = syscall.Errno(0x25)
constant EAUTH (line 1519) | EAUTH = syscall.Errno(0x50)
constant EBADF (line 1520) | EBADF = syscall.Errno(0x9)
constant EBADMSG (line 1521) | EBADMSG = syscall.Errno(0x5c)
constant EBADRPC (line 1522) | EBADRPC = syscall.Errno(0x48)
constant EBUSY (line 1523) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1524) | ECANCELED = syscall.Errno(0x58)
constant ECHILD (line 1525) | ECHILD = syscall.Errno(0xa)
constant ECONNABORTED (line 1526) | ECONNABORTED = syscall.Errno(0x35)
constant ECONNREFUSED (line 1527) | ECONNREFUSED = syscall.Errno(0x3d)
constant ECONNRESET (line 1528) | ECONNRESET = syscall.Errno(0x36)
constant EDEADLK (line 1529) | EDEADLK = syscall.Errno(0xb)
constant EDESTADDRREQ (line 1530) | EDESTADDRREQ = syscall.Errno(0x27)
constant EDOM (line 1531) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1532) | EDQUOT = syscall.Errno(0x45)
constant EEXIST (line 1533) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1534) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1535) | EFBIG = syscall.Errno(0x1b)
constant EFTYPE (line 1536) | EFTYPE = syscall.Errno(0x4f)
constant EHOSTDOWN (line 1537) | EHOSTDOWN = syscall.Errno(0x40)
constant EHOSTUNREACH (line 1538) | EHOSTUNREACH = syscall.Errno(0x41)
constant EIDRM (line 1539) | EIDRM = syscall.Errno(0x59)
constant EILSEQ (line 1540) | EILSEQ = syscall.Errno(0x54)
constant EINPROGRESS (line 1541) | EINPROGRESS = syscall.Errno(0x24)
constant EINTR (line 1542) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1543) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1544) | EIO = syscall.Errno(0x5)
constant EIPSEC (line 1545) | EIPSEC = syscall.Errno(0x52)
constant EISCONN (line 1546) | EISCONN = syscall.Errno(0x38)
constant EISDIR (line 1547) | EISDIR = syscall.Errno(0x15)
constant ELAST (line 1548) | ELAST = syscall.Errno(0x5f)
constant ELOOP (line 1549) | ELOOP = syscall.Errno(0x3e)
constant EMEDIUMTYPE (line 1550) | EMEDIUMTYPE = syscall.Errno(0x56)
constant EMFILE (line 1551) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1552) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1553) | EMSGSIZE = syscall.Errno(0x28)
constant ENAMETOOLONG (line 1554) | ENAMETOOLONG = syscall.Errno(0x3f)
constant ENEEDAUTH (line 1555) | ENEEDAUTH = syscall.Errno(0x51)
constant ENETDOWN (line 1556) | ENETDOWN = syscall.Errno(0x32)
constant ENETRESET (line 1557) | ENETRESET = syscall.Errno(0x34)
constant ENETUNREACH (line 1558) | ENETUNREACH = syscall.Errno(0x33)
constant ENFILE (line 1559) | ENFILE = syscall.Errno(0x17)
constant ENOATTR (line 1560) | ENOATTR = syscall.Errno(0x53)
constant ENOBUFS (line 1561) | ENOBUFS = syscall.Errno(0x37)
constant ENODEV (line 1562) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1563) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1564) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1565) | ENOLCK = syscall.Errno(0x4d)
constant ENOMEDIUM (line 1566) | ENOMEDIUM = syscall.Errno(0x55)
constant ENOMEM (line 1567) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1568) | ENOMSG = syscall.Errno(0x5a)
constant ENOPROTOOPT (line 1569) | ENOPROTOOPT = syscall.Errno(0x2a)
constant ENOSPC (line 1570) | ENOSPC = syscall.Errno(0x1c)
constant ENOSYS (line 1571) | ENOSYS = syscall.Errno(0x4e)
constant ENOTBLK (line 1572) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1573) | ENOTCONN = syscall.Errno(0x39)
constant ENOTDIR (line 1574) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1575) | ENOTEMPTY = syscall.Errno(0x42)
constant ENOTRECOVERABLE (line 1576) | ENOTRECOVERABLE = syscall.Errno(0x5d)
constant ENOTSOCK (line 1577) | ENOTSOCK = syscall.Errno(0x26)
constant ENOTSUP (line 1578) | ENOTSUP = syscall.Errno(0x5b)
constant ENOTTY (line 1579) | ENOTTY = syscall.Errno(0x19)
constant ENXIO (line 1580) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1581) | EOPNOTSUPP = syscall.Errno(0x2d)
constant EOVERFLOW (line 1582) | EOVERFLOW = syscall.Errno(0x57)
constant EOWNERDEAD (line 1583) | EOWNERDEAD = syscall.Errno(0x5e)
constant EPERM (line 1584) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1585) | EPFNOSUPPORT = syscall.Errno(0x2e)
constant EPIPE (line 1586) | EPIPE = syscall.Errno(0x20)
constant EPROCLIM (line 1587) | EPROCLIM = syscall.Errno(0x43)
constant EPROCUNAVAIL (line 1588) | EPROCUNAVAIL = syscall.Errno(0x4c)
constant EPROGMISMATCH (line 1589) | EPROGMISMATCH = syscall.Errno(0x4b)
constant EPROGUNAVAIL (line 1590) | EPROGUNAVAIL = syscall.Errno(0x4a)
constant EPROTO (line 1591) | EPROTO = syscall.Errno(0x5f)
constant EPROTONOSUPPORT (line 1592) | EPROTONOSUPPORT = syscall.Errno(0x2b)
constant EPROTOTYPE (line 1593) | EPROTOTYPE = syscall.Errno(0x29)
constant ERANGE (line 1594) | ERANGE = syscall.Errno(0x22)
constant EREMOTE (line 1595) | EREMOTE = syscall.Errno(0x47)
constant EROFS (line 1596) | EROFS = syscall.Errno(0x1e)
constant ERPCMISMATCH (line 1597) | ERPCMISMATCH = syscall.Errno(0x49)
constant ESHUTDOWN (line 1598) | ESHUTDOWN = syscall.Errno(0x3a)
constant ESOCKTNOSUPPORT (line 1599) | ESOCKTNOSUPPORT = syscall.Errno(0x2c)
constant ESPIPE (line 1600) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1601) | ESRCH = syscall.Errno(0x3)
constant ESTALE (line 1602) | ESTALE = syscall.Errno(0x46)
constant ETIMEDOUT (line 1603) | ETIMEDOUT = syscall.Errno(0x3c)
constant ETOOMANYREFS (line 1604) | ETOOMANYREFS = syscall.Errno(0x3b)
constant ETXTBSY (line 1605) | ETXTBSY = syscall.Errno(0x1a)
constant EUSERS (line 1606) | EUSERS = syscall.Errno(0x44)
constant EWOULDBLOCK (line 1607) | EWOULDBLOCK = syscall.Errno(0x23)
constant EXDEV (line 1608) | EXDEV = syscall.Errno(0x12)
constant SIGABRT (line 1613) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1614) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1615) | SIGBUS = syscall.Signal(0xa)
constant SIGCHLD (line 1616) | SIGCHLD = syscall.Signal(0x14)
constant SIGCONT (line 1617) | SIGCONT = syscall.Signal(0x13)
constant SIGEMT (line 1618) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1619) | SIGFPE = syscall.Signal(0x8)
constant SIGHUP (line 1620) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1621) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1622) | SIGINFO = syscall.Signal(0x1d)
constant SIGINT (line 1623) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1624) | SIGIO = syscall.Signal(0x17)
constant SIGIOT (line 1625) | SIGIOT = syscall.Signal(0x6)
constant SIGKILL (line 1626) | SIGKILL = syscall.Signal(0x9)
constant SIGPIPE (line 1627) | SIGPIPE = syscall.Signal(0xd)
constant SIGPROF (line 1628) | SIGPROF = syscall.Signal(0x1b)
constant SIGQUIT (line 1629) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1630) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1631) | SIGSTOP = syscall.Signal(0x11)
constant SIGSYS (line 1632) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1633) | SIGTERM = syscall.Signal(0xf)
constant SIGTHR (line 1634) | SIGTHR = syscall.Signal(0x20)
constant SIGTRAP (line 1635) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1636) | SIGTSTP = syscall.Signal(0x12)
constant SIGTTIN (line 1637) | SIGTTIN = syscall.Signal(0x15)
constant SIGTTOU (line 1638) | SIGTTOU = syscall.Signal(0x16)
constant SIGURG (line 1639) | SIGURG = syscall.Signal(0x10)
constant SIGUSR1 (line 1640) | SIGUSR1 = syscall.Signal(0x1e)
constant SIGUSR2 (line 1641) | SIGUSR2 = syscall.Signal(0x1f)
constant SIGVTALRM (line 1642) | SIGVTALRM = syscall.Signal(0x1a)
constant SIGWINCH (line 1643) | SIGWINCH = syscall.Signal(0x1c)
constant SIGXCPU (line 1644) | SIGXCPU = syscall.Signal(0x18)
constant SIGXFSZ (line 1645) | 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 NAME_MAX (line 667) | NAME_MAX = 0xff
constant NEWDEV (line 668) | NEWDEV = 0x1
constant NL0 (line 669) | NL0 = 0x0
constant NL1 (line 670) | NL1 = 0x100
constant NLDLY (line 671) | NLDLY = 0x100
constant NOFLSH (line 672) | NOFLSH = 0x80
constant OCRNL (line 673) | OCRNL = 0x8
constant OFDEL (line 674) | OFDEL = 0x80
constant OFILL (line 675) | OFILL = 0x40
constant OLCUC (line 676) | OLCUC = 0x2
constant OLDDEV (line 677) | OLDDEV = 0x0
constant ONBITSMAJOR (line 678) | ONBITSMAJOR = 0x7
constant ONBITSMINOR (line 679) | ONBITSMINOR = 0x8
constant ONLCR (line 680) | ONLCR = 0x4
constant ONLRET (line 681) | ONLRET = 0x20
constant ONOCR (line 682) | ONOCR = 0x10
constant OPENFAIL (line 683) | OPENFAIL = -0x1
constant OPOST (line 684) | OPOST = 0x1
constant O_ACCMODE (line 685) | O_ACCMODE = 0x600003
constant O_APPEND (line 686) | O_APPEND = 0x8
constant O_CLOEXEC (line 687) | O_CLOEXEC = 0x800000
constant O_CREAT (line 688) | O_CREAT = 0x100
constant O_DSYNC (line 689) | O_DSYNC = 0x40
constant O_EXCL (line 690) | O_EXCL = 0x400
constant O_EXEC (line 691) | O_EXEC = 0x400000
constant O_LARGEFILE (line 692) | O_LARGEFILE = 0x2000
constant O_NDELAY (line 693) | O_NDELAY = 0x4
constant O_NOCTTY (line 694) | O_NOCTTY = 0x800
constant O_NOFOLLOW (line 695) | O_NOFOLLOW = 0x20000
constant O_NOLINKS (line 696) | O_NOLINKS = 0x40000
constant O_NONBLOCK (line 697) | O_NONBLOCK = 0x80
constant O_RDONLY (line 698) | O_RDONLY = 0x0
constant O_RDWR (line 699) | O_RDWR = 0x2
constant O_RSYNC (line 700) | O_RSYNC = 0x8000
constant O_SEARCH (line 701) | O_SEARCH = 0x200000
constant O_SIOCGIFCONF (line 702) | O_SIOCGIFCONF = -0x3ff796ec
constant O_SIOCGLIFCONF (line 703) | O_SIOCGLIFCONF = -0x3fef9688
constant O_SYNC (line 704) | O_SYNC = 0x10
constant O_TRUNC (line 705) | O_TRUNC = 0x200
constant O_WRONLY (line 706) | O_WRONLY = 0x1
constant O_XATTR (line 707) | O_XATTR = 0x4000
constant PARENB (line 708) | PARENB = 0x100
constant PAREXT (line 709) | PAREXT = 0x100000
constant PARMRK (line 710) | PARMRK = 0x8
constant PARODD (line 711) | PARODD = 0x200
constant PENDIN (line 712) | PENDIN = 0x4000
constant PRIO_PGRP (line 713) | PRIO_PGRP = 0x1
constant PRIO_PROCESS (line 714) | PRIO_PROCESS = 0x0
constant PRIO_USER (line 715) | PRIO_USER = 0x2
constant PROT_EXEC (line 716) | PROT_EXEC = 0x4
constant PROT_NONE (line 717) | PROT_NONE = 0x0
constant PROT_READ (line 718) | PROT_READ = 0x1
constant PROT_WRITE (line 719) | PROT_WRITE = 0x2
constant RLIMIT_AS (line 720) | RLIMIT_AS = 0x6
constant RLIMIT_CORE (line 721) | RLIMIT_CORE = 0x4
constant RLIMIT_CPU (line 722) | RLIMIT_CPU = 0x0
constant RLIMIT_DATA (line 723) | RLIMIT_DATA = 0x2
constant RLIMIT_FSIZE (line 724) | RLIMIT_FSIZE = 0x1
constant RLIMIT_NOFILE (line 725) | RLIMIT_NOFILE = 0x5
constant RLIMIT_STACK (line 726) | RLIMIT_STACK = 0x3
constant RLIM_INFINITY (line 727) | RLIM_INFINITY = -0x3
constant RTAX_AUTHOR (line 728) | RTAX_AUTHOR = 0x6
constant RTAX_BRD (line 729) | RTAX_BRD = 0x7
constant RTAX_DST (line 730) | RTAX_DST = 0x0
constant RTAX_GATEWAY (line 731) | RTAX_GATEWAY = 0x1
constant RTAX_GENMASK (line 732) | RTAX_GENMASK = 0x3
constant RTAX_IFA (line 733) | RTAX_IFA = 0x5
constant RTAX_IFP (line 734) | RTAX_IFP = 0x4
constant RTAX_MAX (line 735) | RTAX_MAX = 0x9
constant RTAX_NETMASK (line 736) | RTAX_NETMASK = 0x2
constant RTAX_SRC (line 737) | RTAX_SRC = 0x8
constant RTA_AUTHOR (line 738) | RTA_AUTHOR = 0x40
constant RTA_BRD (line 739) | RTA_BRD = 0x80
constant RTA_DST (line 740) | RTA_DST = 0x1
constant RTA_GATEWAY (line 741) | RTA_GATEWAY = 0x2
constant RTA_GENMASK (line 742) | RTA_GENMASK = 0x8
constant RTA_IFA (line 743) | RTA_IFA = 0x20
constant RTA_IFP (line 744) | RTA_IFP = 0x10
constant RTA_NETMASK (line 745) | RTA_NETMASK = 0x4
constant RTA_NUMBITS (line 746) | RTA_NUMBITS = 0x9
constant RTA_SRC (line 747) | RTA_SRC = 0x100
constant RTF_BLACKHOLE (line 748) | RTF_BLACKHOLE = 0x1000
constant RTF_CLONING (line 749) | RTF_CLONING = 0x100
constant RTF_DONE (line 750) | RTF_DONE = 0x40
constant RTF_DYNAMIC (line 751) | RTF_DYNAMIC = 0x10
constant RTF_GATEWAY (line 752) | RTF_GATEWAY = 0x2
constant RTF_HOST (line 753) | RTF_HOST = 0x4
constant RTF_INDIRECT (line 754) | RTF_INDIRECT = 0x40000
constant RTF_KERNEL (line 755) | RTF_KERNEL = 0x80000
constant RTF_LLINFO (line 756) | RTF_LLINFO = 0x400
constant RTF_MASK (line 757) | RTF_MASK = 0x80
constant RTF_MODIFIED (line 758) | RTF_MODIFIED = 0x20
constant RTF_MULTIRT (line 759) | RTF_MULTIRT = 0x10000
constant RTF_PRIVATE (line 760) | RTF_PRIVATE = 0x2000
constant RTF_PROTO1 (line 761) | RTF_PROTO1 = 0x8000
constant RTF_PROTO2 (line 762) | RTF_PROTO2 = 0x4000
constant RTF_REJECT (line 763) | RTF_REJECT = 0x8
constant RTF_SETSRC (line 764) | RTF_SETSRC = 0x20000
constant RTF_STATIC (line 765) | RTF_STATIC = 0x800
constant RTF_UP (line 766) | RTF_UP = 0x1
constant RTF_XRESOLVE (line 767) | RTF_XRESOLVE = 0x200
constant RTF_ZONE (line 768) | RTF_ZONE = 0x100000
constant RTM_ADD (line 769) | RTM_ADD = 0x1
constant RTM_CHANGE (line 770) | RTM_CHANGE = 0x3
constant RTM_CHGADDR (line 771) | RTM_CHGADDR = 0xf
constant RTM_DELADDR (line 772) | RTM_DELADDR = 0xd
constant RTM_DELETE (line 773) | RTM_DELETE = 0x2
constant RTM_FREEADDR (line 774) | RTM_FREEADDR = 0x10
constant RTM_GET (line 775) | RTM_GET = 0x4
constant RTM_IFINFO (line 776) | RTM_IFINFO = 0xe
constant RTM_LOCK (line 777) | RTM_LOCK = 0x8
constant RTM_LOSING (line 778) | RTM_LOSING = 0x5
constant RTM_MISS (line 779) | RTM_MISS = 0x7
constant RTM_NEWADDR (line 780) | RTM_NEWADDR = 0xc
constant RTM_OLDADD (line 781) | RTM_OLDADD = 0x9
constant RTM_OLDDEL (line 782) | RTM_OLDDEL = 0xa
constant RTM_REDIRECT (line 783) | RTM_REDIRECT = 0x6
constant RTM_RESOLVE (line 784) | RTM_RESOLVE = 0xb
constant RTM_VERSION (line 785) | RTM_VERSION = 0x3
constant RTV_EXPIRE (line 786) | RTV_EXPIRE = 0x4
constant RTV_HOPCOUNT (line 787) | RTV_HOPCOUNT = 0x2
constant RTV_MTU (line 788) | RTV_MTU = 0x1
constant RTV_RPIPE (line 789) | RTV_RPIPE = 0x8
constant RTV_RTT (line 790) | RTV_RTT = 0x40
constant RTV_RTTVAR (line 791) | RTV_RTTVAR = 0x80
constant RTV_SPIPE (line 792) | RTV_SPIPE = 0x10
constant RTV_SSTHRESH (line 793) | RTV_SSTHRESH = 0x20
constant RT_AWARE (line 794) | RT_AWARE = 0x1
constant RUSAGE_CHILDREN (line 795) | RUSAGE_CHILDREN = -0x1
constant RUSAGE_SELF (line 796) | RUSAGE_SELF = 0x0
constant SCM_RIGHTS (line 797) | SCM_RIGHTS = 0x1010
constant SCM_TIMESTAMP (line 798) | SCM_TIMESTAMP = 0x1013
constant SCM_UCRED (line 799) | SCM_UCRED = 0x1012
constant SHUT_RD (line 800) | SHUT_RD = 0x0
constant SHUT_RDWR (line 801) | SHUT_RDWR = 0x2
constant SHUT_WR (line 802) | SHUT_WR = 0x1
constant SIG2STR_MAX (line 803) | SIG2STR_MAX = 0x20
constant SIOCADDMULTI (line 804) | SIOCADDMULTI = -0x7fdf96cf
constant SIOCADDRT (line 805) | SIOCADDRT = -0x7fcf8df6
constant SIOCATMARK (line 806) | SIOCATMARK = 0x40047307
constant SIOCDARP (line 807) | SIOCDARP = -0x7fdb96e0
constant SIOCDELMULTI (line 808) | SIOCDELMULTI = -0x7fdf96ce
constant SIOCDELRT (line 809) | SIOCDELRT = -0x7fcf8df5
constant SIOCDXARP (line 810) | SIOCDXARP = -0x7fff9658
constant SIOCGARP (line 811) | SIOCGARP = -0x3fdb96e1
constant SIOCGDSTINFO (line 812) | SIOCGDSTINFO = -0x3fff965c
constant SIOCGENADDR (line 813) | SIOCGENADDR = -0x3fdf96ab
constant SIOCGENPSTATS (line 814) | SIOCGENPSTATS = -0x3fdf96c7
constant SIOCGETLSGCNT (line 815) | SIOCGETLSGCNT = -0x3fef8deb
constant SIOCGETNAME (line 816) | SIOCGETNAME = 0x40107334
constant SIOCGETPEER (line 817) | SIOCGETPEER = 0x40107335
constant SIOCGETPROP (line 818) | SIOCGETPROP = -0x3fff8f44
constant SIOCGETSGCNT (line 819) | SIOCGETSGCNT = -0x3feb8deb
constant SIOCGETSYNC (line 820) | SIOCGETSYNC = -0x3fdf96d3
constant SIOCGETVIFCNT (line 821) | SIOCGETVIFCNT = -0x3feb8dec
constant SIOCGHIWAT (line 822) | SIOCGHIWAT = 0x40047301
constant SIOCGIFADDR (line 823) | SIOCGIFADDR = -0x3fdf96f3
constant SIOCGIFBRDADDR (line 824) | SIOCGIFBRDADDR = -0x3fdf96e9
constant SIOCGIFCONF (line 825) | SIOCGIFCONF = -0x3ff796a4
constant SIOCGIFDSTADDR (line 826) | SIOCGIFDSTADDR = -0x3fdf96f1
constant SIOCGIFFLAGS (line 827) | SIOCGIFFLAGS = -0x3fdf96ef
constant SIOCGIFHWADDR (line 828) | SIOCGIFHWADDR = -0x3fdf9647
constant SIOCGIFINDEX (line 829) | SIOCGIFINDEX = -0x3fdf96a6
constant SIOCGIFMEM (line 830) | SIOCGIFMEM = -0x3fdf96ed
constant SIOCGIFMETRIC (line 831) | SIOCGIFMETRIC = -0x3fdf96e5
constant SIOCGIFMTU (line 832) | SIOCGIFMTU = -0x3fdf96ea
constant SIOCGIFMUXID (line 833) | SIOCGIFMUXID = -0x3fdf96a8
constant SIOCGIFNETMASK (line 834) | SIOCGIFNETMASK = -0x3fdf96e7
constant SIOCGIFNUM (line 835) | SIOCGIFNUM = 0x40046957
constant SIOCGIP6ADDRPOLICY (line 836) | SIOCGIP6ADDRPOLICY = -0x3fff965e
constant SIOCGIPMSFILTER (line 837) | SIOCGIPMSFILTER = -0x3ffb964c
constant SIOCGLIFADDR (line 838) | SIOCGLIFADDR = -0x3f87968f
constant SIOCGLIFBINDING (line 839) | SIOCGLIFBINDING = -0x3f879666
constant SIOCGLIFBRDADDR (line 840) | SIOCGLIFBRDADDR = -0x3f879685
constant SIOCGLIFCONF (line 841) | SIOCGLIFCONF = -0x3fef965b
constant SIOCGLIFDADSTATE (line 842) | SIOCGLIFDADSTATE = -0x3f879642
constant SIOCGLIFDSTADDR (line 843) | SIOCGLIFDSTADDR = -0x3f87968d
constant SIOCGLIFFLAGS (line 844) | SIOCGLIFFLAGS = -0x3f87968b
constant SIOCGLIFGROUPINFO (line 845) | SIOCGLIFGROUPINFO = -0x3f4b9663
constant SIOCGLIFGROUPNAME (line 846) | SIOCGLIFGROUPNAME = -0x3f879664
constant SIOCGLIFHWADDR (line 847) | SIOCGLIFHWADDR = -0x3f879640
constant SIOCGLIFINDEX (line 848) | SIOCGLIFINDEX = -0x3f87967b
constant SIOCGLIFLNKINFO (line 849) | SIOCGLIFLNKINFO = -0x3f879674
constant SIOCGLIFMETRIC (line 850) | SIOCGLIFMETRIC = -0x3f879681
constant SIOCGLIFMTU (line 851) | SIOCGLIFMTU = -0x3f879686
constant SIOCGLIFMUXID (line 852) | SIOCGLIFMUXID = -0x3f87967d
constant SIOCGLIFNETMASK (line 853) | SIOCGLIFNETMASK = -0x3f879683
constant SIOCGLIFNUM (line 854) | SIOCGLIFNUM = -0x3ff3967e
constant SIOCGLIFSRCOF (line 855) | SIOCGLIFSRCOF = -0x3fef964f
constant SIOCGLIFSUBNET (line 856) | SIOCGLIFSUBNET = -0x3f879676
constant SIOCGLIFTOKEN (line 857) | SIOCGLIFTOKEN = -0x3f879678
constant SIOCGLIFUSESRC (line 858) | SIOCGLIFUSESRC = -0x3f879651
constant SIOCGLIFZONE (line 859) | SIOCGLIFZONE = -0x3f879656
constant SIOCGLOWAT (line 860) | SIOCGLOWAT = 0x40047303
constant SIOCGMSFILTER (line 861) | SIOCGMSFILTER = -0x3ffb964e
constant SIOCGPGRP (line 862) | SIOCGPGRP = 0x40047309
constant SIOCGSTAMP (line 863) | SIOCGSTAMP = -0x3fef9646
constant SIOCGXARP (line 864) | SIOCGXARP = -0x3fff9659
constant SIOCIFDETACH (line 865) | SIOCIFDETACH = -0x7fdf96c8
constant SIOCILB (line 866) | SIOCILB = -0x3ffb9645
constant SIOCLIFADDIF (line 867) | SIOCLIFADDIF = -0x3f879691
constant SIOCLIFDELND (line 868) | SIOCLIFDELND = -0x7f879673
constant SIOCLIFGETND (line 869) | SIOCLIFGETND = -0x3f879672
constant SIOCLIFREMOVEIF (line 870) | SIOCLIFREMOVEIF = -0x7f879692
constant SIOCLIFSETND (line 871) | SIOCLIFSETND = -0x7f879671
constant SIOCLOWER (line 872) | SIOCLOWER = -0x7fdf96d7
constant SIOCSARP (line 873) | SIOCSARP = -0x7fdb96e2
constant SIOCSCTPGOPT (line 874) | SIOCSCTPGOPT = -0x3fef9653
constant SIOCSCTPPEELOFF (line 875) | SIOCSCTPPEELOFF = -0x3ffb9652
constant SIOCSCTPSOPT (line 876) | SIOCSCTPSOPT = -0x7fef9654
constant SIOCSENABLESDP (line 877) | SIOCSENABLESDP = -0x3ffb9649
constant SIOCSETPROP (line 878) | SIOCSETPROP = -0x7ffb8f43
constant SIOCSETSYNC (line 879) | SIOCSETSYNC = -0x7fdf96d4
constant SIOCSHIWAT (line 880) | SIOCSHIWAT = -0x7ffb8d00
constant SIOCSIFADDR (line 881) | SIOCSIFADDR = -0x7fdf96f4
constant SIOCSIFBRDADDR (line 882) | SIOCSIFBRDADDR = -0x7fdf96e8
constant SIOCSIFDSTADDR (line 883) | SIOCSIFDSTADDR = -0x7fdf96f2
constant SIOCSIFFLAGS (line 884) | SIOCSIFFLAGS = -0x7fdf96f0
constant SIOCSIFINDEX (line 885) | SIOCSIFINDEX = -0x7fdf96a5
constant SIOCSIFMEM (line 886) | SIOCSIFMEM = -0x7fdf96ee
constant SIOCSIFMETRIC (line 887) | SIOCSIFMETRIC = -0x7fdf96e4
constant SIOCSIFMTU (line 888) | SIOCSIFMTU = -0x7fdf96eb
constant SIOCSIFMUXID (line 889) | SIOCSIFMUXID = -0x7fdf96a7
constant SIOCSIFNAME (line 890) | SIOCSIFNAME = -0x7fdf96b7
constant SIOCSIFNETMASK (line 891) | SIOCSIFNETMASK = -0x7fdf96e6
constant SIOCSIP6ADDRPOLICY (line 892) | SIOCSIP6ADDRPOLICY = -0x7fff965d
constant SIOCSIPMSFILTER (line 893) | SIOCSIPMSFILTER = -0x7ffb964b
constant SIOCSLGETREQ (line 894) | SIOCSLGETREQ = -0x3fdf96b9
constant SIOCSLIFADDR (line 895) | SIOCSLIFADDR = -0x7f879690
constant SIOCSLIFBRDADDR (line 896) | SIOCSLIFBRDADDR = -0x7f879684
constant SIOCSLIFDSTADDR (line 897) | SIOCSLIFDSTADDR = -0x7f87968e
constant SIOCSLIFFLAGS (line 898) | SIOCSLIFFLAGS = -0x7f87968c
constant SIOCSLIFGROUPNAME (line 899) | SIOCSLIFGROUPNAME = -0x7f879665
constant SIOCSLIFINDEX (line 900) | SIOCSLIFINDEX = -0x7f87967a
constant SIOCSLIFLNKINFO (line 901) | SIOCSLIFLNKINFO = -0x7f879675
constant SIOCSLIFMETRIC (line 902) | SIOCSLIFMETRIC = -0x7f879680
constant SIOCSLIFMTU (line 903) | SIOCSLIFMTU = -0x7f879687
constant SIOCSLIFMUXID (line 904) | SIOCSLIFMUXID = -0x7f87967c
constant SIOCSLIFNAME (line 905) | SIOCSLIFNAME = -0x3f87967f
constant SIOCSLIFNETMASK (line 906) | SIOCSLIFNETMASK = -0x7f879682
constant SIOCSLIFPREFIX (line 907) | SIOCSLIFPREFIX = -0x3f879641
constant SIOCSLIFSUBNET (line 908) | SIOCSLIFSUBNET = -0x7f879677
constant SIOCSLIFTOKEN (line 909) | SIOCSLIFTOKEN = -0x7f879679
constant SIOCSLIFUSESRC (line 910) | SIOCSLIFUSESRC = -0x7f879650
constant SIOCSLIFZONE (line 911) | SIOCSLIFZONE = -0x7f879655
constant SIOCSLOWAT (line 912) | SIOCSLOWAT = -0x7ffb8cfe
constant SIOCSLSTAT (line 913) | SIOCSLSTAT = -0x7fdf96b8
constant SIOCSMSFILTER (line 914) | SIOCSMSFILTER = -0x7ffb964d
constant SIOCSPGRP (line 915) | SIOCSPGRP = -0x7ffb8cf8
constant SIOCSPROMISC (line 916) | SIOCSPROMISC = -0x7ffb96d0
constant SIOCSQPTR (line 917) | SIOCSQPTR = -0x3ffb9648
constant SIOCSSDSTATS (line 918) | SIOCSSDSTATS = -0x3fdf96d2
constant SIOCSSESTATS (line 919) | SIOCSSESTATS = -0x3fdf96d1
constant SIOCSXARP (line 920) | SIOCSXARP = -0x7fff965a
constant SIOCTMYADDR (line 921) | SIOCTMYADDR = -0x3ff79670
constant SIOCTMYSITE (line 922) | SIOCTMYSITE = -0x3ff7966e
constant SIOCTONLINK (line 923) | SIOCTONLINK = -0x3ff7966f
constant SIOCUPPER (line 924) | SIOCUPPER = -0x7fdf96d8
constant SIOCX25RCV (line 925) | SIOCX25RCV = -0x3fdf96c4
constant SIOCX25TBL (line 926) | SIOCX25TBL = -0x3fdf96c3
constant SIOCX25XMT (line 927) | SIOCX25XMT = -0x3fdf96c5
constant SIOCXPROTO (line 928) | SIOCXPROTO = 0x20007337
constant SOCK_CLOEXEC (line 929) | SOCK_CLOEXEC = 0x80000
constant SOCK_DGRAM (line 930) | SOCK_DGRAM = 0x1
constant SOCK_NDELAY (line 931) | SOCK_NDELAY = 0x200000
constant SOCK_NONBLOCK (line 932) | SOCK_NONBLOCK = 0x100000
constant SOCK_RAW (line 933) | SOCK_RAW = 0x4
constant SOCK_RDM (line 934) | SOCK_RDM = 0x5
constant SOCK_SEQPACKET (line 935) | SOCK_SEQPACKET = 0x6
constant SOCK_STREAM (line 936) | SOCK_STREAM = 0x2
constant SOCK_TYPE_MASK (line 937) | SOCK_TYPE_MASK = 0xffff
constant SOL_FILTER (line 938) | SOL_FILTER = 0xfffc
constant SOL_PACKET (line 939) | SOL_PACKET = 0xfffd
constant SOL_ROUTE (line 940) | SOL_ROUTE = 0xfffe
constant SOL_SOCKET (line 941) | SOL_SOCKET = 0xffff
constant SOMAXCONN (line 942) | SOMAXCONN = 0x80
constant SO_ACCEPTCONN (line 943) | SO_ACCEPTCONN = 0x2
constant SO_ALL (line 944) | SO_ALL = 0x3f
constant SO_ALLZONES (line 945) | SO_ALLZONES = 0x1014
constant SO_ANON_MLP (line 946) | SO_ANON_MLP = 0x100a
constant SO_ATTACH_FILTER (line 947) | SO_ATTACH_FILTER = 0x40000001
constant SO_BAND (line 948) | SO_BAND = 0x4000
constant SO_BROADCAST (line 949) | SO_BROADCAST = 0x20
constant SO_COPYOPT (line 950) | SO_COPYOPT = 0x80000
constant SO_DEBUG (line 951) | SO_DEBUG = 0x1
constant SO_DELIM (line 952) | SO_DELIM = 0x8000
constant SO_DETACH_FILTER (line 953) | SO_DETACH_FILTER = 0x40000002
constant SO_DGRAM_ERRIND (line 954) | SO_DGRAM_ERRIND = 0x200
constant SO_DOMAIN (line 955) | SO_DOMAIN = 0x100c
constant SO_DONTLINGER (line 956) | SO_DONTLINGER = -0x81
constant SO_DONTROUTE (line 957) | SO_DONTROUTE = 0x10
constant SO_ERROPT (line 958) | SO_ERROPT = 0x40000
constant SO_ERROR (line 959) | SO_ERROR = 0x1007
constant SO_EXCLBIND (line 960) | SO_EXCLBIND = 0x1015
constant SO_HIWAT (line 961) | SO_HIWAT = 0x10
constant SO_ISNTTY (line 962) | SO_ISNTTY = 0x800
constant SO_ISTTY (line 963) | SO_ISTTY = 0x400
constant SO_KEEPALIVE (line 964) | SO_KEEPALIVE = 0x8
constant SO_LINGER (line 965) | SO_LINGER = 0x80
constant SO_LOWAT (line 966) | SO_LOWAT = 0x20
constant SO_MAC_EXEMPT (line 967) | SO_MAC_EXEMPT = 0x100b
constant SO_MAC_IMPLICIT (line 968) | SO_MAC_IMPLICIT = 0x1016
constant SO_MAXBLK (line 969) | SO_MAXBLK = 0x100000
constant SO_MAXPSZ (line 970) | SO_MAXPSZ = 0x8
constant SO_MINPSZ (line 971) | SO_MINPSZ = 0x4
constant SO_MREADOFF (line 972) | SO_MREADOFF = 0x80
constant SO_MREADON (line 973) | SO_MREADON = 0x40
constant SO_NDELOFF (line 974) | SO_NDELOFF = 0x200
constant SO_NDELON (line 975) | SO_NDELON = 0x100
constant SO_NODELIM (line 976) | SO_NODELIM = 0x10000
constant SO_OOBINLINE (line 977) | SO_OOBINLINE = 0x100
constant SO_PROTOTYPE (line 978) | SO_PROTOTYPE = 0x1009
constant SO_RCVBUF (line 979) | SO_RCVBUF = 0x1002
constant SO_RCVLOWAT (line 980) | SO_RCVLOWAT = 0x1004
constant SO_RCVPSH (line 981) | SO_RCVPSH = 0x100d
constant SO_RCVTIMEO (line 982) | SO_RCVTIMEO = 0x1006
constant SO_READOPT (line 983) | SO_READOPT = 0x1
constant SO_RECVUCRED (line 984) | SO_RECVUCRED = 0x400
constant SO_REUSEADDR (line 985) | SO_REUSEADDR = 0x4
constant SO_SECATTR (line 986) | SO_SECATTR = 0x1011
constant SO_SNDBUF (line 987) | SO_SNDBUF = 0x1001
constant SO_SNDLOWAT (line 988) | SO_SNDLOWAT = 0x1003
constant SO_SNDTIMEO (line 989) | SO_SNDTIMEO = 0x1005
constant SO_STRHOLD (line 990) | SO_STRHOLD = 0x20000
constant SO_TAIL (line 991) | SO_TAIL = 0x200000
constant SO_TIMESTAMP (line 992) | SO_TIMESTAMP = 0x1013
constant SO_TONSTOP (line 993) | SO_TONSTOP = 0x2000
constant SO_TOSTOP (line 994) | SO_TOSTOP = 0x1000
constant SO_TYPE (line 995) | SO_TYPE = 0x1008
constant SO_USELOOPBACK (line 996) | SO_USELOOPBACK = 0x40
constant SO_VRRP (line 997) | SO_VRRP = 0x1017
constant SO_WROFF (line 998) | SO_WROFF = 0x2
constant S_ENFMT (line 999) | S_ENFMT = 0x400
constant S_IAMB (line 1000) | S_IAMB = 0x1ff
constant S_IEXEC (line 1001) | S_IEXEC = 0x40
constant S_IFBLK (line 1002) | S_IFBLK = 0x6000
constant S_IFCHR (line 1003) | S_IFCHR = 0x2000
constant S_IFDIR (line 1004) | S_IFDIR = 0x4000
constant S_IFDOOR (line 1005) | S_IFDOOR = 0xd000
constant S_IFIFO (line 1006) | S_IFIFO = 0x1000
constant S_IFLNK (line 1007) | S_IFLNK = 0xa000
constant S_IFMT (line 1008) | S_IFMT = 0xf000
constant S_IFNAM (line 1009) | S_IFNAM = 0x5000
constant S_IFPORT (line 1010) | S_IFPORT = 0xe000
constant S_IFREG (line 1011) | S_IFREG = 0x8000
constant S_IFSOCK (line 1012) | S_IFSOCK = 0xc000
constant S_INSEM (line 1013) | S_INSEM = 0x1
constant S_INSHD (line 1014) | S_INSHD = 0x2
constant S_IREAD (line 1015) | S_IREAD = 0x100
constant S_IRGRP (line 1016) | S_IRGRP = 0x20
constant S_IROTH (line 1017) | S_IROTH = 0x4
constant S_IRUSR (line 1018) | S_IRUSR = 0x100
constant S_IRWXG (line 1019) | S_IRWXG = 0x38
constant S_IRWXO (line 1020) | S_IRWXO = 0x7
constant S_IRWXU (line 1021) | S_IRWXU = 0x1c0
constant S_ISGID (line 1022) | S_ISGID = 0x400
constant S_ISUID (line 1023) | S_ISUID = 0x800
constant S_ISVTX (line 1024) | S_ISVTX = 0x200
constant S_IWGRP (line 1025) | S_IWGRP = 0x10
constant S_IWOTH (line 1026) | S_IWOTH = 0x2
constant S_IWRITE (line 1027) | S_IWRITE = 0x80
constant S_IWUSR (line 1028) | S_IWUSR = 0x80
constant S_IXGRP (line 1029) | S_IXGRP = 0x8
constant S_IXOTH (line 1030) | S_IXOTH = 0x1
constant S_IXUSR (line 1031) | S_IXUSR = 0x40
constant TAB0 (line 1032) | TAB0 = 0x0
constant TAB1 (line 1033) | TAB1 = 0x800
constant TAB2 (line 1034) | TAB2 = 0x1000
constant TAB3 (line 1035) | TAB3 = 0x1800
constant TABDLY (line 1036) | TABDLY = 0x1800
constant TCFLSH (line 1037) | TCFLSH = 0x5407
constant TCGETA (line 1038) | TCGETA = 0x5401
constant TCGETS (line 1039) | TCGETS = 0x540d
constant TCIFLUSH (line 1040) | TCIFLUSH = 0x0
constant TCIOFF (line 1041) | TCIOFF = 0x2
constant TCIOFLUSH (line 1042) | TCIOFLUSH = 0x2
constant TCION (line 1043) | TCION = 0x3
constant TCOFLUSH (line 1044) | TCOFLUSH = 0x1
constant TCOOFF (line 1045) | TCOOFF = 0x0
constant TCOON (line 1046) | TCOON = 0x1
constant TCP_ABORT_THRESHOLD (line 1047) | TCP_ABORT_THRESHOLD = 0x11
constant TCP_ANONPRIVBIND (line 1048) | TCP_ANONPRIVBIND = 0x20
constant TCP_CONN_ABORT_THRESHOLD (line 1049) | TCP_CONN_ABORT_THRESHOLD = 0x13
constant TCP_CONN_NOTIFY_THRESHOLD (line 1050) | TCP_CONN_NOTIFY_THRESHOLD = 0x12
constant TCP_CORK (line 1051) | TCP_CORK = 0x18
constant TCP_EXCLBIND (line 1052) | TCP_EXCLBIND = 0x21
constant TCP_INIT_CWND (line 1053) | TCP_INIT_CWND = 0x15
constant TCP_KEEPALIVE (line 1054) | TCP_KEEPALIVE = 0x8
constant TCP_KEEPALIVE_ABORT_THRESHOLD (line 1055) | TCP_KEEPALIVE_ABORT_THRESHOLD = 0x17
constant TCP_KEEPALIVE_THRESHOLD (line 1056) | TCP_KEEPALIVE_THRESHOLD = 0x16
constant TCP_KEEPCNT (line 1057) | TCP_KEEPCNT = 0x23
constant TCP_KEEPIDLE (line 1058) | TCP_KEEPIDLE = 0x22
constant TCP_KEEPINTVL (line 1059) | TCP_KEEPINTVL = 0x24
constant TCP_LINGER2 (line 1060) | TCP_LINGER2 = 0x1c
constant TCP_MAXSEG (line 1061) | TCP_MAXSEG = 0x2
constant TCP_MSS (line 1062) | TCP_MSS = 0x218
constant TCP_NODELAY (line 1063) | TCP_NODELAY = 0x1
constant TCP_NOTIFY_THRESHOLD (line 1064) | TCP_NOTIFY_THRESHOLD = 0x10
constant TCP_RECVDSTADDR (line 1065) | TCP_RECVDSTADDR = 0x14
constant TCP_RTO_INITIAL (line 1066) | TCP_RTO_INITIAL = 0x19
constant TCP_RTO_MAX (line 1067) | TCP_RTO_MAX = 0x1b
constant TCP_RTO_MIN (line 1068) | TCP_RTO_MIN = 0x1a
constant TCSAFLUSH (line 1069) | TCSAFLUSH = 0x5410
constant TCSBRK (line 1070) | TCSBRK = 0x5405
constant TCSETA (line 1071) | TCSETA = 0x5402
constant TCSETAF (line 1072) | TCSETAF = 0x5404
constant TCSETAW (line 1073) | TCSETAW = 0x5403
constant TCSETS (line 1074) | TCSETS = 0x540e
constant TCSETSF (line 1075) | TCSETSF = 0x5410
constant TCSETSW (line 1076) | TCSETSW = 0x540f
constant TCXONC (line 1077) | TCXONC = 0x5406
constant TIOC (line 1078) | TIOC = 0x5400
constant TIOCCBRK (line 1079) | TIOCCBRK = 0x747a
constant TIOCCDTR (line 1080) | TIOCCDTR = 0x7478
constant TIOCCILOOP (line 1081) | TIOCCILOOP = 0x746c
constant TIOCEXCL (line 1082) | TIOCEXCL = 0x740d
constant TIOCFLUSH (line 1083) | TIOCFLUSH = 0x7410
constant TIOCGETC (line 1084) | TIOCGETC = 0x7412
constant TIOCGETD (line 1085) | TIOCGETD = 0x7400
constant TIOCGETP (line 1086) | TIOCGETP = 0x7408
constant TIOCGLTC (line 1087) | TIOCGLTC = 0x7474
constant TIOCGPGRP (line 1088) | TIOCGPGRP = 0x7414
constant TIOCGPPS (line 1089) | TIOCGPPS = 0x547d
constant TIOCGPPSEV (line 1090) | TIOCGPPSEV = 0x547f
constant TIOCGSID (line 1091) | TIOCGSID = 0x7416
constant TIOCGSOFTCAR (line 1092) | TIOCGSOFTCAR = 0x5469
constant TIOCGWINSZ (line 1093) | TIOCGWINSZ = 0x5468
constant TIOCHPCL (line 1094) | TIOCHPCL = 0x7402
constant TIOCKBOF (line 1095) | TIOCKBOF = 0x5409
constant TIOCKBON (line 1096) | TIOCKBON = 0x5408
constant TIOCLBIC (line 1097) | TIOCLBIC = 0x747e
constant TIOCLBIS (line 1098) | TIOCLBIS = 0x747f
constant TIOCLGET (line 1099) | TIOCLGET = 0x747c
constant TIOCLSET (line 1100) | TIOCLSET = 0x747d
constant TIOCMBIC (line 1101) | TIOCMBIC = 0x741c
constant TIOCMBIS (line 1102) | TIOCMBIS = 0x741b
constant TIOCMGET (line 1103) | TIOCMGET = 0x741d
constant TIOCMSET (line 1104) | TIOCMSET = 0x741a
constant TIOCM_CAR (line 1105) | TIOCM_CAR = 0x40
constant TIOCM_CD (line 1106) | TIOCM_CD = 0x40
constant TIOCM_CTS (line 1107) | TIOCM_CTS = 0x20
constant TIOCM_DSR (line 1108) | TIOCM_DSR = 0x100
constant TIOCM_DTR (line 1109) | TIOCM_DTR = 0x2
constant TIOCM_LE (line 1110) | TIOCM_LE = 0x1
constant TIOCM_RI (line 1111) | TIOCM_RI = 0x80
constant TIOCM_RNG (line 1112) | TIOCM_RNG = 0x80
constant TIOCM_RTS (line 1113) | TIOCM_RTS = 0x4
constant TIOCM_SR (line 1114) | TIOCM_SR = 0x10
constant TIOCM_ST (line 1115) | TIOCM_ST = 0x8
constant TIOCNOTTY (line 1116) | TIOCNOTTY = 0x7471
constant TIOCNXCL (line 1117) | TIOCNXCL = 0x740e
constant TIOCOUTQ (line 1118) | TIOCOUTQ = 0x7473
constant TIOCREMOTE (line 1119) | TIOCREMOTE = 0x741e
constant TIOCSBRK (line 1120) | TIOCSBRK = 0x747b
constant TIOCSCTTY (line 1121) | TIOCSCTTY = 0x7484
constant TIOCSDTR (line 1122) | TIOCSDTR = 0x7479
constant TIOCSETC (line 1123) | TIOCSETC = 0x7411
constant TIOCSETD (line 1124) | TIOCSETD = 0x7401
constant TIOCSETN (line 1125) | TIOCSETN = 0x740a
constant TIOCSETP (line 1126) | TIOCSETP = 0x7409
constant TIOCSIGNAL (line 1127) | TIOCSIGNAL = 0x741f
constant TIOCSILOOP (line 1128) | TIOCSILOOP = 0x746d
constant TIOCSLTC (line 1129) | TIOCSLTC = 0x7475
constant TIOCSPGRP (line 1130) | TIOCSPGRP = 0x7415
constant TIOCSPPS (line 1131) | TIOCSPPS = 0x547e
constant TIOCSSOFTCAR (line 1132) | TIOCSSOFTCAR = 0x546a
constant TIOCSTART (line 1133) | TIOCSTART = 0x746e
constant TIOCSTI (line 1134) | TIOCSTI = 0x7417
constant TIOCSTOP (line 1135) | TIOCSTOP = 0x746f
constant TIOCSWINSZ (line 1136) | TIOCSWINSZ = 0x5467
constant TOSTOP (line 1137) | TOSTOP = 0x100
constant UTIME_NOW (line 1138) | UTIME_NOW = -0x1
constant UTIME_OMIT (line 1139) | UTIME_OMIT = -0x2
constant VCEOF (line 1140) | VCEOF = 0x8
constant VCEOL (line 1141) | VCEOL = 0x9
constant VDISCARD (line 1142) | VDISCARD = 0xd
constant VDSUSP (line 1143) | VDSUSP = 0xb
constant VEOF (line 1144) | VEOF = 0x4
constant VEOL (line 1145) | VEOL = 0x5
constant VEOL2 (line 1146) | VEOL2 = 0x6
constant VERASE (line 1147) | VERASE = 0x2
constant VERASE2 (line 1148) | VERASE2 = 0x11
constant VINTR (line 1149) | VINTR = 0x0
constant VKILL (line 1150) | VKILL = 0x3
constant VLNEXT (line 1151) | VLNEXT = 0xf
constant VMIN (line 1152) | VMIN = 0x4
constant VQUIT (line 1153) | VQUIT = 0x1
constant VREPRINT (line 1154) | VREPRINT = 0xc
constant VSTART (line 1155) | VSTART = 0x8
constant VSTATUS (line 1156) | VSTATUS = 0x10
constant VSTOP (line 1157) | VSTOP = 0x9
constant VSUSP (line 1158) | VSUSP = 0xa
constant VSWTCH (line 1159) | VSWTCH = 0x7
constant VT0 (line 1160) | VT0 = 0x0
constant VT1 (line 1161) | VT1 = 0x4000
constant VTDLY (line 1162) | VTDLY = 0x4000
constant VTIME (line 1163) | VTIME = 0x5
constant VWERASE (line 1164) | VWERASE = 0xe
constant WCONTFLG (line 1165) | WCONTFLG = 0xffff
constant WCONTINUED (line 1166) | WCONTINUED = 0x8
constant WCOREFLG (line 1167) | WCOREFLG = 0x80
constant WEXITED (line 1168) | WEXITED = 0x1
constant WNOHANG (line 1169) | WNOHANG = 0x40
constant WNOWAIT (line 1170) | WNOWAIT = 0x80
constant WOPTMASK (line 1171) | WOPTMASK = 0xcf
constant WRAP (line 1172) | WRAP = 0x20000
constant WSIGMASK (line 1173) | WSIGMASK = 0x7f
constant WSTOPFLG (line 1174) | WSTOPFLG = 0x7f
constant WSTOPPED (line 1175) | WSTOPPED = 0x4
constant WTRAPPED (line 1176) | WTRAPPED = 0x2
constant WUNTRACED (line 1177) | WUNTRACED = 0x4
constant XCASE (line 1178) | XCASE = 0x4
constant XTABS (line 1179) | XTABS = 0x1800
constant E2BIG (line 1184) | E2BIG = syscall.Errno(0x7)
constant EACCES (line 1185) | EACCES = syscall.Errno(0xd)
constant EADDRINUSE (line 1186) | EADDRINUSE = syscall.Errno(0x7d)
constant EADDRNOTAVAIL (line 1187) | EADDRNOTAVAIL = syscall.Errno(0x7e)
constant EADV (line 1188) | EADV = syscall.Errno(0x44)
constant EAFNOSUPPORT (line 1189) | EAFNOSUPPORT = syscall.Errno(0x7c)
constant EAGAIN (line 1190) | EAGAIN = syscall.Errno(0xb)
constant EALREADY (line 1191) | EALREADY = syscall.Errno(0x95)
constant EBADE (line 1192) | EBADE = syscall.Errno(0x32)
constant EBADF (line 1193) | EBADF = syscall.Errno(0x9)
constant EBADFD (line 1194) | EBADFD = syscall.Errno(0x51)
constant EBADMSG (line 1195) | EBADMSG = syscall.Errno(0x4d)
constant EBADR (line 1196) | EBADR = syscall.Errno(0x33)
constant EBADRQC (line 1197) | EBADRQC = syscall.Errno(0x36)
constant EBADSLT (line 1198) | EBADSLT = syscall.Errno(0x37)
constant EBFONT (line 1199) | EBFONT = syscall.Errno(0x39)
constant EBUSY (line 1200) | EBUSY = syscall.Errno(0x10)
constant ECANCELED (line 1201) | ECANCELED = syscall.Errno(0x2f)
constant ECHILD (line 1202) | ECHILD = syscall.Errno(0xa)
constant ECHRNG (line 1203) | ECHRNG = syscall.Errno(0x25)
constant ECOMM (line 1204) | ECOMM = syscall.Errno(0x46)
constant ECONNABORTED (line 1205) | ECONNABORTED = syscall.Errno(0x82)
constant ECONNREFUSED (line 1206) | ECONNREFUSED = syscall.Errno(0x92)
constant ECONNRESET (line 1207) | ECONNRESET = syscall.Errno(0x83)
constant EDEADLK (line 1208) | EDEADLK = syscall.Errno(0x2d)
constant EDEADLOCK (line 1209) | EDEADLOCK = syscall.Errno(0x38)
constant EDESTADDRREQ (line 1210) | EDESTADDRREQ = syscall.Errno(0x60)
constant EDOM (line 1211) | EDOM = syscall.Errno(0x21)
constant EDQUOT (line 1212) | EDQUOT = syscall.Errno(0x31)
constant EEXIST (line 1213) | EEXIST = syscall.Errno(0x11)
constant EFAULT (line 1214) | EFAULT = syscall.Errno(0xe)
constant EFBIG (line 1215) | EFBIG = syscall.Errno(0x1b)
constant EHOSTDOWN (line 1216) | EHOSTDOWN = syscall.Errno(0x93)
constant EHOSTUNREACH (line 1217) | EHOSTUNREACH = syscall.Errno(0x94)
constant EIDRM (line 1218) | EIDRM = syscall.Errno(0x24)
constant EILSEQ (line 1219) | EILSEQ = syscall.Errno(0x58)
constant EINPROGRESS (line 1220) | EINPROGRESS = syscall.Errno(0x96)
constant EINTR (line 1221) | EINTR = syscall.Errno(0x4)
constant EINVAL (line 1222) | EINVAL = syscall.Errno(0x16)
constant EIO (line 1223) | EIO = syscall.Errno(0x5)
constant EISCONN (line 1224) | EISCONN = syscall.Errno(0x85)
constant EISDIR (line 1225) | EISDIR = syscall.Errno(0x15)
constant EL2HLT (line 1226) | EL2HLT = syscall.Errno(0x2c)
constant EL2NSYNC (line 1227) | EL2NSYNC = syscall.Errno(0x26)
constant EL3HLT (line 1228) | EL3HLT = syscall.Errno(0x27)
constant EL3RST (line 1229) | EL3RST = syscall.Errno(0x28)
constant ELIBACC (line 1230) | ELIBACC = syscall.Errno(0x53)
constant ELIBBAD (line 1231) | ELIBBAD = syscall.Errno(0x54)
constant ELIBEXEC (line 1232) | ELIBEXEC = syscall.Errno(0x57)
constant ELIBMAX (line 1233) | ELIBMAX = syscall.Errno(0x56)
constant ELIBSCN (line 1234) | ELIBSCN = syscall.Errno(0x55)
constant ELNRNG (line 1235) | ELNRNG = syscall.Errno(0x29)
constant ELOCKUNMAPPED (line 1236) | ELOCKUNMAPPED = syscall.Errno(0x48)
constant ELOOP (line 1237) | ELOOP = syscall.Errno(0x5a)
constant EMFILE (line 1238) | EMFILE = syscall.Errno(0x18)
constant EMLINK (line 1239) | EMLINK = syscall.Errno(0x1f)
constant EMSGSIZE (line 1240) | EMSGSIZE = syscall.Errno(0x61)
constant EMULTIHOP (line 1241) | EMULTIHOP = syscall.Errno(0x4a)
constant ENAMETOOLONG (line 1242) | ENAMETOOLONG = syscall.Errno(0x4e)
constant ENETDOWN (line 1243) | ENETDOWN = syscall.Errno(0x7f)
constant ENETRESET (line 1244) | ENETRESET = syscall.Errno(0x81)
constant ENETUNREACH (line 1245) | ENETUNREACH = syscall.Errno(0x80)
constant ENFILE (line 1246) | ENFILE = syscall.Errno(0x17)
constant ENOANO (line 1247) | ENOANO = syscall.Errno(0x35)
constant ENOBUFS (line 1248) | ENOBUFS = syscall.Errno(0x84)
constant ENOCSI (line 1249) | ENOCSI = syscall.Errno(0x2b)
constant ENODATA (line 1250) | ENODATA = syscall.Errno(0x3d)
constant ENODEV (line 1251) | ENODEV = syscall.Errno(0x13)
constant ENOENT (line 1252) | ENOENT = syscall.Errno(0x2)
constant ENOEXEC (line 1253) | ENOEXEC = syscall.Errno(0x8)
constant ENOLCK (line 1254) | ENOLCK = syscall.Errno(0x2e)
constant ENOLINK (line 1255) | ENOLINK = syscall.Errno(0x43)
constant ENOMEM (line 1256) | ENOMEM = syscall.Errno(0xc)
constant ENOMSG (line 1257) | ENOMSG = syscall.Errno(0x23)
constant ENONET (line 1258) | ENONET = syscall.Errno(0x40)
constant ENOPKG (line 1259) | ENOPKG = syscall.Errno(0x41)
constant ENOPROTOOPT (line 1260) | ENOPROTOOPT = syscall.Errno(0x63)
constant ENOSPC (line 1261) | ENOSPC = syscall.Errno(0x1c)
constant ENOSR (line 1262) | ENOSR = syscall.Errno(0x3f)
constant ENOSTR (line 1263) | ENOSTR = syscall.Errno(0x3c)
constant ENOSYS (line 1264) | ENOSYS = syscall.Errno(0x59)
constant ENOTACTIVE (line 1265) | ENOTACTIVE = syscall.Errno(0x49)
constant ENOTBLK (line 1266) | ENOTBLK = syscall.Errno(0xf)
constant ENOTCONN (line 1267) | ENOTCONN = syscall.Errno(0x86)
constant ENOTDIR (line 1268) | ENOTDIR = syscall.Errno(0x14)
constant ENOTEMPTY (line 1269) | ENOTEMPTY = syscall.Errno(0x5d)
constant ENOTRECOVERABLE (line 1270) | ENOTRECOVERABLE = syscall.Errno(0x3b)
constant ENOTSOCK (line 1271) | ENOTSOCK = syscall.Errno(0x5f)
constant ENOTSUP (line 1272) | ENOTSUP = syscall.Errno(0x30)
constant ENOTTY (line 1273) | ENOTTY = syscall.Errno(0x19)
constant ENOTUNIQ (line 1274) | ENOTUNIQ = syscall.Errno(0x50)
constant ENXIO (line 1275) | ENXIO = syscall.Errno(0x6)
constant EOPNOTSUPP (line 1276) | EOPNOTSUPP = syscall.Errno(0x7a)
constant EOVERFLOW (line 1277) | EOVERFLOW = syscall.Errno(0x4f)
constant EOWNERDEAD (line 1278) | EOWNERDEAD = syscall.Errno(0x3a)
constant EPERM (line 1279) | EPERM = syscall.Errno(0x1)
constant EPFNOSUPPORT (line 1280) | EPFNOSUPPORT = syscall.Errno(0x7b)
constant EPIPE (line 1281) | EPIPE = syscall.Errno(0x20)
constant EPROTO (line 1282) | EPROTO = syscall.Errno(0x47)
constant EPROTONOSUPPORT (line 1283) | EPROTONOSUPPORT = syscall.Errno(0x78)
constant EPROTOTYPE (line 1284) | EPROTOTYPE = syscall.Errno(0x62)
constant ERANGE (line 1285) | ERANGE = syscall.Errno(0x22)
constant EREMCHG (line 1286) | EREMCHG = syscall.Errno(0x52)
constant EREMOTE (line 1287) | EREMOTE = syscall.Errno(0x42)
constant ERESTART (line 1288) | ERESTART = syscall.Errno(0x5b)
constant EROFS (line 1289) | EROFS = syscall.Errno(0x1e)
constant ESHUTDOWN (line 1290) | ESHUTDOWN = syscall.Errno(0x8f)
constant ESOCKTNOSUPPORT (line 1291) | ESOCKTNOSUPPORT = syscall.Errno(0x79)
constant ESPIPE (line 1292) | ESPIPE = syscall.Errno(0x1d)
constant ESRCH (line 1293) | ESRCH = syscall.Errno(0x3)
constant ESRMNT (line 1294) | ESRMNT = syscall.Errno(0x45)
constant ESTALE (line 1295) | ESTALE = syscall.Errno(0x97)
constant ESTRPIPE (line 1296) | ESTRPIPE = syscall.Errno(0x5c)
constant ETIME (line 1297) | ETIME = syscall.Errno(0x3e)
constant ETIMEDOUT (line 1298) | ETIMEDOUT = syscall.Errno(0x91)
constant ETOOMANYREFS (line 1299) | ETOOMANYREFS = syscall.Errno(0x90)
constant ETXTBSY (line 1300) | ETXTBSY = syscall.Errno(0x1a)
constant EUNATCH (line 1301) | EUNATCH = syscall.Errno(0x2a)
constant EUSERS (line 1302) | EUSERS = syscall.Errno(0x5e)
constant EWOULDBLOCK (line 1303) | EWOULDBLOCK = syscall.Errno(0xb)
constant EXDEV (line 1304) | EXDEV = syscall.Errno(0x12)
constant EXFULL (line 1305) | EXFULL = syscall.Errno(0x34)
constant SIGABRT (line 1310) | SIGABRT = syscall.Signal(0x6)
constant SIGALRM (line 1311) | SIGALRM = syscall.Signal(0xe)
constant SIGBUS (line 1312) | SIGBUS = syscall.Signal(0xa)
constant SIGCANCEL (line 1313) | SIGCANCEL = syscall.Signal(0x24)
constant SIGCHLD (line 1314) | SIGCHLD = syscall.Signal(0x12)
constant SIGCLD (line 1315) | SIGCLD = syscall.Signal(0x12)
constant SIGCONT (line 1316) | SIGCONT = syscall.Signal(0x19)
constant SIGEMT (line 1317) | SIGEMT = syscall.Signal(0x7)
constant SIGFPE (line 1318) | SIGFPE = syscall.Signal(0x8)
constant SIGFREEZE (line 1319) | SIGFREEZE = syscall.Signal(0x22)
constant SIGHUP (line 1320) | SIGHUP = syscall.Signal(0x1)
constant SIGILL (line 1321) | SIGILL = syscall.Signal(0x4)
constant SIGINFO (line 1322) | SIGINFO = syscall.Signal(0x29)
constant SIGINT (line 1323) | SIGINT = syscall.Signal(0x2)
constant SIGIO (line 1324) | SIGIO = syscall.Signal(0x16)
constant SIGIOT (line 1325) | SIGIOT = syscall.Signal(0x6)
constant SIGJVM1 (line 1326) | SIGJVM1 = syscall.Signal(0x27)
constant SIGJVM2 (line 1327) | SIGJVM2 = syscall.Signal(0x28)
constant SIGKILL (line 1328) | SIGKILL = syscall.Signal(0x9)
constant SIGLOST (line 1329) | SIGLOST = syscall.Signal(0x25)
constant SIGLWP (line 1330) | SIGLWP = syscall.Signal(0x21)
constant SIGPIPE (line 1331) | SIGPIPE = syscall.Signal(0xd)
constant SIGPOLL (line 1332) | SIGPOLL = syscall.Signal(0x16)
constant SIGPROF (line 1333) | SIGPROF = syscall.Signal(0x1d)
constant SIGPWR (line 1334) | SIGPWR = syscall.Signal(0x13)
constant SIGQUIT (line 1335) | SIGQUIT = syscall.Signal(0x3)
constant SIGSEGV (line 1336) | SIGSEGV = syscall.Signal(0xb)
constant SIGSTOP (line 1337) | SIGSTOP = syscall.Signal(0x17)
constant SIGSYS (line 1338) | SIGSYS = syscall.Signal(0xc)
constant SIGTERM (line 1339) | SIGTERM = syscall.Signal(0xf)
constant SIGTHAW (line 1340) | SIGTHAW = syscall.Signal(0x23)
constant SIGTRAP (line 1341) | SIGTRAP = syscall.Signal(0x5)
constant SIGTSTP (line 1342) | SIGTSTP = syscall.Signal(0x18)
constant SIGTTIN (line 1343) | SIGTTIN = syscall.Signal(0x1a)
constant SIGTTOU (line 1344) | SIGTTOU = syscall.Signal(0x1b)
constant SIGURG (line 1345) | SIGURG = syscall.Signal(0x15)
constant SIGUSR1 (line 1346) | SIGUSR1 = syscall.Signal(0x10)
constant SIGUSR2 (line 1347) | SIGUSR2 = syscall.Signal(0x11)
constant SIGVTALRM (line 1348) | SIGVTALRM = syscall.Signal(0x1c)
constant SIGWAITING (line 1349) | SIGWAITING = syscall.Signal(0x20)
constant SIGWINCH (line 1350) | SIGWINCH = syscall.Signal(0x14)
constant SIGXCPU (line 1351) | SIGXCPU = syscall.Signal(0x1e)
constant SIGXFSZ (line 1352) | SIGXFSZ = syscall.Signal(0x1f)
constant SIGXRES (line 1353) | SIGXRES = syscall.Signal(0x26)
FILE: vendor/golang.org/x/sys/unix/zptrace386_linux.go
type PtraceRegs386 (line 11) | type PtraceRegs386 struct
function PtraceGetRegs386 (line 32) | func PtraceGetRegs386(pid int, regsout *PtraceRegs386) error {
function PtraceSetRegs386 (line 37) | func PtraceSetRegs386(pid int, regs *PtraceRegs386) error {
type PtraceRegsAmd64 (line 42) | type PtraceRegsAmd64 struct
function PtraceGetRegsAmd64 (line 73) | func PtraceGetRegsAmd64(pid int, regsout *PtraceRegsAmd64) error {
function PtraceSetRegsAmd64 (line 78) | func PtraceSetRegsAmd64(pid int, regs *PtraceRegsAmd64) error {
FILE: vendor/golang.org/x/sys/unix/zptracearm_linux.go
type PtraceRegsArm (line 11) | type PtraceRegsArm struct
function PtraceGetRegsArm (line 16) | func PtraceGetRegsArm(pid int, regsout *PtraceRegsArm) error {
function PtraceSetRegsArm (line 21) | func PtraceSetRegsArm(pid int, regs *PtraceRegsArm) error {
type PtraceRegsArm64 (line 26) | type PtraceRegsArm64 struct
function PtraceGetRegsArm64 (line 34) | func PtraceGetRegsArm64(pid int, regsout *PtraceRegsArm64) error {
function PtraceSetRegsArm64 (line 39) | func PtraceSetRegsArm64(pid int, regs *PtraceRegsArm64) error {
FILE: vendor/golang.org/x/sys/unix/zptracemips_linux.go
type PtraceRegsMips (line 11) | type PtraceRegsMips struct
function PtraceGetRegsMips (line 22) | func PtraceGetRegsMips(pid int, regsout *PtraceRegsMips) error {
function PtraceSetRegsMips (line 27) | func PtraceSetRegsMips(pid int, regs *PtraceRegsMips) error {
type PtraceRegsMips64 (line 32) | type PtraceRegsMips64 struct
function PtraceGetRegsMips64 (line 43) | func PtraceGetRegsMips64(pid int, regsout *PtraceRegsMips64) error {
function PtraceSetRegsMips64 (line 48) | func PtraceSetRegsMips64(pid int, regs *PtraceRegsMips64) error {
FILE: vendor/golang.org/x/sys/unix/zptracemipsle_linux.go
type PtraceRegsMipsle (line 11) | type PtraceRegsMipsle struct
function PtraceGetRegsMipsle (line 22) | func PtraceGetRegsMipsle(pid int, regsout *PtraceRegsMipsle) error {
function PtraceSetRegsMipsle (line 27) | func PtraceSetRegsMipsle(pid int, regs *PtraceRegsMipsle) error {
type PtraceRegsMips64le (line 32) | type PtraceRegsMips64le struct
function PtraceGetRegsMips64le (line 43) | func PtraceGetRegsMips64le(pid int, regsout *PtraceRegsMips64le) error {
function PtraceSetRegsMips64le (line 48) | func PtraceSetRegsMips64le(pid int, regs *PtraceRegsMips64le) error {
FILE: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go
function utimes (line 138) | func utimes(path string, times *[2]Timeval) (err error) {
function utimensat (line 149) | func utimensat(dirfd int, path string, times *[2]Timespec, flag int) (er...
function getcwd (line 160) | func getcwd(buf []byte) (err error) {
function accept (line 176) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function getdirent (line 187) | func getdirent(fd int, buf []byte) (n int, err error) {
function wait4 (line 204) | func wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid...
function ioctl (line 215) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function FcntlInt (line 225) | func FcntlInt(fd uintptr, cmd int, arg int) (r int, err error) {
function FcntlFlock (line 236) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) (err error) {
function fcntl (line 246) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Acct (line 257) | func Acct(path string) (err error) {
function Chdir (line 268) | func Chdir(path string) (err error) {
function Chroot (line 279) | func Chroot(path string) (err error) {
function Close (line 290) | func Close(fd int) (err error) {
function Dup (line 300) | func Dup(oldfd int) (fd int, err error) {
function Exit (line 311) | func Exit(code int) {
function Faccessat (line 318) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 329) | func Fchdir(fd int) (err error) {
function Fchmod (line 339) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 349) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchownat (line 360) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Fdatasync (line 371) | func Fdatasync(fd int) (err error) {
function Fsync (line 381) | func Fsync(fd int) (err error) {
function Getpgid (line 391) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 402) | func Getpgrp() (pid int) {
function Getpid (line 410) | func Getpid() (pid int) {
function Getppid (line 418) | func Getppid() (ppid int) {
function Getpriority (line 426) | func Getpriority(which int, who int) (prio int, err error) {
function Getrusage (line 437) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 447) | func Getsid(pid int) (sid int, err error) {
function Kill (line 458) | func Kill(pid int, sig Signal) (err error) {
function Klogctl (line 468) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Mkdir (line 485) | func Mkdir(dirfd int, path string, mode uint32) (err error) {
function Mkdirat (line 496) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 507) | func Mkfifo(path string, mode uint32) (err error) {
function Mknod (line 518) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 529) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 540) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 550) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 562) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function read (line 574) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 591) | func Readlink(path string, buf []byte) (n int, err error) {
function Renameat (line 609) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Setdomainname (line 621) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 637) | func Sethostname(p []byte) (err error) {
function Setpgid (line 653) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 663) | func Setsid() (pid int, err error) {
function Settimeofday (line 674) | func Settimeofday(tv *Timeval) (err error) {
function Setuid (line 684) | func Setuid(uid int) (err error) {
function Setgid (line 694) | func Setgid(uid int) (err error) {
function Setpriority (line 704) | func Setpriority(which int, who int, prio int) (err error) {
function Statx (line 714) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 725) | func Sync() {
function Times (line 732) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 743) | func Umask(mask int) (oldmask int) {
function Uname (line 751) | func Uname(buf *Utsname) (err error) {
function Unlink (line 761) | func Unlink(path string) (err error) {
function Unlinkat (line 772) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Ustat (line 783) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function write (line 793) | func write(fd int, p []byte) (n int, err error) {
function readlen (line 810) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 821) | func writelen(fd int, p *byte, np int) (n int, err error) {
function Dup2 (line 832) | func Dup2(oldfd int, newfd int) (err error) {
function Fadvise (line 842) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 852) | func Fchown(fd int, uid int, gid int) (err error) {
function fstat (line 862) | func fstat(fd int, stat *Stat_t) (err error) {
function fstatat (line 872) | func fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 883) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 893) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 903) | func Getegid() (egid int) {
function Geteuid (line 911) | func Geteuid() (euid int) {
function Getgid (line 919) | func Getgid() (gid int) {
function Getuid (line 927) | func Getuid() (uid int) {
function Lchown (line 935) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 946) | func Listen(s int, n int) (err error) {
function lstat (line 956) | func lstat(path string, stat *Stat_t) (err error) {
function Pause (line 967) | func Pause() (err error) {
function Pread (line 977) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 994) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Select (line 1011) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function Pselect (line 1022) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function Setregid (line 1033) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1043) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 1053) | func Shutdown(fd int, how int) (err error) {
function Splice (line 1063) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function stat (line 1074) | func stat(path string, statptr *Stat_t) (err error) {
function Statfs (line 1085) | func Statfs(path string, buf *Statfs_t) (err error) {
function Truncate (line 1096) | func Truncate(path string, length int64) (err error) {
function bind (line 1107) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 1117) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 1127) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 1138) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 1148) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 1158) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 1168) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 1179) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 1189) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 1199) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 1209) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 1226) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 1242) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 1253) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function munmap (line 1264) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1274) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1290) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1306) | func Mlock(b []byte) (err error) {
function Mlockall (line 1322) | func Mlockall(flags int) (err error) {
function Msync (line 1332) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1348) | func Munlock(b []byte) (err error) {
function Munlockall (line 1364) | func Munlockall() (err error) {
function pipe (line 1374) | func pipe(p *[2]_C_int) (err error) {
function poll (line 1384) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function gettimeofday (line 1395) | func gettimeofday(tv *Timeval, tzp *Timezone) (err error) {
function Time (line 1405) | func Time(t *Time_t) (tt Time_t, err error) {
function Utime (line 1416) | func Utime(path string, buf *Utimbuf) (err error) {
function Getsystemcfg (line 1427) | func Getsystemcfg(label int) (n uint64) {
function umount (line 1435) | func umount(target string) (err error) {
function Getrlimit (line 1446) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Setrlimit (line 1456) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Seek (line 1466) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function mmap (line 1477) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
FILE: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go
function utimes (line 14) | func utimes(path string, times *[2]Timeval) (err error) {
function utimensat (line 29) | func utimensat(dirfd int, path string, times *[2]Timespec, flag int) (er...
function getcwd (line 44) | func getcwd(buf []byte) (err error) {
function accept (line 58) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function getdirent (line 69) | func getdirent(fd int, buf []byte) (n int, err error) {
function wait4 (line 84) | func wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid...
function ioctl (line 95) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function FcntlInt (line 105) | func FcntlInt(fd uintptr, cmd int, arg int) (r int, err error) {
function FcntlFlock (line 116) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) (err error) {
function fcntl (line 126) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Acct (line 137) | func Acct(path string) (err error) {
function Chdir (line 152) | func Chdir(path string) (err error) {
function Chroot (line 167) | func Chroot(path string) (err error) {
function Close (line 182) | func Close(fd int) (err error) {
function Dup (line 192) | func Dup(oldfd int) (fd int, err error) {
function Exit (line 203) | func Exit(code int) {
function Faccessat (line 210) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 225) | func Fchdir(fd int) (err error) {
function Fchmod (line 235) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 245) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchownat (line 260) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Fdatasync (line 275) | func Fdatasync(fd int) (err error) {
function Fsync (line 285) | func Fsync(fd int) (err error) {
function Getpgid (line 295) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 306) | func Getpgrp() (pid int) {
function Getpid (line 314) | func Getpid() (pid int) {
function Getppid (line 322) | func Getppid() (ppid int) {
function Getpriority (line 330) | func Getpriority(which int, who int) (prio int, err error) {
function Getrusage (line 341) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 351) | func Getsid(pid int) (sid int, err error) {
function Kill (line 362) | func Kill(pid int, sig Signal) (err error) {
function Klogctl (line 372) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Mkdir (line 387) | func Mkdir(dirfd int, path string, mode uint32) (err error) {
function Mkdirat (line 402) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 417) | func Mkfifo(path string, mode uint32) (err error) {
function Mknod (line 432) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 447) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 462) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 472) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 488) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function read (line 504) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 519) | func Readlink(path string, buf []byte) (n int, err error) {
function Renameat (line 539) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Setdomainname (line 559) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 573) | func Sethostname(p []byte) (err error) {
function Setpgid (line 587) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 597) | func Setsid() (pid int, err error) {
function Settimeofday (line 608) | func Settimeofday(tv *Timeval) (err error) {
function Setuid (line 618) | func Setuid(uid int) (err error) {
function Setgid (line 628) | func Setgid(uid int) (err error) {
function Setpriority (line 638) | func Setpriority(which int, who int, prio int) (err error) {
function Statx (line 648) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 663) | func Sync() {
function Times (line 670) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 681) | func Umask(mask int) (oldmask int) {
function Uname (line 689) | func Uname(buf *Utsname) (err error) {
function Unlink (line 699) | func Unlink(path string) (err error) {
function Unlinkat (line 714) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Ustat (line 729) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function write (line 739) | func write(fd int, p []byte) (n int, err error) {
function readlen (line 754) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 765) | func writelen(fd int, p *byte, np int) (n int, err error) {
function Dup2 (line 776) | func Dup2(oldfd int, newfd int) (err error) {
function Fadvise (line 786) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 796) | func Fchown(fd int, uid int, gid int) (err error) {
function fstat (line 806) | func fstat(fd int, stat *Stat_t) (err error) {
function fstatat (line 816) | func fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 831) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 841) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 851) | func Getegid() (egid int) {
function Geteuid (line 859) | func Geteuid() (euid int) {
function Getgid (line 867) | func Getgid() (gid int) {
function Getuid (line 875) | func Getuid() (uid int) {
function Lchown (line 883) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 898) | func Listen(s int, n int) (err error) {
function lstat (line 908) | func lstat(path string, stat *Stat_t) (err error) {
function Pause (line 923) | func Pause() (err error) {
function Pread (line 933) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 948) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Select (line 963) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function Pselect (line 974) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function Setregid (line 985) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 995) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 1005) | func Shutdown(fd int, how int) (err error) {
function Splice (line 1015) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function stat (line 1026) | func stat(path string, statptr *Stat_t) (err error) {
function Statfs (line 1041) | func Statfs(path string, buf *Statfs_t) (err error) {
function Truncate (line 1056) | func Truncate(path string, length int64) (err error) {
function bind (line 1071) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 1081) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 1091) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 1102) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 1112) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 1122) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 1132) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 1143) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 1153) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 1163) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 1173) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 1188) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 1202) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 1213) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function munmap (line 1224) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1234) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1248) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1262) | func Mlock(b []byte) (err error) {
function Mlockall (line 1276) | func Mlockall(flags int) (err error) {
function Msync (line 1286) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1300) | func Munlock(b []byte) (err error) {
function Munlockall (line 1314) | func Munlockall() (err error) {
function pipe (line 1324) | func pipe(p *[2]_C_int) (err error) {
function poll (line 1334) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function gettimeofday (line 1345) | func gettimeofday(tv *Timeval, tzp *Timezone) (err error) {
function Time (line 1355) | func Time(t *Time_t) (tt Time_t, err error) {
function Utime (line 1366) | func Utime(path string, buf *Utimbuf) (err error) {
function Getsystemcfg (line 1381) | func Getsystemcfg(label int) (n uint64) {
function umount (line 1389) | func umount(target string) (err error) {
function Getrlimit (line 1404) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Setrlimit (line 1414) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Seek (line 1424) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function mmap (line 1435) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
FILE: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go
type syscallFunc (line 249) | type syscallFunc
function rawSyscall6 (line 372) | func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 ui...
function syscall6 (line 373) | func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintp...
function callutimes (line 377) | func callutimes(_p0 uintptr, times uintptr) (r1 uintptr, e1 Errno) {
function callutimensat (line 384) | func callutimensat(dirfd int, _p0 uintptr, times uintptr, flag int) (r1 ...
function callgetcwd (line 391) | func callgetcwd(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callaccept (line 398) | func callaccept(s int, rsa uintptr, addrlen uintptr) (r1 uintptr, e1 Err...
function callgetdirent (line 405) | func callgetdirent(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errn...
function callwait4 (line 412) | func callwait4(pid int, status uintptr, options int, rusage uintptr) (r1...
function callioctl (line 419) | func callioctl(fd int, req int, arg uintptr) (r1 uintptr, e1 Errno) {
function callfcntl (line 426) | func callfcntl(fd uintptr, cmd int, arg uintptr) (r1 uintptr, e1 Errno) {
function callacct (line 433) | func callacct(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callchdir (line 440) | func callchdir(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callchroot (line 447) | func callchroot(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callclose (line 454) | func callclose(fd int) (r1 uintptr, e1 Errno) {
function calldup (line 461) | func calldup(oldfd int) (r1 uintptr, e1 Errno) {
function callexit (line 468) | func callexit(code int) (r1 uintptr, e1 Errno) {
function callfaccessat (line 475) | func callfaccessat(dirfd int, _p0 uintptr, mode uint32, flags int) (r1 u...
function callfchdir (line 482) | func callfchdir(fd int) (r1 uintptr, e1 Errno) {
function callfchmod (line 489) | func callfchmod(fd int, mode uint32) (r1 uintptr, e1 Errno) {
function callfchmodat (line 496) | func callfchmodat(dirfd int, _p0 uintptr, mode uint32, flags int) (r1 ui...
function callfchownat (line 503) | func callfchownat(dirfd int, _p0 uintptr, uid int, gid int, flags int) (...
function callfdatasync (line 510) | func callfdatasync(fd int) (r1 uintptr, e1 Errno) {
function callfsync (line 517) | func callfsync(fd int) (r1 uintptr, e1 Errno) {
function callgetpgid (line 524) | func callgetpgid(pid int) (r1 uintptr, e1 Errno) {
function callgetpgrp (line 531) | func callgetpgrp() (r1 uintptr, e1 Errno) {
function callgetpid (line 538) | func callgetpid() (r1 uintptr, e1 Errno) {
function callgetppid (line 545) | func callgetppid() (r1 uintptr, e1 Errno) {
function callgetpriority (line 552) | func callgetpriority(which int, who int) (r1 uintptr, e1 Errno) {
function callgetrusage (line 559) | func callgetrusage(who int, rusage uintptr) (r1 uintptr, e1 Errno) {
function callgetsid (line 566) | func callgetsid(pid int) (r1 uintptr, e1 Errno) {
function callkill (line 573) | func callkill(pid int, sig int) (r1 uintptr, e1 Errno) {
function callsyslog (line 580) | func callsyslog(typ int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callmkdir (line 587) | func callmkdir(dirfd int, _p0 uintptr, mode uint32) (r1 uintptr, e1 Errn...
function callmkdirat (line 594) | func callmkdirat(dirfd int, _p0 uintptr, mode uint32) (r1 uintptr, e1 Er...
function callmkfifo (line 601) | func callmkfifo(_p0 uintptr, mode uint32) (r1 uintptr, e1 Errno) {
function callmknod (line 608) | func callmknod(_p0 uintptr, mode uint32, dev int) (r1 uintptr, e1 Errno) {
function callmknodat (line 615) | func callmknodat(dirfd int, _p0 uintptr, mode uint32, dev int) (r1 uintp...
function callnanosleep (line 622) | func callnanosleep(time uintptr, leftover uintptr) (r1 uintptr, e1 Errno) {
function callopen64 (line 629) | func callopen64(_p0 uintptr, mode int, perm uint32) (r1 uintptr, e1 Errn...
function callopenat (line 636) | func callopenat(dirfd int, _p0 uintptr, flags int, mode uint32) (r1 uint...
function callread (line 643) | func callread(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callreadlink (line 650) | func callreadlink(_p0 uintptr, _p1 uintptr, _lenp1 int) (r1 uintptr, e1 ...
function callrenameat (line 657) | func callrenameat(olddirfd int, _p0 uintptr, newdirfd int, _p1 uintptr) ...
function callsetdomainname (line 664) | func callsetdomainname(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callsethostname (line 671) | func callsethostname(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callsetpgid (line 678) | func callsetpgid(pid int, pgid int) (r1 uintptr, e1 Errno) {
function callsetsid (line 685) | func callsetsid() (r1 uintptr, e1 Errno) {
function callsettimeofday (line 692) | func callsettimeofday(tv uintptr) (r1 uintptr, e1 Errno) {
function callsetuid (line 699) | func callsetuid(uid int) (r1 uintptr, e1 Errno) {
function callsetgid (line 706) | func callsetgid(uid int) (r1 uintptr, e1 Errno) {
function callsetpriority (line 713) | func callsetpriority(which int, who int, prio int) (r1 uintptr, e1 Errno) {
function callstatx (line 720) | func callstatx(dirfd int, _p0 uintptr, flags int, mask int, stat uintptr...
function callsync (line 727) | func callsync() (r1 uintptr, e1 Errno) {
function calltimes (line 734) | func calltimes(tms uintptr) (r1 uintptr, e1 Errno) {
function callumask (line 741) | func callumask(mask int) (r1 uintptr, e1 Errno) {
function calluname (line 748) | func calluname(buf uintptr) (r1 uintptr, e1 Errno) {
function callunlink (line 755) | func callunlink(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callunlinkat (line 762) | func callunlinkat(dirfd int, _p0 uintptr, flags int) (r1 uintptr, e1 Err...
function callustat (line 769) | func callustat(dev int, ubuf uintptr) (r1 uintptr, e1 Errno) {
function callwrite (line 776) | func callwrite(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function calldup2 (line 783) | func calldup2(oldfd int, newfd int) (r1 uintptr, e1 Errno) {
function callposix_fadvise64 (line 790) | func callposix_fadvise64(fd int, offset int64, length int64, advice int)...
function callfchown (line 797) | func callfchown(fd int, uid int, gid int) (r1 uintptr, e1 Errno) {
function callfstat (line 804) | func callfstat(fd int, stat uintptr) (r1 uintptr, e1 Errno) {
function callfstatat (line 811) | func callfstatat(dirfd int, _p0 uintptr, stat uintptr, flags int) (r1 ui...
function callfstatfs (line 818) | func callfstatfs(fd int, buf uintptr) (r1 uintptr, e1 Errno) {
function callftruncate (line 825) | func callftruncate(fd int, length int64) (r1 uintptr, e1 Errno) {
function callgetegid (line 832) | func callgetegid() (r1 uintptr, e1 Errno) {
function callgeteuid (line 839) | func callgeteuid() (r1 uintptr, e1 Errno) {
function callgetgid (line 846) | func callgetgid() (r1 uintptr, e1 Errno) {
function callgetuid (line 853) | func callgetuid() (r1 uintptr, e1 Errno) {
function calllchown (line 860) | func calllchown(_p0 uintptr, uid int, gid int) (r1 uintptr, e1 Errno) {
function calllisten (line 867) | func calllisten(s int, n int) (r1 uintptr, e1 Errno) {
function calllstat (line 874) | func calllstat(_p0 uintptr, stat uintptr) (r1 uintptr, e1 Errno) {
function callpause (line 881) | func callpause() (r1 uintptr, e1 Errno) {
function callpread64 (line 888) | func callpread64(fd int, _p0 uintptr, _lenp0 int, offset int64) (r1 uint...
function callpwrite64 (line 895) | func callpwrite64(fd int, _p0 uintptr, _lenp0 int, offset int64) (r1 uin...
function callselect (line 902) | func callselect(nfd int, r uintptr, w uintptr, e uintptr, timeout uintpt...
function callpselect (line 909) | func callpselect(nfd int, r uintptr, w uintptr, e uintptr, timeout uintp...
function callsetregid (line 916) | func callsetregid(rgid int, egid int) (r1 uintptr, e1 Errno) {
function callsetreuid (line 923) | func callsetreuid(ruid int, euid int) (r1 uintptr, e1 Errno) {
function callshutdown (line 930) | func callshutdown(fd int, how int) (r1 uintptr, e1 Errno) {
function callsplice (line 937) | func callsplice(rfd int, roff uintptr, wfd int, woff uintptr, len int, f...
function callstat (line 944) | func callstat(_p0 uintptr, statptr uintptr) (r1 uintptr, e1 Errno) {
function callstatfs (line 951) | func callstatfs(_p0 uintptr, buf uintptr) (r1 uintptr, e1 Errno) {
function calltruncate (line 958) | func calltruncate(_p0 uintptr, length int64) (r1 uintptr, e1 Errno) {
function callbind (line 965) | func callbind(s int, addr uintptr, addrlen uintptr) (r1 uintptr, e1 Errn...
function callconnect (line 972) | func callconnect(s int, addr uintptr, addrlen uintptr) (r1 uintptr, e1 E...
function callgetgroups (line 979) | func callgetgroups(n int, list uintptr) (r1 uintptr, e1 Errno) {
function callsetgroups (line 986) | func callsetgroups(n int, list uintptr) (r1 uintptr, e1 Errno) {
function callgetsockopt (line 993) | func callgetsockopt(s int, level int, name int, val uintptr, vallen uint...
function callsetsockopt (line 1000) | func callsetsockopt(s int, level int, name int, val uintptr, vallen uint...
function callsocket (line 1007) | func callsocket(domain int, typ int, proto int) (r1 uintptr, e1 Errno) {
function callsocketpair (line 1014) | func callsocketpair(domain int, typ int, proto int, fd uintptr) (r1 uint...
function callgetpeername (line 1021) | func callgetpeername(fd int, rsa uintptr, addrlen uintptr) (r1 uintptr, ...
function callgetsockname (line 1028) | func callgetsockname(fd int, rsa uintptr, addrlen uintptr) (r1 uintptr, ...
function callrecvfrom (line 1035) | func callrecvfrom(fd int, _p0 uintptr, _lenp0 int, flags int, from uintp...
function callsendto (line 1042) | func callsendto(s int, _p0 uintptr, _lenp0 int, flags int, to uintptr, a...
function callnrecvmsg (line 1049) | func callnrecvmsg(s int, msg uintptr, flags int) (r1 uintptr, e1 Errno) {
function callnsendmsg (line 1056) | func callnsendmsg(s int, msg uintptr, flags int) (r1 uintptr, e1 Errno) {
function callmunmap (line 1063) | func callmunmap(addr uintptr, length uintptr) (r1 uintptr, e1 Errno) {
function callmadvise (line 1070) | func callmadvise(_p0 uintptr, _lenp0 int, advice int) (r1 uintptr, e1 Er...
function callmprotect (line 1077) | func callmprotect(_p0 uintptr, _lenp0 int, prot int) (r1 uintptr, e1 Err...
function callmlock (line 1084) | func callmlock(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callmlockall (line 1091) | func callmlockall(flags int) (r1 uintptr, e1 Errno) {
function callmsync (line 1098) | func callmsync(_p0 uintptr, _lenp0 int, flags int) (r1 uintptr, e1 Errno) {
function callmunlock (line 1105) | func callmunlock(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callmunlockall (line 1112) | func callmunlockall() (r1 uintptr, e1 Errno) {
function callpipe (line 1119) | func callpipe(p uintptr) (r1 uintptr, e1 Errno) {
function callpoll (line 1126) | func callpoll(fds uintptr, nfds int, timeout int) (r1 uintptr, e1 Errno) {
function callgettimeofday (line 1133) | func callgettimeofday(tv uintptr, tzp uintptr) (r1 uintptr, e1 Errno) {
function calltime (line 1140) | func calltime(t uintptr) (r1 uintptr, e1 Errno) {
function callutime (line 1147) | func callutime(_p0 uintptr, buf uintptr) (r1 uintptr, e1 Errno) {
function callgetsystemcfg (line 1154) | func callgetsystemcfg(label int) (r1 uintptr, e1 Errno) {
function callumount (line 1161) | func callumount(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callgetrlimit (line 1168) | func callgetrlimit(resource int, rlim uintptr) (r1 uintptr, e1 Errno) {
function callsetrlimit (line 1175) | func callsetrlimit(resource int, rlim uintptr) (r1 uintptr, e1 Errno) {
function calllseek (line 1182) | func calllseek(fd int, offset int64, whence int) (r1 uintptr, e1 Errno) {
function callmmap64 (line 1189) | func callmmap64(addr uintptr, length uintptr, prot int, flags int, fd in...
FILE: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go
function callutimes (line 138) | func callutimes(_p0 uintptr, times uintptr) (r1 uintptr, e1 Errno) {
function callutimensat (line 146) | func callutimensat(dirfd int, _p0 uintptr, times uintptr, flag int) (r1 ...
function callgetcwd (line 154) | func callgetcwd(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callaccept (line 162) | func callaccept(s int, rsa uintptr, addrlen uintptr) (r1 uintptr, e1 Err...
function callgetdirent (line 170) | func callgetdirent(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errn...
function callwait4 (line 178) | func callwait4(pid int, status uintptr, options int, rusage uintptr) (r1...
function callioctl (line 186) | func callioctl(fd int, req int, arg uintptr) (r1 uintptr, e1 Errno) {
function callfcntl (line 194) | func callfcntl(fd uintptr, cmd int, arg uintptr) (r1 uintptr, e1 Errno) {
function callacct (line 202) | func callacct(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callchdir (line 210) | func callchdir(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callchroot (line 218) | func callchroot(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callclose (line 226) | func callclose(fd int) (r1 uintptr, e1 Errno) {
function calldup (line 234) | func calldup(oldfd int) (r1 uintptr, e1 Errno) {
function callexit (line 242) | func callexit(code int) (r1 uintptr, e1 Errno) {
function callfaccessat (line 250) | func callfaccessat(dirfd int, _p0 uintptr, mode uint32, flags int) (r1 u...
function callfchdir (line 258) | func callfchdir(fd int) (r1 uintptr, e1 Errno) {
function callfchmod (line 266) | func callfchmod(fd int, mode uint32) (r1 uintptr, e1 Errno) {
function callfchmodat (line 274) | func callfchmodat(dirfd int, _p0 uintptr, mode uint32, flags int) (r1 ui...
function callfchownat (line 282) | func callfchownat(dirfd int, _p0 uintptr, uid int, gid int, flags int) (...
function callfdatasync (line 290) | func callfdatasync(fd int) (r1 uintptr, e1 Errno) {
function callfsync (line 298) | func callfsync(fd int) (r1 uintptr, e1 Errno) {
function callgetpgid (line 306) | func callgetpgid(pid int) (r1 uintptr, e1 Errno) {
function callgetpgrp (line 314) | func callgetpgrp() (r1 uintptr, e1 Errno) {
function callgetpid (line 322) | func callgetpid() (r1 uintptr, e1 Errno) {
function callgetppid (line 330) | func callgetppid() (r1 uintptr, e1 Errno) {
function callgetpriority (line 338) | func callgetpriority(which int, who int) (r1 uintptr, e1 Errno) {
function callgetrusage (line 346) | func callgetrusage(who int, rusage uintptr) (r1 uintptr, e1 Errno) {
function callgetsid (line 354) | func callgetsid(pid int) (r1 uintptr, e1 Errno) {
function callkill (line 362) | func callkill(pid int, sig int) (r1 uintptr, e1 Errno) {
function callsyslog (line 370) | func callsyslog(typ int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callmkdir (line 378) | func callmkdir(dirfd int, _p0 uintptr, mode uint32) (r1 uintptr, e1 Errn...
function callmkdirat (line 386) | func callmkdirat(dirfd int, _p0 uintptr, mode uint32) (r1 uintptr, e1 Er...
function callmkfifo (line 394) | func callmkfifo(_p0 uintptr, mode uint32) (r1 uintptr, e1 Errno) {
function callmknod (line 402) | func callmknod(_p0 uintptr, mode uint32, dev int) (r1 uintptr, e1 Errno) {
function callmknodat (line 410) | func callmknodat(dirfd int, _p0 uintptr, mode uint32, dev int) (r1 uintp...
function callnanosleep (line 418) | func callnanosleep(time uintptr, leftover uintptr) (r1 uintptr, e1 Errno) {
function callopen64 (line 426) | func callopen64(_p0 uintptr, mode int, perm uint32) (r1 uintptr, e1 Errn...
function callopenat (line 434) | func callopenat(dirfd int, _p0 uintptr, flags int, mode uint32) (r1 uint...
function callread (line 442) | func callread(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callreadlink (line 450) | func callreadlink(_p0 uintptr, _p1 uintptr, _lenp1 int) (r1 uintptr, e1 ...
function callrenameat (line 458) | func callrenameat(olddirfd int, _p0 uintptr, newdirfd int, _p1 uintptr) ...
function callsetdomainname (line 466) | func callsetdomainname(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callsethostname (line 474) | func callsethostname(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callsetpgid (line 482) | func callsetpgid(pid int, pgid int) (r1 uintptr, e1 Errno) {
function callsetsid (line 490) | func callsetsid() (r1 uintptr, e1 Errno) {
function callsettimeofday (line 498) | func callsettimeofday(tv uintptr) (r1 uintptr, e1 Errno) {
function callsetuid (line 506) | func callsetuid(uid int) (r1 uintptr, e1 Errno) {
function callsetgid (line 514) | func callsetgid(uid int) (r1 uintptr, e1 Errno) {
function callsetpriority (line 522) | func callsetpriority(which int, who int, prio int) (r1 uintptr, e1 Errno) {
function callstatx (line 530) | func callstatx(dirfd int, _p0 uintptr, flags int, mask int, stat uintptr...
function callsync (line 538) | func callsync() (r1 uintptr, e1 Errno) {
function calltimes (line 546) | func calltimes(tms uintptr) (r1 uintptr, e1 Errno) {
function callumask (line 554) | func callumask(mask int) (r1 uintptr, e1 Errno) {
function calluname (line 562) | func calluname(buf uintptr) (r1 uintptr, e1 Errno) {
function callunlink (line 570) | func callunlink(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callunlinkat (line 578) | func callunlinkat(dirfd int, _p0 uintptr, flags int) (r1 uintptr, e1 Err...
function callustat (line 586) | func callustat(dev int, ubuf uintptr) (r1 uintptr, e1 Errno) {
function callwrite (line 594) | func callwrite(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function calldup2 (line 602) | func calldup2(oldfd int, newfd int) (r1 uintptr, e1 Errno) {
function callposix_fadvise64 (line 610) | func callposix_fadvise64(fd int, offset int64, length int64, advice int)...
function callfchown (line 618) | func callfchown(fd int, uid int, gid int) (r1 uintptr, e1 Errno) {
function callfstat (line 626) | func callfstat(fd int, stat uintptr) (r1 uintptr, e1 Errno) {
function callfstatat (line 634) | func callfstatat(dirfd int, _p0 uintptr, stat uintptr, flags int) (r1 ui...
function callfstatfs (line 642) | func callfstatfs(fd int, buf uintptr) (r1 uintptr, e1 Errno) {
function callftruncate (line 650) | func callftruncate(fd int, length int64) (r1 uintptr, e1 Errno) {
function callgetegid (line 658) | func callgetegid() (r1 uintptr, e1 Errno) {
function callgeteuid (line 666) | func callgeteuid() (r1 uintptr, e1 Errno) {
function callgetgid (line 674) | func callgetgid() (r1 uintptr, e1 Errno) {
function callgetuid (line 682) | func callgetuid() (r1 uintptr, e1 Errno) {
function calllchown (line 690) | func calllchown(_p0 uintptr, uid int, gid int) (r1 uintptr, e1 Errno) {
function calllisten (line 698) | func calllisten(s int, n int) (r1 uintptr, e1 Errno) {
function calllstat (line 706) | func calllstat(_p0 uintptr, stat uintptr) (r1 uintptr, e1 Errno) {
function callpause (line 714) | func callpause() (r1 uintptr, e1 Errno) {
function callpread64 (line 722) | func callpread64(fd int, _p0 uintptr, _lenp0 int, offset int64) (r1 uint...
function callpwrite64 (line 730) | func callpwrite64(fd int, _p0 uintptr, _lenp0 int, offset int64) (r1 uin...
function callselect (line 738) | func callselect(nfd int, r uintptr, w uintptr, e uintptr, timeout uintpt...
function callpselect (line 746) | func callpselect(nfd int, r uintptr, w uintptr, e uintptr, timeout uintp...
function callsetregid (line 754) | func callsetregid(rgid int, egid int) (r1 uintptr, e1 Errno) {
function callsetreuid (line 762) | func callsetreuid(ruid int, euid int) (r1 uintptr, e1 Errno) {
function callshutdown (line 770) | func callshutdown(fd int, how int) (r1 uintptr, e1 Errno) {
function callsplice (line 778) | func callsplice(rfd int, roff uintptr, wfd int, woff uintptr, len int, f...
function callstat (line 786) | func callstat(_p0 uintptr, statptr uintptr) (r1 uintptr, e1 Errno) {
function callstatfs (line 794) | func callstatfs(_p0 uintptr, buf uintptr) (r1 uintptr, e1 Errno) {
function calltruncate (line 802) | func calltruncate(_p0 uintptr, length int64) (r1 uintptr, e1 Errno) {
function callbind (line 810) | func callbind(s int, addr uintptr, addrlen uintptr) (r1 uintptr, e1 Errn...
function callconnect (line 818) | func callconnect(s int, addr uintptr, addrlen uintptr) (r1 uintptr, e1 E...
function callgetgroups (line 826) | func callgetgroups(n int, list uintptr) (r1 uintptr, e1 Errno) {
function callsetgroups (line 834) | func callsetgroups(n int, list uintptr) (r1 uintptr, e1 Errno) {
function callgetsockopt (line 842) | func callgetsockopt(s int, level int, name int, val uintptr, vallen uint...
function callsetsockopt (line 850) | func callsetsockopt(s int, level int, name int, val uintptr, vallen uint...
function callsocket (line 858) | func callsocket(domain int, typ int, proto int) (r1 uintptr, e1 Errno) {
function callsocketpair (line 866) | func callsocketpair(domain int, typ int, proto int, fd uintptr) (r1 uint...
function callgetpeername (line 874) | func callgetpeername(fd int, rsa uintptr, addrlen uintptr) (r1 uintptr, ...
function callgetsockname (line 882) | func callgetsockname(fd int, rsa uintptr, addrlen uintptr) (r1 uintptr, ...
function callrecvfrom (line 890) | func callrecvfrom(fd int, _p0 uintptr, _lenp0 int, flags int, from uintp...
function callsendto (line 898) | func callsendto(s int, _p0 uintptr, _lenp0 int, flags int, to uintptr, a...
function callnrecvmsg (line 906) | func callnrecvmsg(s int, msg uintptr, flags int) (r1 uintptr, e1 Errno) {
function callnsendmsg (line 914) | func callnsendmsg(s int, msg uintptr, flags int) (r1 uintptr, e1 Errno) {
function callmunmap (line 922) | func callmunmap(addr uintptr, length uintptr) (r1 uintptr, e1 Errno) {
function callmadvise (line 930) | func callmadvise(_p0 uintptr, _lenp0 int, advice int) (r1 uintptr, e1 Er...
function callmprotect (line 938) | func callmprotect(_p0 uintptr, _lenp0 int, prot int) (r1 uintptr, e1 Err...
function callmlock (line 946) | func callmlock(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callmlockall (line 954) | func callmlockall(flags int) (r1 uintptr, e1 Errno) {
function callmsync (line 962) | func callmsync(_p0 uintptr, _lenp0 int, flags int) (r1 uintptr, e1 Errno) {
function callmunlock (line 970) | func callmunlock(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {
function callmunlockall (line 978) | func callmunlockall() (r1 uintptr, e1 Errno) {
function callpipe (line 986) | func callpipe(p uintptr) (r1 uintptr, e1 Errno) {
function callpoll (line 994) | func callpoll(fds uintptr, nfds int, timeout int) (r1 uintptr, e1 Errno) {
function callgettimeofday (line 1002) | func callgettimeofday(tv uintptr, tzp uintptr) (r1 uintptr, e1 Errno) {
function calltime (line 1010) | func calltime(t uintptr) (r1 uintptr, e1 Errno) {
function callutime (line 1018) | func callutime(_p0 uintptr, buf uintptr) (r1 uintptr, e1 Errno) {
function callgetsystemcfg (line 1026) | func callgetsystemcfg(label int) (r1 uintptr, e1 Errno) {
function callumount (line 1034) | func callumount(_p0 uintptr) (r1 uintptr, e1 Errno) {
function callgetrlimit (line 1042) | func callgetrlimit(resource int, rlim uintptr) (r1 uintptr, e1 Errno) {
function callsetrlimit (line 1050) | func callsetrlimit(resource int, rlim uintptr) (r1 uintptr, e1 Errno) {
function calllseek (line 1058) | func calllseek(fd int, offset int64, whence int) (r1 uintptr, e1 Errno) {
function callmmap64 (line 1066) | func callmmap64(addr uintptr, length uintptr, prot int, flags int, fd in...
FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_11.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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function getattrlist (line 380) | func getattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function pipe (line 390) | func pipe() (r int, w int, err error) {
function getxattr (line 402) | func getxattr(path string, attr string, dest *byte, size int, position u...
function fgetxattr (line 423) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3...
function setxattr (line 439) | func setxattr(path string, attr string, data *byte, size int, position u...
function fsetxattr (line 459) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3...
function removexattr (line 474) | func removexattr(path string, attr string, options int) (err error) {
function fremovexattr (line 494) | func fremovexattr(fd int, attr string, options int) (err error) {
function listxattr (line 509) | func listxattr(path string, dest *byte, size int, options int) (sz int, ...
function flistxattr (line 525) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ...
function setattrlist (line 536) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function kill (line 546) | func kill(pid int, signum int, posix int) (err error) {
function ioctl (line 556) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function sendfile (line 566) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe...
function Access (line 576) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 591) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 601) | func Chdir(path string) (err error) {
function Chflags (line 616) | func Chflags(path string, flags int) (err error) {
function Chmod (line 631) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 646) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 661) | func Chroot(path string) (err error) {
function Close (line 676) | func Close(fd int) (err error) {
function Dup (line 686) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 697) | func Dup2(from int, to int) (err error) {
function Exchangedata (line 707) | func Exchangedata(path1 string, path2 string, options int) (err error) {
function Exit (line 727) | func Exit(code int) {
function Faccessat (line 734) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 749) | func Fchdir(fd int) (err error) {
function Fchflags (line 759) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 769) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 779) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 794) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 804) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 819) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 829) | func Fpathconf(fd int, name int) (val int, err error) {
function Fsync (line 840) | func Fsync(fd int) (err error) {
function Ftruncate (line 850) | func Ftruncate(fd int, length int64) (err error) {
function Getdtablesize (line 860) | func Getdtablesize() (size int) {
function Getegid (line 868) | func Getegid() (egid int) {
function Geteuid (line 876) | func Geteuid() (uid int) {
function Getgid (line 884) | func Getgid() (gid int) {
function Getpgid (line 892) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 903) | func Getpgrp() (pgrp int) {
function Getpid (line 911) | func Getpid() (pid int) {
function Getppid (line 919) | func Getppid() (ppid int) {
function Getpriority (line 927) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 938) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 948) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 958) | func Getsid(pid int) (sid int, err error) {
function Getuid (line 969) | func Getuid() (uid int) {
function Issetugid (line 977) | func Issetugid() (tainted bool) {
function Kqueue (line 985) | func Kqueue() (fd int, err error) {
function Lchown (line 996) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1011) | func Link(path string, link string) (err error) {
function Linkat (line 1031) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1051) | func Listen(s int, backlog int) (err error) {
function Mkdir (line 1061) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1076) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1091) | func Mkfifo(path string, mode uint32) (err error) {
function Mknod (line 1106) | func Mknod(path string, mode uint32, dev int) (err error) {
function Open (line 1121) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1137) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1153) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1169) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1186) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1203) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1220) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1242) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1264) | func Rename(from string, to string) (err error) {
function Renameat (line 1284) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1304) | func Revoke(path string) (err error) {
function Rmdir (line 1319) | func Rmdir(path string) (err error) {
function Seek (line 1334) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1345) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1355) | func Setegid(egid int) (err error) {
function Seteuid (line 1365) | func Seteuid(euid int) (err error) {
function Setgid (line 1375) | func Setgid(gid int) (err error) {
function Setlogin (line 1385) | func Setlogin(name string) (err error) {
function Setpgid (line 1400) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1410) | func Setpriority(which int, who int, prio int) (err error) {
function Setprivexec (line 1420) | func Setprivexec(flag int) (err error) {
function Setregid (line 1430) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1440) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1450) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1460) | func Setsid() (pid int, err error) {
function Settimeofday (line 1471) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1481) | func Setuid(uid int) (err error) {
function Symlink (line 1491) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1511) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1531) | func Sync() (err error) {
function Truncate (line 1541) | func Truncate(path string, length int64) (err error) {
function Umask (line 1556) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1564) | func Undelete(path string) (err error) {
function Unlink (line 1579) | func Unlink(path string) (err error) {
function Unlinkat (line 1594) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1609) | func Unmount(path string, flags int) (err error) {
function write (line 1624) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1641) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1652) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1662) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1673) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function ptrace (line 1684) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function gettimeofday (line 1694) | func gettimeofday(tp *Timeval) (sec int32, usec int32, err error) {
function Fstat (line 1706) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1716) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1731) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function Getdirentries (line 1741) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function getfsstat (line 1758) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ...
function Lstat (line 1769) | func Lstat(path string, stat *Stat_t) (err error) {
function Stat (line 1784) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1799) | func Statfs(path string, stat *Statfs_t) (err error) {
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 libc_getgroups_trampoline (line 26) | func libc_getgroups_trampoline()
function setgroups (line 33) | func setgroups(ngid int, gid *_Gid_t) (err error) {
function libc_setgroups_trampoline (line 41) | func libc_setgroups_trampoline()
function wait4 (line 48) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function libc_wait4_trampoline (line 57) | func libc_wait4_trampoline()
function accept (line 64) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function libc_accept_trampoline (line 73) | func libc_accept_trampoline()
function bind (line 80) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function libc_bind_trampoline (line 88) | func libc_bind_trampoline()
function connect (line 95) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function libc_connect_trampoline (line 103) | func libc_connect_trampoline()
function socket (line 110) | func socket(domain int, typ int, proto int) (fd int, err error) {
function libc_socket_trampoline (line 119) | func libc_socket_trampoline()
function getsockopt (line 126) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function libc_getsockopt_trampoline (line 134) | func libc_getsockopt_trampoline()
function setsockopt (line 141) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function libc_setsockopt_trampoline (line 149) | func libc_setsockopt_trampoline()
function getpeername (line 156) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function libc_getpeername_trampoline (line 164) | func libc_getpeername_trampoline()
function getsockname (line 171) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function libc_getsockname_trampoline (line 179) | func libc_getsockname_trampoline()
function Shutdown (line 186) | func Shutdown(s int, how int) (err error) {
function libc_shutdown_trampoline (line 194) | func libc_shutdown_trampoline()
function socketpair (line 201) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function libc_socketpair_trampoline (line 209) | func libc_socketpair_trampoline()
function recvfrom (line 216) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function libc_recvfrom_trampoline (line 231) | func libc_recvfrom_trampoline()
function sendto (line 238) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function libc_sendto_trampoline (line 252) | func libc_sendto_trampoline()
function recvmsg (line 259) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function libc_recvmsg_trampoline (line 268) | func libc_recvmsg_trampoline()
function sendmsg (line 275) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function libc_sendmsg_trampoline (line 284) | func libc_sendmsg_trampoline()
function kevent (line 291) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi...
function libc_kevent_trampoline (line 300) | func libc_kevent_trampoline()
function utimes (line 307) | func utimes(path string, timeval *[2]Timeval) (err error) {
function libc_utimes_trampoline (line 320) | func libc_utimes_trampoline()
function futimes (line 327) | func futimes(fd int, timeval *[2]Timeval) (err error) {
function libc_futimes_trampoline (line 335) | func libc_futimes_trampoline()
function fcntl (line 342) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function libc_fcntl_trampoline (line 351) | func libc_fcntl_trampoline()
function poll (line 358) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function libc_poll_trampoline (line 367) | func libc_poll_trampoline()
function Madvise (line 374) | func Madvise(b []byte, behav int) (err error) {
function libc_madvise_trampoline (line 388) | func libc_madvise_trampoline()
function Mlock (line 395) | func Mlock(b []byte) (err error) {
function libc_mlock_trampoline (line 409) | func libc_mlock_trampoline()
function Mlockall (line 416) | func Mlockall(flags int) (err error) {
function libc_mlockall_trampoline (line 424) | func libc_mlockall_trampoline()
function Mprotect (line 431) | func Mprotect(b []byte, prot int) (err error) {
function libc_mprotect_trampoline (line 445) | func libc_mprotect_trampoline()
function Msync (line 452) | func Msync(b []byte, flags int) (err error) {
function libc_msync_trampoline (line 466) | func libc_msync_trampoline()
function Munlock (line 473) | func Munlock(b []byte) (err error) {
function libc_munlock_trampoline (line 487) | func libc_munlock_trampoline()
function Munlockall (line 494) | func Munlockall() (err error) {
function libc_munlockall_trampoline (line 502) | func libc_munlockall_trampoline()
function getattrlist (line 509) | func getattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function libc_getattrlist_trampoline (line 517) | func libc_getattrlist_trampoline()
function pipe (line 524) | func pipe() (r int, w int, err error) {
function libc_pipe_trampoline (line 534) | func libc_pipe_trampoline()
function getxattr (line 541) | func getxattr(path string, attr string, dest *byte, size int, position u...
function libc_getxattr_trampoline (line 560) | func libc_getxattr_trampoline()
function fgetxattr (line 567) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3...
function libc_fgetxattr_trampoline (line 581) | func libc_fgetxattr_trampoline()
function setxattr (line 588) | func setxattr(path string, attr string, data *byte, size int, position u...
function libc_setxattr_trampoline (line 606) | func libc_setxattr_trampoline()
function fsetxattr (line 613) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3...
function libc_fsetxattr_trampoline (line 626) | func libc_fsetxattr_trampoline()
function removexattr (line 633) | func removexattr(path string, attr string, options int) (err error) {
function libc_removexattr_trampoline (line 651) | func libc_removexattr_trampoline()
function fremovexattr (line 658) | func fremovexattr(fd int, attr string, options int) (err error) {
function libc_fremovexattr_trampoline (line 671) | func libc_fremovexattr_trampoline()
function listxattr (line 678) | func listxattr(path string, dest *byte, size int, options int) (sz int, ...
function libc_listxattr_trampoline (line 692) | func libc_listxattr_trampoline()
function flistxattr (line 699) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ...
function libc_flistxattr_trampoline (line 708) | func libc_flistxattr_trampoline()
function setattrlist (line 715) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function libc_setattrlist_trampoline (line 723) | func libc_setattrlist_trampoline()
function kill (line 730) | func kill(pid int, signum int, posix int) (err error) {
function libc_kill_trampoline (line 738) | func libc_kill_trampoline()
function ioctl (line 745) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function libc_ioctl_trampoline (line 753) | func libc_ioctl_trampoline()
function sendfile (line 760) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe...
function libc_sendfile_trampoline (line 768) | func libc_sendfile_trampoline()
function Access (line 775) | func Access(path string, mode uint32) (err error) {
function libc_access_trampoline (line 788) | func libc_access_trampoline()
function Adjtime (line 795) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function libc_adjtime_trampoline (line 803) | func libc_adjtime_trampoline()
function Chdir (line 810) | func Chdir(path string) (err error) {
function libc_chdir_trampoline (line 823) | func libc_chdir_trampoline()
function Chflags (line 830) | func Chflags(path string, flags int) (err error) {
function libc_chflags_trampoline (line 843) | func libc_chflags_trampoline()
function Chmod (line 850) | func Chmod(path string, mode uint32) (err error) {
function libc_chmod_trampoline (line 863) | func libc_chmod_trampoline()
function Chown (line 870) | func Chown(path string, uid int, gid int) (err error) {
function libc_chown_trampoline (line 883) | func libc_chown_trampoline()
function Chroot (line 890) | func Chroot(path string) (err error) {
function libc_chroot_trampoline (line 903) | func libc_chroot_trampoline()
function ClockGettime (line 910) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function libc_clock_gettime_trampoline (line 918) | func libc_clock_gettime_trampoline()
function Close (line 925) | func Close(fd int) (err error) {
function libc_close_trampoline (line 933) | func libc_close_trampoline()
function Dup (line 940) | func Dup(fd int) (nfd int, err error) {
function libc_dup_trampoline (line 949) | func libc_dup_trampoline()
function Dup2 (line 956) | func Dup2(from int, to int) (err error) {
function libc_dup2_trampoline (line 964) | func libc_dup2_trampoline()
function Exchangedata (line 971) | func Exchangedata(path1 string, path2 string, options int) (err error) {
function libc_exchangedata_trampoline (line 989) | func libc_exchangedata_trampoline()
function Exit (line 996) | func Exit(code int) {
function libc_exit_trampoline (line 1001) | func libc_exit_trampoline()
function Faccessat (line 1008) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function libc_faccessat_trampoline (line 1021) | func libc_faccessat_trampoline()
function Fchdir (line 1028) | func Fchdir(fd int) (err error) {
function libc_fchdir_trampoline (line 1036) | func libc_fchdir_trampoline()
function Fchflags (line 1043) | func Fchflags(fd int, flags int) (err error) {
function libc_fchflags_trampoline (line 1051) | func libc_fchflags_trampoline()
function Fchmod (line 1058) | func Fchmod(fd int, mode uint32) (err error) {
function libc_fchmod_trampoline (line 1066) | func libc_fchmod_trampoline()
function Fchmodat (line 1073) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function libc_fchmodat_trampoline (line 1086) | func libc_fchmodat_trampoline()
function Fchown (line 1093) | func Fchown(fd int, uid int, gid int) (err error) {
function libc_fchown_trampoline (line 1101) | func libc_fchown_trampoline()
function Fchownat (line 1108) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function libc_fchownat_trampoline (line 1121) | func libc_fchownat_trampoline()
function Flock (line 1128) | func Flock(fd int, how int) (err error) {
function libc_flock_trampoline (line 1136) | func libc_flock_trampoline()
function Fpathconf (line 1143) | func Fpathconf(fd int, name int) (val int, err error) {
function libc_fpathconf_trampoline (line 1152) | func libc_fpathconf_trampoline()
function Fsync (line 1159) | func Fsync(fd int) (err error) {
function libc_fsync_trampoline (line 1167) | func libc_fsync_trampoline()
function Ftruncate (line 1174) | func Ftruncate(fd int, length int64) (err error) {
function libc_ftruncate_trampoline (line 1182) | func libc_ftruncate_trampoline()
function Getdtablesize (line 1189) | func Getdtablesize() (size int) {
function libc_getdtablesize_trampoline (line 1195) | func libc_getdtablesize_trampoline()
function Getegid (line 1202) | func Getegid() (egid int) {
function libc_getegid_trampoline (line 1208) | func libc_getegid_trampoline()
function Geteuid (line 1215) | func Geteuid() (uid int) {
function libc_geteuid_trampoline (line 1221) | func libc_geteuid_trampoline()
function Getgid (line 1228) | func Getgid() (gid int) {
function libc_getgid_trampoline (line 1234) | func libc_getgid_trampoline()
function Getpgid (line 1241) | func Getpgid(pid int) (pgid int, err error) {
function libc_getpgid_trampoline (line 1250) | func libc_getpgid_trampoline()
function Getpgrp (line 1257) | func Getpgrp() (pgrp int) {
function libc_getpgrp_trampoline (line 1263) | func libc_getpgrp_trampoline()
function Getpid (line 1270) | func Getpid() (pid int) {
function libc_getpid_trampoline (line 1276) | func libc_getpid_trampoline()
function Getppid (line 1283) | func Getppid() (ppid int) {
function libc_getppid_trampoline (line 1289) | func libc_getppid_trampoline()
function Getpriority (line 1296) | func Getpriority(which int, who int) (prio int, err error) {
function libc_getpriority_trampoline (line 1305) | func libc_getpriority_trampoline()
function Getrlimit (line 1312) | func Getrlimit(which int, lim *Rlimit) (err error) {
function libc_getrlimit_trampoline (line 1320) | func libc_getrlimit_trampoline()
function Getrusage (line 1327) | func Getrusage(who int, rusage *Rusage) (err error) {
function libc_getrusage_trampoline (line 1335) | func libc_getrusage_trampoline()
function Getsid (line 1342) | func Getsid(pid int) (sid int, err error) {
function libc_getsid_trampoline (line 1351) | func libc_getsid_trampoline()
function Getuid (line 1358) | func Getuid() (uid int) {
function libc_getuid_trampoline (line 1364) | func libc_getuid_trampoline()
function Issetugid (line 1371) | func Issetugid() (tainted bool) {
function libc_issetugid_trampoline (line 1377) | func libc_issetugid_trampoline()
function Kqueue (line 1384) | func Kqueue() (fd int, err error) {
function libc_kqueue_trampoline (line 1393) | func libc_kqueue_trampoline()
function Lchown (line 1400) | func Lchown(path string, uid int, gid int) (err error) {
function libc_lchown_trampoline (line 1413) | func libc_lchown_trampoline()
function Link (line 1420) | func Link(path string, link string) (err error) {
function libc_link_trampoline (line 1438) | func libc_link_trampoline()
function Linkat (line 1445) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function libc_linkat_trampoline (line 1463) | func libc_linkat_trampoline()
function Listen (line 1470) | func Listen(s int, backlog int) (err error) {
function libc_listen_trampoline (line 1478) | func libc_listen_trampoline()
function Mkdir (line 1485) | func Mkdir(path string, mode uint32) (err error) {
function libc_mkdir_trampoline (line 1498) | func libc_mkdir_trampoline()
function Mkdirat (line 1505) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function libc_mkdirat_trampoline (line 1518) | func libc_mkdirat_trampoline()
function Mkfifo (line 1525) | func Mkfifo(path string, mode uint32) (err error) {
function libc_mkfifo_trampoline (line 1538) | func libc_mkfifo_trampoline()
function Mknod (line 1545) | func Mknod(path string, mode uint32, dev int) (err error) {
function libc_mknod_trampoline (line 1558) | func libc_mknod_trampoline()
function Open (line 1565) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function libc_open_trampoline (line 1579) | func libc_open_trampoline()
function Openat (line 1586) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function libc_openat_trampoline (line 1600) | func libc_openat_trampoline()
function Pathconf (line 1607) | func Pathconf(path string, name int) (val int, err error) {
function libc_pathconf_trampoline (line 1621) | func libc_pathconf_trampoline()
function Pread (line 1628) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function libc_pread_trampoline (line 1643) | func libc_pread_trampoline()
function Pwrite (line 1650) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function libc_pwrite_trampoline (line 1665) | func libc_pwrite_trampoline()
function read (line 1672) | func read(fd int, p []byte) (n int, err error) {
function libc_read_trampoline (line 1687) | func libc_read_trampoline()
function Readlink (line 1694) | func Readlink(path string, buf []byte) (n int, err error) {
function libc_readlink_trampoline (line 1714) | func libc_readlink_trampoline()
function Readlinkat (line 1721) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function libc_readlinkat_trampoline (line 1741) | func libc_readlinkat_trampoline()
function Rename (line 1748) | func Rename(from string, to string) (err error) {
function libc_rename_trampoline (line 1766) | func libc_rename_trampoline()
function Renameat (line 1773) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function libc_renameat_trampoline (line 1791) | func libc_renameat_trampoline()
function Revoke (line 1798) | func Revoke(path string) (err error) {
function libc_revoke_trampoline (line 1811) | func libc_revoke_trampoline()
function Rmdir (line 1818) | func Rmdir(path string) (err error) {
function libc_rmdir_trampoline (line 1831) | func libc_rmdir_trampoline()
function Seek (line 1838) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function libc_lseek_trampoline (line 1847) | func libc_lseek_trampoline()
function Select (line 1854) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function libc_select_trampoline (line 1862) | func libc_select_trampoline()
function Setegid (line 1869) | func Setegid(egid int) (err error) {
function libc_setegid_trampoline (line 1877) | func libc_setegid_trampoline()
function Seteuid (line 1884) | func Seteuid(euid int) (err error) {
function libc_seteuid_trampoline (line 1892) | func libc_seteuid_trampoline()
function Setgid (line 1899) | func Setgid(gid int) (err error) {
function libc_setgid_trampoline (line 1907) | func libc_setgid_trampoline()
function Setlogin (line 1914) | func Setlogin(name string) (err error) {
function libc_setlogin_trampoline (line 1927) | func libc_setlogin_trampoline()
function Setpgid (line 1934) | func Setpgid(pid int, pgid int) (err error) {
function libc_setpgid_trampoline (line 1942) | func libc_setpgid_trampoline()
function Setpriority (line 1949) | func Setpriority(which int, who int, prio int) (err error) {
function libc_setpriority_trampoline (line 1957) | func libc_setpriority_trampoline()
function Setprivexec (line 1964) | func Setprivexec(flag int) (err error) {
function libc_setprivexec_trampoline (line 1972) | func libc_setprivexec_trampoline()
function Setregid (line 1979) | func Setregid(rgid int, egid int) (err error) {
function libc_setregid_trampoline (line 1987) | func libc_setregid_trampoline()
function Setreuid (line 1994) | func Setreuid(ruid int, euid int) (err error) {
function libc_setreuid_trampoline (line 2002) | func libc_setreuid_trampoline()
function Setrlimit (line 2009) | func Setrlimit(which int, lim *Rlimit) (err error) {
function libc_setrlimit_trampoline (line 2017) | func libc_setrlimit_trampoline()
function Setsid (line 2024) | func Setsid() (pid int, err error) {
function libc_setsid_trampoline (line 2033) | func libc_setsid_trampoline()
function Settimeofday (line 2040) | func Settimeofday(tp *Timeval) (err error) {
function libc_settimeofday_trampoline (line 2048) | func libc_settimeofday_trampoline()
function Setuid (line 2055) | func Setuid(uid int) (err error) {
function libc_setuid_trampoline (line 2063) | func libc_setuid_trampoline()
function Symlink (line 2070) | func Symlink(path string, link string) (err error) {
function libc_symlink_trampoline (line 2088) | func libc_symlink_trampoline()
function Symlinkat (line 2095) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function libc_symlinkat_trampoline (line 2113) | func libc_symlinkat_trampoline()
function Sync (line 2120) | func Sync() (err error) {
function libc_sync_trampoline (line 2128) | func libc_sync_trampoline()
function Truncate (line 2135) | func Truncate(path string, length int64) (err error) {
function libc_truncate_trampoline (line 2148) | func libc_truncate_trampoline()
function Umask (line 2155) | func Umask(newmask int) (oldmask int) {
function libc_umask_trampoline (line 2161) | func libc_umask_trampoline()
function Undelete (line 2168) | func Undelete(path string) (err error) {
function libc_undelete_trampoline (line 2181) | func libc_undelete_trampoline()
function Unlink (line 2188) | func Unlink(path string) (err error) {
function libc_unlink_trampoline (line 2201) | func libc_unlink_trampoline()
function Unlinkat (line 2208) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function libc_unlinkat_trampoline (line 2221) | func libc_unlinkat_trampoline()
function Unmount (line 2228) | func Unmount(path string, flags int) (err error) {
function libc_unmount_trampoline (line 2241) | func libc_unmount_trampoline()
function write (line 2248) | func write(fd int, p []byte) (n int, err error) {
function libc_write_trampoline (line 2263) | func libc_write_trampoline()
function mmap (line 2270) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function libc_mmap_trampoline (line 2279) | func libc_mmap_trampoline()
function munmap (line 2286) | func munmap(addr uintptr, length uintptr) (err error) {
function libc_munmap_trampoline (line 2294) | func libc_munmap_trampoline()
function readlen (line 2301) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 2312) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function sysctl (line 2323) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ...
function libc___sysctl_trampoline (line 2337) | func libc___sysctl_trampoline()
function ptrace (line 2344) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function libc_ptrace_trampoline (line 2352) | func libc_ptrace_trampoline()
function gettimeofday (line 2359) | func gettimeofday(tp *Timeval) (sec int32, usec int32, err error) {
function libc_gettimeofday_trampoline (line 2369) | func libc_gettimeofday_trampoline()
function Fstat (line 2376) | func Fstat(fd int, stat *Stat_t) (err error) {
function libc_fstat64_trampoline (line 2384) | func libc_fstat64_trampoline()
function Fstatat (line 2391) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function libc_fstatat64_trampoline (line 2404) | func libc_fstatat64_trampoline()
function Fstatfs (line 2411) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function libc_fstatfs64_trampoline (line 2419) | func libc_fstatfs64_trampoline()
function Getdirentries (line 2426) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function libc___getdirentries64_trampoline (line 2441) | func libc___getdirentries64_trampoline()
function getfsstat (line 2448) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ...
function libc_getfsstat64_trampoline (line 2457) | func libc_getfsstat64_trampoline()
function Lstat (line 2464) | func Lstat(path string, stat *Stat_t) (err error) {
function libc_lstat64_trampoline (line 2477) | func libc_lstat64_trampoline()
function Stat (line 2484) | func Stat(path string, stat *Stat_t) (err error) {
function libc_stat64_trampoline (line 2497) | func libc_stat64_trampoline()
function Statfs (line 2504) | func Statfs(path string, stat *Statfs_t) (err error) {
function libc_statfs64_trampoline (line 2517) | func libc_statfs64_trampoline()
FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_11.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 utimes (line 217) | func utimes(path string, timeval *[2]Timeval) (err error) {
function futimes (line 232) | func futimes(fd int, timeval *[2]Timeval) (err error) {
function fcntl (line 242) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function poll (line 253) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 264) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 280) | func Mlock(b []byte) (err error) {
function Mlockall (line 296) | func Mlockall(flags int) (err error) {
function Mprotect (line 306) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 322) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 338) | func Munlock(b []byte) (err error) {
function Munlockall (line 354) | func Munlockall() (err error) {
function getattrlist (line 364) | func getattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function pipe (line 374) | func pipe() (r int, w int, err error) {
function getxattr (line 386) | func getxattr(path string, attr string, dest *byte, size int, position u...
function fgetxattr (line 407) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3...
function setxattr (line 423) | func setxattr(path string, attr string, data *byte, size int, position u...
function fsetxattr (line 443) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3...
function removexattr (line 458) | func removexattr(path string, attr string, options int) (err error) {
function fremovexattr (line 478) | func fremovexattr(fd int, attr string, options int) (err error) {
function listxattr (line 493) | func listxattr(path string, dest *byte, size int, options int) (sz int, ...
function flistxattr (line 509) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ...
function setattrlist (line 520) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function kill (line 530) | func kill(pid int, signum int, posix int) (err error) {
function ioctl (line 540) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function sendfile (line 550) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe...
function Access (line 560) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 575) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 585) | func Chdir(path string) (err error) {
function Chflags (line 600) | func Chflags(path string, flags int) (err error) {
function Chmod (line 615) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 630) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 645) | func Chroot(path string) (err error) {
function Close (line 660) | func Close(fd int) (err error) {
function Dup (line 670) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 681) | func Dup2(from int, to int) (err error) {
function Exchangedata (line 691) | func Exchangedata(path1 string, path2 string, options int) (err error) {
function Exit (line 711) | func Exit(code int) {
function Faccessat (line 718) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 733) | func Fchdir(fd int) (err error) {
function Fchflags (line 743) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 753) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 763) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 778) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 788) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 803) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 813) | func Fpathconf(fd int, name int) (val int, err error) {
function Fsync (line 824) | func Fsync(fd int) (err error) {
function Ftruncate (line 834) | func Ftruncate(fd int, length int64) (err error) {
function Getdtablesize (line 844) | func Getdtablesize() (size int) {
function Getegid (line 852) | func Getegid() (egid int) {
function Geteuid (line 860) | func Geteuid() (uid int) {
function Getgid (line 868) | func Getgid() (gid int) {
function Getpgid (line 876) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 887) | func Getpgrp() (pgrp int) {
function Getpid (line 895) | func Getpid() (pid int) {
function Getppid (line 903) | func Getppid() (ppid int) {
function Getpriority (line 911) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 922) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 932) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 942) | func Getsid(pid int) (sid int, err error) {
function Getuid (line 953) | func Getuid() (uid int) {
function Issetugid (line 961) | func Issetugid() (tainted bool) {
function Kqueue (line 969) | func Kqueue() (fd int, err error) {
function Lchown (line 980) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 995) | func Link(path string, link string) (err error) {
function Linkat (line 1015) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1035) | func Listen(s int, backlog int) (err error) {
function Mkdir (line 1045) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1060) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1075) | func Mkfifo(path string, mode uint32) (err error) {
function Mknod (line 1090) | func Mknod(path string, mode uint32, dev int) (err error) {
function Open (line 1105) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1121) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1137) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1153) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1170) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1187) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1204) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1226) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1248) | func Rename(from string, to string) (err error) {
function Renameat (line 1268) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1288) | func Revoke(path string) (err error) {
function Rmdir (line 1303) | func Rmdir(path string) (err error) {
function Seek (line 1318) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1329) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1339) | func Setegid(egid int) (err error) {
function Seteuid (line 1349) | func Seteuid(euid int) (err error) {
function Setgid (line 1359) | func Setgid(gid int) (err error) {
function Setlogin (line 1369) | func Setlogin(name string) (err error) {
function Setpgid (line 1384) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1394) | func Setpriority(which int, who int, prio int) (err error) {
function Setprivexec (line 1404) | func Setprivexec(flag int) (err error) {
function Setregid (line 1414) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1424) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1434) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1444) | func Setsid() (pid int, err error) {
function Settimeofday (line 1455) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1465) | func Setuid(uid int) (err error) {
function Symlink (line 1475) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1495) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1515) | func Sync() (err error) {
function Truncate (line 1525) | func Truncate(path string, length int64) (err error) {
function Umask (line 1540) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1548) | func Undelete(path string) (err error) {
function Unlink (line 1563) | func Unlink(path string) (err error) {
function Unlinkat (line 1578) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1593) | func Unmount(path string, flags int) (err error) {
function write (line 1608) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1625) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1636) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1646) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1657) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function sysctl (line 1668) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ...
function ptrace (line 1684) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function gettimeofday (line 1694) | func gettimeofday(tp *Timeval) (sec int64, usec int32, err error) {
function Fstat (line 1706) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1716) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1731) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function Getdirentries (line 1741) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function getfsstat (line 1758) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ...
function Lstat (line 1769) | func Lstat(path string, stat *Stat_t) (err error) {
function Stat (line 1784) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1799) | func Statfs(path string, stat *Statfs_t) (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 libc_getgroups_trampoline (line 26) | func libc_getgroups_trampoline()
function setgroups (line 33) | func setgroups(ngid int, gid *_Gid_t) (err error) {
function libc_setgroups_trampoline (line 41) | func libc_setgroups_trampoline()
function wait4 (line 48) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function libc_wait4_trampoline (line 57) | func libc_wait4_trampoline()
function accept (line 64) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function libc_accept_trampoline (line 73) | func libc_accept_trampoline()
function bind (line 80) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function libc_bind_trampoline (line 88) | func libc_bind_trampoline()
function connect (line 95) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function libc_connect_trampoline (line 103) | func libc_connect_trampoline()
function socket (line 110) | func socket(domain int, typ int, proto int) (fd int, err error) {
function libc_socket_trampoline (line 119) | func libc_socket_trampoline()
function getsockopt (line 126) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function libc_getsockopt_trampoline (line 134) | func libc_getsockopt_trampoline()
function setsockopt (line 141) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function libc_setsockopt_trampoline (line 149) | func libc_setsockopt_trampoline()
function getpeername (line 156) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function libc_getpeername_trampoline (line 164) | func libc_getpeername_trampoline()
function getsockname (line 171) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function libc_getsockname_trampoline (line 179) | func libc_getsockname_trampoline()
function Shutdown (line 186) | func Shutdown(s int, how int) (err error) {
function libc_shutdown_trampoline (line 194) | func libc_shutdown_trampoline()
function socketpair (line 201) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function libc_socketpair_trampoline (line 209) | func libc_socketpair_trampoline()
function recvfrom (line 216) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function libc_recvfrom_trampoline (line 231) | func libc_recvfrom_trampoline()
function sendto (line 238) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function libc_sendto_trampoline (line 252) | func libc_sendto_trampoline()
function recvmsg (line 259) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function libc_recvmsg_trampoline (line 268) | func libc_recvmsg_trampoline()
function sendmsg (line 275) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function libc_sendmsg_trampoline (line 284) | func libc_sendmsg_trampoline()
function kevent (line 291) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi...
function libc_kevent_trampoline (line 300) | func libc_kevent_trampoline()
function utimes (line 307) | func utimes(path string, timeval *[2]Timeval) (err error) {
function libc_utimes_trampoline (line 320) | func libc_utimes_trampoline()
function futimes (line 327) | func futimes(fd int, timeval *[2]Timeval) (err error) {
function libc_futimes_trampoline (line 335) | func libc_futimes_trampoline()
function fcntl (line 342) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function libc_fcntl_trampoline (line 351) | func libc_fcntl_trampoline()
function poll (line 358) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function libc_poll_trampoline (line 367) | func libc_poll_trampoline()
function Madvise (line 374) | func Madvise(b []byte, behav int) (err error) {
function libc_madvise_trampoline (line 388) | func libc_madvise_trampoline()
function Mlock (line 395) | func Mlock(b []byte) (err error) {
function libc_mlock_trampoline (line 409) | func libc_mlock_trampoline()
function Mlockall (line 416) | func Mlockall(flags int) (err error) {
function libc_mlockall_trampoline (line 424) | func libc_mlockall_trampoline()
function Mprotect (line 431) | func Mprotect(b []byte, prot int) (err error) {
function libc_mprotect_trampoline (line 445) | func libc_mprotect_trampoline()
function Msync (line 452) | func Msync(b []byte, flags int) (err error) {
function libc_msync_trampoline (line 466) | func libc_msync_trampoline()
function Munlock (line 473) | func Munlock(b []byte) (err error) {
function libc_munlock_trampoline (line 487) | func libc_munlock_trampoline()
function Munlockall (line 494) | func Munlockall() (err error) {
function libc_munlockall_trampoline (line 502) | func libc_munlockall_trampoline()
function getattrlist (line 509) | func getattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function libc_getattrlist_trampoline (line 517) | func libc_getattrlist_trampoline()
function pipe (line 524) | func pipe() (r int, w int, err error) {
function libc_pipe_trampoline (line 534) | func libc_pipe_trampoline()
function getxattr (line 541) | func getxattr(path string, attr string, dest *byte, size int, position u...
function libc_getxattr_trampoline (line 560) | func libc_getxattr_trampoline()
function fgetxattr (line 567) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3...
function libc_fgetxattr_trampoline (line 581) | func libc_fgetxattr_trampoline()
function setxattr (line 588) | func setxattr(path string, attr string, data *byte, size int, position u...
function libc_setxattr_trampoline (line 606) | func libc_setxattr_trampoline()
function fsetxattr (line 613) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3...
function libc_fsetxattr_trampoline (line 626) | func libc_fsetxattr_trampoline()
function removexattr (line 633) | func removexattr(path string, attr string, options int) (err error) {
function libc_removexattr_trampoline (line 651) | func libc_removexattr_trampoline()
function fremovexattr (line 658) | func fremovexattr(fd int, attr string, options int) (err error) {
function libc_fremovexattr_trampoline (line 671) | func libc_fremovexattr_trampoline()
function listxattr (line 678) | func listxattr(path string, dest *byte, size int, options int) (sz int, ...
function libc_listxattr_trampoline (line 692) | func libc_listxattr_trampoline()
function flistxattr (line 699) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ...
function libc_flistxattr_trampoline (line 708) | func libc_flistxattr_trampoline()
function setattrlist (line 715) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function libc_setattrlist_trampoline (line 723) | func libc_setattrlist_trampoline()
function kill (line 730) | func kill(pid int, signum int, posix int) (err error) {
function libc_kill_trampoline (line 738) | func libc_kill_trampoline()
function ioctl (line 745) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function libc_ioctl_trampoline (line 753) | func libc_ioctl_trampoline()
function sendfile (line 760) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe...
function libc_sendfile_trampoline (line 768) | func libc_sendfile_trampoline()
function Access (line 775) | func Access(path string, mode uint32) (err error) {
function libc_access_trampoline (line 788) | func libc_access_trampoline()
function Adjtime (line 795) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function libc_adjtime_trampoline (line 803) | func libc_adjtime_trampoline()
function Chdir (line 810) | func Chdir(path string) (err error) {
function libc_chdir_trampoline (line 823) | func libc_chdir_trampoline()
function Chflags (line 830) | func Chflags(path string, flags int) (err error) {
function libc_chflags_trampoline (line 843) | func libc_chflags_trampoline()
function Chmod (line 850) | func Chmod(path string, mode uint32) (err error) {
function libc_chmod_trampoline (line 863) | func libc_chmod_trampoline()
function Chown (line 870) | func Chown(path string, uid int, gid int) (err error) {
function libc_chown_trampoline (line 883) | func libc_chown_trampoline()
function Chroot (line 890) | func Chroot(path string) (err error) {
function libc_chroot_trampoline (line 903) | func libc_chroot_trampoline()
function ClockGettime (line 910) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function libc_clock_gettime_trampoline (line 918) | func libc_clock_gettime_trampoline()
function Close (line 925) | func Close(fd int) (err error) {
function libc_close_trampoline (line 933) | func libc_close_trampoline()
function Dup (line 940) | func Dup(fd int) (nfd int, err error) {
function libc_dup_trampoline (line 949) | func libc_dup_trampoline()
function Dup2 (line 956) | func Dup2(from int, to int) (err error) {
function libc_dup2_trampoline (line 964) | func libc_dup2_trampoline()
function Exchangedata (line 971) | func Exchangedata(path1 string, path2 string, options int) (err error) {
function libc_exchangedata_trampoline (line 989) | func libc_exchangedata_trampoline()
function Exit (line 996) | func Exit(code int) {
function libc_exit_trampoline (line 1001) | func libc_exit_trampoline()
function Faccessat (line 1008) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function libc_faccessat_trampoline (line 1021) | func libc_faccessat_trampoline()
function Fchdir (line 1028) | func Fchdir(fd int) (err error) {
function libc_fchdir_trampoline (line 1036) | func libc_fchdir_trampoline()
function Fchflags (line 1043) | func Fchflags(fd int, flags int) (err error) {
function libc_fchflags_trampoline (line 1051) | func libc_fchflags_trampoline()
function Fchmod (line 1058) | func Fchmod(fd int, mode uint32) (err error) {
function libc_fchmod_trampoline (line 1066) | func libc_fchmod_trampoline()
function Fchmodat (line 1073) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function libc_fchmodat_trampoline (line 1086) | func libc_fchmodat_trampoline()
function Fchown (line 1093) | func Fchown(fd int, uid int, gid int) (err error) {
function libc_fchown_trampoline (line 1101) | func libc_fchown_trampoline()
function Fchownat (line 1108) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function libc_fchownat_trampoline (line 1121) | func libc_fchownat_trampoline()
function Flock (line 1128) | func Flock(fd int, how int) (err error) {
function libc_flock_trampoline (line 1136) | func libc_flock_trampoline()
function Fpathconf (line 1143) | func Fpathconf(fd int, name int) (val int, err error) {
function libc_fpathconf_trampoline (line 1152) | func libc_fpathconf_trampoline()
function Fsync (line 1159) | func Fsync(fd int) (err error) {
function libc_fsync_trampoline (line 1167) | func libc_fsync_trampoline()
function Ftruncate (line 1174) | func Ftruncate(fd int, length int64) (err error) {
function libc_ftruncate_trampoline (line 1182) | func libc_ftruncate_trampoline()
function Getdtablesize (line 1189) | func Getdtablesize() (size int) {
function libc_getdtablesize_trampoline (line 1195) | func libc_getdtablesize_trampoline()
function Getegid (line 1202) | func Getegid() (egid int) {
function libc_getegid_trampoline (line 1208) | func libc_getegid_trampoline()
function Geteuid (line 1215) | func Geteuid() (uid int) {
function libc_geteuid_trampoline (line 1221) | func libc_geteuid_trampoline()
function Getgid (line 1228) | func Getgid() (gid int) {
function libc_getgid_trampoline (line 1234) | func libc_getgid_trampoline()
function Getpgid (line 1241) | func Getpgid(pid int) (pgid int, err error) {
function libc_getpgid_trampoline (line 1250) | func libc_getpgid_trampoline()
function Getpgrp (line 1257) | func Getpgrp() (pgrp int) {
function libc_getpgrp_trampoline (line 1263) | func libc_getpgrp_trampoline()
function Getpid (line 1270) | func Getpid() (pid int) {
function libc_getpid_trampoline (line 1276) | func libc_getpid_trampoline()
function Getppid (line 1283) | func Getppid() (ppid int) {
function libc_getppid_trampoline (line 1289) | func libc_getppid_trampoline()
function Getpriority (line 1296) | func Getpriority(which int, who int) (prio int, err error) {
function libc_getpriority_trampoline (line 1305) | func libc_getpriority_trampoline()
function Getrlimit (line 1312) | func Getrlimit(which int, lim *Rlimit) (err error) {
function libc_getrlimit_trampoline (line 1320) | func libc_getrlimit_trampoline()
function Getrusage (line 1327) | func Getrusage(who int, rusage *Rusage) (err error) {
function libc_getrusage_trampoline (line 1335) | func libc_getrusage_trampoline()
function Getsid (line 1342) | func Getsid(pid int) (sid int, err error) {
function libc_getsid_trampoline (line 1351) | func libc_getsid_trampoline()
function Getuid (line 1358) | func Getuid() (uid int) {
function libc_getuid_trampoline (line 1364) | func libc_getuid_trampoline()
function Issetugid (line 1371) | func Issetugid() (tainted bool) {
function libc_issetugid_trampoline (line 1377) | func libc_issetugid_trampoline()
function Kqueue (line 1384) | func Kqueue() (fd int, err error) {
function libc_kqueue_trampoline (line 1393) | func libc_kqueue_trampoline()
function Lchown (line 1400) | func Lchown(path string, uid int, gid int) (err error) {
function libc_lchown_trampoline (line 1413) | func libc_lchown_trampoline()
function Link (line 1420) | func Link(path string, link string) (err error) {
function libc_link_trampoline (line 1438) | func libc_link_trampoline()
function Linkat (line 1445) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function libc_linkat_trampoline (line 1463) | func libc_linkat_trampoline()
function Listen (line 1470) | func Listen(s int, backlog int) (err error) {
function libc_listen_trampoline (line 1478) | func libc_listen_trampoline()
function Mkdir (line 1485) | func Mkdir(path string, mode uint32) (err error) {
function libc_mkdir_trampoline (line 1498) | func libc_mkdir_trampoline()
function Mkdirat (line 1505) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function libc_mkdirat_trampoline (line 1518) | func libc_mkdirat_trampoline()
function Mkfifo (line 1525) | func Mkfifo(path string, mode uint32) (err error) {
function libc_mkfifo_trampoline (line 1538) | func libc_mkfifo_trampoline()
function Mknod (line 1545) | func Mknod(path string, mode uint32, dev int) (err error) {
function libc_mknod_trampoline (line 1558) | func libc_mknod_trampoline()
function Open (line 1565) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function libc_open_trampoline (line 1579) | func libc_open_trampoline()
function Openat (line 1586) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function libc_openat_trampoline (line 1600) | func libc_openat_trampoline()
function Pathconf (line 1607) | func Pathconf(path string, name int) (val int, err error) {
function libc_pathconf_trampoline (line 1621) | func libc_pathconf_trampoline()
function Pread (line 1628) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function libc_pread_trampoline (line 1643) | func libc_pread_trampoline()
function Pwrite (line 1650) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function libc_pwrite_trampoline (line 1665) | func libc_pwrite_trampoline()
function read (line 1672) | func read(fd int, p []byte) (n int, err error) {
function libc_read_trampoline (line 1687) | func libc_read_trampoline()
function Readlink (line 1694) | func Readlink(path string, buf []byte) (n int, err error) {
function libc_readlink_trampoline (line 1714) | func libc_readlink_trampoline()
function Readlinkat (line 1721) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function libc_readlinkat_trampoline (line 1741) | func libc_readlinkat_trampoline()
function Rename (line 1748) | func Rename(from string, to string) (err error) {
function libc_rename_trampoline (line 1766) | func libc_rename_trampoline()
function Renameat (line 1773) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function libc_renameat_trampoline (line 1791) | func libc_renameat_trampoline()
function Revoke (line 1798) | func Revoke(path string) (err error) {
function libc_revoke_trampoline (line 1811) | func libc_revoke_trampoline()
function Rmdir (line 1818) | func Rmdir(path string) (err error) {
function libc_rmdir_trampoline (line 1831) | func libc_rmdir_trampoline()
function Seek (line 1838) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function libc_lseek_trampoline (line 1847) | func libc_lseek_trampoline()
function Select (line 1854) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function libc_select_trampoline (line 1862) | func libc_select_trampoline()
function Setegid (line 1869) | func Setegid(egid int) (err error) {
function libc_setegid_trampoline (line 1877) | func libc_setegid_trampoline()
function Seteuid (line 1884) | func Seteuid(euid int) (err error) {
function libc_seteuid_trampoline (line 1892) | func libc_seteuid_trampoline()
function Setgid (line 1899) | func Setgid(gid int) (err error) {
function libc_setgid_trampoline (line 1907) | func libc_setgid_trampoline()
function Setlogin (line 1914) | func Setlogin(name string) (err error) {
function libc_setlogin_trampoline (line 1927) | func libc_setlogin_trampoline()
function Setpgid (line 1934) | func Setpgid(pid int, pgid int) (err error) {
function libc_setpgid_trampoline (line 1942) | func libc_setpgid_trampoline()
function Setpriority (line 1949) | func Setpriority(which int, who int, prio int) (err error) {
function libc_setpriority_trampoline (line 1957) | func libc_setpriority_trampoline()
function Setprivexec (line 1964) | func Setprivexec(flag int) (err error) {
function libc_setprivexec_trampoline (line 1972) | func libc_setprivexec_trampoline()
function Setregid (line 1979) | func Setregid(rgid int, egid int) (err error) {
function libc_setregid_trampoline (line 1987) | func libc_setregid_trampoline()
function Setreuid (line 1994) | func Setreuid(ruid int, euid int) (err error) {
function libc_setreuid_trampoline (line 2002) | func libc_setreuid_trampoline()
function Setrlimit (line 2009) | func Setrlimit(which int, lim *Rlimit) (err error) {
function libc_setrlimit_trampoline (line 2017) | func libc_setrlimit_trampoline()
function Setsid (line 2024) | func Setsid() (pid int, err error) {
function libc_setsid_trampoline (line 2033) | func libc_setsid_trampoline()
function Settimeofday (line 2040) | func Settimeofday(tp *Timeval) (err error) {
function libc_settimeofday_trampoline (line 2048) | func libc_settimeofday_trampoline()
function Setuid (line 2055) | func Setuid(uid int) (err error) {
function libc_setuid_trampoline (line 2063) | func libc_setuid_trampoline()
function Symlink (line 2070) | func Symlink(path string, link string) (err error) {
function libc_symlink_trampoline (line 2088) | func libc_symlink_trampoline()
function Symlinkat (line 2095) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function libc_symlinkat_trampoline (line 2113) | func libc_symlinkat_trampoline()
function Sync (line 2120) | func Sync() (err error) {
function libc_sync_trampoline (line 2128) | func libc_sync_trampoline()
function Truncate (line 2135) | func Truncate(path string, length int64) (err error) {
function libc_truncate_trampoline (line 2148) | func libc_truncate_trampoline()
function Umask (line 2155) | func Umask(newmask int) (oldmask int) {
function libc_umask_trampoline (line 2161) | func libc_umask_trampoline()
function Undelete (line 2168) | func Undelete(path string) (err error) {
function libc_undelete_trampoline (line 2181) | func libc_undelete_trampoline()
function Unlink (line 2188) | func Unlink(path string) (err error) {
function libc_unlink_trampoline (line 2201) | func libc_unlink_trampoline()
function Unlinkat (line 2208) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function libc_unlinkat_trampoline (line 2221) | func libc_unlinkat_trampoline()
function Unmount (line 2228) | func Unmount(path string, flags int) (err error) {
function libc_unmount_trampoline (line 2241) | func libc_unmount_trampoline()
function write (line 2248) | func write(fd int, p []byte) (n int, err error) {
function libc_write_trampoline (line 2263) | func libc_write_trampoline()
function mmap (line 2270) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function libc_mmap_trampoline (line 2279) | func libc_mmap_trampoline()
function munmap (line 2286) | func munmap(addr uintptr, length uintptr) (err error) {
function libc_munmap_trampoline (line 2294) | func libc_munmap_trampoline()
function readlen (line 2301) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 2312) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function sysctl (line 2323) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ...
function libc___sysctl_trampoline (line 2337) | func libc___sysctl_trampoline()
function ptrace (line 2344) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function libc_ptrace_trampoline (line 2352) | func libc_ptrace_trampoline()
function gettimeofday (line 2359) | func gettimeofday(tp *Timeval) (sec int64, usec int32, err error) {
function libc_gettimeofday_trampoline (line 2369) | func libc_gettimeofday_trampoline()
function Fstat (line 2376) | func Fstat(fd int, stat *Stat_t) (err error) {
function libc_fstat64_trampoline (line 2384) | func libc_fstat64_trampoline()
function Fstatat (line 2391) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function libc_fstatat64_trampoline (line 2404) | func libc_fstatat64_trampoline()
function Fstatfs (line 2411) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function libc_fstatfs64_trampoline (line 2419) | func libc_fstatfs64_trampoline()
function Getdirentries (line 2426) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function libc___getdirentries64_trampoline (line 2441) | func libc___getdirentries64_trampoline()
function getfsstat (line 2448) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ...
function libc_getfsstat64_trampoline (line 2457) | func libc_getfsstat64_trampoline()
function Lstat (line 2464) | func Lstat(path string, stat *Stat_t) (err error) {
function libc_lstat64_trampoline (line 2477) | func libc_lstat64_trampoline()
function Stat (line 2484) | func Stat(path string, stat *Stat_t) (err error) {
function libc_stat64_trampoline (line 2497) | func libc_stat64_trampoline()
function Statfs (line 2504) | func Statfs(path string, stat *Statfs_t) (err error) {
function libc_statfs64_trampoline (line 2517) | func libc_statfs64_trampoline()
FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_11.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 utimes (line 217) | func utimes(path string, timeval *[2]Timeval) (err error) {
function futimes (line 232) | func futimes(fd int, timeval *[2]Timeval) (err error) {
function fcntl (line 242) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function poll (line 253) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 264) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 280) | func Mlock(b []byte) (err error) {
function Mlockall (line 296) | func Mlockall(flags int) (err error) {
function Mprotect (line 306) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 322) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 338) | func Munlock(b []byte) (err error) {
function Munlockall (line 354) | func Munlockall() (err error) {
function getattrlist (line 364) | func getattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function pipe (line 374) | func pipe() (r int, w int, err error) {
function getxattr (line 386) | func getxattr(path string, attr string, dest *byte, size int, position u...
function fgetxattr (line 407) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3...
function setxattr (line 423) | func setxattr(path string, attr string, data *byte, size int, position u...
function fsetxattr (line 443) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3...
function removexattr (line 458) | func removexattr(path string, attr string, options int) (err error) {
function fremovexattr (line 478) | func fremovexattr(fd int, attr string, options int) (err error) {
function listxattr (line 493) | func listxattr(path string, dest *byte, size int, options int) (sz int, ...
function flistxattr (line 509) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ...
function setattrlist (line 520) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function kill (line 530) | func kill(pid int, signum int, posix int) (err error) {
function ioctl (line 540) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function sendfile (line 550) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe...
function Access (line 560) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 575) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 585) | func Chdir(path string) (err error) {
function Chflags (line 600) | func Chflags(path string, flags int) (err error) {
function Chmod (line 615) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 630) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 645) | func Chroot(path string) (err error) {
function Close (line 660) | func Close(fd int) (err error) {
function Dup (line 670) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 681) | func Dup2(from int, to int) (err error) {
function Exchangedata (line 691) | func Exchangedata(path1 string, path2 string, options int) (err error) {
function Exit (line 711) | func Exit(code int) {
function Faccessat (line 718) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 733) | func Fchdir(fd int) (err error) {
function Fchflags (line 743) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 753) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 763) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 778) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 788) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 803) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 813) | func Fpathconf(fd int, name int) (val int, err error) {
function Fsync (line 824) | func Fsync(fd int) (err error) {
function Ftruncate (line 834) | func Ftruncate(fd int, length int64) (err error) {
function Getdtablesize (line 844) | func Getdtablesize() (size int) {
function Getegid (line 852) | func Getegid() (egid int) {
function Geteuid (line 860) | func Geteuid() (uid int) {
function Getgid (line 868) | func Getgid() (gid int) {
function Getpgid (line 876) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 887) | func Getpgrp() (pgrp int) {
function Getpid (line 895) | func Getpid() (pid int) {
function Getppid (line 903) | func Getppid() (ppid int) {
function Getpriority (line 911) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 922) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 932) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 942) | func Getsid(pid int) (sid int, err error) {
function Getuid (line 953) | func Getuid() (uid int) {
function Issetugid (line 961) | func Issetugid() (tainted bool) {
function Kqueue (line 969) | func Kqueue() (fd int, err error) {
function Lchown (line 980) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 995) | func Link(path string, link string) (err error) {
function Linkat (line 1015) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1035) | func Listen(s int, backlog int) (err error) {
function Mkdir (line 1045) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1060) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1075) | func Mkfifo(path string, mode uint32) (err error) {
function Mknod (line 1090) | func Mknod(path string, mode uint32, dev int) (err error) {
function Open (line 1105) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1121) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1137) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1153) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1170) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1187) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1204) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1226) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1248) | func Rename(from string, to string) (err error) {
function Renameat (line 1268) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1288) | func Revoke(path string) (err error) {
function Rmdir (line 1303) | func Rmdir(path string) (err error) {
function Seek (line 1318) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1329) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1339) | func Setegid(egid int) (err error) {
function Seteuid (line 1349) | func Seteuid(euid int) (err error) {
function Setgid (line 1359) | func Setgid(gid int) (err error) {
function Setlogin (line 1369) | func Setlogin(name string) (err error) {
function Setpgid (line 1384) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1394) | func Setpriority(which int, who int, prio int) (err error) {
function Setprivexec (line 1404) | func Setprivexec(flag int) (err error) {
function Setregid (line 1414) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1424) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1434) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1444) | func Setsid() (pid int, err error) {
function Settimeofday (line 1455) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1465) | func Setuid(uid int) (err error) {
function Symlink (line 1475) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1495) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1515) | func Sync() (err error) {
function Truncate (line 1525) | func Truncate(path string, length int64) (err error) {
function Umask (line 1540) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1548) | func Undelete(path string) (err error) {
function Unlink (line 1563) | func Unlink(path string) (err error) {
function Unlinkat (line 1578) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1593) | func Unmount(path string, flags int) (err error) {
function write (line 1608) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1625) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1636) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1646) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1657) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function gettimeofday (line 1668) | func gettimeofday(tp *Timeval) (sec int32, usec int32, err error) {
function Fstat (line 1680) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1690) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1705) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function getfsstat (line 1715) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ...
function Lstat (line 1726) | func Lstat(path string, stat *Stat_t) (err error) {
function Stat (line 1741) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1756) | func Statfs(path string, stat *Statfs_t) (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 libc_getgroups_trampoline (line 26) | func libc_getgroups_trampoline()
function setgroups (line 33) | func setgroups(ngid int, gid *_Gid_t) (err error) {
function libc_setgroups_trampoline (line 41) | func libc_setgroups_trampoline()
function wait4 (line 48) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function libc_wait4_trampoline (line 57) | func libc_wait4_trampoline()
function accept (line 64) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function libc_accept_trampoline (line 73) | func libc_accept_trampoline()
function bind (line 80) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function libc_bind_trampoline (line 88) | func libc_bind_trampoline()
function connect (line 95) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function libc_connect_trampoline (line 103) | func libc_connect_trampoline()
function socket (line 110) | func socket(domain int, typ int, proto int) (fd int, err error) {
function libc_socket_trampoline (line 119) | func libc_socket_trampoline()
function getsockopt (line 126) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function libc_getsockopt_trampoline (line 134) | func libc_getsockopt_trampoline()
function setsockopt (line 141) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function libc_setsockopt_trampoline (line 149) | func libc_setsockopt_trampoline()
function getpeername (line 156) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function libc_getpeername_trampoline (line 164) | func libc_getpeername_trampoline()
function getsockname (line 171) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function libc_getsockname_trampoline (line 179) | func libc_getsockname_trampoline()
function Shutdown (line 186) | func Shutdown(s int, how int) (err error) {
function libc_shutdown_trampoline (line 194) | func libc_shutdown_trampoline()
function socketpair (line 201) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function libc_socketpair_trampoline (line 209) | func libc_socketpair_trampoline()
function recvfrom (line 216) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function libc_recvfrom_trampoline (line 231) | func libc_recvfrom_trampoline()
function sendto (line 238) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function libc_sendto_trampoline (line 252) | func libc_sendto_trampoline()
function recvmsg (line 259) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function libc_recvmsg_trampoline (line 268) | func libc_recvmsg_trampoline()
function sendmsg (line 275) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function libc_sendmsg_trampoline (line 284) | func libc_sendmsg_trampoline()
function kevent (line 291) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi...
function libc_kevent_trampoline (line 300) | func libc_kevent_trampoline()
function utimes (line 307) | func utimes(path string, timeval *[2]Timeval) (err error) {
function libc_utimes_trampoline (line 320) | func libc_utimes_trampoline()
function futimes (line 327) | func futimes(fd int, timeval *[2]Timeval) (err error) {
function libc_futimes_trampoline (line 335) | func libc_futimes_trampoline()
function fcntl (line 342) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function libc_fcntl_trampoline (line 351) | func libc_fcntl_trampoline()
function poll (line 358) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function libc_poll_trampoline (line 367) | func libc_poll_trampoline()
function Madvise (line 374) | func Madvise(b []byte, behav int) (err error) {
function libc_madvise_trampoline (line 388) | func libc_madvise_trampoline()
function Mlock (line 395) | func Mlock(b []byte) (err error) {
function libc_mlock_trampoline (line 409) | func libc_mlock_trampoline()
function Mlockall (line 416) | func Mlockall(flags int) (err error) {
function libc_mlockall_trampoline (line 424) | func libc_mlockall_trampoline()
function Mprotect (line 431) | func Mprotect(b []byte, prot int) (err error) {
function libc_mprotect_trampoline (line 445) | func libc_mprotect_trampoline()
function Msync (line 452) | func Msync(b []byte, flags int) (err error) {
function libc_msync_trampoline (line 466) | func libc_msync_trampoline()
function Munlock (line 473) | func Munlock(b []byte) (err error) {
function libc_munlock_trampoline (line 487) | func libc_munlock_trampoline()
function Munlockall (line 494) | func Munlockall() (err error) {
function libc_munlockall_trampoline (line 502) | func libc_munlockall_trampoline()
function getattrlist (line 509) | func getattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function libc_getattrlist_trampoline (line 517) | func libc_getattrlist_trampoline()
function pipe (line 524) | func pipe() (r int, w int, err error) {
function libc_pipe_trampoline (line 534) | func libc_pipe_trampoline()
function getxattr (line 541) | func getxattr(path string, attr string, dest *byte, size int, position u...
function libc_getxattr_trampoline (line 560) | func libc_getxattr_trampoline()
function fgetxattr (line 567) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3...
function libc_fgetxattr_trampoline (line 581) | func libc_fgetxattr_trampoline()
function setxattr (line 588) | func setxattr(path string, attr string, data *byte, size int, position u...
function libc_setxattr_trampoline (line 606) | func libc_setxattr_trampoline()
function fsetxattr (line 613) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3...
function libc_fsetxattr_trampoline (line 626) | func libc_fsetxattr_trampoline()
function removexattr (line 633) | func removexattr(path string, attr string, options int) (err error) {
function libc_removexattr_trampoline (line 651) | func libc_removexattr_trampoline()
function fremovexattr (line 658) | func fremovexattr(fd int, attr string, options int) (err error) {
function libc_fremovexattr_trampoline (line 671) | func libc_fremovexattr_trampoline()
function listxattr (line 678) | func listxattr(path string, dest *byte, size int, options int) (sz int, ...
function libc_listxattr_trampoline (line 692) | func libc_listxattr_trampoline()
function flistxattr (line 699) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ...
function libc_flistxattr_trampoline (line 708) | func libc_flistxattr_trampoline()
function setattrlist (line 715) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function libc_setattrlist_trampoline (line 723) | func libc_setattrlist_trampoline()
function kill (line 730) | func kill(pid int, signum int, posix int) (err error) {
function libc_kill_trampoline (line 738) | func libc_kill_trampoline()
function ioctl (line 745) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function libc_ioctl_trampoline (line 753) | func libc_ioctl_trampoline()
function sendfile (line 760) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe...
function libc_sendfile_trampoline (line 768) | func libc_sendfile_trampoline()
function Access (line 775) | func Access(path string, mode uint32) (err error) {
function libc_access_trampoline (line 788) | func libc_access_trampoline()
function Adjtime (line 795) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function libc_adjtime_trampoline (line 803) | func libc_adjtime_trampoline()
function Chdir (line 810) | func Chdir(path string) (err error) {
function libc_chdir_trampoline (line 823) | func libc_chdir_trampoline()
function Chflags (line 830) | func Chflags(path string, flags int) (err error) {
function libc_chflags_trampoline (line 843) | func libc_chflags_trampoline()
function Chmod (line 850) | func Chmod(path string, mode uint32) (err error) {
function libc_chmod_trampoline (line 863) | func libc_chmod_trampoline()
function Chown (line 870) | func Chown(path string, uid int, gid int) (err error) {
function libc_chown_trampoline (line 883) | func libc_chown_trampoline()
function Chroot (line 890) | func Chroot(path string) (err error) {
function libc_chroot_trampoline (line 903) | func libc_chroot_trampoline()
function ClockGettime (line 910) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function libc_clock_gettime_trampoline (line 918) | func libc_clock_gettime_trampoline()
function Close (line 925) | func Close(fd int) (err error) {
function libc_close_trampoline (line 933) | func libc_close_trampoline()
function Dup (line 940) | func Dup(fd int) (nfd int, err error) {
function libc_dup_trampoline (line 949) | func libc_dup_trampoline()
function Dup2 (line 956) | func Dup2(from int, to int) (err error) {
function libc_dup2_trampoline (line 964) | func libc_dup2_trampoline()
function Exchangedata (line 971) | func Exchangedata(path1 string, path2 string, options int) (err error) {
function libc_exchangedata_trampoline (line 989) | func libc_exchangedata_trampoline()
function Exit (line 996) | func Exit(code int) {
function libc_exit_trampoline (line 1001) | func libc_exit_trampoline()
function Faccessat (line 1008) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function libc_faccessat_trampoline (line 1021) | func libc_faccessat_trampoline()
function Fchdir (line 1028) | func Fchdir(fd int) (err error) {
function libc_fchdir_trampoline (line 1036) | func libc_fchdir_trampoline()
function Fchflags (line 1043) | func Fchflags(fd int, flags int) (err error) {
function libc_fchflags_trampoline (line 1051) | func libc_fchflags_trampoline()
function Fchmod (line 1058) | func Fchmod(fd int, mode uint32) (err error) {
function libc_fchmod_trampoline (line 1066) | func libc_fchmod_trampoline()
function Fchmodat (line 1073) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function libc_fchmodat_trampoline (line 1086) | func libc_fchmodat_trampoline()
function Fchown (line 1093) | func Fchown(fd int, uid int, gid int) (err error) {
function libc_fchown_trampoline (line 1101) | func libc_fchown_trampoline()
function Fchownat (line 1108) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function libc_fchownat_trampoline (line 1121) | func libc_fchownat_trampoline()
function Flock (line 1128) | func Flock(fd int, how int) (err error) {
function libc_flock_trampoline (line 1136) | func libc_flock_trampoline()
function Fpathconf (line 1143) | func Fpathconf(fd int, name int) (val int, err error) {
function libc_fpathconf_trampoline (line 1152) | func libc_fpathconf_trampoline()
function Fsync (line 1159) | func Fsync(fd int) (err error) {
function libc_fsync_trampoline (line 1167) | func libc_fsync_trampoline()
function Ftruncate (line 1174) | func Ftruncate(fd int, length int64) (err error) {
function libc_ftruncate_trampoline (line 1182) | func libc_ftruncate_trampoline()
function Getdtablesize (line 1189) | func Getdtablesize() (size int) {
function libc_getdtablesize_trampoline (line 1195) | func libc_getdtablesize_trampoline()
function Getegid (line 1202) | func Getegid() (egid int) {
function libc_getegid_trampoline (line 1208) | func libc_getegid_trampoline()
function Geteuid (line 1215) | func Geteuid() (uid int) {
function libc_geteuid_trampoline (line 1221) | func libc_geteuid_trampoline()
function Getgid (line 1228) | func Getgid() (gid int) {
function libc_getgid_trampoline (line 1234) | func libc_getgid_trampoline()
function Getpgid (line 1241) | func Getpgid(pid int) (pgid int, err error) {
function libc_getpgid_trampoline (line 1250) | func libc_getpgid_trampoline()
function Getpgrp (line 1257) | func Getpgrp() (pgrp int) {
function libc_getpgrp_trampoline (line 1263) | func libc_getpgrp_trampoline()
function Getpid (line 1270) | func Getpid() (pid int) {
function libc_getpid_trampoline (line 1276) | func libc_getpid_trampoline()
function Getppid (line 1283) | func Getppid() (ppid int) {
function libc_getppid_trampoline (line 1289) | func libc_getppid_trampoline()
function Getpriority (line 1296) | func Getpriority(which int, who int) (prio int, err error) {
function libc_getpriority_trampoline (line 1305) | func libc_getpriority_trampoline()
function Getrlimit (line 1312) | func Getrlimit(which int, lim *Rlimit) (err error) {
function libc_getrlimit_trampoline (line 1320) | func libc_getrlimit_trampoline()
function Getrusage (line 1327) | func Getrusage(who int, rusage *Rusage) (err error) {
function libc_getrusage_trampoline (line 1335) | func libc_getrusage_trampoline()
function Getsid (line 1342) | func Getsid(pid int) (sid int, err error) {
function libc_getsid_trampoline (line 1351) | func libc_getsid_trampoline()
function Getuid (line 1358) | func Getuid() (uid int) {
function libc_getuid_trampoline (line 1364) | func libc_getuid_trampoline()
function Issetugid (line 1371) | func Issetugid() (tainted bool) {
function libc_issetugid_trampoline (line 1377) | func libc_issetugid_trampoline()
function Kqueue (line 1384) | func Kqueue() (fd int, err error) {
function libc_kqueue_trampoline (line 1393) | func libc_kqueue_trampoline()
function Lchown (line 1400) | func Lchown(path string, uid int, gid int) (err error) {
function libc_lchown_trampoline (line 1413) | func libc_lchown_trampoline()
function Link (line 1420) | func Link(path string, link string) (err error) {
function libc_link_trampoline (line 1438) | func libc_link_trampoline()
function Linkat (line 1445) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function libc_linkat_trampoline (line 1463) | func libc_linkat_trampoline()
function Listen (line 1470) | func Listen(s int, backlog int) (err error) {
function libc_listen_trampoline (line 1478) | func libc_listen_trampoline()
function Mkdir (line 1485) | func Mkdir(path string, mode uint32) (err error) {
function libc_mkdir_trampoline (line 1498) | func libc_mkdir_trampoline()
function Mkdirat (line 1505) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function libc_mkdirat_trampoline (line 1518) | func libc_mkdirat_trampoline()
function Mkfifo (line 1525) | func Mkfifo(path string, mode uint32) (err error) {
function libc_mkfifo_trampoline (line 1538) | func libc_mkfifo_trampoline()
function Mknod (line 1545) | func Mknod(path string, mode uint32, dev int) (err error) {
function libc_mknod_trampoline (line 1558) | func libc_mknod_trampoline()
function Open (line 1565) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function libc_open_trampoline (line 1579) | func libc_open_trampoline()
function Openat (line 1586) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function libc_openat_trampoline (line 1600) | func libc_openat_trampoline()
function Pathconf (line 1607) | func Pathconf(path string, name int) (val int, err error) {
function libc_pathconf_trampoline (line 1621) | func libc_pathconf_trampoline()
function Pread (line 1628) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function libc_pread_trampoline (line 1643) | func libc_pread_trampoline()
function Pwrite (line 1650) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function libc_pwrite_trampoline (line 1665) | func libc_pwrite_trampoline()
function read (line 1672) | func read(fd int, p []byte) (n int, err error) {
function libc_read_trampoline (line 1687) | func libc_read_trampoline()
function Readlink (line 1694) | func Readlink(path string, buf []byte) (n int, err error) {
function libc_readlink_trampoline (line 1714) | func libc_readlink_trampoline()
function Readlinkat (line 1721) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function libc_readlinkat_trampoline (line 1741) | func libc_readlinkat_trampoline()
function Rename (line 1748) | func Rename(from string, to string) (err error) {
function libc_rename_trampoline (line 1766) | func libc_rename_trampoline()
function Renameat (line 1773) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function libc_renameat_trampoline (line 1791) | func libc_renameat_trampoline()
function Revoke (line 1798) | func Revoke(path string) (err error) {
function libc_revoke_trampoline (line 1811) | func libc_revoke_trampoline()
function Rmdir (line 1818) | func Rmdir(path string) (err error) {
function libc_rmdir_trampoline (line 1831) | func libc_rmdir_trampoline()
function Seek (line 1838) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function libc_lseek_trampoline (line 1847) | func libc_lseek_trampoline()
function Select (line 1854) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function libc_select_trampoline (line 1862) | func libc_select_trampoline()
function Setegid (line 1869) | func Setegid(egid int) (err error) {
function libc_setegid_trampoline (line 1877) | func libc_setegid_trampoline()
function Seteuid (line 1884) | func Seteuid(euid int) (err error) {
function libc_seteuid_trampoline (line 1892) | func libc_seteuid_trampoline()
function Setgid (line 1899) | func Setgid(gid int) (err error) {
function libc_setgid_trampoline (line 1907) | func libc_setgid_trampoline()
function Setlogin (line 1914) | func Setlogin(name string) (err error) {
function libc_setlogin_trampoline (line 1927) | func libc_setlogin_trampoline()
function Setpgid (line 1934) | func Setpgid(pid int, pgid int) (err error) {
function libc_setpgid_trampoline (line 1942) | func libc_setpgid_trampoline()
function Setpriority (line 1949) | func Setpriority(which int, who int, prio int) (err error) {
function libc_setpriority_trampoline (line 1957) | func libc_setpriority_trampoline()
function Setprivexec (line 1964) | func Setprivexec(flag int) (err error) {
function libc_setprivexec_trampoline (line 1972) | func libc_setprivexec_trampoline()
function Setregid (line 1979) | func Setregid(rgid int, egid int) (err error) {
function libc_setregid_trampoline (line 1987) | func libc_setregid_trampoline()
function Setreuid (line 1994) | func Setreuid(ruid int, euid int) (err error) {
function libc_setreuid_trampoline (line 2002) | func libc_setreuid_trampoline()
function Setrlimit (line 2009) | func Setrlimit(which int, lim *Rlimit) (err error) {
function libc_setrlimit_trampoline (line 2017) | func libc_setrlimit_trampoline()
function Setsid (line 2024) | func Setsid() (pid int, err error) {
function libc_setsid_trampoline (line 2033) | func libc_setsid_trampoline()
function Settimeofday (line 2040) | func Settimeofday(tp *Timeval) (err error) {
function libc_settimeofday_trampoline (line 2048) | func libc_settimeofday_trampoline()
function Setuid (line 2055) | func Setuid(uid int) (err error) {
function libc_setuid_trampoline (line 2063) | func libc_setuid_trampoline()
function Symlink (line 2070) | func Symlink(path string, link string) (err error) {
function libc_symlink_trampoline (line 2088) | func libc_symlink_trampoline()
function Symlinkat (line 2095) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function libc_symlinkat_trampoline (line 2113) | func libc_symlinkat_trampoline()
function Sync (line 2120) | func Sync() (err error) {
function libc_sync_trampoline (line 2128) | func libc_sync_trampoline()
function Truncate (line 2135) | func Truncate(path string, length int64) (err error) {
function libc_truncate_trampoline (line 2148) | func libc_truncate_trampoline()
function Umask (line 2155) | func Umask(newmask int) (oldmask int) {
function libc_umask_trampoline (line 2161) | func libc_umask_trampoline()
function Undelete (line 2168) | func Undelete(path string) (err error) {
function libc_undelete_trampoline (line 2181) | func libc_undelete_trampoline()
function Unlink (line 2188) | func Unlink(path string) (err error) {
function libc_unlink_trampoline (line 2201) | func libc_unlink_trampoline()
function Unlinkat (line 2208) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function libc_unlinkat_trampoline (line 2221) | func libc_unlinkat_trampoline()
function Unmount (line 2228) | func Unmount(path string, flags int) (err error) {
function libc_unmount_trampoline (line 2241) | func libc_unmount_trampoline()
function write (line 2248) | func write(fd int, p []byte) (n int, err error) {
function libc_write_trampoline (line 2263) | func libc_write_trampoline()
function mmap (line 2270) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function libc_mmap_trampoline (line 2279) | func libc_mmap_trampoline()
function munmap (line 2286) | func munmap(addr uintptr, length uintptr) (err error) {
function libc_munmap_trampoline (line 2294) | func libc_munmap_trampoline()
function readlen (line 2301) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 2312) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function gettimeofday (line 2323) | func gettimeofday(tp *Timeval) (sec int32, usec int32, err error) {
function libc_gettimeofday_trampoline (line 2333) | func libc_gettimeofday_trampoline()
function Fstat (line 2340) | func Fstat(fd int, stat *Stat_t) (err error) {
function libc_fstat_trampoline (line 2348) | func libc_fstat_trampoline()
function Fstatat (line 2355) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function libc_fstatat_trampoline (line 2368) | func libc_fstatat_trampoline()
function Fstatfs (line 2375) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function libc_fstatfs_trampoline (line 2383) | func libc_fstatfs_trampoline()
function getfsstat (line 2390) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ...
function libc_getfsstat_trampoline (line 2399) | func libc_getfsstat_trampoline()
function Lstat (line 2406) | func Lstat(path string, stat *Stat_t) (err error) {
function libc_lstat_trampoline (line 2419) | func libc_lstat_trampoline()
function Stat (line 2426) | func Stat(path string, stat *Stat_t) (err error) {
function libc_stat_trampoline (line 2439) | func libc_stat_trampoline()
function Statfs (line 2446) | func Statfs(path string, stat *Statfs_t) (err error) {
function libc_statfs_trampoline (line 2459) | func libc_statfs_trampoline()
FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_11.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 utimes (line 217) | func utimes(path string, timeval *[2]Timeval) (err error) {
function futimes (line 232) | func futimes(fd int, timeval *[2]Timeval) (err error) {
function fcntl (line 242) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function poll (line 253) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 264) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 280) | func Mlock(b []byte) (err error) {
function Mlockall (line 296) | func Mlockall(flags int) (err error) {
function Mprotect (line 306) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 322) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 338) | func Munlock(b []byte) (err error) {
function Munlockall (line 354) | func Munlockall() (err error) {
function getattrlist (line 364) | func getattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function pipe (line 374) | func pipe() (r int, w int, err error) {
function getxattr (line 386) | func getxattr(path string, attr string, dest *byte, size int, position u...
function fgetxattr (line 407) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3...
function setxattr (line 423) | func setxattr(path string, attr string, data *byte, size int, position u...
function fsetxattr (line 443) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3...
function removexattr (line 458) | func removexattr(path string, attr string, options int) (err error) {
function fremovexattr (line 478) | func fremovexattr(fd int, attr string, options int) (err error) {
function listxattr (line 493) | func listxattr(path string, dest *byte, size int, options int) (sz int, ...
function flistxattr (line 509) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ...
function setattrlist (line 520) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function kill (line 530) | func kill(pid int, signum int, posix int) (err error) {
function ioctl (line 540) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function sendfile (line 550) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe...
function Access (line 560) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 575) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 585) | func Chdir(path string) (err error) {
function Chflags (line 600) | func Chflags(path string, flags int) (err error) {
function Chmod (line 615) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 630) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 645) | func Chroot(path string) (err error) {
function Close (line 660) | func Close(fd int) (err error) {
function Dup (line 670) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 681) | func Dup2(from int, to int) (err error) {
function Exchangedata (line 691) | func Exchangedata(path1 string, path2 string, options int) (err error) {
function Exit (line 711) | func Exit(code int) {
function Faccessat (line 718) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 733) | func Fchdir(fd int) (err error) {
function Fchflags (line 743) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 753) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 763) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 778) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 788) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 803) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 813) | func Fpathconf(fd int, name int) (val int, err error) {
function Fsync (line 824) | func Fsync(fd int) (err error) {
function Ftruncate (line 834) | func Ftruncate(fd int, length int64) (err error) {
function Getdtablesize (line 844) | func Getdtablesize() (size int) {
function Getegid (line 852) | func Getegid() (egid int) {
function Geteuid (line 860) | func Geteuid() (uid int) {
function Getgid (line 868) | func Getgid() (gid int) {
function Getpgid (line 876) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 887) | func Getpgrp() (pgrp int) {
function Getpid (line 895) | func Getpid() (pid int) {
function Getppid (line 903) | func Getppid() (ppid int) {
function Getpriority (line 911) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 922) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 932) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 942) | func Getsid(pid int) (sid int, err error) {
function Getuid (line 953) | func Getuid() (uid int) {
function Issetugid (line 961) | func Issetugid() (tainted bool) {
function Kqueue (line 969) | func Kqueue() (fd int, err error) {
function Lchown (line 980) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 995) | func Link(path string, link string) (err error) {
function Linkat (line 1015) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1035) | func Listen(s int, backlog int) (err error) {
function Mkdir (line 1045) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1060) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1075) | func Mkfifo(path string, mode uint32) (err error) {
function Mknod (line 1090) | func Mknod(path string, mode uint32, dev int) (err error) {
function Open (line 1105) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1121) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1137) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1153) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1170) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1187) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1204) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1226) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1248) | func Rename(from string, to string) (err error) {
function Renameat (line 1268) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1288) | func Revoke(path string) (err error) {
function Rmdir (line 1303) | func Rmdir(path string) (err error) {
function Seek (line 1318) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1329) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1339) | func Setegid(egid int) (err error) {
function Seteuid (line 1349) | func Seteuid(euid int) (err error) {
function Setgid (line 1359) | func Setgid(gid int) (err error) {
function Setlogin (line 1369) | func Setlogin(name string) (err error) {
function Setpgid (line 1384) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1394) | func Setpriority(which int, who int, prio int) (err error) {
function Setprivexec (line 1404) | func Setprivexec(flag int) (err error) {
function Setregid (line 1414) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1424) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1434) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1444) | func Setsid() (pid int, err error) {
function Settimeofday (line 1455) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1465) | func Setuid(uid int) (err error) {
function Symlink (line 1475) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1495) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1515) | func Sync() (err error) {
function Truncate (line 1525) | func Truncate(path string, length int64) (err error) {
function Umask (line 1540) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1548) | func Undelete(path string) (err error) {
function Unlink (line 1563) | func Unlink(path string) (err error) {
function Unlinkat (line 1578) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1593) | func Unmount(path string, flags int) (err error) {
function write (line 1608) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1625) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1636) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1646) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1657) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function gettimeofday (line 1668) | func gettimeofday(tp *Timeval) (sec int64, usec int32, err error) {
function Fstat (line 1680) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1690) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1705) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function getfsstat (line 1715) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ...
function Lstat (line 1726) | func Lstat(path string, stat *Stat_t) (err error) {
function Stat (line 1741) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1756) | func Statfs(path string, stat *Statfs_t) (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 libc_getgroups_trampoline (line 26) | func libc_getgroups_trampoline()
function setgroups (line 33) | func setgroups(ngid int, gid *_Gid_t) (err error) {
function libc_setgroups_trampoline (line 41) | func libc_setgroups_trampoline()
function wait4 (line 48) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function libc_wait4_trampoline (line 57) | func libc_wait4_trampoline()
function accept (line 64) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function libc_accept_trampoline (line 73) | func libc_accept_trampoline()
function bind (line 80) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function libc_bind_trampoline (line 88) | func libc_bind_trampoline()
function connect (line 95) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function libc_connect_trampoline (line 103) | func libc_connect_trampoline()
function socket (line 110) | func socket(domain int, typ int, proto int) (fd int, err error) {
function libc_socket_trampoline (line 119) | func libc_socket_trampoline()
function getsockopt (line 126) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function libc_getsockopt_trampoline (line 134) | func libc_getsockopt_trampoline()
function setsockopt (line 141) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function libc_setsockopt_trampoline (line 149) | func libc_setsockopt_trampoline()
function getpeername (line 156) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function libc_getpeername_trampoline (line 164) | func libc_getpeername_trampoline()
function getsockname (line 171) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function libc_getsockname_trampoline (line 179) | func libc_getsockname_trampoline()
function Shutdown (line 186) | func Shutdown(s int, how int) (err error) {
function libc_shutdown_trampoline (line 194) | func libc_shutdown_trampoline()
function socketpair (line 201) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function libc_socketpair_trampoline (line 209) | func libc_socketpair_trampoline()
function recvfrom (line 216) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function libc_recvfrom_trampoline (line 231) | func libc_recvfrom_trampoline()
function sendto (line 238) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function libc_sendto_trampoline (line 252) | func libc_sendto_trampoline()
function recvmsg (line 259) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function libc_recvmsg_trampoline (line 268) | func libc_recvmsg_trampoline()
function sendmsg (line 275) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function libc_sendmsg_trampoline (line 284) | func libc_sendmsg_trampoline()
function kevent (line 291) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi...
function libc_kevent_trampoline (line 300) | func libc_kevent_trampoline()
function utimes (line 307) | func utimes(path string, timeval *[2]Timeval) (err error) {
function libc_utimes_trampoline (line 320) | func libc_utimes_trampoline()
function futimes (line 327) | func futimes(fd int, timeval *[2]Timeval) (err error) {
function libc_futimes_trampoline (line 335) | func libc_futimes_trampoline()
function fcntl (line 342) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function libc_fcntl_trampoline (line 351) | func libc_fcntl_trampoline()
function poll (line 358) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function libc_poll_trampoline (line 367) | func libc_poll_trampoline()
function Madvise (line 374) | func Madvise(b []byte, behav int) (err error) {
function libc_madvise_trampoline (line 388) | func libc_madvise_trampoline()
function Mlock (line 395) | func Mlock(b []byte) (err error) {
function libc_mlock_trampoline (line 409) | func libc_mlock_trampoline()
function Mlockall (line 416) | func Mlockall(flags int) (err error) {
function libc_mlockall_trampoline (line 424) | func libc_mlockall_trampoline()
function Mprotect (line 431) | func Mprotect(b []byte, prot int) (err error) {
function libc_mprotect_trampoline (line 445) | func libc_mprotect_trampoline()
function Msync (line 452) | func Msync(b []byte, flags int) (err error) {
function libc_msync_trampoline (line 466) | func libc_msync_trampoline()
function Munlock (line 473) | func Munlock(b []byte) (err error) {
function libc_munlock_trampoline (line 487) | func libc_munlock_trampoline()
function Munlockall (line 494) | func Munlockall() (err error) {
function libc_munlockall_trampoline (line 502) | func libc_munlockall_trampoline()
function getattrlist (line 509) | func getattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function libc_getattrlist_trampoline (line 517) | func libc_getattrlist_trampoline()
function pipe (line 524) | func pipe() (r int, w int, err error) {
function libc_pipe_trampoline (line 534) | func libc_pipe_trampoline()
function getxattr (line 541) | func getxattr(path string, attr string, dest *byte, size int, position u...
function libc_getxattr_trampoline (line 560) | func libc_getxattr_trampoline()
function fgetxattr (line 567) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3...
function libc_fgetxattr_trampoline (line 581) | func libc_fgetxattr_trampoline()
function setxattr (line 588) | func setxattr(path string, attr string, data *byte, size int, position u...
function libc_setxattr_trampoline (line 606) | func libc_setxattr_trampoline()
function fsetxattr (line 613) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3...
function libc_fsetxattr_trampoline (line 626) | func libc_fsetxattr_trampoline()
function removexattr (line 633) | func removexattr(path string, attr string, options int) (err error) {
function libc_removexattr_trampoline (line 651) | func libc_removexattr_trampoline()
function fremovexattr (line 658) | func fremovexattr(fd int, attr string, options int) (err error) {
function libc_fremovexattr_trampoline (line 671) | func libc_fremovexattr_trampoline()
function listxattr (line 678) | func listxattr(path string, dest *byte, size int, options int) (sz int, ...
function libc_listxattr_trampoline (line 692) | func libc_listxattr_trampoline()
function flistxattr (line 699) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ...
function libc_flistxattr_trampoline (line 708) | func libc_flistxattr_trampoline()
function setattrlist (line 715) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si...
function libc_setattrlist_trampoline (line 723) | func libc_setattrlist_trampoline()
function kill (line 730) | func kill(pid int, signum int, posix int) (err error) {
function libc_kill_trampoline (line 738) | func libc_kill_trampoline()
function ioctl (line 745) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function libc_ioctl_trampoline (line 753) | func libc_ioctl_trampoline()
function sendfile (line 760) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe...
function libc_sendfile_trampoline (line 768) | func libc_sendfile_trampoline()
function Access (line 775) | func Access(path string, mode uint32) (err error) {
function libc_access_trampoline (line 788) | func libc_access_trampoline()
function Adjtime (line 795) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function libc_adjtime_trampoline (line 803) | func libc_adjtime_trampoline()
function Chdir (line 810) | func Chdir(path string) (err error) {
function libc_chdir_trampoline (line 823) | func libc_chdir_trampoline()
function Chflags (line 830) | func Chflags(path string, flags int) (err error) {
function libc_chflags_trampoline (line 843) | func libc_chflags_trampoline()
function Chmod (line 850) | func Chmod(path string, mode uint32) (err error) {
function libc_chmod_trampoline (line 863) | func libc_chmod_trampoline()
function Chown (line 870) | func Chown(path string, uid int, gid int) (err error) {
function libc_chown_trampoline (line 883) | func libc_chown_trampoline()
function Chroot (line 890) | func Chroot(path string) (err error) {
function libc_chroot_trampoline (line 903) | func libc_chroot_trampoline()
function ClockGettime (line 910) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function libc_clock_gettime_trampoline (line 918) | func libc_clock_gettime_trampoline()
function Close (line 925) | func Close(fd int) (err error) {
function libc_close_trampoline (line 933) | func libc_close_trampoline()
function Dup (line 940) | func Dup(fd int) (nfd int, err error) {
function libc_dup_trampoline (line 949) | func libc_dup_trampoline()
function Dup2 (line 956) | func Dup2(from int, to int) (err error) {
function libc_dup2_trampoline (line 964) | func libc_dup2_trampoline()
function Exchangedata (line 971) | func Exchangedata(path1 string, path2 string, options int) (err error) {
function libc_exchangedata_trampoline (line 989) | func libc_exchangedata_trampoline()
function Exit (line 996) | func Exit(code int) {
function libc_exit_trampoline (line 1001) | func libc_exit_trampoline()
function Faccessat (line 1008) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function libc_faccessat_trampoline (line 1021) | func libc_faccessat_trampoline()
function Fchdir (line 1028) | func Fchdir(fd int) (err error) {
function libc_fchdir_trampoline (line 1036) | func libc_fchdir_trampoline()
function Fchflags (line 1043) | func Fchflags(fd int, flags int) (err error) {
function libc_fchflags_trampoline (line 1051) | func libc_fchflags_trampoline()
function Fchmod (line 1058) | func Fchmod(fd int, mode uint32) (err error) {
function libc_fchmod_trampoline (line 1066) | func libc_fchmod_trampoline()
function Fchmodat (line 1073) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function libc_fchmodat_trampoline (line 1086) | func libc_fchmodat_trampoline()
function Fchown (line 1093) | func Fchown(fd int, uid int, gid int) (err error) {
function libc_fchown_trampoline (line 1101) | func libc_fchown_trampoline()
function Fchownat (line 1108) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function libc_fchownat_trampoline (line 1121) | func libc_fchownat_trampoline()
function Flock (line 1128) | func Flock(fd int, how int) (err error) {
function libc_flock_trampoline (line 1136) | func libc_flock_trampoline()
function Fpathconf (line 1143) | func Fpathconf(fd int, name int) (val int, err error) {
function libc_fpathconf_trampoline (line 1152) | func libc_fpathconf_trampoline()
function Fsync (line 1159) | func Fsync(fd int) (err error) {
function libc_fsync_trampoline (line 1167) | func libc_fsync_trampoline()
function Ftruncate (line 1174) | func Ftruncate(fd int, length int64) (err error) {
function libc_ftruncate_trampoline (line 1182) | func libc_ftruncate_trampoline()
function Getdtablesize (line 1189) | func Getdtablesize() (size int) {
function libc_getdtablesize_trampoline (line 1195) | func libc_getdtablesize_trampoline()
function Getegid (line 1202) | func Getegid() (egid int) {
function libc_getegid_trampoline (line 1208) | func libc_getegid_trampoline()
function Geteuid (line 1215) | func Geteuid() (uid int) {
function libc_geteuid_trampoline (line 1221) | func libc_geteuid_trampoline()
function Getgid (line 1228) | func Getgid() (gid int) {
function libc_getgid_trampoline (line 1234) | func libc_getgid_trampoline()
function Getpgid (line 1241) | func Getpgid(pid int) (pgid int, err error) {
function libc_getpgid_trampoline (line 1250) | func libc_getpgid_trampoline()
function Getpgrp (line 1257) | func Getpgrp() (pgrp int) {
function libc_getpgrp_trampoline (line 1263) | func libc_getpgrp_trampoline()
function Getpid (line 1270) | func Getpid() (pid int) {
function libc_getpid_trampoline (line 1276) | func libc_getpid_trampoline()
function Getppid (line 1283) | func Getppid() (ppid int) {
function libc_getppid_trampoline (line 1289) | func libc_getppid_trampoline()
function Getpriority (line 1296) | func Getpriority(which int, who int) (prio int, err error) {
function libc_getpriority_trampoline (line 1305) | func libc_getpriority_trampoline()
function Getrlimit (line 1312) | func Getrlimit(which int, lim *Rlimit) (err error) {
function libc_getrlimit_trampoline (line 1320) | func libc_getrlimit_trampoline()
function Getrusage (line 1327) | func Getrusage(who int, rusage *Rusage) (err error) {
function libc_getrusage_trampoline (line 1335) | func libc_getrusage_trampoline()
function Getsid (line 1342) | func Getsid(pid int) (sid int, err error) {
function libc_getsid_trampoline (line 1351) | func libc_getsid_trampoline()
function Getuid (line 1358) | func Getuid() (uid int) {
function libc_getuid_trampoline (line 1364) | func libc_getuid_trampoline()
function Issetugid (line 1371) | func Issetugid() (tainted bool) {
function libc_issetugid_trampoline (line 1377) | func libc_issetugid_trampoline()
function Kqueue (line 1384) | func Kqueue() (fd int, err error) {
function libc_kqueue_trampoline (line 1393) | func libc_kqueue_trampoline()
function Lchown (line 1400) | func Lchown(path string, uid int, gid int) (err error) {
function libc_lchown_trampoline (line 1413) | func libc_lchown_trampoline()
function Link (line 1420) | func Link(path string, link string) (err error) {
function libc_link_trampoline (line 1438) | func libc_link_trampoline()
function Linkat (line 1445) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function libc_linkat_trampoline (line 1463) | func libc_linkat_trampoline()
function Listen (line 1470) | func Listen(s int, backlog int) (err error) {
function libc_listen_trampoline (line 1478) | func libc_listen_trampoline()
function Mkdir (line 1485) | func Mkdir(path string, mode uint32) (err error) {
function libc_mkdir_trampoline (line 1498) | func libc_mkdir_trampoline()
function Mkdirat (line 1505) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function libc_mkdirat_trampoline (line 1518) | func libc_mkdirat_trampoline()
function Mkfifo (line 1525) | func Mkfifo(path string, mode uint32) (err error) {
function libc_mkfifo_trampoline (line 1538) | func libc_mkfifo_trampoline()
function Mknod (line 1545) | func Mknod(path string, mode uint32, dev int) (err error) {
function libc_mknod_trampoline (line 1558) | func libc_mknod_trampoline()
function Open (line 1565) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function libc_open_trampoline (line 1579) | func libc_open_trampoline()
function Openat (line 1586) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function libc_openat_trampoline (line 1600) | func libc_openat_trampoline()
function Pathconf (line 1607) | func Pathconf(path string, name int) (val int, err error) {
function libc_pathconf_trampoline (line 1621) | func libc_pathconf_trampoline()
function Pread (line 1628) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function libc_pread_trampoline (line 1643) | func libc_pread_trampoline()
function Pwrite (line 1650) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function libc_pwrite_trampoline (line 1665) | func libc_pwrite_trampoline()
function read (line 1672) | func read(fd int, p []byte) (n int, err error) {
function libc_read_trampoline (line 1687) | func libc_read_trampoline()
function Readlink (line 1694) | func Readlink(path string, buf []byte) (n int, err error) {
function libc_readlink_trampoline (line 1714) | func libc_readlink_trampoline()
function Readlinkat (line 1721) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function libc_readlinkat_trampoline (line 1741) | func libc_readlinkat_trampoline()
function Rename (line 1748) | func Rename(from string, to string) (err error) {
function libc_rename_trampoline (line 1766) | func libc_rename_trampoline()
function Renameat (line 1773) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function libc_renameat_trampoline (line 1791) | func libc_renameat_trampoline()
function Revoke (line 1798) | func Revoke(path string) (err error) {
function libc_revoke_trampoline (line 1811) | func libc_revoke_trampoline()
function Rmdir (line 1818) | func Rmdir(path string) (err error) {
function libc_rmdir_trampoline (line 1831) | func libc_rmdir_trampoline()
function Seek (line 1838) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function libc_lseek_trampoline (line 1847) | func libc_lseek_trampoline()
function Select (line 1854) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function libc_select_trampoline (line 1862) | func libc_select_trampoline()
function Setegid (line 1869) | func Setegid(egid int) (err error) {
function libc_setegid_trampoline (line 1877) | func libc_setegid_trampoline()
function Seteuid (line 1884) | func Seteuid(euid int) (err error) {
function libc_seteuid_trampoline (line 1892) | func libc_seteuid_trampoline()
function Setgid (line 1899) | func Setgid(gid int) (err error) {
function libc_setgid_trampoline (line 1907) | func libc_setgid_trampoline()
function Setlogin (line 1914) | func Setlogin(name string) (err error) {
function libc_setlogin_trampoline (line 1927) | func libc_setlogin_trampoline()
function Setpgid (line 1934) | func Setpgid(pid int, pgid int) (err error) {
function libc_setpgid_trampoline (line 1942) | func libc_setpgid_trampoline()
function Setpriority (line 1949) | func Setpriority(which int, who int, prio int) (err error) {
function libc_setpriority_trampoline (line 1957) | func libc_setpriority_trampoline()
function Setprivexec (line 1964) | func Setprivexec(flag int) (err error) {
function libc_setprivexec_trampoline (line 1972) | func libc_setprivexec_trampoline()
function Setregid (line 1979) | func Setregid(rgid int, egid int) (err error) {
function libc_setregid_trampoline (line 1987) | func libc_setregid_trampoline()
function Setreuid (line 1994) | func Setreuid(ruid int, euid int) (err error) {
function libc_setreuid_trampoline (line 2002) | func libc_setreuid_trampoline()
function Setrlimit (line 2009) | func Setrlimit(which int, lim *Rlimit) (err error) {
function libc_setrlimit_trampoline (line 2017) | func libc_setrlimit_trampoline()
function Setsid (line 2024) | func Setsid() (pid int, err error) {
function libc_setsid_trampoline (line 2033) | func libc_setsid_trampoline()
function Settimeofday (line 2040) | func Settimeofday(tp *Timeval) (err error) {
function libc_settimeofday_trampoline (line 2048) | func libc_settimeofday_trampoline()
function Setuid (line 2055) | func Setuid(uid int) (err error) {
function libc_setuid_trampoline (line 2063) | func libc_setuid_trampoline()
function Symlink (line 2070) | func Symlink(path string, link string) (err error) {
function libc_symlink_trampoline (line 2088) | func libc_symlink_trampoline()
function Symlinkat (line 2095) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function libc_symlinkat_trampoline (line 2113) | func libc_symlinkat_trampoline()
function Sync (line 2120) | func Sync() (err error) {
function libc_sync_trampoline (line 2128) | func libc_sync_trampoline()
function Truncate (line 2135) | func Truncate(path string, length int64) (err error) {
function libc_truncate_trampoline (line 2148) | func libc_truncate_trampoline()
function Umask (line 2155) | func Umask(newmask int) (oldmask int) {
function libc_umask_trampoline (line 2161) | func libc_umask_trampoline()
function Undelete (line 2168) | func Undelete(path string) (err error) {
function libc_undelete_trampoline (line 2181) | func libc_undelete_trampoline()
function Unlink (line 2188) | func Unlink(path string) (err error) {
function libc_unlink_trampoline (line 2201) | func libc_unlink_trampoline()
function Unlinkat (line 2208) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function libc_unlinkat_trampoline (line 2221) | func libc_unlinkat_trampoline()
function Unmount (line 2228) | func Unmount(path string, flags int) (err error) {
function libc_unmount_trampoline (line 2241) | func libc_unmount_trampoline()
function write (line 2248) | func write(fd int, p []byte) (n int, err error) {
function libc_write_trampoline (line 2263) | func libc_write_trampoline()
function mmap (line 2270) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function libc_mmap_trampoline (line 2279) | func libc_mmap_trampoline()
function munmap (line 2286) | func munmap(addr uintptr, length uintptr) (err error) {
function libc_munmap_trampoline (line 2294) | func libc_munmap_trampoline()
function readlen (line 2301) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 2312) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function gettimeofday (line 2323) | func gettimeofday(tp *Timeval) (sec int64, usec int32, err error) {
function libc_gettimeofday_trampoline (line 2333) | func libc_gettimeofday_trampoline()
function Fstat (line 2340) | func Fstat(fd int, stat *Stat_t) (err error) {
function libc_fstat_trampoline (line 2348) | func libc_fstat_trampoline()
function Fstatat (line 2355) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function libc_fstatat_trampoline (line 2368) | func libc_fstatat_trampoline()
function Fstatfs (line 2375) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function libc_fstatfs_trampoline (line 2383) | func libc_fstatfs_trampoline()
function getfsstat (line 2390) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ...
function libc_getfsstat_trampoline (line 2399) | func libc_getfsstat_trampoline()
function Lstat (line 2406) | func Lstat(path string, stat *Stat_t) (err error) {
function libc_lstat_trampoline (line 2419) | func libc_lstat_trampoline()
function Stat (line 2426) | func Stat(path string, stat *Stat_t) (err error) {
function libc_stat_trampoline (line 2439) | func libc_stat_trampoline()
function Statfs (line 2446) | func Statfs(path string, stat *Statfs_t) (err error) {
function libc_statfs_trampoline (line 2459) | func libc_statfs_trampoline()
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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe() (r int, w int, err error) {
function extpread (line 392) | func extpread(fd int, p []byte, flags int, offset int64) (n int, err err...
function extpwrite (line 409) | func extpwrite(fd int, p []byte, flags int, offset int64) (n int, err er...
function Getcwd (line 426) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 443) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 453) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 468) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 478) | func Chdir(path string) (err error) {
function Chflags (line 493) | func Chflags(path string, flags int) (err error) {
function Chmod (line 508) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 523) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 538) | func Chroot(path string) (err error) {
function Close (line 553) | func Close(fd int) (err error) {
function Dup (line 563) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 574) | func Dup2(from int, to int) (err error) {
function Exit (line 584) | func Exit(code int) {
function Faccessat (line 591) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 606) | func Fchdir(fd int) (err error) {
function Fchflags (line 616) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 626) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 636) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 651) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 661) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 676) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 686) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 697) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 707) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 722) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function Fsync (line 732) | func Fsync(fd int) (err error) {
function Ftruncate (line 742) | func Ftruncate(fd int, length int64) (err error) {
function Getdents (line 752) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getdirentries (line 769) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function Getdtablesize (line 786) | func Getdtablesize() (size int) {
function Getegid (line 794) | func Getegid() (egid int) {
function Geteuid (line 802) | func Geteuid() (uid int) {
function Getgid (line 810) | func Getgid() (gid int) {
function Getpgid (line 818) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 829) | func Getpgrp() (pgrp int) {
function Getpid (line 837) | func Getpid() (pid int) {
function Getppid (line 845) | func Getppid() (ppid int) {
function Getpriority (line 853) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 864) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 874) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 884) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 895) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 905) | func Getuid() (uid int) {
function Issetugid (line 913) | func Issetugid() (tainted bool) {
function Kill (line 921) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 931) | func Kqueue() (fd int, err error) {
function Lchown (line 942) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 957) | func Link(path string, link string) (err error) {
function Linkat (line 977) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 997) | func Listen(s int, backlog int) (err error) {
function Lstat (line 1007) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 1022) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1037) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1052) | func Mkfifo(path string, mode uint32) (err error) {
function Mknod (line 1067) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1082) | func Mknodat(fd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1097) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1107) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1123) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1139) | func Pathconf(path string, name int) (val int, err error) {
function read (line 1155) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1172) | func Readlink(path string, buf []byte) (n int, err error) {
function Rename (line 1194) | func Rename(from string, to string) (err error) {
function Renameat (line 1214) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1234) | func Revoke(path string) (err error) {
function Rmdir (line 1249) | func Rmdir(path string) (err error) {
function Seek (line 1264) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1275) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1285) | func Setegid(egid int) (err error) {
function Seteuid (line 1295) | func Seteuid(euid int) (err error) {
function Setgid (line 1305) | func Setgid(gid int) (err error) {
function Setlogin (line 1315) | func Setlogin(name string) (err error) {
function Setpgid (line 1330) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1340) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1350) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1360) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1370) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1380) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1390) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1400) | func Setsid() (pid int, err error) {
function Settimeofday (line 1411) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1421) | func Setuid(uid int) (err error) {
function Stat (line 1431) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1446) | func Statfs(path string, stat *Statfs_t) (err error) {
function Symlink (line 1461) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1481) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1501) | func Sync() (err error) {
function Truncate (line 1511) | func Truncate(path string, length int64) (err error) {
function Umask (line 1526) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1534) | func Undelete(path string) (err error) {
function Unlink (line 1549) | func Unlink(path string) (err error) {
function Unlinkat (line 1564) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1579) | func Unmount(path string, flags int) (err error) {
function write (line 1594) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1611) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1622) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1632) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1643) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function accept4 (line 1654) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ...
function utimensat (line 1665) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe2 (line 380) | func pipe2(p *[2]_C_int, flags int) (err error) {
function ptrace (line 390) | func ptrace(request int, pid int, addr uintptr, data int) (err error) {
function Getcwd (line 400) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 417) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 427) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 442) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function CapEnter (line 452) | func CapEnter() (err error) {
function capRightsGet (line 462) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) {
function capRightsLimit (line 472) | func capRightsLimit(fd int, rightsp *CapRights) (err error) {
function Chdir (line 482) | func Chdir(path string) (err error) {
function Chflags (line 497) | func Chflags(path string, flags int) (err error) {
function Chmod (line 512) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 527) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 542) | func Chroot(path string) (err error) {
function Close (line 557) | func Close(fd int) (err error) {
function Dup (line 567) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 578) | func Dup2(from int, to int) (err error) {
function Exit (line 588) | func Exit(code int) {
function ExtattrGetFd (line 595) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrSetFd (line 611) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrDeleteFd (line 627) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er...
function ExtattrListFd (line 642) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ...
function ExtattrGetFile (line 653) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrSetFile (line 674) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrDeleteFile (line 695) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ...
function ExtattrListFile (line 715) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte...
function ExtattrGetLink (line 731) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrSetLink (line 752) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrDeleteLink (line 773) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ...
function ExtattrListLink (line 793) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte...
function Fadvise (line 809) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Faccessat (line 819) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 834) | func Fchdir(fd int) (err error) {
function Fchflags (line 844) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 854) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 864) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 879) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 889) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 904) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 914) | func Fpathconf(fd int, name int) (val int, err error) {
function fstat (line 925) | func fstat(fd int, stat *stat_freebsd11_t) (err error) {
function fstat_freebsd12 (line 935) | func fstat_freebsd12(fd int, stat *Stat_t) (err error) {
function fstatat (line 945) | func fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (er...
function fstatat_freebsd12 (line 960) | func fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (er...
function fstatfs (line 975) | func fstatfs(fd int, stat *statfs_freebsd11_t) (err error) {
function fstatfs_freebsd12 (line 985) | func fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) {
function Fsync (line 995) | func Fsync(fd int) (err error) {
function Ftruncate (line 1005) | func Ftruncate(fd int, length int64) (err error) {
function getdirentries (line 1015) | func getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function getdirentries_freebsd12 (line 1032) | func getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, ...
function Getdtablesize (line 1049) | func Getdtablesize() (size int) {
function Getegid (line 1057) | func Getegid() (egid int) {
function Geteuid (line 1065) | func Geteuid() (uid int) {
function Getgid (line 1073) | func Getgid() (gid int) {
function Getpgid (line 1081) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 1092) | func Getpgrp() (pgrp int) {
function Getpid (line 1100) | func Getpid() (pid int) {
function Getppid (line 1108) | func Getppid() (ppid int) {
function Getpriority (line 1116) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 1127) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1137) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 1147) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 1158) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1168) | func Getuid() (uid int) {
function Issetugid (line 1176) | func Issetugid() (tainted bool) {
function Kill (line 1184) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 1194) | func Kqueue() (fd int, err error) {
function Lchown (line 1205) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1220) | func Link(path string, link string) (err error) {
function Linkat (line 1240) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1260) | func Listen(s int, backlog int) (err error) {
function lstat (line 1270) | func lstat(path string, stat *stat_freebsd11_t) (err error) {
function Mkdir (line 1285) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1300) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1315) | func Mkfifo(path string, mode uint32) (err error) {
function mknod (line 1330) | func mknod(path string, mode uint32, dev int) (err error) {
function mknodat (line 1345) | func mknodat(fd int, path string, mode uint32, dev int) (err error) {
function mknodat_freebsd12 (line 1360) | func mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (er...
function Nanosleep (line 1375) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1385) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1401) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e...
function Pathconf (line 1417) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1433) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1450) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1467) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1484) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1506) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1528) | func Rename(from string, to string) (err error) {
function Renameat (line 1548) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1568) | func Revoke(path string) (err error) {
function Rmdir (line 1583) | func Rmdir(path string) (err error) {
function Seek (line 1598) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1609) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1619) | func Setegid(egid int) (err error) {
function Seteuid (line 1629) | func Seteuid(euid int) (err error) {
function Setgid (line 1639) | func Setgid(gid int) (err error) {
function Setlogin (line 1649) | func Setlogin(name string) (err error) {
function Setpgid (line 1664) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1674) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1684) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1694) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1704) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1714) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1724) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1734) | func Setsid() (pid int, err error) {
function Settimeofday (line 1745) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1755) | func Setuid(uid int) (err error) {
function stat (line 1765) | func stat(path string, stat *stat_freebsd11_t) (err error) {
function statfs (line 1780) | func statfs(path string, stat *statfs_freebsd11_t) (err error) {
function statfs_freebsd12 (line 1795) | func statfs_freebsd12(path string, stat *Statfs_t) (err error) {
function Symlink (line 1810) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1830) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1850) | func Sync() (err error) {
function Truncate (line 1860) | func Truncate(path string, length int64) (err error) {
function Umask (line 1875) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1883) | func Undelete(path string) (err error) {
function Unlink (line 1898) | func Unlink(path string) (err error) {
function Unlinkat (line 1913) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1928) | func Unmount(path string, flags int) (err error) {
function write (line 1943) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1960) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1971) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1981) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1992) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function accept4 (line 2003) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ...
function utimensat (line 2014) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe2 (line 380) | func pipe2(p *[2]_C_int, flags int) (err error) {
function ptrace (line 390) | func ptrace(request int, pid int, addr uintptr, data int) (err error) {
function Getcwd (line 400) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 417) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 427) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 442) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function CapEnter (line 452) | func CapEnter() (err error) {
function capRightsGet (line 462) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) {
function capRightsLimit (line 472) | func capRightsLimit(fd int, rightsp *CapRights) (err error) {
function Chdir (line 482) | func Chdir(path string) (err error) {
function Chflags (line 497) | func Chflags(path string, flags int) (err error) {
function Chmod (line 512) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 527) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 542) | func Chroot(path string) (err error) {
function Close (line 557) | func Close(fd int) (err error) {
function Dup (line 567) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 578) | func Dup2(from int, to int) (err error) {
function Exit (line 588) | func Exit(code int) {
function ExtattrGetFd (line 595) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrSetFd (line 611) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrDeleteFd (line 627) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er...
function ExtattrListFd (line 642) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ...
function ExtattrGetFile (line 653) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrSetFile (line 674) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrDeleteFile (line 695) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ...
function ExtattrListFile (line 715) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte...
function ExtattrGetLink (line 731) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrSetLink (line 752) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrDeleteLink (line 773) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ...
function ExtattrListLink (line 793) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte...
function Fadvise (line 809) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Faccessat (line 819) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 834) | func Fchdir(fd int) (err error) {
function Fchflags (line 844) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 854) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 864) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 879) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 889) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 904) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 914) | func Fpathconf(fd int, name int) (val int, err error) {
function fstat (line 925) | func fstat(fd int, stat *stat_freebsd11_t) (err error) {
function fstat_freebsd12 (line 935) | func fstat_freebsd12(fd int, stat *Stat_t) (err error) {
function fstatat (line 945) | func fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (er...
function fstatat_freebsd12 (line 960) | func fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (er...
function fstatfs (line 975) | func fstatfs(fd int, stat *statfs_freebsd11_t) (err error) {
function fstatfs_freebsd12 (line 985) | func fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) {
function Fsync (line 995) | func Fsync(fd int) (err error) {
function Ftruncate (line 1005) | func Ftruncate(fd int, length int64) (err error) {
function getdirentries (line 1015) | func getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function getdirentries_freebsd12 (line 1032) | func getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, ...
function Getdtablesize (line 1049) | func Getdtablesize() (size int) {
function Getegid (line 1057) | func Getegid() (egid int) {
function Geteuid (line 1065) | func Geteuid() (uid int) {
function Getgid (line 1073) | func Getgid() (gid int) {
function Getpgid (line 1081) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 1092) | func Getpgrp() (pgrp int) {
function Getpid (line 1100) | func Getpid() (pid int) {
function Getppid (line 1108) | func Getppid() (ppid int) {
function Getpriority (line 1116) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 1127) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1137) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 1147) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 1158) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1168) | func Getuid() (uid int) {
function Issetugid (line 1176) | func Issetugid() (tainted bool) {
function Kill (line 1184) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 1194) | func Kqueue() (fd int, err error) {
function Lchown (line 1205) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1220) | func Link(path string, link string) (err error) {
function Linkat (line 1240) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1260) | func Listen(s int, backlog int) (err error) {
function lstat (line 1270) | func lstat(path string, stat *stat_freebsd11_t) (err error) {
function Mkdir (line 1285) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1300) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1315) | func Mkfifo(path string, mode uint32) (err error) {
function mknod (line 1330) | func mknod(path string, mode uint32, dev int) (err error) {
function mknodat (line 1345) | func mknodat(fd int, path string, mode uint32, dev int) (err error) {
function mknodat_freebsd12 (line 1360) | func mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (er...
function Nanosleep (line 1375) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1385) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1401) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e...
function Pathconf (line 1417) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1433) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1450) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1467) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1484) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1506) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1528) | func Rename(from string, to string) (err error) {
function Renameat (line 1548) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1568) | func Revoke(path string) (err error) {
function Rmdir (line 1583) | func Rmdir(path string) (err error) {
function Seek (line 1598) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1609) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1619) | func Setegid(egid int) (err error) {
function Seteuid (line 1629) | func Seteuid(euid int) (err error) {
function Setgid (line 1639) | func Setgid(gid int) (err error) {
function Setlogin (line 1649) | func Setlogin(name string) (err error) {
function Setpgid (line 1664) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1674) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1684) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1694) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1704) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1714) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1724) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1734) | func Setsid() (pid int, err error) {
function Settimeofday (line 1745) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1755) | func Setuid(uid int) (err error) {
function stat (line 1765) | func stat(path string, stat *stat_freebsd11_t) (err error) {
function statfs (line 1780) | func statfs(path string, stat *statfs_freebsd11_t) (err error) {
function statfs_freebsd12 (line 1795) | func statfs_freebsd12(path string, stat *Statfs_t) (err error) {
function Symlink (line 1810) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1830) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1850) | func Sync() (err error) {
function Truncate (line 1860) | func Truncate(path string, length int64) (err error) {
function Umask (line 1875) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1883) | func Undelete(path string) (err error) {
function Unlink (line 1898) | func Unlink(path string) (err error) {
function Unlinkat (line 1913) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1928) | func Unmount(path string, flags int) (err error) {
function write (line 1943) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1960) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1971) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1981) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1992) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function accept4 (line 2003) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ...
function utimensat (line 2014) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe2 (line 380) | func pipe2(p *[2]_C_int, flags int) (err error) {
function ptrace (line 390) | func ptrace(request int, pid int, addr uintptr, data int) (err error) {
function Getcwd (line 400) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 417) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 427) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 442) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function CapEnter (line 452) | func CapEnter() (err error) {
function capRightsGet (line 462) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) {
function capRightsLimit (line 472) | func capRightsLimit(fd int, rightsp *CapRights) (err error) {
function Chdir (line 482) | func Chdir(path string) (err error) {
function Chflags (line 497) | func Chflags(path string, flags int) (err error) {
function Chmod (line 512) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 527) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 542) | func Chroot(path string) (err error) {
function Close (line 557) | func Close(fd int) (err error) {
function Dup (line 567) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 578) | func Dup2(from int, to int) (err error) {
function Exit (line 588) | func Exit(code int) {
function ExtattrGetFd (line 595) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrSetFd (line 611) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrDeleteFd (line 627) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er...
function ExtattrListFd (line 642) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ...
function ExtattrGetFile (line 653) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrSetFile (line 674) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrDeleteFile (line 695) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ...
function ExtattrListFile (line 715) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte...
function ExtattrGetLink (line 731) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrSetLink (line 752) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrDeleteLink (line 773) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ...
function ExtattrListLink (line 793) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte...
function Fadvise (line 809) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Faccessat (line 819) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 834) | func Fchdir(fd int) (err error) {
function Fchflags (line 844) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 854) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 864) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 879) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 889) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 904) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 914) | func Fpathconf(fd int, name int) (val int, err error) {
function fstat (line 925) | func fstat(fd int, stat *stat_freebsd11_t) (err error) {
function fstat_freebsd12 (line 935) | func fstat_freebsd12(fd int, stat *Stat_t) (err error) {
function fstatat (line 945) | func fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (er...
function fstatat_freebsd12 (line 960) | func fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (er...
function fstatfs (line 975) | func fstatfs(fd int, stat *statfs_freebsd11_t) (err error) {
function fstatfs_freebsd12 (line 985) | func fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) {
function Fsync (line 995) | func Fsync(fd int) (err error) {
function Ftruncate (line 1005) | func Ftruncate(fd int, length int64) (err error) {
function getdirentries (line 1015) | func getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function getdirentries_freebsd12 (line 1032) | func getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, ...
function Getdtablesize (line 1049) | func Getdtablesize() (size int) {
function Getegid (line 1057) | func Getegid() (egid int) {
function Geteuid (line 1065) | func Geteuid() (uid int) {
function Getgid (line 1073) | func Getgid() (gid int) {
function Getpgid (line 1081) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 1092) | func Getpgrp() (pgrp int) {
function Getpid (line 1100) | func Getpid() (pid int) {
function Getppid (line 1108) | func Getppid() (ppid int) {
function Getpriority (line 1116) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 1127) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1137) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 1147) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 1158) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1168) | func Getuid() (uid int) {
function Issetugid (line 1176) | func Issetugid() (tainted bool) {
function Kill (line 1184) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 1194) | func Kqueue() (fd int, err error) {
function Lchown (line 1205) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1220) | func Link(path string, link string) (err error) {
function Linkat (line 1240) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1260) | func Listen(s int, backlog int) (err error) {
function lstat (line 1270) | func lstat(path string, stat *stat_freebsd11_t) (err error) {
function Mkdir (line 1285) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1300) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1315) | func Mkfifo(path string, mode uint32) (err error) {
function mknod (line 1330) | func mknod(path string, mode uint32, dev int) (err error) {
function mknodat (line 1345) | func mknodat(fd int, path string, mode uint32, dev int) (err error) {
function mknodat_freebsd12 (line 1360) | func mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (er...
function Nanosleep (line 1375) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1385) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1401) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e...
function Pathconf (line 1417) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1433) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1450) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1467) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1484) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1506) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1528) | func Rename(from string, to string) (err error) {
function Renameat (line 1548) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1568) | func Revoke(path string) (err error) {
function Rmdir (line 1583) | func Rmdir(path string) (err error) {
function Seek (line 1598) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1609) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1619) | func Setegid(egid int) (err error) {
function Seteuid (line 1629) | func Seteuid(euid int) (err error) {
function Setgid (line 1639) | func Setgid(gid int) (err error) {
function Setlogin (line 1649) | func Setlogin(name string) (err error) {
function Setpgid (line 1664) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1674) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1684) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1694) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1704) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1714) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1724) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1734) | func Setsid() (pid int, err error) {
function Settimeofday (line 1745) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1755) | func Setuid(uid int) (err error) {
function stat (line 1765) | func stat(path string, stat *stat_freebsd11_t) (err error) {
function statfs (line 1780) | func statfs(path string, stat *statfs_freebsd11_t) (err error) {
function statfs_freebsd12 (line 1795) | func statfs_freebsd12(path string, stat *Statfs_t) (err error) {
function Symlink (line 1810) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1830) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1850) | func Sync() (err error) {
function Truncate (line 1860) | func Truncate(path string, length int64) (err error) {
function Umask (line 1875) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1883) | func Undelete(path string) (err error) {
function Unlink (line 1898) | func Unlink(path string) (err error) {
function Unlinkat (line 1913) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1928) | func Unmount(path string, flags int) (err error) {
function write (line 1943) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1960) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1971) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1981) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1992) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function accept4 (line 2003) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ...
function utimensat (line 2014) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
FILE: vendor/golang.org/x/sys/unix/zsyscall_freebsd_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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe2 (line 380) | func pipe2(p *[2]_C_int, flags int) (err error) {
function Getcwd (line 390) | func Getcwd(buf []byte) (n int, err error) {
function ptrace (line 407) | func ptrace(request int, pid int, addr uintptr, data int) (err error) {
function ioctl (line 417) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 427) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 442) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function CapEnter (line 452) | func CapEnter() (err error) {
function capRightsGet (line 462) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) {
function capRightsLimit (line 472) | func capRightsLimit(fd int, rightsp *CapRights) (err error) {
function Chdir (line 482) | func Chdir(path string) (err error) {
function Chflags (line 497) | func Chflags(path string, flags int) (err error) {
function Chmod (line 512) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 527) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 542) | func Chroot(path string) (err error) {
function Close (line 557) | func Close(fd int) (err error) {
function Dup (line 567) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 578) | func Dup2(from int, to int) (err error) {
function Exit (line 588) | func Exit(code int) {
function ExtattrGetFd (line 595) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrSetFd (line 611) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrDeleteFd (line 627) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er...
function ExtattrListFd (line 642) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ...
function ExtattrGetFile (line 653) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrSetFile (line 674) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrDeleteFile (line 695) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ...
function ExtattrListFile (line 715) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte...
function ExtattrGetLink (line 731) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrSetLink (line 752) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrDeleteLink (line 773) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ...
function ExtattrListLink (line 793) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte...
function Fadvise (line 809) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Faccessat (line 819) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 834) | func Fchdir(fd int) (err error) {
function Fchflags (line 844) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 854) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 864) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 879) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 889) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 904) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 914) | func Fpathconf(fd int, name int) (val int, err error) {
function fstat (line 925) | func fstat(fd int, stat *stat_freebsd11_t) (err error) {
function fstat_freebsd12 (line 935) | func fstat_freebsd12(fd int, stat *Stat_t) (err error) {
function fstatat (line 945) | func fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (er...
function fstatat_freebsd12 (line 960) | func fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (er...
function fstatfs (line 975) | func fstatfs(fd int, stat *statfs_freebsd11_t) (err error) {
function fstatfs_freebsd12 (line 985) | func fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) {
function Fsync (line 995) | func Fsync(fd int) (err error) {
function Ftruncate (line 1005) | func Ftruncate(fd int, length int64) (err error) {
function getdirentries (line 1015) | func getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
function getdirentries_freebsd12 (line 1032) | func getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, ...
function Getdtablesize (line 1049) | func Getdtablesize() (size int) {
function Getegid (line 1057) | func Getegid() (egid int) {
function Geteuid (line 1065) | func Geteuid() (uid int) {
function Getgid (line 1073) | func Getgid() (gid int) {
function Getpgid (line 1081) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 1092) | func Getpgrp() (pgrp int) {
function Getpid (line 1100) | func Getpid() (pid int) {
function Getppid (line 1108) | func Getppid() (ppid int) {
function Getpriority (line 1116) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 1127) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1137) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 1147) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 1158) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1168) | func Getuid() (uid int) {
function Issetugid (line 1176) | func Issetugid() (tainted bool) {
function Kill (line 1184) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 1194) | func Kqueue() (fd int, err error) {
function Lchown (line 1205) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1220) | func Link(path string, link string) (err error) {
function Linkat (line 1240) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1260) | func Listen(s int, backlog int) (err error) {
function lstat (line 1270) | func lstat(path string, stat *stat_freebsd11_t) (err error) {
function Mkdir (line 1285) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1300) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1315) | func Mkfifo(path string, mode uint32) (err error) {
function mknod (line 1330) | func mknod(path string, mode uint32, dev int) (err error) {
function mknodat (line 1345) | func mknodat(fd int, path string, mode uint32, dev int) (err error) {
function mknodat_freebsd12 (line 1360) | func mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (er...
function Nanosleep (line 1375) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1385) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1401) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e...
function Pathconf (line 1417) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1433) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1450) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1467) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1484) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1506) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1528) | func Rename(from string, to string) (err error) {
function Renameat (line 1548) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1568) | func Revoke(path string) (err error) {
function Rmdir (line 1583) | func Rmdir(path string) (err error) {
function Seek (line 1598) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1609) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1619) | func Setegid(egid int) (err error) {
function Seteuid (line 1629) | func Seteuid(euid int) (err error) {
function Setgid (line 1639) | func Setgid(gid int) (err error) {
function Setlogin (line 1649) | func Setlogin(name string) (err error) {
function Setpgid (line 1664) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1674) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1684) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1694) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1704) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1714) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1724) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1734) | func Setsid() (pid int, err error) {
function Settimeofday (line 1745) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1755) | func Setuid(uid int) (err error) {
function stat (line 1765) | func stat(path string, stat *stat_freebsd11_t) (err error) {
function statfs (line 1780) | func statfs(path string, stat *statfs_freebsd11_t) (err error) {
function statfs_freebsd12 (line 1795) | func statfs_freebsd12(path string, stat *Statfs_t) (err error) {
function Symlink (line 1810) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1830) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1850) | func Sync() (err error) {
function Truncate (line 1860) | func Truncate(path string, length int64) (err error) {
function Umask (line 1875) | func Umask(newmask int) (oldmask int) {
function Undelete (line 1883) | func Undelete(path string) (err error) {
function Unlink (line 1898) | func Unlink(path string) (err error) {
function Unlinkat (line 1913) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1928) | func Unmount(path string, flags int) (err error) {
function write (line 1943) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1960) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1971) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1981) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1992) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function accept4 (line 2003) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ...
function utimensat (line 2014) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_386.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function pipe (line 1762) | func pipe(p *[2]_C_int) (err error) {
function pipe2 (line 1772) | func pipe2(p *[2]_C_int, flags int) (err error) {
function Dup2 (line 1782) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1792) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1803) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1820) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1830) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 1840) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1850) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Ftruncate (line 1865) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1875) | func Getegid() (egid int) {
function Geteuid (line 1883) | func Geteuid() (euid int) {
function Getgid (line 1891) | func Getgid() (gid int) {
function Getuid (line 1899) | func Getuid() (uid int) {
function InotifyInit (line 1907) | func InotifyInit() (fd int, err error) {
function Ioperm (line 1918) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 1928) | func Iopl(level int) (err error) {
function Lchown (line 1938) | func Lchown(path string, uid int, gid int) (err error) {
function Lstat (line 1953) | func Lstat(path string, stat *Stat_t) (err error) {
function Pread (line 1968) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1985) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 2002) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function sendfile (line 2022) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 2033) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2043) | func Setfsuid(uid int) (err error) {
function Setregid (line 2053) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2063) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2073) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setreuid (line 2083) | func Setreuid(ruid int, euid int) (err error) {
function Splice (line 2093) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Stat (line 2104) | func Stat(path string, stat *Stat_t) (err error) {
function SyncFileRange (line 2119) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2129) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2144) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function getgroups (line 2154) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2165) | func setgroups(n int, list *_Gid_t) (err error) {
function Select (line 2175) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function mmap2 (line 2186) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa...
function Pause (line 2197) | func Pause() (err error) {
function getrlimit (line 2207) | func getrlimit(resource int, rlim *rlimit32) (err error) {
function setrlimit (line 2217) | func setrlimit(resource int, rlim *rlimit32) (err error) {
function futimesat (line 2227) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2242) | func Gettimeofday(tv *Timeval) (err error) {
function Time (line 2252) | func Time(t *Time_t) (tt Time_t, err error) {
function Utime (line 2263) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2278) | func utimes(path string, times *[2]Timeval) (err error) {
function poll (line 2293) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function Dup2 (line 1762) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1772) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1783) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1800) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1810) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 1820) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1830) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1845) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1855) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1865) | func Getegid() (egid int) {
function Geteuid (line 1873) | func Geteuid() (euid int) {
function Getgid (line 1881) | func Getgid() (gid int) {
function Getrlimit (line 1889) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1899) | func Getuid() (uid int) {
function inotifyInit (line 1907) | func inotifyInit() (fd int, err error) {
function Ioperm (line 1918) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 1928) | func Iopl(level int) (err error) {
function Lchown (line 1938) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 1953) | func Listen(s int, n int) (err error) {
function Pause (line 1963) | func Pause() (err error) {
function Pread (line 1973) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1990) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 2007) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Seek (line 2027) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function sendfile (line 2038) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 2049) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2059) | func Setfsuid(uid int) (err error) {
function Setregid (line 2069) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2079) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2089) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2099) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2109) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2119) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2129) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Statfs (line 2140) | func Statfs(path string, buf *Statfs_t) (err error) {
function SyncFileRange (line 2155) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2165) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2180) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function accept (line 2190) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2201) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2212) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2222) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2232) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2243) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2253) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2263) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2273) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2284) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2294) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2304) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2314) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2331) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2347) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2358) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function mmap (line 2369) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
function futimesat (line 2380) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Utime (line 2395) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2410) | func utimes(path string, times *[2]Timeval) (err error) {
function pipe (line 2425) | func pipe(p *[2]_C_int) (err error) {
function pipe2 (line 2435) | func pipe2(p *[2]_C_int, flags int) (err error) {
function poll (line 2445) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function kexecFileLoad (line 2456) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s...
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function pipe (line 1762) | func pipe(p *[2]_C_int) (err error) {
function pipe2 (line 1772) | func pipe2(p *[2]_C_int, flags int) (err error) {
function accept (line 1782) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 1793) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 1804) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 1814) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 1824) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 1835) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 1845) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 1855) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 1865) | func socket(domain int, typ int, proto int) (fd int, err error) {
function getpeername (line 1876) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 1886) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 1896) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 1913) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function socketpair (line 1929) | func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) {
function recvmsg (line 1939) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 1950) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function Dup2 (line 1961) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1971) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1982) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fchown (line 1999) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 2009) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 2019) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Getegid (line 2034) | func Getegid() (egid int) {
function Geteuid (line 2042) | func Geteuid() (euid int) {
function Getgid (line 2050) | func Getgid() (gid int) {
function Getuid (line 2058) | func Getuid() (uid int) {
function InotifyInit (line 2066) | func InotifyInit() (fd int, err error) {
function Lchown (line 2077) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 2092) | func Listen(s int, n int) (err error) {
function Lstat (line 2102) | func Lstat(path string, stat *Stat_t) (err error) {
function Pause (line 2117) | func Pause() (err error) {
function Renameat (line 2127) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function sendfile (line 2147) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Select (line 2158) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function Setfsgid (line 2169) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2179) | func Setfsuid(uid int) (err error) {
function Setregid (line 2189) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2199) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2209) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setreuid (line 2219) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2229) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2239) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Stat (line 2250) | func Stat(path string, stat *Stat_t) (err error) {
function Ustat (line 2265) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function futimesat (line 2275) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2290) | func Gettimeofday(tv *Timeval) (err error) {
function utimes (line 2300) | func utimes(path string, times *[2]Timeval) (err error) {
function Pread (line 2315) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 2332) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Truncate (line 2349) | func Truncate(path string, length int64) (err error) {
function Ftruncate (line 2364) | func Ftruncate(fd int, length int64) (err error) {
function mmap2 (line 2374) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa...
function getrlimit (line 2385) | func getrlimit(resource int, rlim *rlimit32) (err error) {
function setrlimit (line 2395) | func setrlimit(resource int, rlim *rlimit32) (err error) {
function poll (line 2405) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function armSyncFileRange (line 2416) | func armSyncFileRange(fd int, flags int, off int64, n int64) (err error) {
function kexecFileLoad (line 2426) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s...
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function EpollWait (line 1762) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1779) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1789) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 1799) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1809) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1824) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1834) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1844) | func Getegid() (egid int) {
function Geteuid (line 1852) | func Geteuid() (euid int) {
function Getgid (line 1860) | func Getgid() (gid int) {
function Getrlimit (line 1868) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1878) | func Getuid() (uid int) {
function Listen (line 1886) | func Listen(s int, n int) (err error) {
function Pread (line 1896) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1913) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 1930) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Seek (line 1950) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function sendfile (line 1961) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 1972) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 1982) | func Setfsuid(uid int) (err error) {
function Setregid (line 1992) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2002) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2012) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2022) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2032) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2042) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2052) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Statfs (line 2063) | func Statfs(path string, buf *Statfs_t) (err error) {
function SyncFileRange (line 2078) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2088) | func Truncate(path string, length int64) (err error) {
function accept (line 2103) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2114) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2125) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2135) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2145) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2156) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2166) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2176) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2186) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2197) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2207) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2217) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2227) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2244) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2260) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2271) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function mmap (line 2282) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
function Gettimeofday (line 2293) | func Gettimeofday(tv *Timeval) (err error) {
function pipe2 (line 2303) | func pipe2(p *[2]_C_int, flags int) (err error) {
function kexecFileLoad (line 2313) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s...
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function Dup2 (line 1762) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1772) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1783) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1800) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1810) | func Fchown(fd int, uid int, gid int) (err error) {
function Ftruncate (line 1820) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1830) | func Getegid() (egid int) {
function Geteuid (line 1838) | func Geteuid() (euid int) {
function Getgid (line 1846) | func Getgid() (gid int) {
function Getuid (line 1854) | func Getuid() (uid int) {
function Lchown (line 1862) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 1877) | func Listen(s int, n int) (err error) {
function Pread (line 1887) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1904) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 1921) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Select (line 1941) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function sendfile (line 1952) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 1963) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 1973) | func Setfsuid(uid int) (err error) {
function Setregid (line 1983) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 1993) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2003) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setreuid (line 2013) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2023) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2033) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function SyncFileRange (line 2044) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2054) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2069) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function accept (line 2079) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2090) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2101) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2111) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2121) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2132) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2142) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2152) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2162) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2173) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2183) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2193) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2203) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2220) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2236) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2247) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function InotifyInit (line 2258) | func InotifyInit() (fd int, err error) {
function Ioperm (line 2269) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 2279) | func Iopl(level int) (err error) {
function futimesat (line 2289) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2304) | func Gettimeofday(tv *Timeval) (err error) {
function Time (line 2314) | func Time(t *Time_t) (tt Time_t, err error) {
function Utime (line 2325) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2340) | func utimes(path string, times *[2]Timeval) (err error) {
function Lstat (line 2355) | func Lstat(path string, stat *Stat_t) (err error) {
function Fstat (line 2370) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 2380) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Stat (line 2395) | func Stat(path string, stat *Stat_t) (err error) {
function Pause (line 2410) | func Pause() (err error) {
function pipe2 (line 2420) | func pipe2(p *[2]_C_int, flags int) (err error) {
function pipe (line 2430) | func pipe() (p1 int, p2 int, err error) {
function mmap2 (line 2442) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa...
function getrlimit (line 2453) | func getrlimit(resource int, rlim *rlimit32) (err error) {
function setrlimit (line 2463) | func setrlimit(resource int, rlim *rlimit32) (err error) {
function poll (line 2473) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function Dup2 (line 1762) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1772) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1783) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1800) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1810) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstatfs (line 1820) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1830) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1840) | func Getegid() (egid int) {
function Geteuid (line 1848) | func Geteuid() (euid int) {
function Getgid (line 1856) | func Getgid() (gid int) {
function Getrlimit (line 1864) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1874) | func Getuid() (uid int) {
function Lchown (line 1882) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 1897) | func Listen(s int, n int) (err error) {
function Pause (line 1907) | func Pause() (err error) {
function Pread (line 1917) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1934) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 1951) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Seek (line 1971) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function sendfile (line 1982) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 1993) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2003) | func Setfsuid(uid int) (err error) {
function Setregid (line 2013) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2023) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2033) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2043) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2053) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2063) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2073) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Statfs (line 2084) | func Statfs(path string, buf *Statfs_t) (err error) {
function SyncFileRange (line 2099) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2109) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2124) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function accept (line 2134) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2145) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2156) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2166) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2176) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2187) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2197) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2207) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2217) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2228) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2238) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2248) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2258) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2275) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2291) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2302) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function mmap (line 2313) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
function futimesat (line 2324) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2339) | func Gettimeofday(tv *Timeval) (err error) {
function Utime (line 2349) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2364) | func utimes(path string, times *[2]Timeval) (err error) {
function pipe2 (line 2379) | func pipe2(p *[2]_C_int, flags int) (err error) {
function fstat (line 2389) | func fstat(fd int, st *stat_t) (err error) {
function fstatat (line 2399) | func fstatat(dirfd int, path string, st *stat_t, flags int) (err error) {
function lstat (line 2414) | func lstat(path string, st *stat_t) (err error) {
function stat (line 2429) | func stat(path string, st *stat_t) (err error) {
function poll (line 2444) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function Dup2 (line 1762) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1772) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1783) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1800) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1810) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstatfs (line 1820) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1830) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1840) | func Getegid() (egid int) {
function Geteuid (line 1848) | func Geteuid() (euid int) {
function Getgid (line 1856) | func Getgid() (gid int) {
function Getrlimit (line 1864) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1874) | func Getuid() (uid int) {
function Lchown (line 1882) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 1897) | func Listen(s int, n int) (err error) {
function Pause (line 1907) | func Pause() (err error) {
function Pread (line 1917) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1934) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 1951) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Seek (line 1971) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function sendfile (line 1982) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 1993) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2003) | func Setfsuid(uid int) (err error) {
function Setregid (line 2013) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2023) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2033) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2043) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2053) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2063) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2073) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Statfs (line 2084) | func Statfs(path string, buf *Statfs_t) (err error) {
function SyncFileRange (line 2099) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2109) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2124) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function accept (line 2134) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2145) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2156) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2166) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2176) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2187) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2197) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2207) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2217) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2228) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2238) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2248) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2258) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2275) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2291) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2302) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function mmap (line 2313) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
function futimesat (line 2324) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2339) | func Gettimeofday(tv *Timeval) (err error) {
function Utime (line 2349) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2364) | func utimes(path string, times *[2]Timeval) (err error) {
function pipe2 (line 2379) | func pipe2(p *[2]_C_int, flags int) (err error) {
function fstat (line 2389) | func fstat(fd int, st *stat_t) (err error) {
function fstatat (line 2399) | func fstatat(dirfd int, path string, st *stat_t, flags int) (err error) {
function lstat (line 2414) | func lstat(path string, st *stat_t) (err error) {
function stat (line 2429) | func stat(path string, st *stat_t) (err error) {
function poll (line 2444) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function Dup2 (line 1762) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1772) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1783) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1800) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1810) | func Fchown(fd int, uid int, gid int) (err error) {
function Ftruncate (line 1820) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1830) | func Getegid() (egid int) {
function Geteuid (line 1838) | func Geteuid() (euid int) {
function Getgid (line 1846) | func Getgid() (gid int) {
function Getuid (line 1854) | func Getuid() (uid int) {
function Lchown (line 1862) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 1877) | func Listen(s int, n int) (err error) {
function Pread (line 1887) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1904) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 1921) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Select (line 1941) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function sendfile (line 1952) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 1963) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 1973) | func Setfsuid(uid int) (err error) {
function Setregid (line 1983) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 1993) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2003) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setreuid (line 2013) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2023) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2033) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function SyncFileRange (line 2044) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2054) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2069) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function accept (line 2079) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2090) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2101) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2111) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2121) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2132) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2142) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2152) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2162) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2173) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2183) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2193) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2203) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2220) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2236) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2247) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function InotifyInit (line 2258) | func InotifyInit() (fd int, err error) {
function Ioperm (line 2269) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 2279) | func Iopl(level int) (err error) {
function futimesat (line 2289) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2304) | func Gettimeofday(tv *Timeval) (err error) {
function Time (line 2314) | func Time(t *Time_t) (tt Time_t, err error) {
function Utime (line 2325) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2340) | func utimes(path string, times *[2]Timeval) (err error) {
function Lstat (line 2355) | func Lstat(path string, stat *Stat_t) (err error) {
function Fstat (line 2370) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 2380) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Stat (line 2395) | func Stat(path string, stat *Stat_t) (err error) {
function Pause (line 2410) | func Pause() (err error) {
function pipe2 (line 2420) | func pipe2(p *[2]_C_int, flags int) (err error) {
function pipe (line 2430) | func pipe() (p1 int, p2 int, err error) {
function mmap2 (line 2442) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa...
function getrlimit (line 2453) | func getrlimit(resource int, rlim *rlimit32) (err error) {
function setrlimit (line 2463) | func setrlimit(resource int, rlim *rlimit32) (err error) {
function poll (line 2473) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function Dup2 (line 1762) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1772) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1783) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1800) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1810) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 1820) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1830) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1845) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1855) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1865) | func Getegid() (egid int) {
function Geteuid (line 1873) | func Geteuid() (euid int) {
function Getgid (line 1881) | func Getgid() (gid int) {
function Getrlimit (line 1889) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1899) | func Getuid() (uid int) {
function InotifyInit (line 1907) | func InotifyInit() (fd int, err error) {
function Ioperm (line 1918) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 1928) | func Iopl(level int) (err error) {
function Lchown (line 1938) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 1953) | func Listen(s int, n int) (err error) {
function Lstat (line 1963) | func Lstat(path string, stat *Stat_t) (err error) {
function Pause (line 1978) | func Pause() (err error) {
function Pread (line 1988) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 2005) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 2022) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Seek (line 2042) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function Select (line 2053) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function sendfile (line 2064) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 2075) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2085) | func Setfsuid(uid int) (err error) {
function Setregid (line 2095) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2105) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2115) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2125) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2135) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2145) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2155) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Stat (line 2166) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 2181) | func Statfs(path string, buf *Statfs_t) (err error) {
function Truncate (line 2196) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2211) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function accept (line 2221) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2232) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2243) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2253) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2263) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2274) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2284) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2294) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2304) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2315) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2325) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2335) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2345) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2362) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2378) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2389) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function mmap (line 2400) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
function futimesat (line 2411) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2426) | func Gettimeofday(tv *Timeval) (err error) {
function Time (line 2436) | func Time(t *Time_t) (tt Time_t, err error) {
function Utime (line 2447) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2462) | func utimes(path string, times *[2]Timeval) (err error) {
function pipe (line 2477) | func pipe(p *[2]_C_int) (err error) {
function pipe2 (line 2487) | func pipe2(p *[2]_C_int, flags int) (err error) {
function poll (line 2497) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function syncFileRange2 (line 2508) | func syncFileRange2(fd int, flags int, off int64, n int64) (err error) {
function kexecFileLoad (line 2518) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s...
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function Dup2 (line 1762) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1772) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1783) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1800) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1810) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 1820) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1830) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1845) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1855) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1865) | func Getegid() (egid int) {
function Geteuid (line 1873) | func Geteuid() (euid int) {
function Getgid (line 1881) | func Getgid() (gid int) {
function Getrlimit (line 1889) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1899) | func Getuid() (uid int) {
function InotifyInit (line 1907) | func InotifyInit() (fd int, err error) {
function Ioperm (line 1918) | func Ioperm(from int, num int, on int) (err error) {
function Iopl (line 1928) | func Iopl(level int) (err error) {
function Lchown (line 1938) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 1953) | func Listen(s int, n int) (err error) {
function Lstat (line 1963) | func Lstat(path string, stat *Stat_t) (err error) {
function Pause (line 1978) | func Pause() (err error) {
function Pread (line 1988) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 2005) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 2022) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Seek (line 2042) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function Select (line 2053) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function sendfile (line 2064) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 2075) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2085) | func Setfsuid(uid int) (err error) {
function Setregid (line 2095) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2105) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2115) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2125) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2135) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2145) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2155) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Stat (line 2166) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 2181) | func Statfs(path string, buf *Statfs_t) (err error) {
function Truncate (line 2196) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2211) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function accept (line 2221) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2232) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2243) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2253) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2263) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2274) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2284) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2294) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2304) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2315) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2325) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2335) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2345) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2362) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2378) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2389) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function mmap (line 2400) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
function futimesat (line 2411) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2426) | func Gettimeofday(tv *Timeval) (err error) {
function Time (line 2436) | func Time(t *Time_t) (tt Time_t, err error) {
function Utime (line 2447) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2462) | func utimes(path string, times *[2]Timeval) (err error) {
function pipe (line 2477) | func pipe(p *[2]_C_int) (err error) {
function pipe2 (line 2487) | func pipe2(p *[2]_C_int, flags int) (err error) {
function poll (line 2497) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function syncFileRange2 (line 2508) | func syncFileRange2(fd int, flags int, off int64, n int64) (err error) {
function kexecFileLoad (line 2518) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s...
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function EpollWait (line 1762) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1779) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1789) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 1799) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1809) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1824) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1834) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1844) | func Getegid() (egid int) {
function Geteuid (line 1852) | func Geteuid() (euid int) {
function Getgid (line 1860) | func Getgid() (gid int) {
function Getrlimit (line 1868) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1878) | func Getuid() (uid int) {
function Listen (line 1886) | func Listen(s int, n int) (err error) {
function Pread (line 1896) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1913) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Seek (line 1930) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function sendfile (line 1941) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 1952) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 1962) | func Setfsuid(uid int) (err error) {
function Setregid (line 1972) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 1982) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1992) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2002) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2012) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2022) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2032) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Statfs (line 2043) | func Statfs(path string, buf *Statfs_t) (err error) {
function SyncFileRange (line 2058) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2068) | func Truncate(path string, length int64) (err error) {
function accept (line 2083) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2094) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2105) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2115) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2125) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2136) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2146) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2156) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2166) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2177) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2187) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2197) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2207) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2224) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2240) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2251) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function mmap (line 2262) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
function Gettimeofday (line 2273) | func Gettimeofday(tv *Timeval) (err error) {
function pipe2 (line 2283) | func pipe2(p *[2]_C_int, flags int) (err error) {
function kexecFileLoad (line 2293) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s...
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function Dup2 (line 1762) | func Dup2(oldfd int, newfd int) (err error) {
function EpollCreate (line 1772) | func EpollCreate(size int) (fd int, err error) {
function EpollWait (line 1783) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1800) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchown (line 1810) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 1820) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1830) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1845) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1855) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1865) | func Getegid() (egid int) {
function Geteuid (line 1873) | func Geteuid() (euid int) {
function Getgid (line 1881) | func Getgid() (gid int) {
function Getrlimit (line 1889) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1899) | func Getuid() (uid int) {
function InotifyInit (line 1907) | func InotifyInit() (fd int, err error) {
function Lchown (line 1918) | func Lchown(path string, uid int, gid int) (err error) {
function Lstat (line 1933) | func Lstat(path string, stat *Stat_t) (err error) {
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 Renameat (line 1992) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Seek (line 2012) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function Select (line 2023) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function sendfile (line 2034) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 2045) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2055) | func Setfsuid(uid int) (err error) {
function Setregid (line 2065) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2075) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2085) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2095) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2105) | func Setreuid(ruid int, euid int) (err error) {
function Splice (line 2115) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Stat (line 2126) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 2141) | func Statfs(path string, buf *Statfs_t) (err error) {
function SyncFileRange (line 2156) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2166) | func Truncate(path string, length int64) (err error) {
function Ustat (line 2181) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function getgroups (line 2191) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2202) | func setgroups(n int, list *_Gid_t) (err error) {
function futimesat (line 2212) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2227) | func Gettimeofday(tv *Timeval) (err error) {
function Utime (line 2237) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2252) | func utimes(path string, times *[2]Timeval) (err error) {
function pipe2 (line 2267) | func pipe2(p *[2]_C_int, flags int) (err error) {
function poll (line 2277) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function kexecFileLoad (line 2288) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s...
FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go
function FanotifyInit (line 17) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
function fanotifyMark (line 28) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *...
function fchmodat (line 38) | func fchmodat(dirfd int, path string, mode uint32) (err error) {
function ioctl (line 53) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Linkat (line 63) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ...
function openat (line 83) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function ppoll (line 99) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Readlinkat (line 110) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Symlinkat (line 132) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Unlinkat (line 152) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function utimensat (line 167) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
function Getcwd (line 182) | func Getcwd(buf []byte) (n int, err error) {
function wait4 (line 199) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ...
function KeyctlInt (line 210) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int...
function KeyctlBuffer (line 221) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err...
function keyctlJoin (line 238) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) {
function keyctlSearch (line 254) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)...
function keyctlIOV (line 275) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {
function keyctlDH (line 291) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e...
function keyctlRestrictKeyringByType (line 308) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest...
function keyctlRestrictKeyring (line 328) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) {
function ptrace (line 338) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
function reboot (line 348) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
function mount (line 363) | func mount(source string, target string, fstype string, flags uintptr, d...
function Acct (line 388) | func Acct(path string) (err error) {
function AddKey (line 403) | func AddKey(keyType string, description string, payload []byte, ringid i...
function Adjtimex (line 430) | func Adjtimex(buf *Timex) (state int, err error) {
function Capget (line 441) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) {
function Capset (line 451) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chroot (line 476) | func Chroot(path string) (err error) {
function ClockGetres (line 491) | func ClockGetres(clockid int32, res *Timespec) (err error) {
function ClockGettime (line 501) | func ClockGettime(clockid int32, time *Timespec) (err error) {
function ClockNanosleep (line 511) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ...
function Close (line 521) | func Close(fd int) (err error) {
function CopyFileRange (line 531) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ...
function DeleteModule (line 542) | func DeleteModule(name string, flags int) (err error) {
function Dup (line 557) | func Dup(oldfd int) (fd int, err error) {
function Dup3 (line 568) | func Dup3(oldfd int, newfd int, flags int) (err error) {
function EpollCreate1 (line 578) | func EpollCreate1(flag int) (fd int, err error) {
function EpollCtl (line 589) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
function Eventfd (line 599) | func Eventfd(initval uint, flags int) (fd int, err error) {
function Exit (line 610) | func Exit(code int) {
function Fallocate (line 617) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
function Fchdir (line 627) | func Fchdir(fd int) (err error) {
function Fchmod (line 637) | func Fchmod(fd int, mode uint32) (err error) {
function Fchownat (line 647) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function fcntl (line 662) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function Fdatasync (line 673) | func Fdatasync(fd int) (err error) {
function Fgetxattr (line 683) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
function FinitModule (line 705) | func FinitModule(fd int, params string, flags int) (err error) {
function Flistxattr (line 720) | func Flistxattr(fd int, dest []byte) (sz int, err error) {
function Flock (line 737) | func Flock(fd int, how int) (err error) {
function Fremovexattr (line 747) | func Fremovexattr(fd int, attr string) (err error) {
function Fsetxattr (line 762) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {
function Fsync (line 783) | func Fsync(fd int) (err error) {
function Getdents (line 793) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getpgid (line 810) | func Getpgid(pid int) (pgid int, err error) {
function Getpid (line 821) | func Getpid() (pid int) {
function Getppid (line 829) | func Getppid() (ppid int) {
function Getpriority (line 837) | func Getpriority(which int, who int) (prio int, err error) {
function Getrandom (line 848) | func Getrandom(buf []byte, flags int) (n int, err error) {
function Getrusage (line 865) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 875) | func Getsid(pid int) (sid int, err error) {
function Gettid (line 886) | func Gettid() (tid int) {
function Getxattr (line 894) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
function InitModule (line 921) | func InitModule(moduleImage []byte, params string) (err error) {
function InotifyAddWatch (line 942) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in...
function InotifyInit1 (line 958) | func InotifyInit1(flags int) (fd int, err error) {
function InotifyRmWatch (line 969) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {
function Kill (line 980) | func Kill(pid int, sig syscall.Signal) (err error) {
function Klogctl (line 990) | func Klogctl(typ int, buf []byte) (n int, err error) {
function Lgetxattr (line 1007) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {
function Listxattr (line 1034) | func Listxattr(path string, dest []byte) (sz int, err error) {
function Llistxattr (line 1056) | func Llistxattr(path string, dest []byte) (sz int, err error) {
function Lremovexattr (line 1078) | func Lremovexattr(path string, attr string) (err error) {
function Lsetxattr (line 1098) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er...
function MemfdCreate (line 1124) | func MemfdCreate(name string, flags int) (fd int, err error) {
function Mkdirat (line 1140) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mknodat (line 1155) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1170) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function PerfEventOpen (line 1180) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f...
function PivotRoot (line 1191) | func PivotRoot(newroot string, putold string) (err error) {
function prlimit (line 1211) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ...
function Prctl (line 1221) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui...
function Pselect (line 1231) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s...
function read (line 1242) | func read(fd int, p []byte) (n int, err error) {
function Removexattr (line 1259) | func Removexattr(path string, attr string) (err error) {
function Renameat2 (line 1279) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin...
function RequestKey (line 1299) | func RequestKey(keyType string, description string, callback string, des...
function Setdomainname (line 1325) | func Setdomainname(p []byte) (err error) {
function Sethostname (line 1341) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1357) | func Setpgid(pid int, pgid int) (err error) {
function Setsid (line 1367) | func Setsid() (pid int, err error) {
function Settimeofday (line 1378) | func Settimeofday(tv *Timeval) (err error) {
function Setns (line 1388) | func Setns(fd int, nstype int) (err error) {
function Setpriority (line 1398) | func Setpriority(which int, who int, prio int) (err error) {
function Setxattr (line 1408) | func Setxattr(path string, attr string, data []byte, flags int) (err err...
function signalfd (line 1434) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n...
function Statx (line 1445) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (...
function Sync (line 1460) | func Sync() {
function Syncfs (line 1467) | func Syncfs(fd int) (err error) {
function Sysinfo (line 1477) | func Sysinfo(info *Sysinfo_t) (err error) {
function Tee (line 1487) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
function Tgkill (line 1498) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
function Times (line 1508) | func Times(tms *Tms) (ticks uintptr, err error) {
function Umask (line 1519) | func Umask(mask int) (oldmask int) {
function Uname (line 1527) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1537) | func Unmount(target string, flags int) (err error) {
function Unshare (line 1552) | func Unshare(flags int) (err error) {
function write (line 1562) | func write(fd int, p []byte) (n int, err error) {
function exitThread (line 1579) | func exitThread(code int) (err error) {
function readlen (line 1589) | func readlen(fd int, p *byte, np int) (n int, err error) {
function writelen (line 1600) | func writelen(fd int, p *byte, np int) (n int, err error) {
function munmap (line 1611) | func munmap(addr uintptr, length uintptr) (err error) {
function Madvise (line 1621) | func Madvise(b []byte, advice int) (err error) {
function Mprotect (line 1637) | func Mprotect(b []byte, prot int) (err error) {
function Mlock (line 1653) | func Mlock(b []byte) (err error) {
function Mlockall (line 1669) | func Mlockall(flags int) (err error) {
function Msync (line 1679) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1695) | func Munlock(b []byte) (err error) {
function Munlockall (line 1711) | func Munlockall() (err error) {
function faccessat (line 1721) | func faccessat(dirfd int, path string, mode uint32) (err error) {
function nameToHandleAt (line 1736) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ...
function openByHandleAt (line 1751) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err...
function EpollWait (line 1762) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro...
function Fadvise (line 1779) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Dup2 (line 1789) | func Dup2(oldfd int, newfd int) (err error) {
function Fchown (line 1799) | func Fchown(fd int, uid int, gid int) (err error) {
function Fstat (line 1809) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 1819) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 1834) | func Fstatfs(fd int, buf *Statfs_t) (err error) {
function Ftruncate (line 1844) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 1854) | func Getegid() (egid int) {
function Geteuid (line 1862) | func Geteuid() (euid int) {
function Getgid (line 1870) | func Getgid() (gid int) {
function Getrlimit (line 1878) | func Getrlimit(resource int, rlim *Rlimit) (err error) {
function Getuid (line 1888) | func Getuid() (uid int) {
function InotifyInit (line 1896) | func InotifyInit() (fd int, err error) {
function Lchown (line 1907) | func Lchown(path string, uid int, gid int) (err error) {
function Listen (line 1922) | func Listen(s int, n int) (err error) {
function Lstat (line 1932) | func Lstat(path string, stat *Stat_t) (err error) {
function Pause (line 1947) | func Pause() (err error) {
function Pread (line 1957) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1974) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function Renameat (line 1991) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Seek (line 2011) | func Seek(fd int, offset int64, whence int) (off int64, err error) {
function Select (line 2022) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ...
function sendfile (line 2033) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function Setfsgid (line 2044) | func Setfsgid(gid int) (err error) {
function Setfsuid (line 2054) | func Setfsuid(uid int) (err error) {
function Setregid (line 2064) | func Setregid(rgid int, egid int) (err error) {
function Setresgid (line 2074) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 2084) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 2094) | func Setrlimit(resource int, rlim *Rlimit) (err error) {
function Setreuid (line 2104) | func Setreuid(ruid int, euid int) (err error) {
function Shutdown (line 2114) | func Shutdown(fd int, how int) (err error) {
function Splice (line 2124) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i...
function Stat (line 2135) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 2150) | func Statfs(path string, buf *Statfs_t) (err error) {
function SyncFileRange (line 2165) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) {
function Truncate (line 2175) | func Truncate(path string, length int64) (err error) {
function accept (line 2190) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function accept4 (line 2201) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (...
function bind (line 2212) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 2222) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function getgroups (line 2232) | func getgroups(n int, list *_Gid_t) (nn int, err error) {
function setgroups (line 2243) | func setgroups(n int, list *_Gid_t) (err error) {
function getsockopt (line 2253) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function setsockopt (line 2263) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function socket (line 2273) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 2284) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function getpeername (line 2294) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function getsockname (line 2304) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function recvfrom (line 2314) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
function sendto (line 2331) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function recvmsg (line 2347) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 2358) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function mmap (line 2369) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off...
function futimesat (line 2380) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
function Gettimeofday (line 2395) | func Gettimeofday(tv *Timeval) (err error) {
function Utime (line 2405) | func Utime(path string, buf *Utimbuf) (err error) {
function utimes (line 2420) | func utimes(path string, times *[2]Timeval) (err error) {
function pipe (line 2435) | func pipe(p *[2]_C_int) (err error) {
function pipe2 (line 2445) | func pipe2(p *[2]_C_int, flags int) (err error) {
function poll (line 2455) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe() (fd1 int, fd2 int, err error) {
function Getdents (line 392) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getcwd (line 409) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 426) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 436) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 451) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chflags (line 476) | func Chflags(path string, flags int) (err error) {
function Chmod (line 491) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 506) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 521) | func Chroot(path string) (err error) {
function Close (line 536) | func Close(fd int) (err error) {
function Dup (line 546) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 557) | func Dup2(from int, to int) (err error) {
function Exit (line 567) | func Exit(code int) {
function ExtattrGetFd (line 574) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrSetFd (line 590) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrDeleteFd (line 606) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er...
function ExtattrListFd (line 621) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ...
function ExtattrGetFile (line 632) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrSetFile (line 653) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrDeleteFile (line 674) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ...
function ExtattrListFile (line 694) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte...
function ExtattrGetLink (line 710) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrSetLink (line 731) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrDeleteLink (line 752) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ...
function ExtattrListLink (line 772) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte...
function Faccessat (line 788) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fadvise (line 803) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchdir (line 813) | func Fchdir(fd int) (err error) {
function Fchflags (line 823) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 833) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 843) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 858) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 868) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 883) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 893) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 904) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 914) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fsync (line 929) | func Fsync(fd int) (err error) {
function Ftruncate (line 939) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 949) | func Getegid() (egid int) {
function Geteuid (line 957) | func Geteuid() (uid int) {
function Getgid (line 965) | func Getgid() (gid int) {
function Getpgid (line 973) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 984) | func Getpgrp() (pgrp int) {
function Getpid (line 992) | func Getpid() (pid int) {
function Getppid (line 1000) | func Getppid() (ppid int) {
function Getpriority (line 1008) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 1019) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1029) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 1039) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 1050) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1060) | func Getuid() (uid int) {
function Issetugid (line 1068) | func Issetugid() (tainted bool) {
function Kill (line 1076) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 1086) | func Kqueue() (fd int, err error) {
function Lchown (line 1097) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1112) | func Link(path string, link string) (err error) {
function Linkat (line 1132) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1152) | func Listen(s int, backlog int) (err error) {
function Lstat (line 1162) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 1177) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1192) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1207) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1222) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1237) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1252) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1267) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1277) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1293) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1309) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1325) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1342) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1359) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1376) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1398) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1420) | func Rename(from string, to string) (err error) {
function Renameat (line 1440) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1460) | func Revoke(path string) (err error) {
function Rmdir (line 1475) | func Rmdir(path string) (err error) {
function Seek (line 1490) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1501) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1511) | func Setegid(egid int) (err error) {
function Seteuid (line 1521) | func Seteuid(euid int) (err error) {
function Setgid (line 1531) | func Setgid(gid int) (err error) {
function Setpgid (line 1541) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1551) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1561) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1571) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1581) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1591) | func Setsid() (pid int, err error) {
function Settimeofday (line 1602) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1612) | func Setuid(uid int) (err error) {
function Stat (line 1622) | func Stat(path string, stat *Stat_t) (err error) {
function Symlink (line 1637) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1657) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1677) | func Sync() (err error) {
function Truncate (line 1687) | func Truncate(path string, length int64) (err error) {
function Umask (line 1702) | func Umask(newmask int) (oldmask int) {
function Unlink (line 1710) | func Unlink(path string) (err error) {
function Unlinkat (line 1725) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1740) | func Unmount(path string, flags int) (err error) {
function write (line 1755) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1772) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1783) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1793) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1804) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function utimensat (line 1815) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe() (fd1 int, fd2 int, err error) {
function Getdents (line 392) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getcwd (line 409) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 426) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 436) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 451) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chflags (line 476) | func Chflags(path string, flags int) (err error) {
function Chmod (line 491) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 506) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 521) | func Chroot(path string) (err error) {
function Close (line 536) | func Close(fd int) (err error) {
function Dup (line 546) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 557) | func Dup2(from int, to int) (err error) {
function Exit (line 567) | func Exit(code int) {
function ExtattrGetFd (line 574) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrSetFd (line 590) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrDeleteFd (line 606) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er...
function ExtattrListFd (line 621) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ...
function ExtattrGetFile (line 632) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrSetFile (line 653) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrDeleteFile (line 674) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ...
function ExtattrListFile (line 694) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte...
function ExtattrGetLink (line 710) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrSetLink (line 731) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrDeleteLink (line 752) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ...
function ExtattrListLink (line 772) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte...
function Faccessat (line 788) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fadvise (line 803) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchdir (line 813) | func Fchdir(fd int) (err error) {
function Fchflags (line 823) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 833) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 843) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 858) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 868) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 883) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 893) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 904) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 914) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fsync (line 929) | func Fsync(fd int) (err error) {
function Ftruncate (line 939) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 949) | func Getegid() (egid int) {
function Geteuid (line 957) | func Geteuid() (uid int) {
function Getgid (line 965) | func Getgid() (gid int) {
function Getpgid (line 973) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 984) | func Getpgrp() (pgrp int) {
function Getpid (line 992) | func Getpid() (pid int) {
function Getppid (line 1000) | func Getppid() (ppid int) {
function Getpriority (line 1008) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 1019) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1029) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 1039) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 1050) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1060) | func Getuid() (uid int) {
function Issetugid (line 1068) | func Issetugid() (tainted bool) {
function Kill (line 1076) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 1086) | func Kqueue() (fd int, err error) {
function Lchown (line 1097) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1112) | func Link(path string, link string) (err error) {
function Linkat (line 1132) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1152) | func Listen(s int, backlog int) (err error) {
function Lstat (line 1162) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 1177) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1192) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1207) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1222) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1237) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1252) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1267) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1277) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1293) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1309) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1325) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1342) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1359) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1376) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1398) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1420) | func Rename(from string, to string) (err error) {
function Renameat (line 1440) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1460) | func Revoke(path string) (err error) {
function Rmdir (line 1475) | func Rmdir(path string) (err error) {
function Seek (line 1490) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1501) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1511) | func Setegid(egid int) (err error) {
function Seteuid (line 1521) | func Seteuid(euid int) (err error) {
function Setgid (line 1531) | func Setgid(gid int) (err error) {
function Setpgid (line 1541) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1551) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1561) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1571) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1581) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1591) | func Setsid() (pid int, err error) {
function Settimeofday (line 1602) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1612) | func Setuid(uid int) (err error) {
function Stat (line 1622) | func Stat(path string, stat *Stat_t) (err error) {
function Symlink (line 1637) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1657) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1677) | func Sync() (err error) {
function Truncate (line 1687) | func Truncate(path string, length int64) (err error) {
function Umask (line 1702) | func Umask(newmask int) (oldmask int) {
function Unlink (line 1710) | func Unlink(path string) (err error) {
function Unlinkat (line 1725) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1740) | func Unmount(path string, flags int) (err error) {
function write (line 1755) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1772) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1783) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1793) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1804) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function utimensat (line 1815) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe() (fd1 int, fd2 int, err error) {
function Getdents (line 392) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getcwd (line 409) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 426) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 436) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 451) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chflags (line 476) | func Chflags(path string, flags int) (err error) {
function Chmod (line 491) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 506) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 521) | func Chroot(path string) (err error) {
function Close (line 536) | func Close(fd int) (err error) {
function Dup (line 546) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 557) | func Dup2(from int, to int) (err error) {
function Exit (line 567) | func Exit(code int) {
function ExtattrGetFd (line 574) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrSetFd (line 590) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrDeleteFd (line 606) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er...
function ExtattrListFd (line 621) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ...
function ExtattrGetFile (line 632) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrSetFile (line 653) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrDeleteFile (line 674) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ...
function ExtattrListFile (line 694) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte...
function ExtattrGetLink (line 710) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrSetLink (line 731) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrDeleteLink (line 752) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ...
function ExtattrListLink (line 772) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte...
function Faccessat (line 788) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fadvise (line 803) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchdir (line 813) | func Fchdir(fd int) (err error) {
function Fchflags (line 823) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 833) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 843) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 858) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 868) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 883) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 893) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 904) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 914) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fsync (line 929) | func Fsync(fd int) (err error) {
function Ftruncate (line 939) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 949) | func Getegid() (egid int) {
function Geteuid (line 957) | func Geteuid() (uid int) {
function Getgid (line 965) | func Getgid() (gid int) {
function Getpgid (line 973) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 984) | func Getpgrp() (pgrp int) {
function Getpid (line 992) | func Getpid() (pid int) {
function Getppid (line 1000) | func Getppid() (ppid int) {
function Getpriority (line 1008) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 1019) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1029) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 1039) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 1050) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1060) | func Getuid() (uid int) {
function Issetugid (line 1068) | func Issetugid() (tainted bool) {
function Kill (line 1076) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 1086) | func Kqueue() (fd int, err error) {
function Lchown (line 1097) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1112) | func Link(path string, link string) (err error) {
function Linkat (line 1132) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1152) | func Listen(s int, backlog int) (err error) {
function Lstat (line 1162) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 1177) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1192) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1207) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1222) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1237) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1252) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1267) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1277) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1293) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1309) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1325) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1342) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1359) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1376) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1398) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1420) | func Rename(from string, to string) (err error) {
function Renameat (line 1440) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1460) | func Revoke(path string) (err error) {
function Rmdir (line 1475) | func Rmdir(path string) (err error) {
function Seek (line 1490) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1501) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1511) | func Setegid(egid int) (err error) {
function Seteuid (line 1521) | func Seteuid(euid int) (err error) {
function Setgid (line 1531) | func Setgid(gid int) (err error) {
function Setpgid (line 1541) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1551) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1561) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1571) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1581) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1591) | func Setsid() (pid int, err error) {
function Settimeofday (line 1602) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1612) | func Setuid(uid int) (err error) {
function Stat (line 1622) | func Stat(path string, stat *Stat_t) (err error) {
function Symlink (line 1637) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1657) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1677) | func Sync() (err error) {
function Truncate (line 1687) | func Truncate(path string, length int64) (err error) {
function Umask (line 1702) | func Umask(newmask int) (oldmask int) {
function Unlink (line 1710) | func Unlink(path string) (err error) {
function Unlinkat (line 1725) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1740) | func Unmount(path string, flags int) (err error) {
function write (line 1755) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1772) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1783) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1793) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1804) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function utimensat (line 1815) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
FILE: vendor/golang.org/x/sys/unix/zsyscall_netbsd_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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe() (fd1 int, fd2 int, err error) {
function Getdents (line 392) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getcwd (line 409) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 426) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function Access (line 436) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 451) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 461) | func Chdir(path string) (err error) {
function Chflags (line 476) | func Chflags(path string, flags int) (err error) {
function Chmod (line 491) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 506) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 521) | func Chroot(path string) (err error) {
function Close (line 536) | func Close(fd int) (err error) {
function Dup (line 546) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 557) | func Dup2(from int, to int) (err error) {
function Exit (line 567) | func Exit(code int) {
function ExtattrGetFd (line 574) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrSetFd (line 590) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp...
function ExtattrDeleteFd (line 606) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er...
function ExtattrListFd (line 621) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ...
function ExtattrGetFile (line 632) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrSetFile (line 653) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat...
function ExtattrDeleteFile (line 674) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ...
function ExtattrListFile (line 694) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte...
function ExtattrGetLink (line 710) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrSetLink (line 731) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat...
function ExtattrDeleteLink (line 752) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ...
function ExtattrListLink (line 772) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte...
function Faccessat (line 788) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fadvise (line 803) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
function Fchdir (line 813) | func Fchdir(fd int) (err error) {
function Fchflags (line 823) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 833) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 843) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 858) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 868) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 883) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 893) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 904) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 914) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fsync (line 929) | func Fsync(fd int) (err error) {
function Ftruncate (line 939) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 949) | func Getegid() (egid int) {
function Geteuid (line 957) | func Geteuid() (uid int) {
function Getgid (line 965) | func Getgid() (gid int) {
function Getpgid (line 973) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 984) | func Getpgrp() (pgrp int) {
function Getpid (line 992) | func Getpid() (pid int) {
function Getppid (line 1000) | func Getppid() (ppid int) {
function Getpriority (line 1008) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 1019) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1029) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 1039) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 1050) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1060) | func Getuid() (uid int) {
function Issetugid (line 1068) | func Issetugid() (tainted bool) {
function Kill (line 1076) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 1086) | func Kqueue() (fd int, err error) {
function Lchown (line 1097) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1112) | func Link(path string, link string) (err error) {
function Linkat (line 1132) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 1152) | func Listen(s int, backlog int) (err error) {
function Lstat (line 1162) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 1177) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1192) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1207) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1222) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1237) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1252) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1267) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1277) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1293) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1309) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1325) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1342) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1359) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1376) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1398) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1420) | func Rename(from string, to string) (err error) {
function Renameat (line 1440) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1460) | func Revoke(path string) (err error) {
function Rmdir (line 1475) | func Rmdir(path string) (err error) {
function Seek (line 1490) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1501) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1511) | func Setegid(egid int) (err error) {
function Seteuid (line 1521) | func Seteuid(euid int) (err error) {
function Setgid (line 1531) | func Setgid(gid int) (err error) {
function Setpgid (line 1541) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1551) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1561) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1571) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1581) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1591) | func Setsid() (pid int, err error) {
function Settimeofday (line 1602) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1612) | func Setuid(uid int) (err error) {
function Stat (line 1622) | func Stat(path string, stat *Stat_t) (err error) {
function Symlink (line 1637) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1657) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1677) | func Sync() (err error) {
function Truncate (line 1687) | func Truncate(path string, length int64) (err error) {
function Umask (line 1702) | func Umask(newmask int) (oldmask int) {
function Unlink (line 1710) | func Unlink(path string) (err error) {
function Unlinkat (line 1725) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1740) | func Unmount(path string, flags int) (err error) {
function write (line 1755) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1772) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1783) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1793) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1804) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function utimensat (line 1815) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe(p *[2]_C_int) (err error) {
function Getdents (line 390) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getcwd (line 407) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 424) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function ppoll (line 434) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Access (line 445) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 460) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 470) | func Chdir(path string) (err error) {
function Chflags (line 485) | func Chflags(path string, flags int) (err error) {
function Chmod (line 500) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 515) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 530) | func Chroot(path string) (err error) {
function Close (line 545) | func Close(fd int) (err error) {
function Dup (line 555) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 566) | func Dup2(from int, to int) (err error) {
function Exit (line 576) | func Exit(code int) {
function Faccessat (line 583) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 598) | func Fchdir(fd int) (err error) {
function Fchflags (line 608) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 618) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 628) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 643) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 653) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 668) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 678) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 689) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 699) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 714) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function Fsync (line 724) | func Fsync(fd int) (err error) {
function Ftruncate (line 734) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 744) | func Getegid() (egid int) {
function Geteuid (line 752) | func Geteuid() (uid int) {
function Getgid (line 760) | func Getgid() (gid int) {
function Getpgid (line 768) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 779) | func Getpgrp() (pgrp int) {
function Getpid (line 787) | func Getpid() (pid int) {
function Getppid (line 795) | func Getppid() (ppid int) {
function Getpriority (line 803) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 814) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrtable (line 824) | func Getrtable() (rtable int, err error) {
function Getrusage (line 835) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 845) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 856) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 866) | func Getuid() (uid int) {
function Issetugid (line 874) | func Issetugid() (tainted bool) {
function Kill (line 882) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 892) | func Kqueue() (fd int, err error) {
function Lchown (line 903) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 918) | func Link(path string, link string) (err error) {
function Linkat (line 938) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 958) | func Listen(s int, backlog int) (err error) {
function Lstat (line 968) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 983) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 998) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1013) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1028) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1043) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1058) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1073) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1083) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1099) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1115) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1131) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1148) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1165) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1182) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1204) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1226) | func Rename(from string, to string) (err error) {
function Renameat (line 1246) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1266) | func Revoke(path string) (err error) {
function Rmdir (line 1281) | func Rmdir(path string) (err error) {
function Seek (line 1296) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1307) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1317) | func Setegid(egid int) (err error) {
function Seteuid (line 1327) | func Seteuid(euid int) (err error) {
function Setgid (line 1337) | func Setgid(gid int) (err error) {
function Setlogin (line 1347) | func Setlogin(name string) (err error) {
function Setpgid (line 1362) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1372) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1382) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1392) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1402) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1412) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1422) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setrtable (line 1432) | func Setrtable(rtable int) (err error) {
function Setsid (line 1442) | func Setsid() (pid int, err error) {
function Settimeofday (line 1453) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1463) | func Setuid(uid int) (err error) {
function Stat (line 1473) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1488) | func Statfs(path string, stat *Statfs_t) (err error) {
function Symlink (line 1503) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1523) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1543) | func Sync() (err error) {
function Truncate (line 1553) | func Truncate(path string, length int64) (err error) {
function Umask (line 1568) | func Umask(newmask int) (oldmask int) {
function Unlink (line 1576) | func Unlink(path string) (err error) {
function Unlinkat (line 1591) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1606) | func Unmount(path string, flags int) (err error) {
function write (line 1621) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1638) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1649) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1659) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1670) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function utimensat (line 1681) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe(p *[2]_C_int) (err error) {
function Getdents (line 390) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getcwd (line 407) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 424) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function ppoll (line 434) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Access (line 445) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 460) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 470) | func Chdir(path string) (err error) {
function Chflags (line 485) | func Chflags(path string, flags int) (err error) {
function Chmod (line 500) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 515) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 530) | func Chroot(path string) (err error) {
function Close (line 545) | func Close(fd int) (err error) {
function Dup (line 555) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 566) | func Dup2(from int, to int) (err error) {
function Exit (line 576) | func Exit(code int) {
function Faccessat (line 583) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 598) | func Fchdir(fd int) (err error) {
function Fchflags (line 608) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 618) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 628) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 643) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 653) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 668) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 678) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 689) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 699) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 714) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function Fsync (line 724) | func Fsync(fd int) (err error) {
function Ftruncate (line 734) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 744) | func Getegid() (egid int) {
function Geteuid (line 752) | func Geteuid() (uid int) {
function Getgid (line 760) | func Getgid() (gid int) {
function Getpgid (line 768) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 779) | func Getpgrp() (pgrp int) {
function Getpid (line 787) | func Getpid() (pid int) {
function Getppid (line 795) | func Getppid() (ppid int) {
function Getpriority (line 803) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 814) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrtable (line 824) | func Getrtable() (rtable int, err error) {
function Getrusage (line 835) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 845) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 856) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 866) | func Getuid() (uid int) {
function Issetugid (line 874) | func Issetugid() (tainted bool) {
function Kill (line 882) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 892) | func Kqueue() (fd int, err error) {
function Lchown (line 903) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 918) | func Link(path string, link string) (err error) {
function Linkat (line 938) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 958) | func Listen(s int, backlog int) (err error) {
function Lstat (line 968) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 983) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 998) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1013) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1028) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1043) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1058) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1073) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1083) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1099) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1115) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1131) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1148) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1165) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1182) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1204) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1226) | func Rename(from string, to string) (err error) {
function Renameat (line 1246) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1266) | func Revoke(path string) (err error) {
function Rmdir (line 1281) | func Rmdir(path string) (err error) {
function Seek (line 1296) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1307) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1317) | func Setegid(egid int) (err error) {
function Seteuid (line 1327) | func Seteuid(euid int) (err error) {
function Setgid (line 1337) | func Setgid(gid int) (err error) {
function Setlogin (line 1347) | func Setlogin(name string) (err error) {
function Setpgid (line 1362) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1372) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1382) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1392) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1402) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1412) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1422) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setrtable (line 1432) | func Setrtable(rtable int) (err error) {
function Setsid (line 1442) | func Setsid() (pid int, err error) {
function Settimeofday (line 1453) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1463) | func Setuid(uid int) (err error) {
function Stat (line 1473) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1488) | func Statfs(path string, stat *Statfs_t) (err error) {
function Symlink (line 1503) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1523) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1543) | func Sync() (err error) {
function Truncate (line 1553) | func Truncate(path string, length int64) (err error) {
function Umask (line 1568) | func Umask(newmask int) (oldmask int) {
function Unlink (line 1576) | func Unlink(path string) (err error) {
function Unlinkat (line 1591) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1606) | func Unmount(path string, flags int) (err error) {
function write (line 1621) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1638) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1649) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1659) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1670) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function utimensat (line 1681) | 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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe(p *[2]_C_int) (err error) {
function Getdents (line 390) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getcwd (line 407) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 424) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function ppoll (line 434) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Access (line 445) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 460) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 470) | func Chdir(path string) (err error) {
function Chflags (line 485) | func Chflags(path string, flags int) (err error) {
function Chmod (line 500) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 515) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 530) | func Chroot(path string) (err error) {
function Close (line 545) | func Close(fd int) (err error) {
function Dup (line 555) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 566) | func Dup2(from int, to int) (err error) {
function Exit (line 576) | func Exit(code int) {
function Faccessat (line 583) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 598) | func Fchdir(fd int) (err error) {
function Fchflags (line 608) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 618) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 628) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 643) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 653) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 668) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 678) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 689) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 699) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 714) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function Fsync (line 724) | func Fsync(fd int) (err error) {
function Ftruncate (line 734) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 744) | func Getegid() (egid int) {
function Geteuid (line 752) | func Geteuid() (uid int) {
function Getgid (line 760) | func Getgid() (gid int) {
function Getpgid (line 768) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 779) | func Getpgrp() (pgrp int) {
function Getpid (line 787) | func Getpid() (pid int) {
function Getppid (line 795) | func Getppid() (ppid int) {
function Getpriority (line 803) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 814) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrtable (line 824) | func Getrtable() (rtable int, err error) {
function Getrusage (line 835) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 845) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 856) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 866) | func Getuid() (uid int) {
function Issetugid (line 874) | func Issetugid() (tainted bool) {
function Kill (line 882) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 892) | func Kqueue() (fd int, err error) {
function Lchown (line 903) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 918) | func Link(path string, link string) (err error) {
function Linkat (line 938) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 958) | func Listen(s int, backlog int) (err error) {
function Lstat (line 968) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 983) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 998) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1013) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1028) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1043) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1058) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1073) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1083) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1099) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1115) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1131) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1148) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1165) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1182) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1204) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1226) | func Rename(from string, to string) (err error) {
function Renameat (line 1246) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1266) | func Revoke(path string) (err error) {
function Rmdir (line 1281) | func Rmdir(path string) (err error) {
function Seek (line 1296) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1307) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1317) | func Setegid(egid int) (err error) {
function Seteuid (line 1327) | func Seteuid(euid int) (err error) {
function Setgid (line 1337) | func Setgid(gid int) (err error) {
function Setlogin (line 1347) | func Setlogin(name string) (err error) {
function Setpgid (line 1362) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1372) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1382) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1392) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1402) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1412) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1422) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setrtable (line 1432) | func Setrtable(rtable int) (err error) {
function Setsid (line 1442) | func Setsid() (pid int, err error) {
function Settimeofday (line 1453) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1463) | func Setuid(uid int) (err error) {
function Stat (line 1473) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1488) | func Statfs(path string, stat *Statfs_t) (err error) {
function Symlink (line 1503) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1523) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1543) | func Sync() (err error) {
function Truncate (line 1553) | func Truncate(path string, length int64) (err error) {
function Umask (line 1568) | func Umask(newmask int) (oldmask int) {
function Unlink (line 1576) | func Unlink(path string) (err error) {
function Unlinkat (line 1591) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1606) | func Unmount(path string, flags int) (err error) {
function write (line 1621) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1638) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1649) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1659) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1670) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function utimensat (line 1681) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e...
FILE: vendor/golang.org/x/sys/unix/zsyscall_openbsd_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 poll (line 269) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Madvise (line 280) | func Madvise(b []byte, behav int) (err error) {
function Mlock (line 296) | func Mlock(b []byte) (err error) {
function Mlockall (line 312) | func Mlockall(flags int) (err error) {
function Mprotect (line 322) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 338) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 354) | func Munlock(b []byte) (err error) {
function Munlockall (line 370) | func Munlockall() (err error) {
function pipe (line 380) | func pipe(p *[2]_C_int) (err error) {
function Getdents (line 390) | func Getdents(fd int, buf []byte) (n int, err error) {
function Getcwd (line 407) | func Getcwd(buf []byte) (n int, err error) {
function ioctl (line 424) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function ppoll (line 434) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ...
function Access (line 445) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 460) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 470) | func Chdir(path string) (err error) {
function Chflags (line 485) | func Chflags(path string, flags int) (err error) {
function Chmod (line 500) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 515) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 530) | func Chroot(path string) (err error) {
function Close (line 545) | func Close(fd int) (err error) {
function Dup (line 555) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 566) | func Dup2(from int, to int) (err error) {
function Exit (line 576) | func Exit(code int) {
function Faccessat (line 583) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 598) | func Fchdir(fd int) (err error) {
function Fchflags (line 608) | func Fchflags(fd int, flags int) (err error) {
function Fchmod (line 618) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 628) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 643) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 653) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Flock (line 668) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 678) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 689) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 699) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatfs (line 714) | func Fstatfs(fd int, stat *Statfs_t) (err error) {
function Fsync (line 724) | func Fsync(fd int) (err error) {
function Ftruncate (line 734) | func Ftruncate(fd int, length int64) (err error) {
function Getegid (line 744) | func Getegid() (egid int) {
function Geteuid (line 752) | func Geteuid() (uid int) {
function Getgid (line 760) | func Getgid() (gid int) {
function Getpgid (line 768) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 779) | func Getpgrp() (pgrp int) {
function Getpid (line 787) | func Getpid() (pid int) {
function Getppid (line 795) | func Getppid() (ppid int) {
function Getpriority (line 803) | func Getpriority(which int, who int) (prio int, err error) {
function Getrlimit (line 814) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrtable (line 824) | func Getrtable() (rtable int, err error) {
function Getrusage (line 835) | func Getrusage(who int, rusage *Rusage) (err error) {
function Getsid (line 845) | func Getsid(pid int) (sid int, err error) {
function Gettimeofday (line 856) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 866) | func Getuid() (uid int) {
function Issetugid (line 874) | func Issetugid() (tainted bool) {
function Kill (line 882) | func Kill(pid int, signum syscall.Signal) (err error) {
function Kqueue (line 892) | func Kqueue() (fd int, err error) {
function Lchown (line 903) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 918) | func Link(path string, link string) (err error) {
function Linkat (line 938) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)...
function Listen (line 958) | func Listen(s int, backlog int) (err error) {
function Lstat (line 968) | func Lstat(path string, stat *Stat_t) (err error) {
function Mkdir (line 983) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 998) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1013) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1028) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1043) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1058) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Nanosleep (line 1073) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1083) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1099) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ...
function Pathconf (line 1115) | func Pathconf(path string, name int) (val int, err error) {
function Pread (line 1131) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1148) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1165) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1182) | func Readlink(path string, buf []byte) (n int, err error) {
function Readlinkat (line 1204) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
function Rename (line 1226) | func Rename(from string, to string) (err error) {
function Renameat (line 1246) | func Renameat(fromfd int, from string, tofd int, to string) (err error) {
function Revoke (line 1266) | func Revoke(path string) (err error) {
function Rmdir (line 1281) | func Rmdir(path string) (err error) {
function Seek (line 1296) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1307) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1317) | func Setegid(egid int) (err error) {
function Seteuid (line 1327) | func Seteuid(euid int) (err error) {
function Setgid (line 1337) | func Setgid(gid int) (err error) {
function Setlogin (line 1347) | func Setlogin(name string) (err error) {
function Setpgid (line 1362) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1372) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1382) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1392) | func Setreuid(ruid int, euid int) (err error) {
function Setresgid (line 1402) | func Setresgid(rgid int, egid int, sgid int) (err error) {
function Setresuid (line 1412) | func Setresuid(ruid int, euid int, suid int) (err error) {
function Setrlimit (line 1422) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setrtable (line 1432) | func Setrtable(rtable int) (err error) {
function Setsid (line 1442) | func Setsid() (pid int, err error) {
function Settimeofday (line 1453) | func Settimeofday(tp *Timeval) (err error) {
function Setuid (line 1463) | func Setuid(uid int) (err error) {
function Stat (line 1473) | func Stat(path string, stat *Stat_t) (err error) {
function Statfs (line 1488) | func Statfs(path string, stat *Statfs_t) (err error) {
function Symlink (line 1503) | func Symlink(path string, link string) (err error) {
function Symlinkat (line 1523) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {
function Sync (line 1543) | func Sync() (err error) {
function Truncate (line 1553) | func Truncate(path string, length int64) (err error) {
function Umask (line 1568) | func Umask(newmask int) (oldmask int) {
function Unlink (line 1576) | func Unlink(path string) (err error) {
function Unlinkat (line 1591) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Unmount (line 1606) | func Unmount(path string, flags int) (err error) {
function write (line 1621) | func write(fd int, p []byte) (n int, err error) {
function mmap (line 1638) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1649) | func munmap(addr uintptr, length uintptr) (err error) {
function readlen (line 1659) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) {
function writelen (line 1670) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
function utimensat (line 1681) | 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 404) | func pipe(p *[2]_C_int) (n int, err error) {
function getsockname (line 415) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function Getcwd (line 425) | func Getcwd(buf []byte) (n int, err error) {
function getgroups (line 440) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
function setgroups (line 451) | func setgroups(ngid int, gid *_Gid_t) (err error) {
function wait4 (line 461) | func wait4(pid int32, statusp *_C_int, options int, rusage *Rusage) (wpi...
function gethostname (line 472) | func gethostname(buf []byte) (n int, err error) {
function utimes (line 487) | func utimes(path string, times *[2]Timeval) (err error) {
function utimensat (line 502) | func utimensat(fd int, path string, times *[2]Timespec, flag int) (err e...
function fcntl (line 517) | func fcntl(fd int, cmd int, arg int) (val int, err error) {
function futimesat (line 528) | func futimesat(fildes int, path *byte, times *[2]Timeval) (err error) {
function accept (line 538) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ...
function recvmsg (line 549) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function sendmsg (line 560) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
function acct (line 571) | func acct(path *byte) (err error) {
function __makedev (line 581) | func __makedev(version int, major uint, minor uint) (val uint64) {
function __major (line 589) | func __major(version int, dev uint64) (val uint) {
function __minor (line 597) | func __minor(version int, dev uint64) (val uint) {
function ioctl (line 605) | func ioctl(fd int, req uint, arg uintptr) (err error) {
function poll (line 615) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) {
function Access (line 626) | func Access(path string, mode uint32) (err error) {
function Adjtime (line 641) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
function Chdir (line 651) | func Chdir(path string) (err error) {
function Chmod (line 666) | func Chmod(path string, mode uint32) (err error) {
function Chown (line 681) | func Chown(path string, uid int, gid int) (err error) {
function Chroot (line 696) | func Chroot(path string) (err error) {
function Close (line 711) | func Close(fd int) (err error) {
function Creat (line 721) | func Creat(path string, mode uint32) (fd int, err error) {
function Dup (line 737) | func Dup(fd int) (nfd int, err error) {
function Dup2 (line 748) | func Dup2(oldfd int, newfd int) (err error) {
function Exit (line 758) | func Exit(code int) {
function Faccessat (line 765) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro...
function Fchdir (line 780) | func Fchdir(fd int) (err error) {
function Fchmod (line 790) | func Fchmod(fd int, mode uint32) (err error) {
function Fchmodat (line 800) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
function Fchown (line 815) | func Fchown(fd int, uid int, gid int) (err error) {
function Fchownat (line 825) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ...
function Fdatasync (line 840) | func Fdatasync(fd int) (err error) {
function Flock (line 850) | func Flock(fd int, how int) (err error) {
function Fpathconf (line 860) | func Fpathconf(fd int, name int) (val int, err error) {
function Fstat (line 871) | func Fstat(fd int, stat *Stat_t) (err error) {
function Fstatat (line 881) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {
function Fstatvfs (line 896) | func Fstatvfs(fd int, vfsstat *Statvfs_t) (err error) {
function Getdents (line 906) | func Getdents(fd int, buf []byte, basep *uintptr) (n int, err error) {
function Getgid (line 921) | func Getgid() (gid int) {
function Getpid (line 929) | func Getpid() (pid int) {
function Getpgid (line 937) | func Getpgid(pid int) (pgid int, err error) {
function Getpgrp (line 948) | func Getpgrp() (pgid int, err error) {
function Geteuid (line 959) | func Geteuid() (euid int) {
function Getegid (line 967) | func Getegid() (egid int) {
function Getppid (line 975) | func Getppid() (ppid int) {
function Getpriority (line 983) | func Getpriority(which int, who int) (n int, err error) {
function Getrlimit (line 994) | func Getrlimit(which int, lim *Rlimit) (err error) {
function Getrusage (line 1004) | func Getrusage(who int, rusage *Rusage) (err error) {
function Gettimeofday (line 1014) | func Gettimeofday(tv *Timeval) (err error) {
function Getuid (line 1024) | func Getuid() (uid int) {
function Kill (line 1032) | func Kill(pid int, signum syscall.Signal) (err error) {
function Lchown (line 1042) | func Lchown(path string, uid int, gid int) (err error) {
function Link (line 1057) | func Link(path string, link string) (err error) {
function Listen (line 1077) | func Listen(s int, backlog int) (err error) {
function Lstat (line 1087) | func Lstat(path string, stat *Stat_t) (err error) {
function Madvise (line 1102) | func Madvise(b []byte, advice int) (err error) {
function Mkdir (line 1116) | func Mkdir(path string, mode uint32) (err error) {
function Mkdirat (line 1131) | func Mkdirat(dirfd int, path string, mode uint32) (err error) {
function Mkfifo (line 1146) | func Mkfifo(path string, mode uint32) (err error) {
function Mkfifoat (line 1161) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) {
function Mknod (line 1176) | func Mknod(path string, mode uint32, dev int) (err error) {
function Mknodat (line 1191) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {
function Mlock (line 1206) | func Mlock(b []byte) (err error) {
function Mlockall (line 1220) | func Mlockall(flags int) (err error) {
function Mprotect (line 1230) | func Mprotect(b []byte, prot int) (err error) {
function Msync (line 1244) | func Msync(b []byte, flags int) (err error) {
function Munlock (line 1258) | func Munlock(b []byte) (err error) {
function Munlockall (line 1272) | func Munlockall() (err error) {
function Nanosleep (line 1282) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
function Open (line 1292) | func Open(path string, mode int, perm uint32) (fd int, err error) {
function Openat (line 1308) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err...
function Pathconf (line 1324) | func Pathconf(path string, name int) (val int, err error) {
function Pause (line 1340) | func Pause() (err error) {
function Pread (line 1350) | func Pread(fd int, p []byte, offset int64) (n int, err error) {
function Pwrite (line 1365) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
function read (line 1380) | func read(fd int, p []byte) (n int, err error) {
function Readlink (line 1395) | func Readlink(path string, buf []byte) (n int, err error) {
function Rename (line 1415) | func Rename(from string, to string) (err error) {
function Renameat (line 1435) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string...
function Rmdir (line 1455) | func Rmdir(path string) (err error) {
function Seek (line 1470) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
function Select (line 1481) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ...
function Setegid (line 1491) | func Setegid(egid int) (err error) {
function Seteuid (line 1501) | func Seteuid(euid int) (err error) {
function Setgid (line 1511) | func Setgid(gid int) (err error) {
function Sethostname (line 1521) | func Sethostname(p []byte) (err error) {
function Setpgid (line 1535) | func Setpgid(pid int, pgid int) (err error) {
function Setpriority (line 1545) | func Setpriority(which int, who int, prio int) (err error) {
function Setregid (line 1555) | func Setregid(rgid int, egid int) (err error) {
function Setreuid (line 1565) | func Setreuid(ruid int, euid int) (err error) {
function Setrlimit (line 1575) | func Setrlimit(which int, lim *Rlimit) (err error) {
function Setsid (line 1585) | func Setsid() (pid int, err error) {
function Setuid (line 1596) | func Setuid(uid int) (err error) {
function Shutdown (line 1606) | func Shutdown(s int, how int) (err error) {
function Stat (line 1616) | func Stat(path string, stat *Stat_t) (err error) {
function Statvfs (line 1631) | func Statvfs(path string, vfsstat *Statvfs_t) (err error) {
function Symlink (line 1646) | func Symlink(path string, link string) (err error) {
function Sync (line 1666) | func Sync() (err error) {
function Times (line 1676) | func Times(tms *Tms) (ticks uintptr, err error) {
function Truncate (line 1687) | func Truncate(path string, length int64) (err error) {
function Fsync (line 1702) | func Fsync(fd int) (err error) {
function Ftruncate (line 1712) | func Ftruncate(fd int, length int64) (err error) {
function Umask (line 1722) | func Umask(mask int) (oldmask int) {
function Uname (line 1730) | func Uname(buf *Utsname) (err error) {
function Unmount (line 1740) | func Unmount(target string, flags int) (err error) {
function Unlink (line 1755) | func Unlink(path string) (err error) {
function Unlinkat (line 1770) | func Unlinkat(dirfd int, path string, flags int) (err error) {
function Ustat (line 1785) | func Ustat(dev int, ubuf *Ustat_t) (err error) {
function Utime (line 1795) | func Utime(path string, buf *Utimbuf) (err error) {
function bind (line 1810) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function connect (line 1820) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
function mmap (line 1830) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ...
function munmap (line 1841) | func munmap(addr uintptr, length uintptr) (err error) {
function sendfile (line 1851) | func sendfile(outfd int, infd int, offset *int64, count int) (written in...
function sendto (line 1862) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So...
function socket (line 1876) | func socket(domain int, typ int, proto int) (fd int, err error) {
function socketpair (line 1887) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
function write (line 1897) | func write(fd int, p []byte) (n int, err error) {
function getsockopt (line 1912) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *...
function getpeername (line 1922) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er...
function setsockopt (line 1932) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u...
function recvfrom (line 1942) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen...
FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go
type mibentry (line 8) | type mibentry struct
FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go
type mibentry (line 8) | type mibentry struct
FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go
type mibentry (line 8) | type mibentry struct
FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go
type mibentry (line 8) | 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_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_THREAD_SELFCOUNTS (line 132) | SYS_THREAD_SELFCOUNTS = 186
constant SYS_FDATASYNC (line 133) | SYS_FDATASYNC = 187
constant SYS_STAT (line 134) | SYS_STAT = 188
constant SYS_FSTAT (line 135) | SYS_FSTAT = 189
constant SYS_LSTAT (line 136) | SYS_LSTAT = 190
constant SYS_PATHCONF (line 137) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 138) | SYS_FPATHCONF = 192
constant SYS_GETRLIMIT (line 139) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 140) | SYS_SETRLIMIT = 195
constant SYS_GETDIRENTRIES (line 141) | SYS_GETDIRENTRIES = 196
constant SYS_MMAP (line 142) | SYS_MMAP = 197
constant SYS_LSEEK (line 143) | SYS_LSEEK = 199
constant SYS_TRUNCATE (line 144) | SYS_TRUNCATE = 200
constant SYS_FTRUNCATE (line 145) | SYS_FTRUNCATE = 201
constant SYS_SYSCTL (line 146) | SYS_SYSCTL = 202
constant SYS_MLOCK (line 147) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 148) | SYS_MUNLOCK = 204
constant SYS_UNDELETE (line 149) | SYS_UNDELETE = 205
constant SYS_OPEN_DPROTECTED_NP (line 150) | SYS_OPEN_DPROTECTED_NP = 216
constant SYS_GETATTRLIST (line 151) | SYS_GETATTRLIST = 220
constant SYS_SETATTRLIST (line 152) | SYS_SETATTRLIST = 221
constant SYS_GETDIRENTRIESATTR (line 153) | SYS_GETDIRENTRIESATTR = 222
constant SYS_EXCHANGEDATA (line 154) | SYS_EXCHANGEDATA = 223
constant SYS_SEARCHFS (line 155) | SYS_SEARCHFS = 225
constant SYS_DELETE (line 156) | SYS_DELETE = 226
constant SYS_COPYFILE (line 157) | SYS_COPYFILE = 227
constant SYS_FGETATTRLIST (line 158) | SYS_FGETATTRLIST = 228
constant SYS_FSETATTRLIST (line 159) | SYS_FSETATTRLIST = 229
constant SYS_POLL (line 160) | SYS_POLL = 230
constant SYS_WATCHEVENT (line 161) | SYS_WATCHEVENT = 231
constant SYS_WAITEVENT (line 162) | SYS_WAITEVENT = 232
constant SYS_MODWATCH (line 163) | SYS_MODWATCH = 233
constant SYS_GETXATTR (line 164) | SYS_GETXATTR = 234
constant SYS_FGETXATTR (line 165) | SYS_FGETXATTR = 235
constant SYS_SETXATTR (line 166) | SYS_SETXATTR = 236
constant SYS_FSETXATTR (line 167) | SYS_FSETXATTR = 237
constant SYS_REMOVEXATTR (line 168) | SYS_REMOVEXATTR = 238
constant SYS_FREMOVEXATTR (line 169) | SYS_FREMOVEXATTR = 239
constant SYS_LISTXATTR (line 170) | SYS_LISTXATTR = 240
constant SYS_FLISTXATTR (line 171) | SYS_FLISTXATTR = 241
constant SYS_FSCTL (line 172) | SYS_FSCTL = 242
constant SYS_INITGROUPS (line 173) | SYS_INITGROUPS = 243
constant SYS_POSIX_SPAWN (line 174) | SYS_POSIX_SPAWN = 244
constant SYS_FFSCTL (line 175) | SYS_FFSCTL = 245
constant SYS_NFSCLNT (line 176) | SYS_NFSCLNT = 247
constant SYS_FHOPEN (line 177) | SYS_FHOPEN = 248
constant SYS_MINHERIT (line 178) | SYS_MINHERIT = 250
constant SYS_SEMSYS (line 179) | SYS_SEMSYS = 251
constant SYS_MSGSYS (line 180) | SYS_MSGSYS = 252
constant SYS_SHMSYS (line 181) | SYS_SHMSYS = 253
constant SYS_SEMCTL (line 182) | SYS_SEMCTL = 254
constant SYS_SEMGET (line 183) | SYS_SEMGET = 255
constant SYS_SEMOP (line 184) | SYS_SEMOP = 256
constant SYS_MSGCTL (line 185) | SYS_MSGCTL = 258
constant SYS_MSGGET (line 186) | SYS_MSGGET = 259
constant SYS_MSGSND (line 187) | SYS_MSGSND = 260
constant SYS_MSGRCV (line 188) | SYS_MSGRCV = 261
constant SYS_SHMAT (line 189) | SYS_SHMAT = 262
constant SYS_SHMCTL (line 190) | SYS_SHMCTL = 263
constant SYS_SHMDT (line 191) | SYS_SHMDT = 264
constant SYS_SHMGET (line 192) | SYS_SHMGET = 265
constant SYS_SHM_OPEN (line 193) | SYS_SHM_OPEN = 266
constant SYS_SHM_UNLINK (line 194) | SYS_SHM_UNLINK = 267
constant SYS_SEM_OPEN (line 195) | SYS_SEM_OPEN = 268
constant SYS_SEM_CLOSE (line 196) | SYS_SEM_CLOSE = 269
constant SYS_SEM_UNLINK (line 197) | SYS_SEM_UNLINK = 270
constant SYS_SEM_WAIT (line 198) | SYS_SEM_WAIT = 271
constant SYS_SEM_TRYWAIT (line 199) | SYS_SEM_TRYWAIT = 272
constant SYS_SEM_POST (line 200) | SYS_SEM_POST = 273
constant SYS_SYSCTLBYNAME (line 201) | SYS_SYSCTLBYNAME = 274
constant SYS_OPEN_EXTENDED (line 202) | SYS_OPEN_EXTENDED = 277
constant SYS_UMASK_EXTENDED (line 203) | SYS_UMASK_EXTENDED = 278
constant SYS_STAT_EXTENDED (line 204) | SYS_STAT_EXTENDED = 279
constant SYS_LSTAT_EXTENDED (line 205) | SYS_LSTAT_EXTENDED = 280
constant SYS_FSTAT_EXTENDED (line 206) | SYS_FSTAT_EXTENDED = 281
constant SYS_CHMOD_EXTENDED (line 207) | SYS_CHMOD_EXTENDED = 282
constant SYS_FCHMOD_EXTENDED (line 208) | SYS_FCHMOD_EXTENDED = 283
constant SYS_ACCESS_EXTENDED (line 209) | SYS_ACCESS_EXTENDED = 284
constant SYS_SETTID (line 210) | SYS_SETTID = 285
constant SYS_GETTID (line 211) | SYS_GETTID = 286
constant SYS_SETSGROUPS (line 212) | SYS_SETSGROUPS = 287
constant SYS_GETSGROUPS (line 213) | SYS_GETSGROUPS = 288
constant SYS_SETWGROUPS (line 214) | SYS_SETWGROUPS = 289
constant SYS_GETWGROUPS (line 215) | SYS_GETWGROUPS = 290
constant SYS_MKFIFO_EXTENDED (line 216) | SYS_MKFIFO_EXTENDED = 291
constant SYS_MKDIR_EXTENDED (line 217) | SYS_MKDIR_EXTENDED = 292
constant SYS_IDENTITYSVC (line 218) | SYS_IDENTITYSVC = 293
constant SYS_SHARED_REGION_CHECK_NP (line 219) | SYS_SHARED_REGION_CHECK_NP = 294
constant SYS_VM_PRESSURE_MONITOR (line 220) | SYS_VM_PRESSURE_MONITOR = 296
constant SYS_PSYNCH_RW_LONGRDLOCK (line 221) | SYS_PSYNCH_RW_LONGRDLOCK = 297
constant SYS_PSYNCH_RW_YIELDWRLOCK (line 222) | SYS_PSYNCH_RW_YIELDWRLOCK = 298
constant SYS_PSYNCH_RW_DOWNGRADE (line 223) | SYS_PSYNCH_RW_DOWNGRADE = 299
constant SYS_PSYNCH_RW_UPGRADE (line 224) | SYS_PSYNCH_RW_UPGRADE = 300
constant SYS_PSYNCH_MUTEXWAIT (line 225) | SYS_PSYNCH_MUTEXWAIT = 301
constant SYS_PSYNCH_MUTEXDROP (line 226) | SYS_PSYNCH_MUTEXDROP = 302
constant SYS_PSYNCH_CVBROAD (line 227) | SYS_PSYNCH_CVBROAD = 303
constant SYS_PSYNCH_CVSIGNAL (line 228) | SYS_PSYNCH_CVSIGNAL = 304
constant SYS_PSYNCH_CVWAIT (line 229) | SYS_PSYNCH_CVWAIT = 305
constant SYS_PSYNCH_RW_RDLOCK (line 230) | SYS_PSYNCH_RW_RDLOCK = 306
constant SYS_PSYNCH_RW_WRLOCK (line 231) | SYS_PSYNCH_RW_WRLOCK = 307
constant SYS_PSYNCH_RW_UNLOCK (line 232) | SYS_PSYNCH_RW_UNLOCK = 308
constant SYS_PSYNCH_RW_UNLOCK2 (line 233) | SYS_PSYNCH_RW_UNLOCK2 = 309
constant SYS_GETSID (line 234) | SYS_GETSID = 310
constant SYS_SETTID_WITH_PID (line 235) | SYS_SETTID_WITH_PID = 311
constant SYS_PSYNCH_CVCLRPREPOST (line 236) | SYS_PSYNCH_CVCLRPREPOST = 312
constant SYS_AIO_FSYNC (line 237) | SYS_AIO_FSYNC = 313
constant SYS_AIO_RETURN (line 238) | SYS_AIO_RETURN = 314
constant SYS_AIO_SUSPEND (line 239) | SYS_AIO_SUSPEND = 315
constant SYS_AIO_CANCEL (line 240) | SYS_AIO_CANCEL = 316
constant SYS_AIO_ERROR (line 241) | SYS_AIO_ERROR = 317
constant SYS_AIO_READ (line 242) | SYS_AIO_READ = 318
constant SYS_AIO_WRITE (line 243) | SYS_AIO_WRITE = 319
constant SYS_LIO_LISTIO (line 244) | SYS_LIO_LISTIO = 320
constant SYS_IOPOLICYSYS (line 245) | SYS_IOPOLICYSYS = 322
constant SYS_PROCESS_POLICY (line 246) | SYS_PROCESS_POLICY = 323
constant SYS_MLOCKALL (line 247) | SYS_MLOCKALL = 324
constant SYS_MUNLOCKALL (line 248) | SYS_MUNLOCKALL = 325
constant SYS_ISSETUGID (line 249) | SYS_ISSETUGID = 327
constant SYS___PTHREAD_KILL (line 250) | SYS___PTHREAD_KILL = 328
constant SYS___PTHREAD_SIGMASK (line 251) | SYS___PTHREAD_SIGMASK = 329
constant SYS___SIGWAIT (line 252) | SYS___SIGWAIT = 330
constant SYS___DISABLE_THREADSIGNAL (line 253) | SYS___DISABLE_THREADSIGNAL = 331
constant SYS___PTHREAD_MARKCANCEL (line 254) | SYS___PTHREAD_MARKCANCEL = 332
constant SYS___PTHREAD_CANCELED (line 255) | SYS___PTHREAD_CANCELED = 333
constant SYS___SEMWAIT_SIGNAL (line 256) | SYS___SEMWAIT_SIGNAL = 334
constant SYS_PROC_INFO (line 257) | SYS_PROC_INFO = 336
constant SYS_SENDFILE (line 258) | SYS_SENDFILE = 337
constant SYS_STAT64 (line 259) | SYS_STAT64 = 338
constant SYS_FSTAT64 (line 260) | SYS_FSTAT64 = 339
constant SYS_LSTAT64 (line 261) | SYS_LSTAT64 = 340
constant SYS_STAT64_EXTENDED (line 262) | SYS_STAT64_EXTENDED = 341
constant SYS_LSTAT64_EXTENDED (line 263) | SYS_LSTAT64_EXTENDED = 342
constant SYS_FSTAT64_EXTENDED (line 264) | SYS_FSTAT64_EXTENDED = 343
constant SYS_GETDIRENTRIES64 (line 265) | SYS_GETDIRENTRIES64 = 344
constant SYS_STATFS64 (line 266) | SYS_STATFS64 = 345
constant SYS_FSTATFS64 (line 267) | SYS_FSTATFS64 = 346
constant SYS_GETFSSTAT64 (line 268) | SYS_GETFSSTAT64 = 347
constant SYS___PTHREAD_CHDIR (line 269) | SYS___PTHREAD_CHDIR = 348
constant SYS___PTHREAD_FCHDIR (line 270) | SYS___PTHREAD_FCHDIR = 349
constant SYS_AUDIT (line 271) | SYS_AUDIT = 350
constant SYS_AUDITON (line 272) | SYS_AUDITON = 351
constant SYS_GETAUID (line 273) | SYS_GETAUID = 353
constant SYS_SETAUID (line 274) | SYS_SETAUID = 354
constant SYS_GETAUDIT_ADDR (line 275) | SYS_GETAUDIT_ADDR = 357
constant SYS_SETAUDIT_ADDR (line 276) | SYS_SETAUDIT_ADDR = 358
constant SYS_AUDITCTL (line 277) | SYS_AUDITCTL = 359
constant SYS_BSDTHREAD_CREATE (line 278) | SYS_BSDTHREAD_CREATE = 360
constant SYS_BSDTHREAD_TERMINATE (line 279) | SYS_BSDTHREAD_TERMINATE = 361
constant SYS_KQUEUE (line 280) | SYS_KQUEUE = 362
constant SYS_KEVENT (line 281) | SYS_KEVENT = 363
constant SYS_LCHOWN (line 282) | SYS_LCHOWN = 364
constant SYS_BSDTHREAD_REGISTER (line 283) | SYS_BSDTHREAD_REGISTER = 366
constant SYS_WORKQ_OPEN (line 284) | SYS_WORKQ_OPEN = 367
constant SYS_WORKQ_KERNRETURN (line 285) | SYS_WORKQ_KERNRETURN = 368
constant SYS_KEVENT64 (line 286) | SYS_KEVENT64 = 369
constant SYS___OLD_SEMWAIT_SIGNAL (line 287) | SYS___OLD_SEMWAIT_SIGNAL = 370
constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 288) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371
constant SYS_THREAD_SELFID (line 289) | SYS_THREAD_SELFID = 372
constant SYS_LEDGER (line 290) | SYS_LEDGER = 373
constant SYS_KEVENT_QOS (line 291) | SYS_KEVENT_QOS = 374
constant SYS_KEVENT_ID (line 292) | SYS_KEVENT_ID = 375
constant SYS___MAC_EXECVE (line 293) | SYS___MAC_EXECVE = 380
constant SYS___MAC_SYSCALL (line 294) | SYS___MAC_SYSCALL = 381
constant SYS___MAC_GET_FILE (line 295) | SYS___MAC_GET_FILE = 382
constant SYS___MAC_SET_FILE (line 296) | SYS___MAC_SET_FILE = 383
constant SYS___MAC_GET_LINK (line 297) | SYS___MAC_GET_LINK = 384
constant SYS___MAC_SET_LINK (line 298) | SYS___MAC_SET_LINK = 385
constant SYS___MAC_GET_PROC (line 299) | SYS___MAC_GET_PROC = 386
constant SYS___MAC_SET_PROC (line 300) | SYS___MAC_SET_PROC = 387
constant SYS___MAC_GET_FD (line 301) | SYS___MAC_GET_FD = 388
constant SYS___MAC_SET_FD (line 302) | SYS___MAC_SET_FD = 389
constant SYS___MAC_GET_PID (line 303) | SYS___MAC_GET_PID = 390
constant SYS_PSELECT (line 304) | SYS_PSELECT = 394
constant SYS_PSELECT_NOCANCEL (line 305) | SYS_PSELECT_NOCANCEL = 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_USRCTL (line 354) | SYS_USRCTL = 445
constant SYS_PROC_RLIMIT_CONTROL (line 355) | SYS_PROC_RLIMIT_CONTROL = 446
constant SYS_CONNECTX (line 356) | SYS_CONNECTX = 447
constant SYS_DISCONNECTX (line 357) | SYS_DISCONNECTX = 448
constant SYS_PEELOFF (line 358) | SYS_PEELOFF = 449
constant SYS_SOCKET_DELEGATE (line 359) | SYS_SOCKET_DELEGATE = 450
constant SYS_TELEMETRY (line 360) | SYS_TELEMETRY = 451
constant SYS_PROC_UUID_POLICY (line 361) | SYS_PROC_UUID_POLICY = 452
constant SYS_MEMORYSTATUS_GET_LEVEL (line 362) | SYS_MEMORYSTATUS_GET_LEVEL = 453
constant SYS_SYSTEM_OVERRIDE (line 363) | SYS_SYSTEM_OVERRIDE = 454
constant SYS_VFS_PURGE (line 364) | SYS_VFS_PURGE = 455
constant SYS_SFI_CTL (line 365) | SYS_SFI_CTL = 456
constant SYS_SFI_PIDCTL (line 366) | SYS_SFI_PIDCTL = 457
constant SYS_COALITION (line 367) | SYS_COALITION = 458
constant SYS_COALITION_INFO (line 368) | SYS_COALITION_INFO = 459
constant SYS_NECP_MATCH_POLICY (line 369) | SYS_NECP_MATCH_POLICY = 460
constant SYS_GETATTRLISTBULK (line 370) | SYS_GETATTRLISTBULK = 461
constant SYS_CLONEFILEAT (line 371) | SYS_CLONEFILEAT = 462
constant SYS_OPENAT (line 372) | SYS_OPENAT = 463
constant SYS_OPENAT_NOCANCEL (line 373) | SYS_OPENAT_NOCANCEL = 464
constant SYS_RENAMEAT (line 374) | SYS_RENAMEAT = 465
constant SYS_FACCESSAT (line 375) | SYS_FACCESSAT = 466
constant SYS_FCHMODAT (line 376) | SYS_FCHMODAT = 467
constant SYS_FCHOWNAT (line 377) | SYS_FCHOWNAT = 468
constant SYS_FSTATAT (line 378) | SYS_FSTATAT = 469
constant SYS_FSTATAT64 (line 379) | SYS_FSTATAT64 = 470
constant SYS_LINKAT (line 380) | SYS_LINKAT = 471
constant SYS_UNLINKAT (line 381) | SYS_UNLINKAT = 472
constant SYS_READLINKAT (line 382) | SYS_READLINKAT = 473
constant SYS_SYMLINKAT (line 383) | SYS_SYMLINKAT = 474
constant SYS_MKDIRAT (line 384) | SYS_MKDIRAT = 475
constant SYS_GETATTRLISTAT (line 385) | SYS_GETATTRLISTAT = 476
constant SYS_PROC_TRACE_LOG (line 386) | SYS_PROC_TRACE_LOG = 477
constant SYS_BSDTHREAD_CTL (line 387) | SYS_BSDTHREAD_CTL = 478
constant SYS_OPENBYID_NP (line 388) | SYS_OPENBYID_NP = 479
constant SYS_RECVMSG_X (line 389) | SYS_RECVMSG_X = 480
constant SYS_SENDMSG_X (line 390) | SYS_SENDMSG_X = 481
constant SYS_THREAD_SELFUSAGE (line 391) | SYS_THREAD_SELFUSAGE = 482
constant SYS_CSRCTL (line 392) | SYS_CSRCTL = 483
constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 393) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484
constant SYS_GUARDED_WRITE_NP (line 394) | SYS_GUARDED_WRITE_NP = 485
constant SYS_GUARDED_PWRITE_NP (line 395) | SYS_GUARDED_PWRITE_NP = 486
constant SYS_GUARDED_WRITEV_NP (line 396) | SYS_GUARDED_WRITEV_NP = 487
constant SYS_RENAMEATX_NP (line 397) | SYS_RENAMEATX_NP = 488
constant SYS_MREMAP_ENCRYPTED (line 398) | SYS_MREMAP_ENCRYPTED = 489
constant SYS_NETAGENT_TRIGGER (line 399) | SYS_NETAGENT_TRIGGER = 490
constant SYS_STACK_SNAPSHOT_WITH_CONFIG (line 400) | SYS_STACK_SNAPSHOT_WITH_CONFIG = 491
constant SYS_MICROSTACKSHOT (line 401) | SYS_MICROSTACKSHOT = 492
constant SYS_GRAB_PGO_DATA (line 402) | SYS_GRAB_PGO_DATA = 493
constant SYS_PERSONA (line 403) | SYS_PERSONA = 494
constant SYS_WORK_INTERVAL_CTL (line 404) | SYS_WORK_INTERVAL_CTL = 499
constant SYS_GETENTROPY (line 405) | SYS_GETENTROPY = 500
constant SYS_NECP_OPEN (line 406) | SYS_NECP_OPEN = 501
constant SYS_NECP_CLIENT_ACTION (line 407) | SYS_NECP_CLIENT_ACTION = 502
constant SYS___NEXUS_OPEN (line 408) | SYS___NEXUS_OPEN = 503
constant SYS___NEXUS_REGISTER (line 409) | SYS___NEXUS_REGISTER = 504
constant SYS___NEXUS_DEREGISTER (line 410) | SYS___NEXUS_DEREGISTER = 505
constant SYS___NEXUS_CREATE (line 411) | SYS___NEXUS_CREATE = 506
constant SYS___NEXUS_DESTROY (line 412) | SYS___NEXUS_DESTROY = 507
constant SYS___NEXUS_GET_OPT (line 413) | SYS___NEXUS_GET_OPT = 508
constant SYS___NEXUS_SET_OPT (line 414) | SYS___NEXUS_SET_OPT = 509
constant SYS___CHANNEL_OPEN (line 415) | SYS___CHANNEL_OPEN = 510
constant SYS___CHANNEL_GET_INFO (line 416) | SYS___CHANNEL_GET_INFO = 511
constant SYS___CHANNEL_SYNC (line 417) | SYS___CHANNEL_SYNC = 512
constant SYS___CHANNEL_GET_OPT (line 418) | SYS___CHANNEL_GET_OPT = 513
constant SYS___CHANNEL_SET_OPT (line 419) | SYS___CHANNEL_SET_OPT = 514
constant SYS_ULOCK_WAIT (line 420) | SYS_ULOCK_WAIT = 515
constant SYS_ULOCK_WAKE (line 421) | SYS_ULOCK_WAKE = 516
constant SYS_FCLONEFILEAT (line 422) | SYS_FCLONEFILEAT = 517
constant SYS_FS_SNAPSHOT (line 423) | SYS_FS_SNAPSHOT = 518
constant SYS_TERMINATE_WITH_PAYLOAD (line 424) | SYS_TERMINATE_WITH_PAYLOAD = 520
constant SYS_ABORT_WITH_PAYLOAD (line 425) | SYS_ABORT_WITH_PAYLOAD = 521
constant SYS_NECP_SESSION_OPEN (line 426) | SYS_NECP_SESSION_OPEN = 522
constant SYS_NECP_SESSION_ACTION (line 427) | SYS_NECP_SESSION_ACTION = 523
constant SYS_SETATTRLISTAT (line 428) | SYS_SETATTRLISTAT = 524
constant SYS_NET_QOS_GUIDELINE (line 429) | SYS_NET_QOS_GUIDELINE = 525
constant SYS_FMOUNT (line 430) | SYS_FMOUNT = 526
constant SYS_NTP_ADJTIME (line 431) | SYS_NTP_ADJTIME = 527
constant SYS_NTP_GETTIME (line 432) | SYS_NTP_GETTIME = 528
constant SYS_OS_FAULT_WITH_PAYLOAD (line 433) | SYS_OS_FAULT_WITH_PAYLOAD = 529
constant SYS_MAXSYSCALL (line 434) | SYS_MAXSYSCALL = 530
constant SYS_INVALID (line 435) | SYS_INVALID = 63
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_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_THREAD_SELFCOUNTS (line 132) | SYS_THREAD_SELFCOUNTS = 186
constant SYS_FDATASYNC (line 133) | SYS_FDATASYNC = 187
constant SYS_STAT (line 134) | SYS_STAT = 188
constant SYS_FSTAT (line 135) | SYS_FSTAT = 189
constant SYS_LSTAT (line 136) | SYS_LSTAT = 190
constant SYS_PATHCONF (line 137) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 138) | SYS_FPATHCONF = 192
constant SYS_GETRLIMIT (line 139) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 140) | SYS_SETRLIMIT = 195
constant SYS_GETDIRENTRIES (line 141) | SYS_GETDIRENTRIES = 196
constant SYS_MMAP (line 142) | SYS_MMAP = 197
constant SYS_LSEEK (line 143) | SYS_LSEEK = 199
constant SYS_TRUNCATE (line 144) | SYS_TRUNCATE = 200
constant SYS_FTRUNCATE (line 145) | SYS_FTRUNCATE = 201
constant SYS_SYSCTL (line 146) | SYS_SYSCTL = 202
constant SYS_MLOCK (line 147) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 148) | SYS_MUNLOCK = 204
constant SYS_UNDELETE (line 149) | SYS_UNDELETE = 205
constant SYS_OPEN_DPROTECTED_NP (line 150) | SYS_OPEN_DPROTECTED_NP = 216
constant SYS_GETATTRLIST (line 151) | SYS_GETATTRLIST = 220
constant SYS_SETATTRLIST (line 152) | SYS_SETATTRLIST = 221
constant SYS_GETDIRENTRIESATTR (line 153) | SYS_GETDIRENTRIESATTR = 222
constant SYS_EXCHANGEDATA (line 154) | SYS_EXCHANGEDATA = 223
constant SYS_SEARCHFS (line 155) | SYS_SEARCHFS = 225
constant SYS_DELETE (line 156) | SYS_DELETE = 226
constant SYS_COPYFILE (line 157) | SYS_COPYFILE = 227
constant SYS_FGETATTRLIST (line 158) | SYS_FGETATTRLIST = 228
constant SYS_FSETATTRLIST (line 159) | SYS_FSETATTRLIST = 229
constant SYS_POLL (line 160) | SYS_POLL = 230
constant SYS_WATCHEVENT (line 161) | SYS_WATCHEVENT = 231
constant SYS_WAITEVENT (line 162) | SYS_WAITEVENT = 232
constant SYS_MODWATCH (line 163) | SYS_MODWATCH = 233
constant SYS_GETXATTR (line 164) | SYS_GETXATTR = 234
constant SYS_FGETXATTR (line 165) | SYS_FGETXATTR = 235
constant SYS_SETXATTR (line 166) | SYS_SETXATTR = 236
constant SYS_FSETXATTR (line 167) | SYS_FSETXATTR = 237
constant SYS_REMOVEXATTR (line 168) | SYS_REMOVEXATTR = 238
constant SYS_FREMOVEXATTR (line 169) | SYS_FREMOVEXATTR = 239
constant SYS_LISTXATTR (line 170) | SYS_LISTXATTR = 240
constant SYS_FLISTXATTR (line 171) | SYS_FLISTXATTR = 241
constant SYS_FSCTL (line 172) | SYS_FSCTL = 242
constant SYS_INITGROUPS (line 173) | SYS_INITGROUPS = 243
constant SYS_POSIX_SPAWN (line 174) | SYS_POSIX_SPAWN = 244
constant SYS_FFSCTL (line 175) | SYS_FFSCTL = 245
constant SYS_NFSCLNT (line 176) | SYS_NFSCLNT = 247
constant SYS_FHOPEN (line 177) | SYS_FHOPEN = 248
constant SYS_MINHERIT (line 178) | SYS_MINHERIT = 250
constant SYS_SEMSYS (line 179) | SYS_SEMSYS = 251
constant SYS_MSGSYS (line 180) | SYS_MSGSYS = 252
constant SYS_SHMSYS (line 181) | SYS_SHMSYS = 253
constant SYS_SEMCTL (line 182) | SYS_SEMCTL = 254
constant SYS_SEMGET (line 183) | SYS_SEMGET = 255
constant SYS_SEMOP (line 184) | SYS_SEMOP = 256
constant SYS_MSGCTL (line 185) | SYS_MSGCTL = 258
constant SYS_MSGGET (line 186) | SYS_MSGGET = 259
constant SYS_MSGSND (line 187) | SYS_MSGSND = 260
constant SYS_MSGRCV (line 188) | SYS_MSGRCV = 261
constant SYS_SHMAT (line 189) | SYS_SHMAT = 262
constant SYS_SHMCTL (line 190) | SYS_SHMCTL = 263
constant SYS_SHMDT (line 191) | SYS_SHMDT = 264
constant SYS_SHMGET (line 192) | SYS_SHMGET = 265
constant SYS_SHM_OPEN (line 193) | SYS_SHM_OPEN = 266
constant SYS_SHM_UNLINK (line 194) | SYS_SHM_UNLINK = 267
constant SYS_SEM_OPEN (line 195) | SYS_SEM_OPEN = 268
constant SYS_SEM_CLOSE (line 196) | SYS_SEM_CLOSE = 269
constant SYS_SEM_UNLINK (line 197) | SYS_SEM_UNLINK = 270
constant SYS_SEM_WAIT (line 198) | SYS_SEM_WAIT = 271
constant SYS_SEM_TRYWAIT (line 199) | SYS_SEM_TRYWAIT = 272
constant SYS_SEM_POST (line 200) | SYS_SEM_POST = 273
constant SYS_SYSCTLBYNAME (line 201) | SYS_SYSCTLBYNAME = 274
constant SYS_OPEN_EXTENDED (line 202) | SYS_OPEN_EXTENDED = 277
constant SYS_UMASK_EXTENDED (line 203) | SYS_UMASK_EXTENDED = 278
constant SYS_STAT_EXTENDED (line 204) | SYS_STAT_EXTENDED = 279
constant SYS_LSTAT_EXTENDED (line 205) | SYS_LSTAT_EXTENDED = 280
constant SYS_FSTAT_EXTENDED (line 206) | SYS_FSTAT_EXTENDED = 281
constant SYS_CHMOD_EXTENDED (line 207) | SYS_CHMOD_EXTENDED = 282
constant SYS_FCHMOD_EXTENDED (line 208) | SYS_FCHMOD_EXTENDED = 283
constant SYS_ACCESS_EXTENDED (line 209) | SYS_ACCESS_EXTENDED = 284
constant SYS_SETTID (line 210) | SYS_SETTID = 285
constant SYS_GETTID (line 211) | SYS_GETTID = 286
constant SYS_SETSGROUPS (line 212) | SYS_SETSGROUPS = 287
constant SYS_GETSGROUPS (line 213) | SYS_GETSGROUPS = 288
constant SYS_SETWGROUPS (line 214) | SYS_SETWGROUPS = 289
constant SYS_GETWGROUPS (line 215) | SYS_GETWGROUPS = 290
constant SYS_MKFIFO_EXTENDED (line 216) | SYS_MKFIFO_EXTENDED = 291
constant SYS_MKDIR_EXTENDED (line 217) | SYS_MKDIR_EXTENDED = 292
constant SYS_IDENTITYSVC (line 218) | SYS_IDENTITYSVC = 293
constant SYS_SHARED_REGION_CHECK_NP (line 219) | SYS_SHARED_REGION_CHECK_NP = 294
constant SYS_VM_PRESSURE_MONITOR (line 220) | SYS_VM_PRESSURE_MONITOR = 296
constant SYS_PSYNCH_RW_LONGRDLOCK (line 221) | SYS_PSYNCH_RW_LONGRDLOCK = 297
constant SYS_PSYNCH_RW_YIELDWRLOCK (line 222) | SYS_PSYNCH_RW_YIELDWRLOCK = 298
constant SYS_PSYNCH_RW_DOWNGRADE (line 223) | SYS_PSYNCH_RW_DOWNGRADE = 299
constant SYS_PSYNCH_RW_UPGRADE (line 224) | SYS_PSYNCH_RW_UPGRADE = 300
constant SYS_PSYNCH_MUTEXWAIT (line 225) | SYS_PSYNCH_MUTEXWAIT = 301
constant SYS_PSYNCH_MUTEXDROP (line 226) | SYS_PSYNCH_MUTEXDROP = 302
constant SYS_PSYNCH_CVBROAD (line 227) | SYS_PSYNCH_CVBROAD = 303
constant SYS_PSYNCH_CVSIGNAL (line 228) | SYS_PSYNCH_CVSIGNAL = 304
constant SYS_PSYNCH_CVWAIT (line 229) | SYS_PSYNCH_CVWAIT = 305
constant SYS_PSYNCH_RW_RDLOCK (line 230) | SYS_PSYNCH_RW_RDLOCK = 306
constant SYS_PSYNCH_RW_WRLOCK (line 231) | SYS_PSYNCH_RW_WRLOCK = 307
constant SYS_PSYNCH_RW_UNLOCK (line 232) | SYS_PSYNCH_RW_UNLOCK = 308
constant SYS_PSYNCH_RW_UNLOCK2 (line 233) | SYS_PSYNCH_RW_UNLOCK2 = 309
constant SYS_GETSID (line 234) | SYS_GETSID = 310
constant SYS_SETTID_WITH_PID (line 235) | SYS_SETTID_WITH_PID = 311
constant SYS_PSYNCH_CVCLRPREPOST (line 236) | SYS_PSYNCH_CVCLRPREPOST = 312
constant SYS_AIO_FSYNC (line 237) | SYS_AIO_FSYNC = 313
constant SYS_AIO_RETURN (line 238) | SYS_AIO_RETURN = 314
constant SYS_AIO_SUSPEND (line 239) | SYS_AIO_SUSPEND = 315
constant SYS_AIO_CANCEL (line 240) | SYS_AIO_CANCEL = 316
constant SYS_AIO_ERROR (line 241) | SYS_AIO_ERROR = 317
constant SYS_AIO_READ (line 242) | SYS_AIO_READ = 318
constant SYS_AIO_WRITE (line 243) | SYS_AIO_WRITE = 319
constant SYS_LIO_LISTIO (line 244) | SYS_LIO_LISTIO = 320
constant SYS_IOPOLICYSYS (line 245) | SYS_IOPOLICYSYS = 322
constant SYS_PROCESS_POLICY (line 246) | SYS_PROCESS_POLICY = 323
constant SYS_MLOCKALL (line 247) | SYS_MLOCKALL = 324
constant SYS_MUNLOCKALL (line 248) | SYS_MUNLOCKALL = 325
constant SYS_ISSETUGID (line 249) | SYS_ISSETUGID = 327
constant SYS___PTHREAD_KILL (line 250) | SYS___PTHREAD_KILL = 328
constant SYS___PTHREAD_SIGMASK (line 251) | SYS___PTHREAD_SIGMASK = 329
constant SYS___SIGWAIT (line 252) | SYS___SIGWAIT = 330
constant SYS___DISABLE_THREADSIGNAL (line 253) | SYS___DISABLE_THREADSIGNAL = 331
constant SYS___PTHREAD_MARKCANCEL (line 254) | SYS___PTHREAD_MARKCANCEL = 332
constant SYS___PTHREAD_CANCELED (line 255) | SYS___PTHREAD_CANCELED = 333
constant SYS___SEMWAIT_SIGNAL (line 256) | SYS___SEMWAIT_SIGNAL = 334
constant SYS_PROC_INFO (line 257) | SYS_PROC_INFO = 336
constant SYS_SENDFILE (line 258) | SYS_SENDFILE = 337
constant SYS_STAT64 (line 259) | SYS_STAT64 = 338
constant SYS_FSTAT64 (line 260) | SYS_FSTAT64 = 339
constant SYS_LSTAT64 (line 261) | SYS_LSTAT64 = 340
constant SYS_STAT64_EXTENDED (line 262) | SYS_STAT64_EXTENDED = 341
constant SYS_LSTAT64_EXTENDED (line 263) | SYS_LSTAT64_EXTENDED = 342
constant SYS_FSTAT64_EXTENDED (line 264) | SYS_FSTAT64_EXTENDED = 343
constant SYS_GETDIRENTRIES64 (line 265) | SYS_GETDIRENTRIES64 = 344
constant SYS_STATFS64 (line 266) | SYS_STATFS64 = 345
constant SYS_FSTATFS64 (line 267) | SYS_FSTATFS64 = 346
constant SYS_GETFSSTAT64 (line 268) | SYS_GETFSSTAT64 = 347
constant SYS___PTHREAD_CHDIR (line 269) | SYS___PTHREAD_CHDIR = 348
constant SYS___PTHREAD_FCHDIR (line 270) | SYS___PTHREAD_FCHDIR = 349
constant SYS_AUDIT (line 271) | SYS_AUDIT = 350
constant SYS_AUDITON (line 272) | SYS_AUDITON = 351
constant SYS_GETAUID (line 273) | SYS_GETAUID = 353
constant SYS_SETAUID (line 274) | SYS_SETAUID = 354
constant SYS_GETAUDIT_ADDR (line 275) | SYS_GETAUDIT_ADDR = 357
constant SYS_SETAUDIT_ADDR (line 276) | SYS_SETAUDIT_ADDR = 358
constant SYS_AUDITCTL (line 277) | SYS_AUDITCTL = 359
constant SYS_BSDTHREAD_CREATE (line 278) | SYS_BSDTHREAD_CREATE = 360
constant SYS_BSDTHREAD_TERMINATE (line 279) | SYS_BSDTHREAD_TERMINATE = 361
constant SYS_KQUEUE (line 280) | SYS_KQUEUE = 362
constant SYS_KEVENT (line 281) | SYS_KEVENT = 363
constant SYS_LCHOWN (line 282) | SYS_LCHOWN = 364
constant SYS_BSDTHREAD_REGISTER (line 283) | SYS_BSDTHREAD_REGISTER = 366
constant SYS_WORKQ_OPEN (line 284) | SYS_WORKQ_OPEN = 367
constant SYS_WORKQ_KERNRETURN (line 285) | SYS_WORKQ_KERNRETURN = 368
constant SYS_KEVENT64 (line 286) | SYS_KEVENT64 = 369
constant SYS___OLD_SEMWAIT_SIGNAL (line 287) | SYS___OLD_SEMWAIT_SIGNAL = 370
constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 288) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371
constant SYS_THREAD_SELFID (line 289) | SYS_THREAD_SELFID = 372
constant SYS_LEDGER (line 290) | SYS_LEDGER = 373
constant SYS_KEVENT_QOS (line 291) | SYS_KEVENT_QOS = 374
constant SYS_KEVENT_ID (line 292) | SYS_KEVENT_ID = 375
constant SYS___MAC_EXECVE (line 293) | SYS___MAC_EXECVE = 380
constant SYS___MAC_SYSCALL (line 294) | SYS___MAC_SYSCALL = 381
constant SYS___MAC_GET_FILE (line 295) | SYS___MAC_GET_FILE = 382
constant SYS___MAC_SET_FILE (line 296) | SYS___MAC_SET_FILE = 383
constant SYS___MAC_GET_LINK (line 297) | SYS___MAC_GET_LINK = 384
constant SYS___MAC_SET_LINK (line 298) | SYS___MAC_SET_LINK = 385
constant SYS___MAC_GET_PROC (line 299) | SYS___MAC_GET_PROC = 386
constant SYS___MAC_SET_PROC (line 300) | SYS___MAC_SET_PROC = 387
constant SYS___MAC_GET_FD (line 301) | SYS___MAC_GET_FD = 388
constant SYS___MAC_SET_FD (line 302) | SYS___MAC_SET_FD = 389
constant SYS___MAC_GET_PID (line 303) | SYS___MAC_GET_PID = 390
constant SYS_PSELECT (line 304) | SYS_PSELECT = 394
constant SYS_PSELECT_NOCANCEL (line 305) | SYS_PSELECT_NOCANCEL = 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_USRCTL (line 354) | SYS_USRCTL = 445
constant SYS_PROC_RLIMIT_CONTROL (line 355) | SYS_PROC_RLIMIT_CONTROL = 446
constant SYS_CONNECTX (line 356) | SYS_CONNECTX = 447
constant SYS_DISCONNECTX (line 357) | SYS_DISCONNECTX = 448
constant SYS_PEELOFF (line 358) | SYS_PEELOFF = 449
constant SYS_SOCKET_DELEGATE (line 359) | SYS_SOCKET_DELEGATE = 450
constant SYS_TELEMETRY (line 360) | SYS_TELEMETRY = 451
constant SYS_PROC_UUID_POLICY (line 361) | SYS_PROC_UUID_POLICY = 452
constant SYS_MEMORYSTATUS_GET_LEVEL (line 362) | SYS_MEMORYSTATUS_GET_LEVEL = 453
constant SYS_SYSTEM_OVERRIDE (line 363) | SYS_SYSTEM_OVERRIDE = 454
constant SYS_VFS_PURGE (line 364) | SYS_VFS_PURGE = 455
constant SYS_SFI_CTL (line 365) | SYS_SFI_CTL = 456
constant SYS_SFI_PIDCTL (line 366) | SYS_SFI_PIDCTL = 457
constant SYS_COALITION (line 367) | SYS_COALITION = 458
constant SYS_COALITION_INFO (line 368) | SYS_COALITION_INFO = 459
constant SYS_NECP_MATCH_POLICY (line 369) | SYS_NECP_MATCH_POLICY = 460
constant SYS_GETATTRLISTBULK (line 370) | SYS_GETATTRLISTBULK = 461
constant SYS_CLONEFILEAT (line 371) | SYS_CLONEFILEAT = 462
constant SYS_OPENAT (line 372) | SYS_OPENAT = 463
constant SYS_OPENAT_NOCANCEL (line 373) | SYS_OPENAT_NOCANCEL = 464
constant SYS_RENAMEAT (line 374) | SYS_RENAMEAT = 465
constant SYS_FACCESSAT (line 375) | SYS_FACCESSAT = 466
constant SYS_FCHMODAT (line 376) | SYS_FCHMODAT = 467
constant SYS_FCHOWNAT (line 377) | SYS_FCHOWNAT = 468
constant SYS_FSTATAT (line 378) | SYS_FSTATAT = 469
constant SYS_FSTATAT64 (line 379) | SYS_FSTATAT64 = 470
constant SYS_LINKAT (line 380) | SYS_LINKAT = 471
constant SYS_UNLINKAT (line 381) | SYS_UNLINKAT = 472
constant SYS_READLINKAT (line 382) | SYS_READLINKAT = 473
constant SYS_SYMLINKAT (line 383) | SYS_SYMLINKAT = 474
constant SYS_MKDIRAT (line 384) | SYS_MKDIRAT = 475
constant SYS_GETATTRLISTAT (line 385) | SYS_GETATTRLISTAT = 476
constant SYS_PROC_TRACE_LOG (line 386) | SYS_PROC_TRACE_LOG = 477
constant SYS_BSDTHREAD_CTL (line 387) | SYS_BSDTHREAD_CTL = 478
constant SYS_OPENBYID_NP (line 388) | SYS_OPENBYID_NP = 479
constant SYS_RECVMSG_X (line 389) | SYS_RECVMSG_X = 480
constant SYS_SENDMSG_X (line 390) | SYS_SENDMSG_X = 481
constant SYS_THREAD_SELFUSAGE (line 391) | SYS_THREAD_SELFUSAGE = 482
constant SYS_CSRCTL (line 392) | SYS_CSRCTL = 483
constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 393) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484
constant SYS_GUARDED_WRITE_NP (line 394) | SYS_GUARDED_WRITE_NP = 485
constant SYS_GUARDED_PWRITE_NP (line 395) | SYS_GUARDED_PWRITE_NP = 486
constant SYS_GUARDED_WRITEV_NP (line 396) | SYS_GUARDED_WRITEV_NP = 487
constant SYS_RENAMEATX_NP (line 397) | SYS_RENAMEATX_NP = 488
constant SYS_MREMAP_ENCRYPTED (line 398) | SYS_MREMAP_ENCRYPTED = 489
constant SYS_NETAGENT_TRIGGER (line 399) | SYS_NETAGENT_TRIGGER = 490
constant SYS_STACK_SNAPSHOT_WITH_CONFIG (line 400) | SYS_STACK_SNAPSHOT_WITH_CONFIG = 491
constant SYS_MICROSTACKSHOT (line 401) | SYS_MICROSTACKSHOT = 492
constant SYS_GRAB_PGO_DATA (line 402) | SYS_GRAB_PGO_DATA = 493
constant SYS_PERSONA (line 403) | SYS_PERSONA = 494
constant SYS_WORK_INTERVAL_CTL (line 404) | SYS_WORK_INTERVAL_CTL = 499
constant SYS_GETENTROPY (line 405) | SYS_GETENTROPY = 500
constant SYS_NECP_OPEN (line 406) | SYS_NECP_OPEN = 501
constant SYS_NECP_CLIENT_ACTION (line 407) | SYS_NECP_CLIENT_ACTION = 502
constant SYS___NEXUS_OPEN (line 408) | SYS___NEXUS_OPEN = 503
constant SYS___NEXUS_REGISTER (line 409) | SYS___NEXUS_REGISTER = 504
constant SYS___NEXUS_DEREGISTER (line 410) | SYS___NEXUS_DEREGISTER = 505
constant SYS___NEXUS_CREATE (line 411) | SYS___NEXUS_CREATE = 506
constant SYS___NEXUS_DESTROY (line 412) | SYS___NEXUS_DESTROY = 507
constant SYS___NEXUS_GET_OPT (line 413) | SYS___NEXUS_GET_OPT = 508
constant SYS___NEXUS_SET_OPT (line 414) | SYS___NEXUS_SET_OPT = 509
constant SYS___CHANNEL_OPEN (line 415) | SYS___CHANNEL_OPEN = 510
constant SYS___CHANNEL_GET_INFO (line 416) | SYS___CHANNEL_GET_INFO = 511
constant SYS___CHANNEL_SYNC (line 417) | SYS___CHANNEL_SYNC = 512
constant SYS___CHANNEL_GET_OPT (line 418) | SYS___CHANNEL_GET_OPT = 513
constant SYS___CHANNEL_SET_OPT (line 419) | SYS___CHANNEL_SET_OPT = 514
constant SYS_ULOCK_WAIT (line 420) | SYS_ULOCK_WAIT = 515
constant SYS_ULOCK_WAKE (line 421) | SYS_ULOCK_WAKE = 516
constant SYS_FCLONEFILEAT (line 422) | SYS_FCLONEFILEAT = 517
constant SYS_FS_SNAPSHOT (line 423) | SYS_FS_SNAPSHOT = 518
constant SYS_TERMINATE_WITH_PAYLOAD (line 424) | SYS_TERMINATE_WITH_PAYLOAD = 520
constant SYS_ABORT_WITH_PAYLOAD (line 425) | SYS_ABORT_WITH_PAYLOAD = 521
constant SYS_NECP_SESSION_OPEN (line 426) | SYS_NECP_SESSION_OPEN = 522
constant SYS_NECP_SESSION_ACTION (line 427) | SYS_NECP_SESSION_ACTION = 523
constant SYS_SETATTRLISTAT (line 428) | SYS_SETATTRLISTAT = 524
constant SYS_NET_QOS_GUIDELINE (line 429) | SYS_NET_QOS_GUIDELINE = 525
constant SYS_FMOUNT (line 430) | SYS_FMOUNT = 526
constant SYS_NTP_ADJTIME (line 431) | SYS_NTP_ADJTIME = 527
constant SYS_NTP_GETTIME (line 432) | SYS_NTP_GETTIME = 528
constant SYS_OS_FAULT_WITH_PAYLOAD (line 433) | SYS_OS_FAULT_WITH_PAYLOAD = 529
constant SYS_KQUEUE_WORKLOOP_CTL (line 434) | SYS_KQUEUE_WORKLOOP_CTL = 530
constant SYS___MACH_BRIDGE_REMOTE_TIME (line 435) | SYS___MACH_BRIDGE_REMOTE_TIME = 531
constant SYS_MAXSYSCALL (line 436) | SYS_MAXSYSCALL = 532
constant SYS_INVALID (line 437) | SYS_INVALID = 63
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_THREAD_SELFCOUNTS (line 132) | SYS_THREAD_SELFCOUNTS = 186
constant SYS_FDATASYNC (line 133) | SYS_FDATASYNC = 187
constant SYS_STAT (line 134) | SYS_STAT = 188
constant SYS_FSTAT (line 135) | SYS_FSTAT = 189
constant SYS_LSTAT (line 136) | SYS_LSTAT = 190
constant SYS_PATHCONF (line 137) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 138) | SYS_FPATHCONF = 192
constant SYS_GETRLIMIT (line 139) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 140) | SYS_SETRLIMIT = 195
constant SYS_GETDIRENTRIES (line 141) | SYS_GETDIRENTRIES = 196
constant SYS_MMAP (line 142) | SYS_MMAP = 197
constant SYS_LSEEK (line 143) | SYS_LSEEK = 199
constant SYS_TRUNCATE (line 144) | SYS_TRUNCATE = 200
constant SYS_FTRUNCATE (line 145) | SYS_FTRUNCATE = 201
constant SYS_SYSCTL (line 146) | SYS_SYSCTL = 202
constant SYS_MLOCK (line 147) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 148) | SYS_MUNLOCK = 204
constant SYS_UNDELETE (line 149) | SYS_UNDELETE = 205
constant SYS_OPEN_DPROTECTED_NP (line 150) | SYS_OPEN_DPROTECTED_NP = 216
constant SYS_GETATTRLIST (line 151) | SYS_GETATTRLIST = 220
constant SYS_SETATTRLIST (line 152) | SYS_SETATTRLIST = 221
constant SYS_GETDIRENTRIESATTR (line 153) | SYS_GETDIRENTRIESATTR = 222
constant SYS_EXCHANGEDATA (line 154) | SYS_EXCHANGEDATA = 223
constant SYS_SEARCHFS (line 155) | SYS_SEARCHFS = 225
constant SYS_DELETE (line 156) | SYS_DELETE = 226
constant SYS_COPYFILE (line 157) | SYS_COPYFILE = 227
constant SYS_FGETATTRLIST (line 158) | SYS_FGETATTRLIST = 228
constant SYS_FSETATTRLIST (line 159) | SYS_FSETATTRLIST = 229
constant SYS_POLL (line 160) | SYS_POLL = 230
constant SYS_WATCHEVENT (line 161) | SYS_WATCHEVENT = 231
constant SYS_WAITEVENT (line 162) | SYS_WAITEVENT = 232
constant SYS_MODWATCH (line 163) | SYS_MODWATCH = 233
constant SYS_GETXATTR (line 164) | SYS_GETXATTR = 234
constant SYS_FGETXATTR (line 165) | SYS_FGETXATTR = 235
constant SYS_SETXATTR (line 166) | SYS_SETXATTR = 236
constant SYS_FSETXATTR (line 167) | SYS_FSETXATTR = 237
constant SYS_REMOVEXATTR (line 168) | SYS_REMOVEXATTR = 238
constant SYS_FREMOVEXATTR (line 169) | SYS_FREMOVEXATTR = 239
constant SYS_LISTXATTR (line 170) | SYS_LISTXATTR = 240
constant SYS_FLISTXATTR (line 171) | SYS_FLISTXATTR = 241
constant SYS_FSCTL (line 172) | SYS_FSCTL = 242
constant SYS_INITGROUPS (line 173) | SYS_INITGROUPS = 243
constant SYS_POSIX_SPAWN (line 174) | SYS_POSIX_SPAWN = 244
constant SYS_FFSCTL (line 175) | SYS_FFSCTL = 245
constant SYS_NFSCLNT (line 176) | SYS_NFSCLNT = 247
constant SYS_FHOPEN (line 177) | SYS_FHOPEN = 248
constant SYS_MINHERIT (line 178) | SYS_MINHERIT = 250
constant SYS_SEMSYS (line 179) | SYS_SEMSYS = 251
constant SYS_MSGSYS (line 180) | SYS_MSGSYS = 252
constant SYS_SHMSYS (line 181) | SYS_SHMSYS = 253
constant SYS_SEMCTL (line 182) | SYS_SEMCTL = 254
constant SYS_SEMGET (line 183) | SYS_SEMGET = 255
constant SYS_SEMOP (line 184) | SYS_SEMOP = 256
constant SYS_MSGCTL (line 185) | SYS_MSGCTL = 258
constant SYS_MSGGET (line 186) | SYS_MSGGET = 259
constant SYS_MSGSND (line 187) | SYS_MSGSND = 260
constant SYS_MSGRCV (line 188) | SYS_MSGRCV = 261
constant SYS_SHMAT (line 189) | SYS_SHMAT = 262
constant SYS_SHMCTL (line 190) | SYS_SHMCTL = 263
constant SYS_SHMDT (line 191) | SYS_SHMDT = 264
constant SYS_SHMGET (line 192) | SYS_SHMGET = 265
constant SYS_SHM_OPEN (line 193) | SYS_SHM_OPEN = 266
constant SYS_SHM_UNLINK (line 194) | SYS_SHM_UNLINK = 267
constant SYS_SEM_OPEN (line 195) | SYS_SEM_OPEN = 268
constant SYS_SEM_CLOSE (line 196) | SYS_SEM_CLOSE = 269
constant SYS_SEM_UNLINK (line 197) | SYS_SEM_UNLINK = 270
constant SYS_SEM_WAIT (line 198) | SYS_SEM_WAIT = 271
constant SYS_SEM_TRYWAIT (line 199) | SYS_SEM_TRYWAIT = 272
constant SYS_SEM_POST (line 200) | SYS_SEM_POST = 273
constant SYS_SYSCTLBYNAME (line 201) | SYS_SYSCTLBYNAME = 274
constant SYS_OPEN_EXTENDED (line 202) | SYS_OPEN_EXTENDED = 277
constant SYS_UMASK_EXTENDED (line 203) | SYS_UMASK_EXTENDED = 278
constant SYS_STAT_EXTENDED (line 204) | SYS_STAT_EXTENDED = 279
constant SYS_LSTAT_EXTENDED (line 205) | SYS_LSTAT_EXTENDED = 280
constant SYS_FSTAT_EXTENDED (line 206) | SYS_FSTAT_EXTENDED = 281
constant SYS_CHMOD_EXTENDED (line 207) | SYS_CHMOD_EXTENDED = 282
constant SYS_FCHMOD_EXTENDED (line 208) | SYS_FCHMOD_EXTENDED = 283
constant SYS_ACCESS_EXTENDED (line 209) | SYS_ACCESS_EXTENDED = 284
constant SYS_SETTID (line 210) | SYS_SETTID = 285
constant SYS_GETTID (line 211) | SYS_GETTID = 286
constant SYS_SETSGROUPS (line 212) | SYS_SETSGROUPS = 287
constant SYS_GETSGROUPS (line 213) | SYS_GETSGROUPS = 288
constant SYS_SETWGROUPS (line 214) | SYS_SETWGROUPS = 289
constant SYS_GETWGROUPS (line 215) | SYS_GETWGROUPS = 290
constant SYS_MKFIFO_EXTENDED (line 216) | SYS_MKFIFO_EXTENDED = 291
constant SYS_MKDIR_EXTENDED (line 217) | SYS_MKDIR_EXTENDED = 292
constant SYS_IDENTITYSVC (line 218) | SYS_IDENTITYSVC = 293
constant SYS_SHARED_REGION_CHECK_NP (line 219) | SYS_SHARED_REGION_CHECK_NP = 294
constant SYS_VM_PRESSURE_MONITOR (line 220) | SYS_VM_PRESSURE_MONITOR = 296
constant SYS_PSYNCH_RW_LONGRDLOCK (line 221) | SYS_PSYNCH_RW_LONGRDLOCK = 297
constant SYS_PSYNCH_RW_YIELDWRLOCK (line 222) | SYS_PSYNCH_RW_YIELDWRLOCK = 298
constant SYS_PSYNCH_RW_DOWNGRADE (line 223) | SYS_PSYNCH_RW_DOWNGRADE = 299
constant SYS_PSYNCH_RW_UPGRADE (line 224) | SYS_PSYNCH_RW_UPGRADE = 300
constant SYS_PSYNCH_MUTEXWAIT (line 225) | SYS_PSYNCH_MUTEXWAIT = 301
constant SYS_PSYNCH_MUTEXDROP (line 226) | SYS_PSYNCH_MUTEXDROP = 302
constant SYS_PSYNCH_CVBROAD (line 227) | SYS_PSYNCH_CVBROAD = 303
constant SYS_PSYNCH_CVSIGNAL (line 228) | SYS_PSYNCH_CVSIGNAL = 304
constant SYS_PSYNCH_CVWAIT (line 229) | SYS_PSYNCH_CVWAIT = 305
constant SYS_PSYNCH_RW_RDLOCK (line 230) | SYS_PSYNCH_RW_RDLOCK = 306
constant SYS_PSYNCH_RW_WRLOCK (line 231) | SYS_PSYNCH_RW_WRLOCK = 307
constant SYS_PSYNCH_RW_UNLOCK (line 232) | SYS_PSYNCH_RW_UNLOCK = 308
constant SYS_PSYNCH_RW_UNLOCK2 (line 233) | SYS_PSYNCH_RW_UNLOCK2 = 309
constant SYS_GETSID (line 234) | SYS_GETSID = 310
constant SYS_SETTID_WITH_PID (line 235) | SYS_SETTID_WITH_PID = 311
constant SYS_PSYNCH_CVCLRPREPOST (line 236) | SYS_PSYNCH_CVCLRPREPOST = 312
constant SYS_AIO_FSYNC (line 237) | SYS_AIO_FSYNC = 313
constant SYS_AIO_RETURN (line 238) | SYS_AIO_RETURN = 314
constant SYS_AIO_SUSPEND (line 239) | SYS_AIO_SUSPEND = 315
constant SYS_AIO_CANCEL (line 240) | SYS_AIO_CANCEL = 316
constant SYS_AIO_ERROR (line 241) | SYS_AIO_ERROR = 317
constant SYS_AIO_READ (line 242) | SYS_AIO_READ = 318
constant SYS_AIO_WRITE (line 243) | SYS_AIO_WRITE = 319
constant SYS_LIO_LISTIO (line 244) | SYS_LIO_LISTIO = 320
constant SYS_IOPOLICYSYS (line 245) | SYS_IOPOLICYSYS = 322
constant SYS_PROCESS_POLICY (line 246) | SYS_PROCESS_POLICY = 323
constant SYS_MLOCKALL (line 247) | SYS_MLOCKALL = 324
constant SYS_MUNLOCKALL (line 248) | SYS_MUNLOCKALL = 325
constant SYS_ISSETUGID (line 249) | SYS_ISSETUGID = 327
constant SYS___PTHREAD_KILL (line 250) | SYS___PTHREAD_KILL = 328
constant SYS___PTHREAD_SIGMASK (line 251) | SYS___PTHREAD_SIGMASK = 329
constant SYS___SIGWAIT (line 252) | SYS___SIGWAIT = 330
constant SYS___DISABLE_THREADSIGNAL (line 253) | SYS___DISABLE_THREADSIGNAL = 331
constant SYS___PTHREAD_MARKCANCEL (line 254) | SYS___PTHREAD_MARKCANCEL = 332
constant SYS___PTHREAD_CANCELED (line 255) | SYS___PTHREAD_CANCELED = 333
constant SYS___SEMWAIT_SIGNAL (line 256) | SYS___SEMWAIT_SIGNAL = 334
constant SYS_PROC_INFO (line 257) | SYS_PROC_INFO = 336
constant SYS_SENDFILE (line 258) | SYS_SENDFILE = 337
constant SYS_STAT64 (line 259) | SYS_STAT64 = 338
constant SYS_FSTAT64 (line 260) | SYS_FSTAT64 = 339
constant SYS_LSTAT64 (line 261) | SYS_LSTAT64 = 340
constant SYS_STAT64_EXTENDED (line 262) | SYS_STAT64_EXTENDED = 341
constant SYS_LSTAT64_EXTENDED (line 263) | SYS_LSTAT64_EXTENDED = 342
constant SYS_FSTAT64_EXTENDED (line 264) | SYS_FSTAT64_EXTENDED = 343
constant SYS_GETDIRENTRIES64 (line 265) | SYS_GETDIRENTRIES64 = 344
constant SYS_STATFS64 (line 266) | SYS_STATFS64 = 345
constant SYS_FSTATFS64 (line 267) | SYS_FSTATFS64 = 346
constant SYS_GETFSSTAT64 (line 268) | SYS_GETFSSTAT64 = 347
constant SYS___PTHREAD_CHDIR (line 269) | SYS___PTHREAD_CHDIR = 348
constant SYS___PTHREAD_FCHDIR (line 270) | SYS___PTHREAD_FCHDIR = 349
constant SYS_AUDIT (line 271) | SYS_AUDIT = 350
constant SYS_AUDITON (line 272) | SYS_AUDITON = 351
constant SYS_GETAUID (line 273) | SYS_GETAUID = 353
constant SYS_SETAUID (line 274) | SYS_SETAUID = 354
constant SYS_GETAUDIT_ADDR (line 275) | SYS_GETAUDIT_ADDR = 357
constant SYS_SETAUDIT_ADDR (line 276) | SYS_SETAUDIT_ADDR = 358
constant SYS_AUDITCTL (line 277) | SYS_AUDITCTL = 359
constant SYS_BSDTHREAD_CREATE (line 278) | SYS_BSDTHREAD_CREATE = 360
constant SYS_BSDTHREAD_TERMINATE (line 279) | SYS_BSDTHREAD_TERMINATE = 361
constant SYS_KQUEUE (line 280) | SYS_KQUEUE = 362
constant SYS_KEVENT (line 281) | SYS_KEVENT = 363
constant SYS_LCHOWN (line 282) | SYS_LCHOWN = 364
constant SYS_BSDTHREAD_REGISTER (line 283) | SYS_BSDTHREAD_REGISTER = 366
constant SYS_WORKQ_OPEN (line 284) | SYS_WORKQ_OPEN = 367
constant SYS_WORKQ_KERNRETURN (line 285) | SYS_WORKQ_KERNRETURN = 368
constant SYS_KEVENT64 (line 286) | SYS_KEVENT64 = 369
constant SYS___OLD_SEMWAIT_SIGNAL (line 287) | SYS___OLD_SEMWAIT_SIGNAL = 370
constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 288) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371
constant SYS_THREAD_SELFID (line 289) | SYS_THREAD_SELFID = 372
constant SYS_LEDGER (line 290) | SYS_LEDGER = 373
constant SYS_KEVENT_QOS (line 291) | SYS_KEVENT_QOS = 374
constant SYS_KEVENT_ID (line 292) | SYS_KEVENT_ID = 375
constant SYS___MAC_EXECVE (line 293) | SYS___MAC_EXECVE = 380
constant SYS___MAC_SYSCALL (line 294) | SYS___MAC_SYSCALL = 381
constant SYS___MAC_GET_FILE (line 295) | SYS___MAC_GET_FILE = 382
constant SYS___MAC_SET_FILE (line 296) | SYS___MAC_SET_FILE = 383
constant SYS___MAC_GET_LINK (line 297) | SYS___MAC_GET_LINK = 384
constant SYS___MAC_SET_LINK (line 298) | SYS___MAC_SET_LINK = 385
constant SYS___MAC_GET_PROC (line 299) | SYS___MAC_GET_PROC = 386
constant SYS___MAC_SET_PROC (line 300) | SYS___MAC_SET_PROC = 387
constant SYS___MAC_GET_FD (line 301) | SYS___MAC_GET_FD = 388
constant SYS___MAC_SET_FD (line 302) | SYS___MAC_SET_FD = 389
constant SYS___MAC_GET_PID (line 303) | SYS___MAC_GET_PID = 390
constant SYS_PSELECT (line 304) | SYS_PSELECT = 394
constant SYS_PSELECT_NOCANCEL (line 305) | SYS_PSELECT_NOCANCEL = 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_USRCTL (line 354) | SYS_USRCTL = 445
constant SYS_PROC_RLIMIT_CONTROL (line 355) | SYS_PROC_RLIMIT_CONTROL = 446
constant SYS_CONNECTX (line 356) | SYS_CONNECTX = 447
constant SYS_DISCONNECTX (line 357) | SYS_DISCONNECTX = 448
constant SYS_PEELOFF (line 358) | SYS_PEELOFF = 449
constant SYS_SOCKET_DELEGATE (line 359) | SYS_SOCKET_DELEGATE = 450
constant SYS_TELEMETRY (line 360) | SYS_TELEMETRY = 451
constant SYS_PROC_UUID_POLICY (line 361) | SYS_PROC_UUID_POLICY = 452
constant SYS_MEMORYSTATUS_GET_LEVEL (line 362) | SYS_MEMORYSTATUS_GET_LEVEL = 453
constant SYS_SYSTEM_OVERRIDE (line 363) | SYS_SYSTEM_OVERRIDE = 454
constant SYS_VFS_PURGE (line 364) | SYS_VFS_PURGE = 455
constant SYS_SFI_CTL (line 365) | SYS_SFI_CTL = 456
constant SYS_SFI_PIDCTL (line 366) | SYS_SFI_PIDCTL = 457
constant SYS_COALITION (line 367) | SYS_COALITION = 458
constant SYS_COALITION_INFO (line 368) | SYS_COALITION_INFO = 459
constant SYS_NECP_MATCH_POLICY (line 369) | SYS_NECP_MATCH_POLICY = 460
constant SYS_GETATTRLISTBULK (line 370) | SYS_GETATTRLISTBULK = 461
constant SYS_CLONEFILEAT (line 371) | SYS_CLONEFILEAT = 462
constant SYS_OPENAT (line 372) | SYS_OPENAT = 463
constant SYS_OPENAT_NOCANCEL (line 373) | SYS_OPENAT_NOCANCEL = 464
constant SYS_RENAMEAT (line 374) | SYS_RENAMEAT = 465
constant SYS_FACCESSAT (line 375) | SYS_FACCESSAT = 466
constant SYS_FCHMODAT (line 376) | SYS_FCHMODAT = 467
constant SYS_FCHOWNAT (line 377) | SYS_FCHOWNAT = 468
constant SYS_FSTATAT (line 378) | SYS_FSTATAT = 469
constant SYS_FSTATAT64 (line 379) | SYS_FSTATAT64 = 470
constant SYS_LINKAT (line 380) | SYS_LINKAT = 471
constant SYS_UNLINKAT (line 381) | SYS_UNLINKAT = 472
constant SYS_READLINKAT (line 382) | SYS_READLINKAT = 473
constant SYS_SYMLINKAT (line 383) | SYS_SYMLINKAT = 474
constant SYS_MKDIRAT (line 384) | SYS_MKDIRAT = 475
constant SYS_GETATTRLISTAT (line 385) | SYS_GETATTRLISTAT = 476
constant SYS_PROC_TRACE_LOG (line 386) | SYS_PROC_TRACE_LOG = 477
constant SYS_BSDTHREAD_CTL (line 387) | SYS_BSDTHREAD_CTL = 478
constant SYS_OPENBYID_NP (line 388) | SYS_OPENBYID_NP = 479
constant SYS_RECVMSG_X (line 389) | SYS_RECVMSG_X = 480
constant SYS_SENDMSG_X (line 390) | SYS_SENDMSG_X = 481
constant SYS_THREAD_SELFUSAGE (line 391) | SYS_THREAD_SELFUSAGE = 482
constant SYS_CSRCTL (line 392) | SYS_CSRCTL = 483
constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 393) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484
constant SYS_GUARDED_WRITE_NP (line 394) | SYS_GUARDED_WRITE_NP = 485
constant SYS_GUARDED_PWRITE_NP (line 395) | SYS_GUARDED_PWRITE_NP = 486
constant SYS_GUARDED_WRITEV_NP (line 396) | SYS_GUARDED_WRITEV_NP = 487
constant SYS_RENAMEATX_NP (line 397) | SYS_RENAMEATX_NP = 488
constant SYS_MREMAP_ENCRYPTED (line 398) | SYS_MREMAP_ENCRYPTED = 489
constant SYS_NETAGENT_TRIGGER (line 399) | SYS_NETAGENT_TRIGGER = 490
constant SYS_STACK_SNAPSHOT_WITH_CONFIG (line 400) | SYS_STACK_SNAPSHOT_WITH_CONFIG = 491
constant SYS_MICROSTACKSHOT (line 401) | SYS_MICROSTACKSHOT = 492
constant SYS_GRAB_PGO_DATA (line 402) | SYS_GRAB_PGO_DATA = 493
constant SYS_PERSONA (line 403) | SYS_PERSONA = 494
constant SYS_WORK_INTERVAL_CTL (line 404) | SYS_WORK_INTERVAL_CTL = 499
constant SYS_GETENTROPY (line 405) | SYS_GETENTROPY = 500
constant SYS_NECP_OPEN (line 406) | SYS_NECP_OPEN = 501
constant SYS_NECP_CLIENT_ACTION (line 407) | SYS_NECP_CLIENT_ACTION = 502
constant SYS___NEXUS_OPEN (line 408) | SYS___NEXUS_OPEN = 503
constant SYS___NEXUS_REGISTER (line 409) | SYS___NEXUS_REGISTER = 504
constant SYS___NEXUS_DEREGISTER (line 410) | SYS___NEXUS_DEREGISTER = 505
constant SYS___NEXUS_CREATE (line 411) | SYS___NEXUS_CREATE = 506
constant SYS___NEXUS_DESTROY (line 412) | SYS___NEXUS_DESTROY = 507
constant SYS___NEXUS_GET_OPT (line 413) | SYS___NEXUS_GET_OPT = 508
constant SYS___NEXUS_SET_OPT (line 414) | SYS___NEXUS_SET_OPT = 509
constant SYS___CHANNEL_OPEN (line 415) | SYS___CHANNEL_OPEN = 510
constant SYS___CHANNEL_GET_INFO (line 416) | SYS___CHANNEL_GET_INFO = 511
constant SYS___CHANNEL_SYNC (line 417) | SYS___CHANNEL_SYNC = 512
constant SYS___CHANNEL_GET_OPT (line 418) | SYS___CHANNEL_GET_OPT = 513
constant SYS___CHANNEL_SET_OPT (line 419) | SYS___CHANNEL_SET_OPT = 514
constant SYS_ULOCK_WAIT (line 420) | SYS_ULOCK_WAIT = 515
constant SYS_ULOCK_WAKE (line 421) | SYS_ULOCK_WAKE = 516
constant SYS_FCLONEFILEAT (line 422) | SYS_FCLONEFILEAT = 517
constant SYS_FS_SNAPSHOT (line 423) | SYS_FS_SNAPSHOT = 518
constant SYS_TERMINATE_WITH_PAYLOAD (line 424) | SYS_TERMINATE_WITH_PAYLOAD = 520
constant SYS_ABORT_WITH_PAYLOAD (line 425) | SYS_ABORT_WITH_PAYLOAD = 521
constant SYS_NECP_SESSION_OPEN (line 426) | SYS_NECP_SESSION_OPEN = 522
constant SYS_NECP_SESSION_ACTION (line 427) | SYS_NECP_SESSION_ACTION = 523
constant SYS_SETATTRLISTAT (line 428) | SYS_SETATTRLISTAT = 524
constant SYS_NET_QOS_GUIDELINE (line 429) | SYS_NET_QOS_GUIDELINE = 525
constant SYS_FMOUNT (line 430) | SYS_FMOUNT = 526
constant SYS_NTP_ADJTIME (line 431) | SYS_NTP_ADJTIME = 527
constant SYS_NTP_GETTIME (line 432) | SYS_NTP_GETTIME = 528
constant SYS_OS_FAULT_WITH_PAYLOAD (line 433) | SYS_OS_FAULT_WITH_PAYLOAD = 529
constant SYS_MAXSYSCALL (line 434) | SYS_MAXSYSCALL = 530
constant SYS_INVALID (line 435) | 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_THREAD_SELFCOUNTS (line 132) | SYS_THREAD_SELFCOUNTS = 186
constant SYS_FDATASYNC (line 133) | SYS_FDATASYNC = 187
constant SYS_STAT (line 134) | SYS_STAT = 188
constant SYS_FSTAT (line 135) | SYS_FSTAT = 189
constant SYS_LSTAT (line 136) | SYS_LSTAT = 190
constant SYS_PATHCONF (line 137) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 138) | SYS_FPATHCONF = 192
constant SYS_GETRLIMIT (line 139) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 140) | SYS_SETRLIMIT = 195
constant SYS_GETDIRENTRIES (line 141) | SYS_GETDIRENTRIES = 196
constant SYS_MMAP (line 142) | SYS_MMAP = 197
constant SYS_LSEEK (line 143) | SYS_LSEEK = 199
constant SYS_TRUNCATE (line 144) | SYS_TRUNCATE = 200
constant SYS_FTRUNCATE (line 145) | SYS_FTRUNCATE = 201
constant SYS_SYSCTL (line 146) | SYS_SYSCTL = 202
constant SYS_MLOCK (line 147) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 148) | SYS_MUNLOCK = 204
constant SYS_UNDELETE (line 149) | SYS_UNDELETE = 205
constant SYS_OPEN_DPROTECTED_NP (line 150) | SYS_OPEN_DPROTECTED_NP = 216
constant SYS_GETATTRLIST (line 151) | SYS_GETATTRLIST = 220
constant SYS_SETATTRLIST (line 152) | SYS_SETATTRLIST = 221
constant SYS_GETDIRENTRIESATTR (line 153) | SYS_GETDIRENTRIESATTR = 222
constant SYS_EXCHANGEDATA (line 154) | SYS_EXCHANGEDATA = 223
constant SYS_SEARCHFS (line 155) | SYS_SEARCHFS = 225
constant SYS_DELETE (line 156) | SYS_DELETE = 226
constant SYS_COPYFILE (line 157) | SYS_COPYFILE = 227
constant SYS_FGETATTRLIST (line 158) | SYS_FGETATTRLIST = 228
constant SYS_FSETATTRLIST (line 159) | SYS_FSETATTRLIST = 229
constant SYS_POLL (line 160) | SYS_POLL = 230
constant SYS_WATCHEVENT (line 161) | SYS_WATCHEVENT = 231
constant SYS_WAITEVENT (line 162) | SYS_WAITEVENT = 232
constant SYS_MODWATCH (line 163) | SYS_MODWATCH = 233
constant SYS_GETXATTR (line 164) | SYS_GETXATTR = 234
constant SYS_FGETXATTR (line 165) | SYS_FGETXATTR = 235
constant SYS_SETXATTR (line 166) | SYS_SETXATTR = 236
constant SYS_FSETXATTR (line 167) | SYS_FSETXATTR = 237
constant SYS_REMOVEXATTR (line 168) | SYS_REMOVEXATTR = 238
constant SYS_FREMOVEXATTR (line 169) | SYS_FREMOVEXATTR = 239
constant SYS_LISTXATTR (line 170) | SYS_LISTXATTR = 240
constant SYS_FLISTXATTR (line 171) | SYS_FLISTXATTR = 241
constant SYS_FSCTL (line 172) | SYS_FSCTL = 242
constant SYS_INITGROUPS (line 173) | SYS_INITGROUPS = 243
constant SYS_POSIX_SPAWN (line 174) | SYS_POSIX_SPAWN = 244
constant SYS_FFSCTL (line 175) | SYS_FFSCTL = 245
constant SYS_NFSCLNT (line 176) | SYS_NFSCLNT = 247
constant SYS_FHOPEN (line 177) | SYS_FHOPEN = 248
constant SYS_MINHERIT (line 178) | SYS_MINHERIT = 250
constant SYS_SEMSYS (line 179) | SYS_SEMSYS = 251
constant SYS_MSGSYS (line 180) | SYS_MSGSYS = 252
constant SYS_SHMSYS (line 181) | SYS_SHMSYS = 253
constant SYS_SEMCTL (line 182) | SYS_SEMCTL = 254
constant SYS_SEMGET (line 183) | SYS_SEMGET = 255
constant SYS_SEMOP (line 184) | SYS_SEMOP = 256
constant SYS_MSGCTL (line 185) | SYS_MSGCTL = 258
constant SYS_MSGGET (line 186) | SYS_MSGGET = 259
constant SYS_MSGSND (line 187) | SYS_MSGSND = 260
constant SYS_MSGRCV (line 188) | SYS_MSGRCV = 261
constant SYS_SHMAT (line 189) | SYS_SHMAT = 262
constant SYS_SHMCTL (line 190) | SYS_SHMCTL = 263
constant SYS_SHMDT (line 191) | SYS_SHMDT = 264
constant SYS_SHMGET (line 192) | SYS_SHMGET = 265
constant SYS_SHM_OPEN (line 193) | SYS_SHM_OPEN = 266
constant SYS_SHM_UNLINK (line 194) | SYS_SHM_UNLINK = 267
constant SYS_SEM_OPEN (line 195) | SYS_SEM_OPEN = 268
constant SYS_SEM_CLOSE (line 196) | SYS_SEM_CLOSE = 269
constant SYS_SEM_UNLINK (line 197) | SYS_SEM_UNLINK = 270
constant SYS_SEM_WAIT (line 198) | SYS_SEM_WAIT = 271
constant SYS_SEM_TRYWAIT (line 199) | SYS_SEM_TRYWAIT = 272
constant SYS_SEM_POST (line 200) | SYS_SEM_POST = 273
constant SYS_SYSCTLBYNAME (line 201) | SYS_SYSCTLBYNAME = 274
constant SYS_OPEN_EXTENDED (line 202) | SYS_OPEN_EXTENDED = 277
constant SYS_UMASK_EXTENDED (line 203) | SYS_UMASK_EXTENDED = 278
constant SYS_STAT_EXTENDED (line 204) | SYS_STAT_EXTENDED = 279
constant SYS_LSTAT_EXTENDED (line 205) | SYS_LSTAT_EXTENDED = 280
constant SYS_FSTAT_EXTENDED (line 206) | SYS_FSTAT_EXTENDED = 281
constant SYS_CHMOD_EXTENDED (line 207) | SYS_CHMOD_EXTENDED = 282
constant SYS_FCHMOD_EXTENDED (line 208) | SYS_FCHMOD_EXTENDED = 283
constant SYS_ACCESS_EXTENDED (line 209) | SYS_ACCESS_EXTENDED = 284
constant SYS_SETTID (line 210) | SYS_SETTID = 285
constant SYS_GETTID (line 211) | SYS_GETTID = 286
constant SYS_SETSGROUPS (line 212) | SYS_SETSGROUPS = 287
constant SYS_GETSGROUPS (line 213) | SYS_GETSGROUPS = 288
constant SYS_SETWGROUPS (line 214) | SYS_SETWGROUPS = 289
constant SYS_GETWGROUPS (line 215) | SYS_GETWGROUPS = 290
constant SYS_MKFIFO_EXTENDED (line 216) | SYS_MKFIFO_EXTENDED = 291
constant SYS_MKDIR_EXTENDED (line 217) | SYS_MKDIR_EXTENDED = 292
constant SYS_IDENTITYSVC (line 218) | SYS_IDENTITYSVC = 293
constant SYS_SHARED_REGION_CHECK_NP (line 219) | SYS_SHARED_REGION_CHECK_NP = 294
constant SYS_VM_PRESSURE_MONITOR (line 220) | SYS_VM_PRESSURE_MONITOR = 296
constant SYS_PSYNCH_RW_LONGRDLOCK (line 221) | SYS_PSYNCH_RW_LONGRDLOCK = 297
constant SYS_PSYNCH_RW_YIELDWRLOCK (line 222) | SYS_PSYNCH_RW_YIELDWRLOCK = 298
constant SYS_PSYNCH_RW_DOWNGRADE (line 223) | SYS_PSYNCH_RW_DOWNGRADE = 299
constant SYS_PSYNCH_RW_UPGRADE (line 224) | SYS_PSYNCH_RW_UPGRADE = 300
constant SYS_PSYNCH_MUTEXWAIT (line 225) | SYS_PSYNCH_MUTEXWAIT = 301
constant SYS_PSYNCH_MUTEXDROP (line 226) | SYS_PSYNCH_MUTEXDROP = 302
constant SYS_PSYNCH_CVBROAD (line 227) | SYS_PSYNCH_CVBROAD = 303
constant SYS_PSYNCH_CVSIGNAL (line 228) | SYS_PSYNCH_CVSIGNAL = 304
constant SYS_PSYNCH_CVWAIT (line 229) | SYS_PSYNCH_CVWAIT = 305
constant SYS_PSYNCH_RW_RDLOCK (line 230) | SYS_PSYNCH_RW_RDLOCK = 306
constant SYS_PSYNCH_RW_WRLOCK (line 231) | SYS_PSYNCH_RW_WRLOCK = 307
constant SYS_PSYNCH_RW_UNLOCK (line 232) | SYS_PSYNCH_RW_UNLOCK = 308
constant SYS_PSYNCH_RW_UNLOCK2 (line 233) | SYS_PSYNCH_RW_UNLOCK2 = 309
constant SYS_GETSID (line 234) | SYS_GETSID = 310
constant SYS_SETTID_WITH_PID (line 235) | SYS_SETTID_WITH_PID = 311
constant SYS_PSYNCH_CVCLRPREPOST (line 236) | SYS_PSYNCH_CVCLRPREPOST = 312
constant SYS_AIO_FSYNC (line 237) | SYS_AIO_FSYNC = 313
constant SYS_AIO_RETURN (line 238) | SYS_AIO_RETURN = 314
constant SYS_AIO_SUSPEND (line 239) | SYS_AIO_SUSPEND = 315
constant SYS_AIO_CANCEL (line 240) | SYS_AIO_CANCEL = 316
constant SYS_AIO_ERROR (line 241) | SYS_AIO_ERROR = 317
constant SYS_AIO_READ (line 242) | SYS_AIO_READ = 318
constant SYS_AIO_WRITE (line 243) | SYS_AIO_WRITE = 319
constant SYS_LIO_LISTIO (line 244) | SYS_LIO_LISTIO = 320
constant SYS_IOPOLICYSYS (line 245) | SYS_IOPOLICYSYS = 322
constant SYS_PROCESS_POLICY (line 246) | SYS_PROCESS_POLICY = 323
constant SYS_MLOCKALL (line 247) | SYS_MLOCKALL = 324
constant SYS_MUNLOCKALL (line 248) | SYS_MUNLOCKALL = 325
constant SYS_ISSETUGID (line 249) | SYS_ISSETUGID = 327
constant SYS___PTHREAD_KILL (line 250) | SYS___PTHREAD_KILL = 328
constant SYS___PTHREAD_SIGMASK (line 251) | SYS___PTHREAD_SIGMASK = 329
constant SYS___SIGWAIT (line 252) | SYS___SIGWAIT = 330
constant SYS___DISABLE_THREADSIGNAL (line 253) | SYS___DISABLE_THREADSIGNAL = 331
constant SYS___PTHREAD_MARKCANCEL (line 254) | SYS___PTHREAD_MARKCANCEL = 332
constant SYS___PTHREAD_CANCELED (line 255) | SYS___PTHREAD_CANCELED = 333
constant SYS___SEMWAIT_SIGNAL (line 256) | SYS___SEMWAIT_SIGNAL = 334
constant SYS_PROC_INFO (line 257) | SYS_PROC_INFO = 336
constant SYS_SENDFILE (line 258) | SYS_SENDFILE = 337
constant SYS_STAT64 (line 259) | SYS_STAT64 = 338
constant SYS_FSTAT64 (line 260) | SYS_FSTAT64 = 339
constant SYS_LSTAT64 (line 261) | SYS_LSTAT64 = 340
constant SYS_STAT64_EXTENDED (line 262) | SYS_STAT64_EXTENDED = 341
constant SYS_LSTAT64_EXTENDED (line 263) | SYS_LSTAT64_EXTENDED = 342
constant SYS_FSTAT64_EXTENDED (line 264) | SYS_FSTAT64_EXTENDED = 343
constant SYS_GETDIRENTRIES64 (line 265) | SYS_GETDIRENTRIES64 = 344
constant SYS_STATFS64 (line 266) | SYS_STATFS64 = 345
constant SYS_FSTATFS64 (line 267) | SYS_FSTATFS64 = 346
constant SYS_GETFSSTAT64 (line 268) | SYS_GETFSSTAT64 = 347
constant SYS___PTHREAD_CHDIR (line 269) | SYS___PTHREAD_CHDIR = 348
constant SYS___PTHREAD_FCHDIR (line 270) | SYS___PTHREAD_FCHDIR = 349
constant SYS_AUDIT (line 271) | SYS_AUDIT = 350
constant SYS_AUDITON (line 272) | SYS_AUDITON = 351
constant SYS_GETAUID (line 273) | SYS_GETAUID = 353
constant SYS_SETAUID (line 274) | SYS_SETAUID = 354
constant SYS_GETAUDIT_ADDR (line 275) | SYS_GETAUDIT_ADDR = 357
constant SYS_SETAUDIT_ADDR (line 276) | SYS_SETAUDIT_ADDR = 358
constant SYS_AUDITCTL (line 277) | SYS_AUDITCTL = 359
constant SYS_BSDTHREAD_CREATE (line 278) | SYS_BSDTHREAD_CREATE = 360
constant SYS_BSDTHREAD_TERMINATE (line 279) | SYS_BSDTHREAD_TERMINATE = 361
constant SYS_KQUEUE (line 280) | SYS_KQUEUE = 362
constant SYS_KEVENT (line 281) | SYS_KEVENT = 363
constant SYS_LCHOWN (line 282) | SYS_LCHOWN = 364
constant SYS_BSDTHREAD_REGISTER (line 283) | SYS_BSDTHREAD_REGISTER = 366
constant SYS_WORKQ_OPEN (line 284) | SYS_WORKQ_OPEN = 367
constant SYS_WORKQ_KERNRETURN (line 285) | SYS_WORKQ_KERNRETURN = 368
constant SYS_KEVENT64 (line 286) | SYS_KEVENT64 = 369
constant SYS___OLD_SEMWAIT_SIGNAL (line 287) | SYS___OLD_SEMWAIT_SIGNAL = 370
constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 288) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371
constant SYS_THREAD_SELFID (line 289) | SYS_THREAD_SELFID = 372
constant SYS_LEDGER (line 290) | SYS_LEDGER = 373
constant SYS_KEVENT_QOS (line 291) | SYS_KEVENT_QOS = 374
constant SYS_KEVENT_ID (line 292) | SYS_KEVENT_ID = 375
constant SYS___MAC_EXECVE (line 293) | SYS___MAC_EXECVE = 380
constant SYS___MAC_SYSCALL (line 294) | SYS___MAC_SYSCALL = 381
constant SYS___MAC_GET_FILE (line 295) | SYS___MAC_GET_FILE = 382
constant SYS___MAC_SET_FILE (line 296) | SYS___MAC_SET_FILE = 383
constant SYS___MAC_GET_LINK (line 297) | SYS___MAC_GET_LINK = 384
constant SYS___MAC_SET_LINK (line 298) | SYS___MAC_SET_LINK = 385
constant SYS___MAC_GET_PROC (line 299) | SYS___MAC_GET_PROC = 386
constant SYS___MAC_SET_PROC (line 300) | SYS___MAC_SET_PROC = 387
constant SYS___MAC_GET_FD (line 301) | SYS___MAC_GET_FD = 388
constant SYS___MAC_SET_FD (line 302) | SYS___MAC_SET_FD = 389
constant SYS___MAC_GET_PID (line 303) | SYS___MAC_GET_PID = 390
constant SYS_PSELECT (line 304) | SYS_PSELECT = 394
constant SYS_PSELECT_NOCANCEL (line 305) | SYS_PSELECT_NOCANCEL = 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_USRCTL (line 354) | SYS_USRCTL = 445
constant SYS_PROC_RLIMIT_CONTROL (line 355) | SYS_PROC_RLIMIT_CONTROL = 446
constant SYS_CONNECTX (line 356) | SYS_CONNECTX = 447
constant SYS_DISCONNECTX (line 357) | SYS_DISCONNECTX = 448
constant SYS_PEELOFF (line 358) | SYS_PEELOFF = 449
constant SYS_SOCKET_DELEGATE (line 359) | SYS_SOCKET_DELEGATE = 450
constant SYS_TELEMETRY (line 360) | SYS_TELEMETRY = 451
constant SYS_PROC_UUID_POLICY (line 361) | SYS_PROC_UUID_POLICY = 452
constant SYS_MEMORYSTATUS_GET_LEVEL (line 362) | SYS_MEMORYSTATUS_GET_LEVEL = 453
constant SYS_SYSTEM_OVERRIDE (line 363) | SYS_SYSTEM_OVERRIDE = 454
constant SYS_VFS_PURGE (line 364) | SYS_VFS_PURGE = 455
constant SYS_SFI_CTL (line 365) | SYS_SFI_CTL = 456
constant SYS_SFI_PIDCTL (line 366) | SYS_SFI_PIDCTL = 457
constant SYS_COALITION (line 367) | SYS_COALITION = 458
constant SYS_COALITION_INFO (line 368) | SYS_COALITION_INFO = 459
constant SYS_NECP_MATCH_POLICY (line 369) | SYS_NECP_MATCH_POLICY = 460
constant SYS_GETATTRLISTBULK (line 370) | SYS_GETATTRLISTBULK = 461
constant SYS_CLONEFILEAT (line 371) | SYS_CLONEFILEAT = 462
constant SYS_OPENAT (line 372) | SYS_OPENAT = 463
constant SYS_OPENAT_NOCANCEL (line 373) | SYS_OPENAT_NOCANCEL = 464
constant SYS_RENAMEAT (line 374) | SYS_RENAMEAT = 465
constant SYS_FACCESSAT (line 375) | SYS_FACCESSAT = 466
constant SYS_FCHMODAT (line 376) | SYS_FCHMODAT = 467
constant SYS_FCHOWNAT (line 377) | SYS_FCHOWNAT = 468
constant SYS_FSTATAT (line 378) | SYS_FSTATAT = 469
constant SYS_FSTATAT64 (line 379) | SYS_FSTATAT64 = 470
constant SYS_LINKAT (line 380) | SYS_LINKAT = 471
constant SYS_UNLINKAT (line 381) | SYS_UNLINKAT = 472
constant SYS_READLINKAT (line 382) | SYS_READLINKAT = 473
constant SYS_SYMLINKAT (line 383) | SYS_SYMLINKAT = 474
constant SYS_MKDIRAT (line 384) | SYS_MKDIRAT = 475
constant SYS_GETATTRLISTAT (line 385) | SYS_GETATTRLISTAT = 476
constant SYS_PROC_TRACE_LOG (line 386) | SYS_PROC_TRACE_LOG = 477
constant SYS_BSDTHREAD_CTL (line 387) | SYS_BSDTHREAD_CTL = 478
constant SYS_OPENBYID_NP (line 388) | SYS_OPENBYID_NP = 479
constant SYS_RECVMSG_X (line 389) | SYS_RECVMSG_X = 480
constant SYS_SENDMSG_X (line 390) | SYS_SENDMSG_X = 481
constant SYS_THREAD_SELFUSAGE (line 391) | SYS_THREAD_SELFUSAGE = 482
constant SYS_CSRCTL (line 392) | SYS_CSRCTL = 483
constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 393) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484
constant SYS_GUARDED_WRITE_NP (line 394) | SYS_GUARDED_WRITE_NP = 485
constant SYS_GUARDED_PWRITE_NP (line 395) | SYS_GUARDED_PWRITE_NP = 486
constant SYS_GUARDED_WRITEV_NP (line 396) | SYS_GUARDED_WRITEV_NP = 487
constant SYS_RENAMEATX_NP (line 397) | SYS_RENAMEATX_NP = 488
constant SYS_MREMAP_ENCRYPTED (line 398) | SYS_MREMAP_ENCRYPTED = 489
constant SYS_NETAGENT_TRIGGER (line 399) | SYS_NETAGENT_TRIGGER = 490
constant SYS_STACK_SNAPSHOT_WITH_CONFIG (line 400) | SYS_STACK_SNAPSHOT_WITH_CONFIG = 491
constant SYS_MICROSTACKSHOT (line 401) | SYS_MICROSTACKSHOT = 492
constant SYS_GRAB_PGO_DATA (line 402) | SYS_GRAB_PGO_DATA = 493
constant SYS_PERSONA (line 403) | SYS_PERSONA = 494
constant SYS_WORK_INTERVAL_CTL (line 404) | SYS_WORK_INTERVAL_CTL = 499
constant SYS_GETENTROPY (line 405) | SYS_GETENTROPY = 500
constant SYS_NECP_OPEN (line 406) | SYS_NECP_OPEN = 501
constant SYS_NECP_CLIENT_ACTION (line 407) | SYS_NECP_CLIENT_ACTION = 502
constant SYS___NEXUS_OPEN (line 408) | SYS___NEXUS_OPEN = 503
constant SYS___NEXUS_REGISTER (line 409) | SYS___NEXUS_REGISTER = 504
constant SYS___NEXUS_DEREGISTER (line 410) | SYS___NEXUS_DEREGISTER = 505
constant SYS___NEXUS_CREATE (line 411) | SYS___NEXUS_CREATE = 506
constant SYS___NEXUS_DESTROY (line 412) | SYS___NEXUS_DESTROY = 507
constant SYS___NEXUS_GET_OPT (line 413) | SYS___NEXUS_GET_OPT = 508
constant SYS___NEXUS_SET_OPT (line 414) | SYS___NEXUS_SET_OPT = 509
constant SYS___CHANNEL_OPEN (line 415) | SYS___CHANNEL_OPEN = 510
constant SYS___CHANNEL_GET_INFO (line 416) | SYS___CHANNEL_GET_INFO = 511
constant SYS___CHANNEL_SYNC (line 417) | SYS___CHANNEL_SYNC = 512
constant SYS___CHANNEL_GET_OPT (line 418) | SYS___CHANNEL_GET_OPT = 513
constant SYS___CHANNEL_SET_OPT (line 419) | SYS___CHANNEL_SET_OPT = 514
constant SYS_ULOCK_WAIT (line 420) | SYS_ULOCK_WAIT = 515
constant SYS_ULOCK_WAKE (line 421) | SYS_ULOCK_WAKE = 516
constant SYS_FCLONEFILEAT (line 422) | SYS_FCLONEFILEAT = 517
constant SYS_FS_SNAPSHOT (line 423) | SYS_FS_SNAPSHOT = 518
constant SYS_TERMINATE_WITH_PAYLOAD (line 424) | SYS_TERMINATE_WITH_PAYLOAD = 520
constant SYS_ABORT_WITH_PAYLOAD (line 425) | SYS_ABORT_WITH_PAYLOAD = 521
constant SYS_NECP_SESSION_OPEN (line 426) | SYS_NECP_SESSION_OPEN = 522
constant SYS_NECP_SESSION_ACTION (line 427) | SYS_NECP_SESSION_ACTION = 523
constant SYS_SETATTRLISTAT (line 428) | SYS_SETATTRLISTAT = 524
constant SYS_NET_QOS_GUIDELINE (line 429) | SYS_NET_QOS_GUIDELINE = 525
constant SYS_FMOUNT (line 430) | SYS_FMOUNT = 526
constant SYS_NTP_ADJTIME (line 431) | SYS_NTP_ADJTIME = 527
constant SYS_NTP_GETTIME (line 432) | SYS_NTP_GETTIME = 528
constant SYS_OS_FAULT_WITH_PAYLOAD (line 433) | SYS_OS_FAULT_WITH_PAYLOAD = 529
constant SYS_MAXSYSCALL (line 434) | SYS_MAXSYSCALL = 530
constant SYS_INVALID (line 435) | 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_NLM_SYSCALL (line 112) | SYS_NLM_SYSCALL = 154
constant SYS_NFSSVC (line 113) | SYS_NFSSVC = 155
constant SYS_LGETFH (line 114) | SYS_LGETFH = 160
constant SYS_GETFH (line 115) | SYS_GETFH = 161
constant SYS_SYSARCH (line 116) | SYS_SYSARCH = 165
constant SYS_RTPRIO (line 117) | SYS_RTPRIO = 166
constant SYS_SEMSYS (line 118) | SYS_SEMSYS = 169
constant SYS_MSGSYS (line 119) | SYS_MSGSYS = 170
constant SYS_SHMSYS (line 120) | SYS_SHMSYS = 171
constant SYS_SETFIB (line 121) | SYS_SETFIB = 175
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_STAT (line 126) | SYS_STAT = 188
constant SYS_FSTAT (line 127) | SYS_FSTAT = 189
constant SYS_LSTAT (line 128) | SYS_LSTAT = 190
constant SYS_PATHCONF (line 129) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 130) | SYS_FPATHCONF = 192
constant SYS_GETRLIMIT (line 131) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 132) | SYS_SETRLIMIT = 195
constant SYS_GETDIRENTRIES (line 133) | SYS_GETDIRENTRIES = 196
constant SYS___SYSCTL (line 134) | SYS___SYSCTL = 202
constant SYS_MLOCK (line 135) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 136) | SYS_MUNLOCK = 204
constant SYS_UNDELETE (line 137) | SYS_UNDELETE = 205
constant SYS_FUTIMES (line 138) | SYS_FUTIMES = 206
constant SYS_GETPGID (line 139) | SYS_GETPGID = 207
constant SYS_POLL (line 140) | SYS_POLL = 209
constant SYS_SEMGET (line 141) | SYS_SEMGET = 221
constant SYS_SEMOP (line 142) | SYS_SEMOP = 222
constant SYS_MSGGET (line 143) | SYS_MSGGET = 225
constant SYS_MSGSND (line 144) | SYS_MSGSND = 226
constant SYS_MSGRCV (line 145) | SYS_MSGRCV = 227
constant SYS_SHMAT (line 146) | SYS_SHMAT = 228
constant SYS_SHMDT (line 147) | SYS_SHMDT = 230
constant SYS_SHMGET (line 148) | SYS_SHMGET = 231
constant SYS_CLOCK_GETTIME (line 149) | SYS_CLOCK_GETTIME = 232
constant SYS_CLOCK_SETTIME (line 150) | SYS_CLOCK_SETTIME = 233
constant SYS_CLOCK_GETRES (line 151) | SYS_CLOCK_GETRES = 234
constant SYS_KTIMER_CREATE (line 152) | SYS_KTIMER_CREATE = 235
constant SYS_KTIMER_DELETE (line 153) | SYS_KTIMER_DELETE = 236
constant SYS_KTIMER_SETTIME (line 154) | SYS_KTIMER_SETTIME = 237
constant SYS_KTIMER_GETTIME (line 155) | SYS_KTIMER_GETTIME = 238
constant SYS_KTIMER_GETOVERRUN (line 156) | SYS_KTIMER_GETOVERRUN = 239
constant SYS_NANOSLEEP (line 157) | SYS_NANOSLEEP = 240
constant SYS_FFCLOCK_GETCOUNTER (line 158) | SYS_FFCLOCK_GETCOUNTER = 241
constant SYS_FFCLOCK_SETESTIMATE (line 159) | SYS_FFCLOCK_SETESTIMATE = 242
constant SYS_FFCLOCK_GETESTIMATE (line 160) | SYS_FFCLOCK_GETESTIMATE = 243
constant SYS_CLOCK_NANOSLEEP (line 161) | SYS_CLOCK_NANOSLEEP = 244
constant SYS_CLOCK_GETCPUCLOCKID2 (line 162) | SYS_CLOCK_GETCPUCLOCKID2 = 247
constant SYS_NTP_GETTIME (line 163) | SYS_NTP_GETTIME = 248
constant SYS_MINHERIT (line 164) | SYS_MINHERIT = 250
constant SYS_RFORK (line 165) | SYS_RFORK = 251
constant SYS_OPENBSD_POLL (line 166) | SYS_OPENBSD_POLL = 252
constant SYS_ISSETUGID (line 167) | SYS_ISSETUGID = 253
constant SYS_LCHOWN (line 168) | SYS_LCHOWN = 254
constant SYS_AIO_READ (line 169) | SYS_AIO_READ = 255
constant SYS_AIO_WRITE (line 170) | SYS_AIO_WRITE = 256
constant SYS_LIO_LISTIO (line 171) | SYS_LIO_LISTIO = 257
constant SYS_GETDENTS (line 172) | SYS_GETDENTS = 272
constant SYS_LCHMOD (line 173) | SYS_LCHMOD = 274
constant SYS_LUTIMES (line 174) | SYS_LUTIMES = 276
constant SYS_NSTAT (line 175) | SYS_NSTAT = 278
constant SYS_NFSTAT (line 176) | SYS_NFSTAT = 279
constant SYS_NLSTAT (line 177) | SYS_NLSTAT = 280
constant SYS_PREADV (line 178) | SYS_PREADV = 289
constant SYS_PWRITEV (line 179) | SYS_PWRITEV = 290
constant SYS_FHOPEN (line 180) | SYS_FHOPEN = 298
constant SYS_FHSTAT (line 181) | SYS_FHSTAT = 299
constant SYS_MODNEXT (line 182) | SYS_MODNEXT = 300
constant SYS_MODSTAT (line 183) | SYS_MODSTAT = 301
constant SYS_MODFNEXT (line 184) | SYS_MODFNEXT = 302
constant SYS_MODFIND (line 185) | SYS_MODFIND = 303
constant SYS_KLDLOAD (line 186) | SYS_KLDLOAD = 304
constant SYS_KLDUNLOAD (line 187) | SYS_KLDUNLOAD = 305
constant SYS_KLDFIND (line 188) | SYS_KLDFIND = 306
constant SYS_KLDNEXT (line 189) | SYS_KLDNEXT = 307
constant SYS_KLDSTAT (line 190) | SYS_KLDSTAT = 308
constant SYS_KLDFIRSTMOD (line 191) | SYS_KLDFIRSTMOD = 309
constant SYS_GETSID (line 192) | SYS_GETSID = 310
constant SYS_SETRESUID (line 193) | SYS_SETRESUID = 311
constant SYS_SETRESGID (line 194) | SYS_SETRESGID = 312
constant SYS_AIO_RETURN (line 195) | SYS_AIO_RETURN = 314
constant SYS_AIO_SUSPEND (line 196) | SYS_AIO_SUSPEND = 315
constant SYS_AIO_CANCEL (line 197) | SYS_AIO_CANCEL = 316
constant SYS_AIO_ERROR (line 198) | SYS_AIO_ERROR = 317
constant SYS_YIELD (line 199) | SYS_YIELD = 321
constant SYS_MLOCKALL (line 200) | SYS_MLOCKALL = 324
constant SYS_MUNLOCKALL (line 201) | SYS_MUNLOCKALL = 325
constant SYS___GETCWD (line 202) | SYS___GETCWD = 326
constant SYS_SCHED_SETPARAM (line 203) | SYS_SCHED_SETPARAM = 327
constant SYS_SCHED_GETPARAM (line 204) | SYS_SCHED_GETPARAM = 328
constant SYS_SCHED_SETSCHEDULER (line 205) | SYS_SCHED_SETSCHEDULER = 329
constant SYS_SCHED_GETSCHEDULER (line 206) | SYS_SCHED_GETSCHEDULER = 330
constant SYS_SCHED_YIELD (line 207) | SYS_SCHED_YIELD = 331
constant SYS_SCHED_GET_PRIORITY_MAX (line 208) | SYS_SCHED_GET_PRIORITY_MAX = 332
constant SYS_SCHED_GET_PRIORITY_MIN (line 209) | SYS_SCHED_GET_PRIORITY_MIN = 333
constant SYS_SCHED_RR_GET_INTERVAL (line 210) | SYS_SCHED_RR_GET_INTERVAL = 334
constant SYS_UTRACE (line 211) | SYS_UTRACE = 335
constant SYS_KLDSYM (line 212) | SYS_KLDSYM = 337
constant SYS_JAIL (line 213) | SYS_JAIL = 338
constant SYS_SIGPROCMASK (line 214) | SYS_SIGPROCMASK = 340
constant SYS_SIGSUSPEND (line 215) | SYS_SIGSUSPEND = 341
constant SYS_SIGPENDING (line 216) | SYS_SIGPENDING = 343
constant SYS_SIGTIMEDWAIT (line 217) | SYS_SIGTIMEDWAIT = 345
constant SYS_SIGWAITINFO (line 218) | SYS_SIGWAITINFO = 346
constant SYS___ACL_GET_FILE (line 219) | SYS___ACL_GET_FILE = 347
constant SYS___ACL_SET_FILE (line 220) | SYS___ACL_SET_FILE = 348
constant SYS___ACL_GET_FD (line 221) | SYS___ACL_GET_FD = 349
constant SYS___ACL_SET_FD (line 222) | SYS___ACL_SET_FD = 350
constant SYS___ACL_DELETE_FILE (line 223) | SYS___ACL_DELETE_FILE = 351
constant SYS___ACL_DELETE_FD (line 224) | SYS___ACL_DELETE_FD = 352
constant SYS___ACL_ACLCHECK_FILE (line 225) | SYS___ACL_ACLCHECK_FILE = 353
constant SYS___ACL_ACLCHECK_FD (line 226) | SYS___ACL_ACLCHECK_FD = 354
constant SYS_EXTATTRCTL (line 227) | SYS_EXTATTRCTL = 355
constant SYS_EXTATTR_SET_FILE (line 228) | SYS_EXTATTR_SET_FILE = 356
constant SYS_EXTATTR_GET_FILE (line 229) | SYS_EXTATTR_GET_FILE = 357
constant SYS_EXTATTR_DELETE_FILE (line 230) | SYS_EXTATTR_DELETE_FILE = 358
constant SYS_AIO_WAITCOMPLETE (line 231) | SYS_AIO_WAITCOMPLETE = 359
constant SYS_GETRESUID (line 232) | SYS_GETRESUID = 360
constant SYS_GETRESGID (line 233) | SYS_GETRESGID = 361
constant SYS_KQUEUE (line 234) | SYS_KQUEUE = 362
constant SYS_KEVENT (line 235) | SYS_KEVENT = 363
constant SYS_EXTATTR_SET_FD (line 236) | SYS_EXTATTR_SET_FD = 371
constant SYS_EXTATTR_GET_FD (line 237) | SYS_EXTATTR_GET_FD = 372
constant SYS_EXTATTR_DELETE_FD (line 238) | SYS_EXTATTR_DELETE_FD = 373
constant SYS___SETUGID (line 239) | SYS___SETUGID = 374
constant SYS_EACCESS (line 240) | SYS_EACCESS = 376
constant SYS_NMOUNT (line 241) | SYS_NMOUNT = 378
constant SYS___MAC_GET_PROC (line 242) | SYS___MAC_GET_PROC = 384
constant SYS___MAC_SET_PROC (line 243) | SYS___MAC_SET_PROC = 385
constant SYS___MAC_GET_FD (line 244) | SYS___MAC_GET_FD = 386
constant SYS___MAC_GET_FILE (line 245) | SYS___MAC_GET_FILE = 387
constant SYS___MAC_SET_FD (line 246) | SYS___MAC_SET_FD = 388
constant SYS___MAC_SET_FILE (line 247) | SYS___MAC_SET_FILE = 389
constant SYS_KENV (line 248) | SYS_KENV = 390
constant SYS_LCHFLAGS (line 249) | SYS_LCHFLAGS = 391
constant SYS_UUIDGEN (line 250) | SYS_UUIDGEN = 392
constant SYS_SENDFILE (line 251) | SYS_SENDFILE = 393
constant SYS_MAC_SYSCALL (line 252) | SYS_MAC_SYSCALL = 394
constant SYS_GETFSSTAT (line 253) | SYS_GETFSSTAT = 395
constant SYS_STATFS (line 254) | SYS_STATFS = 396
constant SYS_FSTATFS (line 255) | SYS_FSTATFS = 397
constant SYS_FHSTATFS (line 256) | SYS_FHSTATFS = 398
constant SYS_KSEM_CLOSE (line 257) | SYS_KSEM_CLOSE = 400
constant SYS_KSEM_POST (line 258) | SYS_KSEM_POST = 401
constant SYS_KSEM_WAIT (line 259) | SYS_KSEM_WAIT = 402
constant SYS_KSEM_TRYWAIT (line 260) | SYS_KSEM_TRYWAIT = 403
constant SYS_KSEM_INIT (line 261) | SYS_KSEM_INIT = 404
constant SYS_KSEM_OPEN (line 262) | SYS_KSEM_OPEN = 405
constant SYS_KSEM_UNLINK (line 263) | SYS_KSEM_UNLINK = 406
constant SYS_KSEM_GETVALUE (line 264) | SYS_KSEM_GETVALUE = 407
constant SYS_KSEM_DESTROY (line 265) | SYS_KSEM_DESTROY = 408
constant SYS___MAC_GET_PID (line 266) | SYS___MAC_GET_PID = 409
constant SYS___MAC_GET_LINK (line 267) | SYS___MAC_GET_LINK = 410
constant SYS___MAC_SET_LINK (line 268) | SYS___MAC_SET_LINK = 411
constant SYS_EXTATTR_SET_LINK (line 269) | SYS_EXTATTR_SET_LINK = 412
constant SYS_EXTATTR_GET_LINK (line 270) | SYS_EXTATTR_GET_LINK = 413
constant SYS_EXTATTR_DELETE_LINK (line 271) | SYS_EXTATTR_DELETE_LINK = 414
constant SYS___MAC_EXECVE (line 272) | SYS___MAC_EXECVE = 415
constant SYS_SIGACTION (line 273) | SYS_SIGACTION = 416
constant SYS_SIGRETURN (line 274) | SYS_SIGRETURN = 417
constant SYS_GETCONTEXT (line 275) | SYS_GETCONTEXT = 421
constant SYS_SETCONTEXT (line 276) | SYS_SETCONTEXT = 422
constant SYS_SWAPCONTEXT (line 277) | SYS_SWAPCONTEXT = 423
constant SYS_SWAPOFF (line 278) | SYS_SWAPOFF = 424
constant SYS___ACL_GET_LINK (line 279) | SYS___ACL_GET_LINK = 425
constant SYS___ACL_SET_LINK (line 280) | SYS___ACL_SET_LINK = 426
constant SYS___ACL_DELETE_LINK (line 281) | SYS___ACL_DELETE_LINK = 427
constant SYS___ACL_ACLCHECK_LINK (line 282) | SYS___ACL_ACLCHECK_LINK = 428
constant SYS_SIGWAIT (line 283) | SYS_SIGWAIT = 429
constant SYS_THR_CREATE (line 284) | SYS_THR_CREATE = 430
constant SYS_THR_EXIT (line 285) | SYS_THR_EXIT = 431
constant SYS_THR_SELF (line 286) | SYS_THR_SELF = 432
constant SYS_THR_KILL (line 287) | SYS_THR_KILL = 433
constant SYS_JAIL_ATTACH (line 288) | SYS_JAIL_ATTACH = 436
constant SYS_EXTATTR_LIST_FD (line 289) | SYS_EXTATTR_LIST_FD = 437
constant SYS_EXTATTR_LIST_FILE (line 290) | SYS_EXTATTR_LIST_FILE = 438
constant SYS_EXTATTR_LIST_LINK (line 291) | SYS_EXTATTR_LIST_LINK = 439
constant SYS_KSEM_TIMEDWAIT (line 292) | SYS_KSEM_TIMEDWAIT = 441
constant SYS_THR_SUSPEND (line 293) | SYS_THR_SUSPEND = 442
constant SYS_THR_WAKE (line 294) | SYS_THR_WAKE = 443
constant SYS_KLDUNLOADF (line 295) | SYS_KLDUNLOADF = 444
constant SYS_AUDIT (line 296) | SYS_AUDIT = 445
constant SYS_AUDITON (line 297) | SYS_AUDITON = 446
constant SYS_GETAUID (line 298) | SYS_GETAUID = 447
constant SYS_SETAUID (line 299) | SYS_SETAUID = 448
constant SYS_GETAUDIT (line 300) | SYS_GETAUDIT = 449
constant SYS_SETAUDIT (line 301) | SYS_SETAUDIT = 450
constant SYS_GETAUDIT_ADDR (line 302) | SYS_GETAUDIT_ADDR = 451
constant SYS_SETAUDIT_ADDR (line 303) | SYS_SETAUDIT_ADDR = 452
constant SYS_AUDITCTL (line 304) | SYS_AUDITCTL = 453
constant SYS__UMTX_OP (line 305) | SYS__UMTX_OP = 454
constant SYS_THR_NEW (line 306) | SYS_THR_NEW = 455
constant SYS_SIGQUEUE (line 307) | SYS_SIGQUEUE = 456
constant SYS_KMQ_OPEN (line 308) | SYS_KMQ_OPEN = 457
constant SYS_KMQ_SETATTR (line 309) | SYS_KMQ_SETATTR = 458
constant SYS_KMQ_TIMEDRECEIVE (line 310) | SYS_KMQ_TIMEDRECEIVE = 459
constant SYS_KMQ_TIMEDSEND (line 311) | SYS_KMQ_TIMEDSEND = 460
constant SYS_KMQ_NOTIFY (line 312) | SYS_KMQ_NOTIFY = 461
constant SYS_KMQ_UNLINK (line 313) | SYS_KMQ_UNLINK = 462
constant SYS_ABORT2 (line 314) | SYS_ABORT2 = 463
constant SYS_THR_SET_NAME (line 315) | SYS_THR_SET_NAME = 464
constant SYS_AIO_FSYNC (line 316) | SYS_AIO_FSYNC = 465
constant SYS_RTPRIO_THREAD (line 317) | SYS_RTPRIO_THREAD = 466
constant SYS_SCTP_PEELOFF (line 318) | SYS_SCTP_PEELOFF = 471
constant SYS_SCTP_GENERIC_SENDMSG (line 319) | SYS_SCTP_GENERIC_SENDMSG = 472
constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 320) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473
constant SYS_SCTP_GENERIC_RECVMSG (line 321) | SYS_SCTP_GENERIC_RECVMSG = 474
constant SYS_PREAD (line 322) | SYS_PREAD = 475
constant SYS_PWRITE (line 323) | SYS_PWRITE = 476
constant SYS_MMAP (line 324) | SYS_MMAP = 477
constant SYS_LSEEK (line 325) | SYS_LSEEK = 478
constant SYS_TRUNCATE (line 326) | SYS_TRUNCATE = 479
constant SYS_FTRUNCATE (line 327) | SYS_FTRUNCATE = 480
constant SYS_THR_KILL2 (line 328) | SYS_THR_KILL2 = 481
constant SYS_SHM_OPEN (line 329) | SYS_SHM_OPEN = 482
constant SYS_SHM_UNLINK (line 330) | SYS_SHM_UNLINK = 483
constant SYS_CPUSET (line 331) | SYS_CPUSET = 484
constant SYS_CPUSET_SETID (line 332) | SYS_CPUSET_SETID = 485
constant SYS_CPUSET_GETID (line 333) | SYS_CPUSET_GETID = 486
constant SYS_CPUSET_GETAFFINITY (line 334) | SYS_CPUSET_GETAFFINITY = 487
constant SYS_CPUSET_SETAFFINITY (line 335) | SYS_CPUSET_SETAFFINITY = 488
constant SYS_FACCESSAT (line 336) | SYS_FACCESSAT = 489
constant SYS_FCHMODAT (line 337) | SYS_FCHMODAT = 490
constant SYS_FCHOWNAT (line 338) | SYS_FCHOWNAT = 491
constant SYS_FEXECVE (line 339) | SYS_FEXECVE = 492
constant SYS_FSTATAT (line 340) | SYS_FSTATAT = 493
constant SYS_FUTIMESAT (line 341) | SYS_FUTIMESAT = 494
constant SYS_LINKAT (line 342) | SYS_LINKAT = 495
constant SYS_MKDIRAT (line 343) | SYS_MKDIRAT = 496
constant SYS_MKFIFOAT (line 344) | SYS_MKFIFOAT = 497
constant SYS_MKNODAT (line 345) | SYS_MKNODAT = 498
constant SYS_OPENAT (line 346) | SYS_OPENAT = 499
constant SYS_READLINKAT (line 347) | SYS_READLINKAT = 500
constant SYS_RENAMEAT (line 348) | SYS_RENAMEAT = 501
constant SYS_SYMLINKAT (line 349) | SYS_SYMLINKAT = 502
constant SYS_UNLINKAT (line 350) | SYS_UNLINKAT = 503
constant SYS_POSIX_OPENPT (line 351) | SYS_POSIX_OPENPT = 504
constant SYS_GSSD_SYSCALL (line 352) | SYS_GSSD_SYSCALL = 505
constant SYS_JAIL_GET (line 353) | SYS_JAIL_GET = 506
constant SYS_JAIL_SET (line 354) | SYS_JAIL_SET = 507
constant SYS_JAIL_REMOVE (line 355) | SYS_JAIL_REMOVE = 508
constant SYS_CLOSEFROM (line 356) | SYS_CLOSEFROM = 509
constant SYS___SEMCTL (line 357) | SYS___SEMCTL = 510
constant SYS_MSGCTL (line 358) | SYS_MSGCTL = 511
constant SYS_SHMCTL (line 359) | SYS_SHMCTL = 512
constant SYS_LPATHCONF (line 360) | SYS_LPATHCONF = 513
constant SYS___CAP_RIGHTS_GET (line 361) | SYS___CAP_RIGHTS_GET = 515
constant SYS_CAP_ENTER (line 362) | SYS_CAP_ENTER = 516
constant SYS_CAP_GETMODE (line 363) | SYS_CAP_GETMODE = 517
constant SYS_PDFORK (line 364) | SYS_PDFORK = 518
constant SYS_PDKILL (line 365) | SYS_PDKILL = 519
constant SYS_PDGETPID (line 366) | SYS_PDGETPID = 520
constant SYS_PSELECT (line 367) | SYS_PSELECT = 522
constant SYS_GETLOGINCLASS (line 368) | SYS_GETLOGINCLASS = 523
constant SYS_SETLOGINCLASS (line 369) | SYS_SETLOGINCLASS = 524
constant SYS_RCTL_GET_RACCT (line 370) | SYS_RCTL_GET_RACCT = 525
constant SYS_RCTL_GET_RULES (line 371) | SYS_RCTL_GET_RULES = 526
constant SYS_RCTL_GET_LIMITS (line 372) | SYS_RCTL_GET_LIMITS = 527
constant SYS_RCTL_ADD_RULE (line 373) | SYS_RCTL_ADD_RULE = 528
constant SYS_RCTL_REMOVE_RULE (line 374) | SYS_RCTL_REMOVE_RULE = 529
constant SYS_POSIX_FALLOCATE (line 375) | SYS_POSIX_FALLOCATE = 530
constant SYS_POSIX_FADVISE (line 376) | SYS_POSIX_FADVISE = 531
constant SYS_WAIT6 (line 377) | SYS_WAIT6 = 532
constant SYS_CAP_RIGHTS_LIMIT (line 378) | SYS_CAP_RIGHTS_LIMIT = 533
constant SYS_CAP_IOCTLS_LIMIT (line 379) | SYS_CAP_IOCTLS_LIMIT = 534
constant SYS_CAP_IOCTLS_GET (line 380) | SYS_CAP_IOCTLS_GET = 535
constant SYS_CAP_FCNTLS_LIMIT (line 381) | SYS_CAP_FCNTLS_LIMIT = 536
constant SYS_CAP_FCNTLS_GET (line 382) | SYS_CAP_FCNTLS_GET = 537
constant SYS_BINDAT (line 383) | SYS_BINDAT = 538
constant SYS_CONNECTAT (line 384) | SYS_CONNECTAT = 539
constant SYS_CHFLAGSAT (line 385) | SYS_CHFLAGSAT = 540
constant SYS_ACCEPT4 (line 386) | SYS_ACCEPT4 = 541
constant SYS_PIPE2 (line 387) | SYS_PIPE2 = 542
constant SYS_AIO_MLOCK (line 388) | SYS_AIO_MLOCK = 543
constant SYS_PROCCTL (line 389) | SYS_PROCCTL = 544
constant SYS_PPOLL (line 390) | SYS_PPOLL = 545
constant SYS_FUTIMENS (line 391) | SYS_FUTIMENS = 546
constant SYS_UTIMENSAT (line 392) | SYS_UTIMENSAT = 547
constant SYS_NUMA_GETAFFINITY (line 393) | SYS_NUMA_GETAFFINITY = 548
constant SYS_NUMA_SETAFFINITY (line 394) | SYS_NUMA_SETAFFINITY = 549
constant SYS_FDATASYNC (line 395) | SYS_FDATASYNC = 550
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_NLM_SYSCALL (line 112) | SYS_NLM_SYSCALL = 154
constant SYS_NFSSVC (line 113) | SYS_NFSSVC = 155
constant SYS_LGETFH (line 114) | SYS_LGETFH = 160
constant SYS_GETFH (line 115) | SYS_GETFH = 161
constant SYS_SYSARCH (line 116) | SYS_SYSARCH = 165
constant SYS_RTPRIO (line 117) | SYS_RTPRIO = 166
constant SYS_SEMSYS (line 118) | SYS_SEMSYS = 169
constant SYS_MSGSYS (line 119) | SYS_MSGSYS = 170
constant SYS_SHMSYS (line 120) | SYS_SHMSYS = 171
constant SYS_SETFIB (line 121) | SYS_SETFIB = 175
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_STAT (line 126) | SYS_STAT = 188
constant SYS_FSTAT (line 127) | SYS_FSTAT = 189
constant SYS_LSTAT (line 128) | SYS_LSTAT = 190
constant SYS_PATHCONF (line 129) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 130) | SYS_FPATHCONF = 192
constant SYS_GETRLIMIT (line 131) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 132) | SYS_SETRLIMIT = 195
constant SYS_GETDIRENTRIES (line 133) | SYS_GETDIRENTRIES = 196
constant SYS___SYSCTL (line 134) | SYS___SYSCTL = 202
constant SYS_MLOCK (line 135) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 136) | SYS_MUNLOCK = 204
constant SYS_UNDELETE (line 137) | SYS_UNDELETE = 205
constant SYS_FUTIMES (line 138) | SYS_FUTIMES = 206
constant SYS_GETPGID (line 139) | SYS_GETPGID = 207
constant SYS_POLL (line 140) | SYS_POLL = 209
constant SYS_SEMGET (line 141) | SYS_SEMGET = 221
constant SYS_SEMOP (line 142) | SYS_SEMOP = 222
constant SYS_MSGGET (line 143) | SYS_MSGGET = 225
constant SYS_MSGSND (line 144) | SYS_MSGSND = 226
constant SYS_MSGRCV (line 145) | SYS_MSGRCV = 227
constant SYS_SHMAT (line 146) | SYS_SHMAT = 228
constant SYS_SHMDT (line 147) | SYS_SHMDT = 230
constant SYS_SHMGET (line 148) | SYS_SHMGET = 231
constant SYS_CLOCK_GETTIME (line 149) | SYS_CLOCK_GETTIME = 232
constant SYS_CLOCK_SETTIME (line 150) | SYS_CLOCK_SETTIME = 233
constant SYS_CLOCK_GETRES (line 151) | SYS_CLOCK_GETRES = 234
constant SYS_KTIMER_CREATE (line 152) | SYS_KTIMER_CREATE = 235
constant SYS_KTIMER_DELETE (line 153) | SYS_KTIMER_DELETE = 236
constant SYS_KTIMER_SETTIME (line 154) | SYS_KTIMER_SETTIME = 237
constant SYS_KTIMER_GETTIME (line 155) | SYS_KTIMER_GETTIME = 238
constant SYS_KTIMER_GETOVERRUN (line 156) | SYS_KTIMER_GETOVERRUN = 239
constant SYS_NANOSLEEP (line 157) | SYS_NANOSLEEP = 240
constant SYS_FFCLOCK_GETCOUNTER (line 158) | SYS_FFCLOCK_GETCOUNTER = 241
constant SYS_FFCLOCK_SETESTIMATE (line 159) | SYS_FFCLOCK_SETESTIMATE = 242
constant SYS_FFCLOCK_GETESTIMATE (line 160) | SYS_FFCLOCK_GETESTIMATE = 243
constant SYS_CLOCK_NANOSLEEP (line 161) | SYS_CLOCK_NANOSLEEP = 244
constant SYS_CLOCK_GETCPUCLOCKID2 (line 162) | SYS_CLOCK_GETCPUCLOCKID2 = 247
constant SYS_NTP_GETTIME (line 163) | SYS_NTP_GETTIME = 248
constant SYS_MINHERIT (line 164) | SYS_MINHERIT = 250
constant SYS_RFORK (line 165) | SYS_RFORK = 251
constant SYS_OPENBSD_POLL (line 166) | SYS_OPENBSD_POLL = 252
constant SYS_ISSETUGID (line 167) | SYS_ISSETUGID = 253
constant SYS_LCHOWN (line 168) | SYS_LCHOWN = 254
constant SYS_AIO_READ (line 169) | SYS_AIO_READ = 255
constant SYS_AIO_WRITE (line 170) | SYS_AIO_WRITE = 256
constant SYS_LIO_LISTIO (line 171) | SYS_LIO_LISTIO = 257
constant SYS_GETDENTS (line 172) | SYS_GETDENTS = 272
constant SYS_LCHMOD (line 173) | SYS_LCHMOD = 274
constant SYS_LUTIMES (line 174) | SYS_LUTIMES = 276
constant SYS_NSTAT (line 175) | SYS_NSTAT = 278
constant SYS_NFSTAT (line 176) | SYS_NFSTAT = 279
constant SYS_NLSTAT (line 177) | SYS_NLSTAT = 280
constant SYS_PREADV (line 178) | SYS_PREADV = 289
constant SYS_PWRITEV (line 179) | SYS_PWRITEV = 290
constant SYS_FHOPEN (line 180) | SYS_FHOPEN = 298
constant SYS_FHSTAT (line 181) | SYS_FHSTAT = 299
constant SYS_MODNEXT (line 182) | SYS_MODNEXT = 300
constant SYS_MODSTAT (line 183) | SYS_MODSTAT = 301
constant SYS_MODFNEXT (line 184) | SYS_MODFNEXT = 302
constant SYS_MODFIND (line 185) | SYS_MODFIND = 303
constant SYS_KLDLOAD (line 186) | SYS_KLDLOAD = 304
constant SYS_KLDUNLOAD (line 187) | SYS_KLDUNLOAD = 305
constant SYS_KLDFIND (line 188) | SYS_KLDFIND = 306
constant SYS_KLDNEXT (line 189) | SYS_KLDNEXT = 307
constant SYS_KLDSTAT (line 190) | SYS_KLDSTAT = 308
constant SYS_KLDFIRSTMOD (line 191) | SYS_KLDFIRSTMOD = 309
constant SYS_GETSID (line 192) | SYS_GETSID = 310
constant SYS_SETRESUID (line 193) | SYS_SETRESUID = 311
constant SYS_SETRESGID (line 194) | SYS_SETRESGID = 312
constant SYS_AIO_RETURN (line 195) | SYS_AIO_RETURN = 314
constant SYS_AIO_SUSPEND (line 196) | SYS_AIO_SUSPEND = 315
constant SYS_AIO_CANCEL (line 197) | SYS_AIO_CANCEL = 316
constant SYS_AIO_ERROR (line 198) | SYS_AIO_ERROR = 317
constant SYS_YIELD (line 199) | SYS_YIELD = 321
constant SYS_MLOCKALL (line 200) | SYS_MLOCKALL = 324
constant SYS_MUNLOCKALL (line 201) | SYS_MUNLOCKALL = 325
constant SYS___GETCWD (line 202) | SYS___GETCWD = 326
constant SYS_SCHED_SETPARAM (line 203) | SYS_SCHED_SETPARAM = 327
constant SYS_SCHED_GETPARAM (line 204) | SYS_SCHED_GETPARAM = 328
constant SYS_SCHED_SETSCHEDULER (line 205) | SYS_SCHED_SETSCHEDULER = 329
constant SYS_SCHED_GETSCHEDULER (line 206) | SYS_SCHED_GETSCHEDULER = 330
constant SYS_SCHED_YIELD (line 207) | SYS_SCHED_YIELD = 331
constant SYS_SCHED_GET_PRIORITY_MAX (line 208) | SYS_SCHED_GET_PRIORITY_MAX = 332
constant SYS_SCHED_GET_PRIORITY_MIN (line 209) | SYS_SCHED_GET_PRIORITY_MIN = 333
constant SYS_SCHED_RR_GET_INTERVAL (line 210) | SYS_SCHED_RR_GET_INTERVAL = 334
constant SYS_UTRACE (line 211) | SYS_UTRACE = 335
constant SYS_KLDSYM (line 212) | SYS_KLDSYM = 337
constant SYS_JAIL (line 213) | SYS_JAIL = 338
constant SYS_SIGPROCMASK (line 214) | SYS_SIGPROCMASK = 340
constant SYS_SIGSUSPEND (line 215) | SYS_SIGSUSPEND = 341
constant SYS_SIGPENDING (line 216) | SYS_SIGPENDING = 343
constant SYS_SIGTIMEDWAIT (line 217) | SYS_SIGTIMEDWAIT = 345
constant SYS_SIGWAITINFO (line 218) | SYS_SIGWAITINFO = 346
constant SYS___ACL_GET_FILE (line 219) | SYS___ACL_GET_FILE = 347
constant SYS___ACL_SET_FILE (line 220) | SYS___ACL_SET_FILE = 348
constant SYS___ACL_GET_FD (line 221) | SYS___ACL_GET_FD = 349
constant SYS___ACL_SET_FD (line 222) | SYS___ACL_SET_FD = 350
constant SYS___ACL_DELETE_FILE (line 223) | SYS___ACL_DELETE_FILE = 351
constant SYS___ACL_DELETE_FD (line 224) | SYS___ACL_DELETE_FD = 352
constant SYS___ACL_ACLCHECK_FILE (line 225) | SYS___ACL_ACLCHECK_FILE = 353
constant SYS___ACL_ACLCHECK_FD (line 226) | SYS___ACL_ACLCHECK_FD = 354
constant SYS_EXTATTRCTL (line 227) | SYS_EXTATTRCTL = 355
constant SYS_EXTATTR_SET_FILE (line 228) | SYS_EXTATTR_SET_FILE = 356
constant SYS_EXTATTR_GET_FILE (line 229) | SYS_EXTATTR_GET_FILE = 357
constant SYS_EXTATTR_DELETE_FILE (line 230) | SYS_EXTATTR_DELETE_FILE = 358
constant SYS_AIO_WAITCOMPLETE (line 231) | SYS_AIO_WAITCOMPLETE = 359
constant SYS_GETRESUID (line 232) | SYS_GETRESUID = 360
constant SYS_GETRESGID (line 233) | SYS_GETRESGID = 361
constant SYS_KQUEUE (line 234) | SYS_KQUEUE = 362
constant SYS_KEVENT (line 235) | SYS_KEVENT = 363
constant SYS_EXTATTR_SET_FD (line 236) | SYS_EXTATTR_SET_FD = 371
constant SYS_EXTATTR_GET_FD (line 237) | SYS_EXTATTR_GET_FD = 372
constant SYS_EXTATTR_DELETE_FD (line 238) | SYS_EXTATTR_DELETE_FD = 373
constant SYS___SETUGID (line 239) | SYS___SETUGID = 374
constant SYS_EACCESS (line 240) | SYS_EACCESS = 376
constant SYS_NMOUNT (line 241) | SYS_NMOUNT = 378
constant SYS___MAC_GET_PROC (line 242) | SYS___MAC_GET_PROC = 384
constant SYS___MAC_SET_PROC (line 243) | SYS___MAC_SET_PROC = 385
constant SYS___MAC_GET_FD (line 244) | SYS___MAC_GET_FD = 386
constant SYS___MAC_GET_FILE (line 245) | SYS___MAC_GET_FILE = 387
constant SYS___MAC_SET_FD (line 246) | SYS___MAC_SET_FD = 388
constant SYS___MAC_SET_FILE (line 247) | SYS___MAC_SET_FILE = 389
constant SYS_KENV (line 248) | SYS_KENV = 390
constant SYS_LCHFLAGS (line 249) | SYS_LCHFLAGS = 391
constant SYS_UUIDGEN (line 250) | SYS_UUIDGEN = 392
constant SYS_SENDFILE (line 251) | SYS_SENDFILE = 393
constant SYS_MAC_SYSCALL (line 252) | SYS_MAC_SYSCALL = 394
constant SYS_GETFSSTAT (line 253) | SYS_GETFSSTAT = 395
constant SYS_STATFS (line 254) | SYS_STATFS = 396
constant SYS_FSTATFS (line 255) | SYS_FSTATFS = 397
constant SYS_FHSTATFS (line 256) | SYS_FHSTATFS = 398
constant SYS_KSEM_CLOSE (line 257) | SYS_KSEM_CLOSE = 400
constant SYS_KSEM_POST (line 258) | SYS_KSEM_POST = 401
constant SYS_KSEM_WAIT (line 259) | SYS_KSEM_WAIT = 402
constant SYS_KSEM_TRYWAIT (line 260) | SYS_KSEM_TRYWAIT = 403
constant SYS_KSEM_INIT (line 261) | SYS_KSEM_INIT = 404
constant SYS_KSEM_OPEN (line 262) | SYS_KSEM_OPEN = 405
constant SYS_KSEM_UNLINK (line 263) | SYS_KSEM_UNLINK = 406
constant SYS_KSEM_GETVALUE (line 264) | SYS_KSEM_GETVALUE = 407
constant SYS_KSEM_DESTROY (line 265) | SYS_KSEM_DESTROY = 408
constant SYS___MAC_GET_PID (line 266) | SYS___MAC_GET_PID = 409
constant SYS___MAC_GET_LINK (line 267) | SYS___MAC_GET_LINK = 410
constant SYS___MAC_SET_LINK (line 268) | SYS___MAC_SET_LINK = 411
constant SYS_EXTATTR_SET_LINK (line 269) | SYS_EXTATTR_SET_LINK = 412
constant SYS_EXTATTR_GET_LINK (line 270) | SYS_EXTATTR_GET_LINK = 413
constant SYS_EXTATTR_DELETE_LINK (line 271) | SYS_EXTATTR_DELETE_LINK = 414
constant SYS___MAC_EXECVE (line 272) | SYS___MAC_EXECVE = 415
constant SYS_SIGACTION (line 273) | SYS_SIGACTION = 416
constant SYS_SIGRETURN (line 274) | SYS_SIGRETURN = 417
constant SYS_GETCONTEXT (line 275) | SYS_GETCONTEXT = 421
constant SYS_SETCONTEXT (line 276) | SYS_SETCONTEXT = 422
constant SYS_SWAPCONTEXT (line 277) | SYS_SWAPCONTEXT = 423
constant SYS_SWAPOFF (line 278) | SYS_SWAPOFF = 424
constant SYS___ACL_GET_LINK (line 279) | SYS___ACL_GET_LINK = 425
constant SYS___ACL_SET_LINK (line 280) | SYS___ACL_SET_LINK = 426
constant SYS___ACL_DELETE_LINK (line 281) | SYS___ACL_DELETE_LINK = 427
constant SYS___ACL_ACLCHECK_LINK (line 282) | SYS___ACL_ACLCHECK_LINK = 428
constant SYS_SIGWAIT (line 283) | SYS_SIGWAIT = 429
constant SYS_THR_CREATE (line 284) | SYS_THR_CREATE = 430
constant SYS_THR_EXIT (line 285) | SYS_THR_EXIT = 431
constant SYS_THR_SELF (line 286) | SYS_THR_SELF = 432
constant SYS_THR_KILL (line 287) | SYS_THR_KILL = 433
constant SYS_JAIL_ATTACH (line 288) | SYS_JAIL_ATTACH = 436
constant SYS_EXTATTR_LIST_FD (line 289) | SYS_EXTATTR_LIST_FD = 437
constant SYS_EXTATTR_LIST_FILE (line 290) | SYS_EXTATTR_LIST_FILE = 438
constant SYS_EXTATTR_LIST_LINK (line 291) | SYS_EXTATTR_LIST_LINK = 439
constant SYS_KSEM_TIMEDWAIT (line 292) | SYS_KSEM_TIMEDWAIT = 441
constant SYS_THR_SUSPEND (line 293) | SYS_THR_SUSPEND = 442
constant SYS_THR_WAKE (line 294) | SYS_THR_WAKE = 443
constant SYS_KLDUNLOADF (line 295) | SYS_KLDUNLOADF = 444
constant SYS_AUDIT (line 296) | SYS_AUDIT = 445
constant SYS_AUDITON (line 297) | SYS_AUDITON = 446
constant SYS_GETAUID (line 298) | SYS_GETAUID = 447
constant SYS_SETAUID (line 299) | SYS_SETAUID = 448
constant SYS_GETAUDIT (line 300) | SYS_GETAUDIT = 449
constant SYS_SETAUDIT (line 301) | SYS_SETAUDIT = 450
constant SYS_GETAUDIT_ADDR (line 302) | SYS_GETAUDIT_ADDR = 451
constant SYS_SETAUDIT_ADDR (line 303) | SYS_SETAUDIT_ADDR = 452
constant SYS_AUDITCTL (line 304) | SYS_AUDITCTL = 453
constant SYS__UMTX_OP (line 305) | SYS__UMTX_OP = 454
constant SYS_THR_NEW (line 306) | SYS_THR_NEW = 455
constant SYS_SIGQUEUE (line 307) | SYS_SIGQUEUE = 456
constant SYS_KMQ_OPEN (line 308) | SYS_KMQ_OPEN = 457
constant SYS_KMQ_SETATTR (line 309) | SYS_KMQ_SETATTR = 458
constant SYS_KMQ_TIMEDRECEIVE (line 310) | SYS_KMQ_TIMEDRECEIVE = 459
constant SYS_KMQ_TIMEDSEND (line 311) | SYS_KMQ_TIMEDSEND = 460
constant SYS_KMQ_NOTIFY (line 312) | SYS_KMQ_NOTIFY = 461
constant SYS_KMQ_UNLINK (line 313) | SYS_KMQ_UNLINK = 462
constant SYS_ABORT2 (line 314) | SYS_ABORT2 = 463
constant SYS_THR_SET_NAME (line 315) | SYS_THR_SET_NAME = 464
constant SYS_AIO_FSYNC (line 316) | SYS_AIO_FSYNC = 465
constant SYS_RTPRIO_THREAD (line 317) | SYS_RTPRIO_THREAD = 466
constant SYS_SCTP_PEELOFF (line 318) | SYS_SCTP_PEELOFF = 471
constant SYS_SCTP_GENERIC_SENDMSG (line 319) | SYS_SCTP_GENERIC_SENDMSG = 472
constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 320) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473
constant SYS_SCTP_GENERIC_RECVMSG (line 321) | SYS_SCTP_GENERIC_RECVMSG = 474
constant SYS_PREAD (line 322) | SYS_PREAD = 475
constant SYS_PWRITE (line 323) | SYS_PWRITE = 476
constant SYS_MMAP (line 324) | SYS_MMAP = 477
constant SYS_LSEEK (line 325) | SYS_LSEEK = 478
constant SYS_TRUNCATE (line 326) | SYS_TRUNCATE = 479
constant SYS_FTRUNCATE (line 327) | SYS_FTRUNCATE = 480
constant SYS_THR_KILL2 (line 328) | SYS_THR_KILL2 = 481
constant SYS_SHM_OPEN (line 329) | SYS_SHM_OPEN = 482
constant SYS_SHM_UNLINK (line 330) | SYS_SHM_UNLINK = 483
constant SYS_CPUSET (line 331) | SYS_CPUSET = 484
constant SYS_CPUSET_SETID (line 332) | SYS_CPUSET_SETID = 485
constant SYS_CPUSET_GETID (line 333) | SYS_CPUSET_GETID = 486
constant SYS_CPUSET_GETAFFINITY (line 334) | SYS_CPUSET_GETAFFINITY = 487
constant SYS_CPUSET_SETAFFINITY (line 335) | SYS_CPUSET_SETAFFINITY = 488
constant SYS_FACCESSAT (line 336) | SYS_FACCESSAT = 489
constant SYS_FCHMODAT (line 337) | SYS_FCHMODAT = 490
constant SYS_FCHOWNAT (line 338) | SYS_FCHOWNAT = 491
constant SYS_FEXECVE (line 339) | SYS_FEXECVE = 492
constant SYS_FSTATAT (line 340) | SYS_FSTATAT = 493
constant SYS_FUTIMESAT (line 341) | SYS_FUTIMESAT = 494
constant SYS_LINKAT (line 342) | SYS_LINKAT = 495
constant SYS_MKDIRAT (line 343) | SYS_MKDIRAT = 496
constant SYS_MKFIFOAT (line 344) | SYS_MKFIFOAT = 497
constant SYS_MKNODAT (line 345) | SYS_MKNODAT = 498
constant SYS_OPENAT (line 346) | SYS_OPENAT = 499
constant SYS_READLINKAT (line 347) | SYS_READLINKAT = 500
constant SYS_RENAMEAT (line 348) | SYS_RENAMEAT = 501
constant SYS_SYMLINKAT (line 349) | SYS_SYMLINKAT = 502
constant SYS_UNLINKAT (line 350) | SYS_UNLINKAT = 503
constant SYS_POSIX_OPENPT (line 351) | SYS_POSIX_OPENPT = 504
constant SYS_GSSD_SYSCALL (line 352) | SYS_GSSD_SYSCALL = 505
constant SYS_JAIL_GET (line 353) | SYS_JAIL_GET = 506
constant SYS_JAIL_SET (line 354) | SYS_JAIL_SET = 507
constant SYS_JAIL_REMOVE (line 355) | SYS_JAIL_REMOVE = 508
constant SYS_CLOSEFROM (line 356) | SYS_CLOSEFROM = 509
constant SYS___SEMCTL (line 357) | SYS___SEMCTL = 510
constant SYS_MSGCTL (line 358) | SYS_MSGCTL = 511
constant SYS_SHMCTL (line 359) | SYS_SHMCTL = 512
constant SYS_LPATHCONF (line 360) | SYS_LPATHCONF = 513
constant SYS___CAP_RIGHTS_GET (line 361) | SYS___CAP_RIGHTS_GET = 515
constant SYS_CAP_ENTER (line 362) | SYS_CAP_ENTER = 516
constant SYS_CAP_GETMODE (line 363) | SYS_CAP_GETMODE = 517
constant SYS_PDFORK (line 364) | SYS_PDFORK = 518
constant SYS_PDKILL (line 365) | SYS_PDKILL = 519
constant SYS_PDGETPID (line 366) | SYS_PDGETPID = 520
constant SYS_PSELECT (line 367) | SYS_PSELECT = 522
constant SYS_GETLOGINCLASS (line 368) | SYS_GETLOGINCLASS = 523
constant SYS_SETLOGINCLASS (line 369) | SYS_SETLOGINCLASS = 524
constant SYS_RCTL_GET_RACCT (line 370) | SYS_RCTL_GET_RACCT = 525
constant SYS_RCTL_GET_RULES (line 371) | SYS_RCTL_GET_RULES = 526
constant SYS_RCTL_GET_LIMITS (line 372) | SYS_RCTL_GET_LIMITS = 527
constant SYS_RCTL_ADD_RULE (line 373) | SYS_RCTL_ADD_RULE = 528
constant SYS_RCTL_REMOVE_RULE (line 374) | SYS_RCTL_REMOVE_RULE = 529
constant SYS_POSIX_FALLOCATE (line 375) | SYS_POSIX_FALLOCATE = 530
constant SYS_POSIX_FADVISE (line 376) | SYS_POSIX_FADVISE = 531
constant SYS_WAIT6 (line 377) | SYS_WAIT6 = 532
constant SYS_CAP_RIGHTS_LIMIT (line 378) | SYS_CAP_RIGHTS_LIMIT = 533
constant SYS_CAP_IOCTLS_LIMIT (line 379) | SYS_CAP_IOCTLS_LIMIT = 534
constant SYS_CAP_IOCTLS_GET (line 380) | SYS_CAP_IOCTLS_GET = 535
constant SYS_CAP_FCNTLS_LIMIT (line 381) | SYS_CAP_FCNTLS_LIMIT = 536
constant SYS_CAP_FCNTLS_GET (line 382) | SYS_CAP_FCNTLS_GET = 537
constant SYS_BINDAT (line 383) | SYS_BINDAT = 538
constant SYS_CONNECTAT (line 384) | SYS_CONNECTAT = 539
constant SYS_CHFLAGSAT (line 385) | SYS_CHFLAGSAT = 540
constant SYS_ACCEPT4 (line 386) | SYS_ACCEPT4 = 541
constant SYS_PIPE2 (line 387) | SYS_PIPE2 = 542
constant SYS_AIO_MLOCK (line 388) | SYS_AIO_MLOCK = 543
constant SYS_PROCCTL (line 389) | SYS_PROCCTL = 544
constant SYS_PPOLL (line 390) | SYS_PPOLL = 545
constant SYS_FUTIMENS (line 391) | SYS_FUTIMENS = 546
constant SYS_UTIMENSAT (line 392) | SYS_UTIMENSAT = 547
constant SYS_NUMA_GETAFFINITY (line 393) | SYS_NUMA_GETAFFINITY = 548
constant SYS_NUMA_SETAFFINITY (line 394) | SYS_NUMA_SETAFFINITY = 549
constant SYS_FDATASYNC (line 395) | SYS_FDATASYNC = 550
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_NLM_SYSCALL (line 112) | SYS_NLM_SYSCALL = 154
constant SYS_NFSSVC (line 113) | SYS_NFSSVC = 155
constant SYS_LGETFH (line 114) | SYS_LGETFH = 160
constant SYS_GETFH (line 115) | SYS_GETFH = 161
constant SYS_SYSARCH (line 116) | SYS_SYSARCH = 165
constant SYS_RTPRIO (line 117) | SYS_RTPRIO = 166
constant SYS_SEMSYS (line 118) | SYS_SEMSYS = 169
constant SYS_MSGSYS (line 119) | SYS_MSGSYS = 170
constant SYS_SHMSYS (line 120) | SYS_SHMSYS = 171
constant SYS_SETFIB (line 121) | SYS_SETFIB = 175
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_STAT (line 126) | SYS_STAT = 188
constant SYS_FSTAT (line 127) | SYS_FSTAT = 189
constant SYS_LSTAT (line 128) | SYS_LSTAT = 190
constant SYS_PATHCONF (line 129) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 130) | SYS_FPATHCONF = 192
constant SYS_GETRLIMIT (line 131) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 132) | SYS_SETRLIMIT = 195
constant SYS_GETDIRENTRIES (line 133) | SYS_GETDIRENTRIES = 196
constant SYS___SYSCTL (line 134) | SYS___SYSCTL = 202
constant SYS_MLOCK (line 135) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 136) | SYS_MUNLOCK = 204
constant SYS_UNDELETE (line 137) | SYS_UNDELETE = 205
constant SYS_FUTIMES (line 138) | SYS_FUTIMES = 206
constant SYS_GETPGID (line 139) | SYS_GETPGID = 207
constant SYS_POLL (line 140) | SYS_POLL = 209
constant SYS_SEMGET (line 141) | SYS_SEMGET = 221
constant SYS_SEMOP (line 142) | SYS_SEMOP = 222
constant SYS_MSGGET (line 143) | SYS_MSGGET = 225
constant SYS_MSGSND (line 144) | SYS_MSGSND = 226
constant SYS_MSGRCV (line 145) | SYS_MSGRCV = 227
constant SYS_SHMAT (line 146) | SYS_SHMAT = 228
constant SYS_SHMDT (line 147) | SYS_SHMDT = 230
constant SYS_SHMGET (line 148) | SYS_SHMGET = 231
constant SYS_CLOCK_GETTIME (line 149) | SYS_CLOCK_GETTIME = 232
constant SYS_CLOCK_SETTIME (line 150) | SYS_CLOCK_SETTIME = 233
constant SYS_CLOCK_GETRES (line 151) | SYS_CLOCK_GETRES = 234
constant SYS_KTIMER_CREATE (line 152) | SYS_KTIMER_CREATE = 235
constant SYS_KTIMER_DELETE (line 153) | SYS_KTIMER_DELETE = 236
constant SYS_KTIMER_SETTIME (line 154) | SYS_KTIMER_SETTIME = 237
constant SYS_KTIMER_GETTIME (line 155) | SYS_KTIMER_GETTIME = 238
constant SYS_KTIMER_GETOVERRUN (line 156) | SYS_KTIMER_GETOVERRUN = 239
constant SYS_NANOSLEEP (line 157) | SYS_NANOSLEEP = 240
constant SYS_FFCLOCK_GETCOUNTER (line 158) | SYS_FFCLOCK_GETCOUNTER = 241
constant SYS_FFCLOCK_SETESTIMATE (line 159) | SYS_FFCLOCK_SETESTIMATE = 242
constant SYS_FFCLOCK_GETESTIMATE (line 160) | SYS_FFCLOCK_GETESTIMATE = 243
constant SYS_CLOCK_NANOSLEEP (line 161) | SYS_CLOCK_NANOSLEEP = 244
constant SYS_CLOCK_GETCPUCLOCKID2 (line 162) | SYS_CLOCK_GETCPUCLOCKID2 = 247
constant SYS_NTP_GETTIME (line 163) | SYS_NTP_GETTIME = 248
constant SYS_MINHERIT (line 164) | SYS_MINHERIT = 250
constant SYS_RFORK (line 165) | SYS_RFORK = 251
constant SYS_OPENBSD_POLL (line 166) | SYS_OPENBSD_POLL = 252
constant SYS_ISSETUGID (line 167) | SYS_ISSETUGID = 253
constant SYS_LCHOWN (line 168) | SYS_LCHOWN = 254
constant SYS_AIO_READ (line 169) | SYS_AIO_READ = 255
constant SYS_AIO_WRITE (line 170) | SYS_AIO_WRITE = 256
constant SYS_LIO_LISTIO (line 171) | SYS_LIO_LISTIO = 257
constant SYS_GETDENTS (line 172) | SYS_GETDENTS = 272
constant SYS_LCHMOD (line 173) | SYS_LCHMOD = 274
constant SYS_LUTIMES (line 174) | SYS_LUTIMES = 276
constant SYS_NSTAT (line 175) | SYS_NSTAT = 278
constant SYS_NFSTAT (line 176) | SYS_NFSTAT = 279
constant SYS_NLSTAT (line 177) | SYS_NLSTAT = 280
constant SYS_PREADV (line 178) | SYS_PREADV = 289
constant SYS_PWRITEV (line 179) | SYS_PWRITEV = 290
constant SYS_FHOPEN (line 180) | SYS_FHOPEN = 298
constant SYS_FHSTAT (line 181) | SYS_FHSTAT = 299
constant SYS_MODNEXT (line 182) | SYS_MODNEXT = 300
constant SYS_MODSTAT (line 183) | SYS_MODSTAT = 301
constant SYS_MODFNEXT (line 184) | SYS_MODFNEXT = 302
constant SYS_MODFIND (line 185) | SYS_MODFIND = 303
constant SYS_KLDLOAD (line 186) | SYS_KLDLOAD = 304
constant SYS_KLDUNLOAD (line 187) | SYS_KLDUNLOAD = 305
constant SYS_KLDFIND (line 188) | SYS_KLDFIND = 306
constant SYS_KLDNEXT (line 189) | SYS_KLDNEXT = 307
constant SYS_KLDSTAT (line 190) | SYS_KLDSTAT = 308
constant SYS_KLDFIRSTMOD (line 191) | SYS_KLDFIRSTMOD = 309
constant SYS_GETSID (line 192) | SYS_GETSID = 310
constant SYS_SETRESUID (line 193) | SYS_SETRESUID = 311
constant SYS_SETRESGID (line 194) | SYS_SETRESGID = 312
constant SYS_AIO_RETURN (line 195) | SYS_AIO_RETURN = 314
constant SYS_AIO_SUSPEND (line 196) | SYS_AIO_SUSPEND = 315
constant SYS_AIO_CANCEL (line 197) | SYS_AIO_CANCEL = 316
constant SYS_AIO_ERROR (line 198) | SYS_AIO_ERROR = 317
constant SYS_YIELD (line 199) | SYS_YIELD = 321
constant SYS_MLOCKALL (line 200) | SYS_MLOCKALL = 324
constant SYS_MUNLOCKALL (line 201) | SYS_MUNLOCKALL = 325
constant SYS___GETCWD (line 202) | SYS___GETCWD = 326
constant SYS_SCHED_SETPARAM (line 203) | SYS_SCHED_SETPARAM = 327
constant SYS_SCHED_GETPARAM (line 204) | SYS_SCHED_GETPARAM = 328
constant SYS_SCHED_SETSCHEDULER (line 205) | SYS_SCHED_SETSCHEDULER = 329
constant SYS_SCHED_GETSCHEDULER (line 206) | SYS_SCHED_GETSCHEDULER = 330
constant SYS_SCHED_YIELD (line 207) | SYS_SCHED_YIELD = 331
constant SYS_SCHED_GET_PRIORITY_MAX (line 208) | SYS_SCHED_GET_PRIORITY_MAX = 332
constant SYS_SCHED_GET_PRIORITY_MIN (line 209) | SYS_SCHED_GET_PRIORITY_MIN = 333
constant SYS_SCHED_RR_GET_INTERVAL (line 210) | SYS_SCHED_RR_GET_INTERVAL = 334
constant SYS_UTRACE (line 211) | SYS_UTRACE = 335
constant SYS_KLDSYM (line 212) | SYS_KLDSYM = 337
constant SYS_JAIL (line 213) | SYS_JAIL = 338
constant SYS_SIGPROCMASK (line 214) | SYS_SIGPROCMASK = 340
constant SYS_SIGSUSPEND (line 215) | SYS_SIGSUSPEND = 341
constant SYS_SIGPENDING (line 216) | SYS_SIGPENDING = 343
constant SYS_SIGTIMEDWAIT (line 217) | SYS_SIGTIMEDWAIT = 345
constant SYS_SIGWAITINFO (line 218) | SYS_SIGWAITINFO = 346
constant SYS___ACL_GET_FILE (line 219) | SYS___ACL_GET_FILE = 347
constant SYS___ACL_SET_FILE (line 220) | SYS___ACL_SET_FILE = 348
constant SYS___ACL_GET_FD (line 221) | SYS___ACL_GET_FD = 349
constant SYS___ACL_SET_FD (line 222) | SYS___ACL_SET_FD = 350
constant SYS___ACL_DELETE_FILE (line 223) | SYS___ACL_DELETE_FILE = 351
constant SYS___ACL_DELETE_FD (line 224) | SYS___ACL_DELETE_FD = 352
constant SYS___ACL_ACLCHECK_FILE (line 225) | SYS___ACL_ACLCHECK_FILE = 353
constant SYS___ACL_ACLCHECK_FD (line 226) | SYS___ACL_ACLCHECK_FD = 354
constant SYS_EXTATTRCTL (line 227) | SYS_EXTATTRCTL = 355
constant SYS_EXTATTR_SET_FILE (line 228) | SYS_EXTATTR_SET_FILE = 356
constant SYS_EXTATTR_GET_FILE (line 229) | SYS_EXTATTR_GET_FILE = 357
constant SYS_EXTATTR_DELETE_FILE (line 230) | SYS_EXTATTR_DELETE_FILE = 358
constant SYS_AIO_WAITCOMPLETE (line 231) | SYS_AIO_WAITCOMPLETE = 359
constant SYS_GETRESUID (line 232) | SYS_GETRESUID = 360
constant SYS_GETRESGID (line 233) | SYS_GETRESGID = 361
constant SYS_KQUEUE (line 234) | SYS_KQUEUE = 362
constant SYS_KEVENT (line 235) | SYS_KEVENT = 363
constant SYS_EXTATTR_SET_FD (line 236) | SYS_EXTATTR_SET_FD = 371
constant SYS_EXTATTR_GET_FD (line 237) | SYS_EXTATTR_GET_FD = 372
constant SYS_EXTATTR_DELETE_FD (line 238) | SYS_EXTATTR_DELETE_FD = 373
constant SYS___SETUGID (line 239) | SYS___SETUGID = 374
constant SYS_EACCESS (line 240) | SYS_EACCESS = 376
constant SYS_NMOUNT (line 241) | SYS_NMOUNT = 378
constant SYS___MAC_GET_PROC (line 242) | SYS___MAC_GET_PROC = 384
constant SYS___MAC_SET_PROC (line 243) | SYS___MAC_SET_PROC = 385
constant SYS___MAC_GET_FD (line 244) | SYS___MAC_GET_FD = 386
constant SYS___MAC_GET_FILE (line 245) | SYS___MAC_GET_FILE = 387
constant SYS___MAC_SET_FD (line 246) | SYS___MAC_SET_FD = 388
constant SYS___MAC_SET_FILE (line 247) | SYS___MAC_SET_FILE = 389
constant SYS_KENV (line 248) | SYS_KENV = 390
constant SYS_LCHFLAGS (line 249) | SYS_LCHFLAGS = 391
constant SYS_UUIDGEN (line 250) | SYS_UUIDGEN = 392
constant SYS_SENDFILE (line 251) | SYS_SENDFILE = 393
constant SYS_MAC_SYSCALL (line 252) | SYS_MAC_SYSCALL = 394
constant SYS_GETFSSTAT (line 253) | SYS_GETFSSTAT = 395
constant SYS_STATFS (line 254) | SYS_STATFS = 396
constant SYS_FSTATFS (line 255) | SYS_FSTATFS = 397
constant SYS_FHSTATFS (line 256) | SYS_FHSTATFS = 398
constant SYS_KSEM_CLOSE (line 257) | SYS_KSEM_CLOSE = 400
constant SYS_KSEM_POST (line 258) | SYS_KSEM_POST = 401
constant SYS_KSEM_WAIT (line 259) | SYS_KSEM_WAIT = 402
constant SYS_KSEM_TRYWAIT (line 260) | SYS_KSEM_TRYWAIT = 403
constant SYS_KSEM_INIT (line 261) | SYS_KSEM_INIT = 404
constant SYS_KSEM_OPEN (line 262) | SYS_KSEM_OPEN = 405
constant SYS_KSEM_UNLINK (line 263) | SYS_KSEM_UNLINK = 406
constant SYS_KSEM_GETVALUE (line 264) | SYS_KSEM_GETVALUE = 407
constant SYS_KSEM_DESTROY (line 265) | SYS_KSEM_DESTROY = 408
constant SYS___MAC_GET_PID (line 266) | SYS___MAC_GET_PID = 409
constant SYS___MAC_GET_LINK (line 267) | SYS___MAC_GET_LINK = 410
constant SYS___MAC_SET_LINK (line 268) | SYS___MAC_SET_LINK = 411
constant SYS_EXTATTR_SET_LINK (line 269) | SYS_EXTATTR_SET_LINK = 412
constant SYS_EXTATTR_GET_LINK (line 270) | SYS_EXTATTR_GET_LINK = 413
constant SYS_EXTATTR_DELETE_LINK (line 271) | SYS_EXTATTR_DELETE_LINK = 414
constant SYS___MAC_EXECVE (line 272) | SYS___MAC_EXECVE = 415
constant SYS_SIGACTION (line 273) | SYS_SIGACTION = 416
constant SYS_SIGRETURN (line 274) | SYS_SIGRETURN = 417
constant SYS_GETCONTEXT (line 275) | SYS_GETCONTEXT = 421
constant SYS_SETCONTEXT (line 276) | SYS_SETCONTEXT = 422
constant SYS_SWAPCONTEXT (line 277) | SYS_SWAPCONTEXT = 423
constant SYS_SWAPOFF (line 278) | SYS_SWAPOFF = 424
constant SYS___ACL_GET_LINK (line 279) | SYS___ACL_GET_LINK = 425
constant SYS___ACL_SET_LINK (line 280) | SYS___ACL_SET_LINK = 426
constant SYS___ACL_DELETE_LINK (line 281) | SYS___ACL_DELETE_LINK = 427
constant SYS___ACL_ACLCHECK_LINK (line 282) | SYS___ACL_ACLCHECK_LINK = 428
constant SYS_SIGWAIT (line 283) | SYS_SIGWAIT = 429
constant SYS_THR_CREATE (line 284) | SYS_THR_CREATE = 430
constant SYS_THR_EXIT (line 285) | SYS_THR_EXIT = 431
constant SYS_THR_SELF (line 286) | SYS_THR_SELF = 432
constant SYS_THR_KILL (line 287) | SYS_THR_KILL = 433
constant SYS_JAIL_ATTACH (line 288) | SYS_JAIL_ATTACH = 436
constant SYS_EXTATTR_LIST_FD (line 289) | SYS_EXTATTR_LIST_FD = 437
constant SYS_EXTATTR_LIST_FILE (line 290) | SYS_EXTATTR_LIST_FILE = 438
constant SYS_EXTATTR_LIST_LINK (line 291) | SYS_EXTATTR_LIST_LINK = 439
constant SYS_KSEM_TIMEDWAIT (line 292) | SYS_KSEM_TIMEDWAIT = 441
constant SYS_THR_SUSPEND (line 293) | SYS_THR_SUSPEND = 442
constant SYS_THR_WAKE (line 294) | SYS_THR_WAKE = 443
constant SYS_KLDUNLOADF (line 295) | SYS_KLDUNLOADF = 444
constant SYS_AUDIT (line 296) | SYS_AUDIT = 445
constant SYS_AUDITON (line 297) | SYS_AUDITON = 446
constant SYS_GETAUID (line 298) | SYS_GETAUID = 447
constant SYS_SETAUID (line 299) | SYS_SETAUID = 448
constant SYS_GETAUDIT (line 300) | SYS_GETAUDIT = 449
constant SYS_SETAUDIT (line 301) | SYS_SETAUDIT = 450
constant SYS_GETAUDIT_ADDR (line 302) | SYS_GETAUDIT_ADDR = 451
constant SYS_SETAUDIT_ADDR (line 303) | SYS_SETAUDIT_ADDR = 452
constant SYS_AUDITCTL (line 304) | SYS_AUDITCTL = 453
constant SYS__UMTX_OP (line 305) | SYS__UMTX_OP = 454
constant SYS_THR_NEW (line 306) | SYS_THR_NEW = 455
constant SYS_SIGQUEUE (line 307) | SYS_SIGQUEUE = 456
constant SYS_KMQ_OPEN (line 308) | SYS_KMQ_OPEN = 457
constant SYS_KMQ_SETATTR (line 309) | SYS_KMQ_SETATTR = 458
constant SYS_KMQ_TIMEDRECEIVE (line 310) | SYS_KMQ_TIMEDRECEIVE = 459
constant SYS_KMQ_TIMEDSEND (line 311) | SYS_KMQ_TIMEDSEND = 460
constant SYS_KMQ_NOTIFY (line 312) | SYS_KMQ_NOTIFY = 461
constant SYS_KMQ_UNLINK (line 313) | SYS_KMQ_UNLINK = 462
constant SYS_ABORT2 (line 314) | SYS_ABORT2 = 463
constant SYS_THR_SET_NAME (line 315) | SYS_THR_SET_NAME = 464
constant SYS_AIO_FSYNC (line 316) | SYS_AIO_FSYNC = 465
constant SYS_RTPRIO_THREAD (line 317) | SYS_RTPRIO_THREAD = 466
constant SYS_SCTP_PEELOFF (line 318) | SYS_SCTP_PEELOFF = 471
constant SYS_SCTP_GENERIC_SENDMSG (line 319) | SYS_SCTP_GENERIC_SENDMSG = 472
constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 320) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473
constant SYS_SCTP_GENERIC_RECVMSG (line 321) | SYS_SCTP_GENERIC_RECVMSG = 474
constant SYS_PREAD (line 322) | SYS_PREAD = 475
constant SYS_PWRITE (line 323) | SYS_PWRITE = 476
constant SYS_MMAP (line 324) | SYS_MMAP = 477
constant SYS_LSEEK (line 325) | SYS_LSEEK = 478
constant SYS_TRUNCATE (line 326) | SYS_TRUNCATE = 479
constant SYS_FTRUNCATE (line 327) | SYS_FTRUNCATE = 480
constant SYS_THR_KILL2 (line 328) | SYS_THR_KILL2 = 481
constant SYS_SHM_OPEN (line 329) | SYS_SHM_OPEN = 482
constant SYS_SHM_UNLINK (line 330) | SYS_SHM_UNLINK = 483
constant SYS_CPUSET (line 331) | SYS_CPUSET = 484
constant SYS_CPUSET_SETID (line 332) | SYS_CPUSET_SETID = 485
constant SYS_CPUSET_GETID (line 333) | SYS_CPUSET_GETID = 486
constant SYS_CPUSET_GETAFFINITY (line 334) | SYS_CPUSET_GETAFFINITY = 487
constant SYS_CPUSET_SETAFFINITY (line 335) | SYS_CPUSET_SETAFFINITY = 488
constant SYS_FACCESSAT (line 336) | SYS_FACCESSAT = 489
constant SYS_FCHMODAT (line 337) | SYS_FCHMODAT = 490
constant SYS_FCHOWNAT (line 338) | SYS_FCHOWNAT = 491
constant SYS_FEXECVE (line 339) | SYS_FEXECVE = 492
constant SYS_FSTATAT (line 340) | SYS_FSTATAT = 493
constant SYS_FUTIMESAT (line 341) | SYS_FUTIMESAT = 494
constant SYS_LINKAT (line 342) | SYS_LINKAT = 495
constant SYS_MKDIRAT (line 343) | SYS_MKDIRAT = 496
constant SYS_MKFIFOAT (line 344) | SYS_MKFIFOAT = 497
constant SYS_MKNODAT (line 345) | SYS_MKNODAT = 498
constant SYS_OPENAT (line 346) | SYS_OPENAT = 499
constant SYS_READLINKAT (line 347) | SYS_READLINKAT = 500
constant SYS_RENAMEAT (line 348) | SYS_RENAMEAT = 501
constant SYS_SYMLINKAT (line 349) | SYS_SYMLINKAT = 502
constant SYS_UNLINKAT (line 350) | SYS_UNLINKAT = 503
constant SYS_POSIX_OPENPT (line 351) | SYS_POSIX_OPENPT = 504
constant SYS_GSSD_SYSCALL (line 352) | SYS_GSSD_SYSCALL = 505
constant SYS_JAIL_GET (line 353) | SYS_JAIL_GET = 506
constant SYS_JAIL_SET (line 354) | SYS_JAIL_SET = 507
constant SYS_JAIL_REMOVE (line 355) | SYS_JAIL_REMOVE = 508
constant SYS_CLOSEFROM (line 356) | SYS_CLOSEFROM = 509
constant SYS___SEMCTL (line 357) | SYS___SEMCTL = 510
constant SYS_MSGCTL (line 358) | SYS_MSGCTL = 511
constant SYS_SHMCTL (line 359) | SYS_SHMCTL = 512
constant SYS_LPATHCONF (line 360) | SYS_LPATHCONF = 513
constant SYS___CAP_RIGHTS_GET (line 361) | SYS___CAP_RIGHTS_GET = 515
constant SYS_CAP_ENTER (line 362) | SYS_CAP_ENTER = 516
constant SYS_CAP_GETMODE (line 363) | SYS_CAP_GETMODE = 517
constant SYS_PDFORK (line 364) | SYS_PDFORK = 518
constant SYS_PDKILL (line 365) | SYS_PDKILL = 519
constant SYS_PDGETPID (line 366) | SYS_PDGETPID = 520
constant SYS_PSELECT (line 367) | SYS_PSELECT = 522
constant SYS_GETLOGINCLASS (line 368) | SYS_GETLOGINCLASS = 523
constant SYS_SETLOGINCLASS (line 369) | SYS_SETLOGINCLASS = 524
constant SYS_RCTL_GET_RACCT (line 370) | SYS_RCTL_GET_RACCT = 525
constant SYS_RCTL_GET_RULES (line 371) | SYS_RCTL_GET_RULES = 526
constant SYS_RCTL_GET_LIMITS (line 372) | SYS_RCTL_GET_LIMITS = 527
constant SYS_RCTL_ADD_RULE (line 373) | SYS_RCTL_ADD_RULE = 528
constant SYS_RCTL_REMOVE_RULE (line 374) | SYS_RCTL_REMOVE_RULE = 529
constant SYS_POSIX_FALLOCATE (line 375) | SYS_POSIX_FALLOCATE = 530
constant SYS_POSIX_FADVISE (line 376) | SYS_POSIX_FADVISE = 531
constant SYS_WAIT6 (line 377) | SYS_WAIT6 = 532
constant SYS_CAP_RIGHTS_LIMIT (line 378) | SYS_CAP_RIGHTS_LIMIT = 533
constant SYS_CAP_IOCTLS_LIMIT (line 379) | SYS_CAP_IOCTLS_LIMIT = 534
constant SYS_CAP_IOCTLS_GET (line 380) | SYS_CAP_IOCTLS_GET = 535
constant SYS_CAP_FCNTLS_LIMIT (line 381) | SYS_CAP_FCNTLS_LIMIT = 536
constant SYS_CAP_FCNTLS_GET (line 382) | SYS_CAP_FCNTLS_GET = 537
constant SYS_BINDAT (line 383) | SYS_BINDAT = 538
constant SYS_CONNECTAT (line 384) | SYS_CONNECTAT = 539
constant SYS_CHFLAGSAT (line 385) | SYS_CHFLAGSAT = 540
constant SYS_ACCEPT4 (line 386) | SYS_ACCEPT4 = 541
constant SYS_PIPE2 (line 387) | SYS_PIPE2 = 542
constant SYS_AIO_MLOCK (line 388) | SYS_AIO_MLOCK = 543
constant SYS_PROCCTL (line 389) | SYS_PROCCTL = 544
constant SYS_PPOLL (line 390) | SYS_PPOLL = 545
constant SYS_FUTIMENS (line 391) | SYS_FUTIMENS = 546
constant SYS_UTIMENSAT (line 392) | SYS_UTIMENSAT = 547
constant SYS_NUMA_GETAFFINITY (line 393) | SYS_NUMA_GETAFFINITY = 548
constant SYS_NUMA_SETAFFINITY (line 394) | SYS_NUMA_SETAFFINITY = 549
constant SYS_FDATASYNC (line 395) | SYS_FDATASYNC = 550
FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.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_NLM_SYSCALL (line 112) | SYS_NLM_SYSCALL = 154
constant SYS_NFSSVC (line 113) | SYS_NFSSVC = 155
constant SYS_LGETFH (line 114) | SYS_LGETFH = 160
constant SYS_GETFH (line 115) | SYS_GETFH = 161
constant SYS_SYSARCH (line 116) | SYS_SYSARCH = 165
constant SYS_RTPRIO (line 117) | SYS_RTPRIO = 166
constant SYS_SEMSYS (line 118) | SYS_SEMSYS = 169
constant SYS_MSGSYS (line 119) | SYS_MSGSYS = 170
constant SYS_SHMSYS (line 120) | SYS_SHMSYS = 171
constant SYS_SETFIB (line 121) | SYS_SETFIB = 175
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_STAT (line 126) | SYS_STAT = 188
constant SYS_FSTAT (line 127) | SYS_FSTAT = 189
constant SYS_LSTAT (line 128) | SYS_LSTAT = 190
constant SYS_PATHCONF (line 129) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 130) | SYS_FPATHCONF = 192
constant SYS_GETRLIMIT (line 131) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 132) | SYS_SETRLIMIT = 195
constant SYS_GETDIRENTRIES (line 133) | SYS_GETDIRENTRIES = 196
constant SYS___SYSCTL (line 134) | SYS___SYSCTL = 202
constant SYS_MLOCK (line 135) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 136) | SYS_MUNLOCK = 204
constant SYS_UNDELETE (line 137) | SYS_UNDELETE = 205
constant SYS_FUTIMES (line 138) | SYS_FUTIMES = 206
constant SYS_GETPGID (line 139) | SYS_GETPGID = 207
constant SYS_POLL (line 140) | SYS_POLL = 209
constant SYS_SEMGET (line 141) | SYS_SEMGET = 221
constant SYS_SEMOP (line 142) | SYS_SEMOP = 222
constant SYS_MSGGET (line 143) | SYS_MSGGET = 225
constant SYS_MSGSND (line 144) | SYS_MSGSND = 226
constant SYS_MSGRCV (line 145) | SYS_MSGRCV = 227
constant SYS_SHMAT (line 146) | SYS_SHMAT = 228
constant SYS_SHMDT (line 147) | SYS_SHMDT = 230
constant SYS_SHMGET (line 148) | SYS_SHMGET = 231
constant SYS_CLOCK_GETTIME (line 149) | SYS_CLOCK_GETTIME = 232
constant SYS_CLOCK_SETTIME (line 150) | SYS_CLOCK_SETTIME = 233
constant SYS_CLOCK_GETRES (line 151) | SYS_CLOCK_GETRES = 234
constant SYS_KTIMER_CREATE (line 152) | SYS_KTIMER_CREATE = 235
constant SYS_KTIMER_DELETE (line 153) | SYS_KTIMER_DELETE = 236
constant SYS_KTIMER_SETTIME (line 154) | SYS_KTIMER_SETTIME = 237
constant SYS_KTIMER_GETTIME (line 155) | SYS_KTIMER_GETTIME = 238
constant SYS_KTIMER_GETOVERRUN (line 156) | SYS_KTIMER_GETOVERRUN = 239
constant SYS_NANOSLEEP (line 157) | SYS_NANOSLEEP = 240
constant SYS_FFCLOCK_GETCOUNTER (line 158) | SYS_FFCLOCK_GETCOUNTER = 241
constant SYS_FFCLOCK_SETESTIMATE (line 159) | SYS_FFCLOCK_SETESTIMATE = 242
constant SYS_FFCLOCK_GETESTIMATE (line 160) | SYS_FFCLOCK_GETESTIMATE = 243
constant SYS_CLOCK_NANOSLEEP (line 161) | SYS_CLOCK_NANOSLEEP = 244
constant SYS_CLOCK_GETCPUCLOCKID2 (line 162) | SYS_CLOCK_GETCPUCLOCKID2 = 247
constant SYS_NTP_GETTIME (line 163) | SYS_NTP_GETTIME = 248
constant SYS_MINHERIT (line 164) | SYS_MINHERIT = 250
constant SYS_RFORK (line 165) | SYS_RFORK = 251
constant SYS_OPENBSD_POLL (line 166) | SYS_OPENBSD_POLL = 252
constant SYS_ISSETUGID (line 167) | SYS_ISSETUGID = 253
constant SYS_LCHOWN (line 168) | SYS_LCHOWN = 254
constant SYS_AIO_READ (line 169) | SYS_AIO_READ = 255
constant SYS_AIO_WRITE (line 170) | SYS_AIO_WRITE = 256
constant SYS_LIO_LISTIO (line 171) | SYS_LIO_LISTIO = 257
constant SYS_GETDENTS (line 172) | SYS_GETDENTS = 272
constant SYS_LCHMOD (line 173) | SYS_LCHMOD = 274
constant SYS_LUTIMES (line 174) | SYS_LUTIMES = 276
constant SYS_NSTAT (line 175) | SYS_NSTAT = 278
constant SYS_NFSTAT (line 176) | SYS_NFSTAT = 279
constant SYS_NLSTAT (line 177) | SYS_NLSTAT = 280
constant SYS_PREADV (line 178) | SYS_PREADV = 289
constant SYS_PWRITEV (line 179) | SYS_PWRITEV = 290
constant SYS_FHOPEN (line 180) | SYS_FHOPEN = 298
constant SYS_FHSTAT (line 181) | SYS_FHSTAT = 299
constant SYS_MODNEXT (line 182) | SYS_MODNEXT = 300
constant SYS_MODSTAT (line 183) | SYS_MODSTAT = 301
constant SYS_MODFNEXT (line 184) | SYS_MODFNEXT = 302
constant SYS_MODFIND (line 185) | SYS_MODFIND = 303
constant SYS_KLDLOAD (line 186) | SYS_KLDLOAD = 304
constant SYS_KLDUNLOAD (line 187) | SYS_KLDUNLOAD = 305
constant SYS_KLDFIND (line 188) | SYS_KLDFIND = 306
constant SYS_KLDNEXT (line 189) | SYS_KLDNEXT = 307
constant SYS_KLDSTAT (line 190) | SYS_KLDSTAT = 308
constant SYS_KLDFIRSTMOD (line 191) | SYS_KLDFIRSTMOD = 309
constant SYS_GETSID (line 192) | SYS_GETSID = 310
constant SYS_SETRESUID (line 193) | SYS_SETRESUID = 311
constant SYS_SETRESGID (line 194) | SYS_SETRESGID = 312
constant SYS_AIO_RETURN (line 195) | SYS_AIO_RETURN = 314
constant SYS_AIO_SUSPEND (line 196) | SYS_AIO_SUSPEND = 315
constant SYS_AIO_CANCEL (line 197) | SYS_AIO_CANCEL = 316
constant SYS_AIO_ERROR (line 198) | SYS_AIO_ERROR = 317
constant SYS_YIELD (line 199) | SYS_YIELD = 321
constant SYS_MLOCKALL (line 200) | SYS_MLOCKALL = 324
constant SYS_MUNLOCKALL (line 201) | SYS_MUNLOCKALL = 325
constant SYS___GETCWD (line 202) | SYS___GETCWD = 326
constant SYS_SCHED_SETPARAM (line 203) | SYS_SCHED_SETPARAM = 327
constant SYS_SCHED_GETPARAM (line 204) | SYS_SCHED_GETPARAM = 328
constant SYS_SCHED_SETSCHEDULER (line 205) | SYS_SCHED_SETSCHEDULER = 329
constant SYS_SCHED_GETSCHEDULER (line 206) | SYS_SCHED_GETSCHEDULER = 330
constant SYS_SCHED_YIELD (line 207) | SYS_SCHED_YIELD = 331
constant SYS_SCHED_GET_PRIORITY_MAX (line 208) | SYS_SCHED_GET_PRIORITY_MAX = 332
constant SYS_SCHED_GET_PRIORITY_MIN (line 209) | SYS_SCHED_GET_PRIORITY_MIN = 333
constant SYS_SCHED_RR_GET_INTERVAL (line 210) | SYS_SCHED_RR_GET_INTERVAL = 334
constant SYS_UTRACE (line 211) | SYS_UTRACE = 335
constant SYS_KLDSYM (line 212) | SYS_KLDSYM = 337
constant SYS_JAIL (line 213) | SYS_JAIL = 338
constant SYS_SIGPROCMASK (line 214) | SYS_SIGPROCMASK = 340
constant SYS_SIGSUSPEND (line 215) | SYS_SIGSUSPEND = 341
constant SYS_SIGPENDING (line 216) | SYS_SIGPENDING = 343
constant SYS_SIGTIMEDWAIT (line 217) | SYS_SIGTIMEDWAIT = 345
constant SYS_SIGWAITINFO (line 218) | SYS_SIGWAITINFO = 346
constant SYS___ACL_GET_FILE (line 219) | SYS___ACL_GET_FILE = 347
constant SYS___ACL_SET_FILE (line 220) | SYS___ACL_SET_FILE = 348
constant SYS___ACL_GET_FD (line 221) | SYS___ACL_GET_FD = 349
constant SYS___ACL_SET_FD (line 222) | SYS___ACL_SET_FD = 350
constant SYS___ACL_DELETE_FILE (line 223) | SYS___ACL_DELETE_FILE = 351
constant SYS___ACL_DELETE_FD (line 224) | SYS___ACL_DELETE_FD = 352
constant SYS___ACL_ACLCHECK_FILE (line 225) | SYS___ACL_ACLCHECK_FILE = 353
constant SYS___ACL_ACLCHECK_FD (line 226) | SYS___ACL_ACLCHECK_FD = 354
constant SYS_EXTATTRCTL (line 227) | SYS_EXTATTRCTL = 355
constant SYS_EXTATTR_SET_FILE (line 228) | SYS_EXTATTR_SET_FILE = 356
constant SYS_EXTATTR_GET_FILE (line 229) | SYS_EXTATTR_GET_FILE = 357
constant SYS_EXTATTR_DELETE_FILE (line 230) | SYS_EXTATTR_DELETE_FILE = 358
constant SYS_AIO_WAITCOMPLETE (line 231) | SYS_AIO_WAITCOMPLETE = 359
constant SYS_GETRESUID (line 232) | SYS_GETRESUID = 360
constant SYS_GETRESGID (line 233) | SYS_GETRESGID = 361
constant SYS_KQUEUE (line 234) | SYS_KQUEUE = 362
constant SYS_KEVENT (line 235) | SYS_KEVENT = 363
constant SYS_EXTATTR_SET_FD (line 236) | SYS_EXTATTR_SET_FD = 371
constant SYS_EXTATTR_GET_FD (line 237) | SYS_EXTATTR_GET_FD = 372
constant SYS_EXTATTR_DELETE_FD (line 238) | SYS_EXTATTR_DELETE_FD = 373
constant SYS___SETUGID (line 239) | SYS___SETUGID = 374
constant SYS_EACCESS (line 240) | SYS_EACCESS = 376
constant SYS_NMOUNT (line 241) | SYS_NMOUNT = 378
constant SYS___MAC_GET_PROC (line 242) | SYS___MAC_GET_PROC = 384
constant SYS___MAC_SET_PROC (line 243) | SYS___MAC_SET_PROC = 385
constant SYS___MAC_GET_FD (line 244) | SYS___MAC_GET_FD = 386
constant SYS___MAC_GET_FILE (line 245) | SYS___MAC_GET_FILE = 387
constant SYS___MAC_SET_FD (line 246) | SYS___MAC_SET_FD = 388
constant SYS___MAC_SET_FILE (line 247) | SYS___MAC_SET_FILE = 389
constant SYS_KENV (line 248) | SYS_KENV = 390
constant SYS_LCHFLAGS (line 249) | SYS_LCHFLAGS = 391
constant SYS_UUIDGEN (line 250) | SYS_UUIDGEN = 392
constant SYS_SENDFILE (line 251) | SYS_SENDFILE = 393
constant SYS_MAC_SYSCALL (line 252) | SYS_MAC_SYSCALL = 394
constant SYS_GETFSSTAT (line 253) | SYS_GETFSSTAT = 395
constant SYS_STATFS (line 254) | SYS_STATFS = 396
constant SYS_FSTATFS (line 255) | SYS_FSTATFS = 397
constant SYS_FHSTATFS (line 256) | SYS_FHSTATFS = 398
constant SYS_KSEM_CLOSE (line 257) | SYS_KSEM_CLOSE = 400
constant SYS_KSEM_POST (line 258) | SYS_KSEM_POST = 401
constant SYS_KSEM_WAIT (line 259) | SYS_KSEM_WAIT = 402
constant SYS_KSEM_TRYWAIT (line 260) | SYS_KSEM_TRYWAIT = 403
constant SYS_KSEM_INIT (line 261) | SYS_KSEM_INIT = 404
constant SYS_KSEM_OPEN (line 262) | SYS_KSEM_OPEN = 405
constant SYS_KSEM_UNLINK (line 263) | SYS_KSEM_UNLINK = 406
constant SYS_KSEM_GETVALUE (line 264) | SYS_KSEM_GETVALUE = 407
constant SYS_KSEM_DESTROY (line 265) | SYS_KSEM_DESTROY = 408
constant SYS___MAC_GET_PID (line 266) | SYS___MAC_GET_PID = 409
constant SYS___MAC_GET_LINK (line 267) | SYS___MAC_GET_LINK = 410
constant SYS___MAC_SET_LINK (line 268) | SYS___MAC_SET_LINK = 411
constant SYS_EXTATTR_SET_LINK (line 269) | SYS_EXTATTR_SET_LINK = 412
constant SYS_EXTATTR_GET_LINK (line 270) | SYS_EXTATTR_GET_LINK = 413
constant SYS_EXTATTR_DELETE_LINK (line 271) | SYS_EXTATTR_DELETE_LINK = 414
constant SYS___MAC_EXECVE (line 272) | SYS___MAC_EXECVE = 415
constant SYS_SIGACTION (line 273) | SYS_SIGACTION = 416
constant SYS_SIGRETURN (line 274) | SYS_SIGRETURN = 417
constant SYS_GETCONTEXT (line 275) | SYS_GETCONTEXT = 421
constant SYS_SETCONTEXT (line 276) | SYS_SETCONTEXT = 422
constant SYS_SWAPCONTEXT (line 277) | SYS_SWAPCONTEXT = 423
constant SYS_SWAPOFF (line 278) | SYS_SWAPOFF = 424
constant SYS___ACL_GET_LINK (line 279) | SYS___ACL_GET_LINK = 425
constant SYS___ACL_SET_LINK (line 280) | SYS___ACL_SET_LINK = 426
constant SYS___ACL_DELETE_LINK (line 281) | SYS___ACL_DELETE_LINK = 427
constant SYS___ACL_ACLCHECK_LINK (line 282) | SYS___ACL_ACLCHECK_LINK = 428
constant SYS_SIGWAIT (line 283) | SYS_SIGWAIT = 429
constant SYS_THR_CREATE (line 284) | SYS_THR_CREATE = 430
constant SYS_THR_EXIT (line 285) | SYS_THR_EXIT = 431
constant SYS_THR_SELF (line 286) | SYS_THR_SELF = 432
constant SYS_THR_KILL (line 287) | SYS_THR_KILL = 433
constant SYS_JAIL_ATTACH (line 288) | SYS_JAIL_ATTACH = 436
constant SYS_EXTATTR_LIST_FD (line 289) | SYS_EXTATTR_LIST_FD = 437
constant SYS_EXTATTR_LIST_FILE (line 290) | SYS_EXTATTR_LIST_FILE = 438
constant SYS_EXTATTR_LIST_LINK (line 291) | SYS_EXTATTR_LIST_LINK = 439
constant SYS_KSEM_TIMEDWAIT (line 292) | SYS_KSEM_TIMEDWAIT = 441
constant SYS_THR_SUSPEND (line 293) | SYS_THR_SUSPEND = 442
constant SYS_THR_WAKE (line 294) | SYS_THR_WAKE = 443
constant SYS_KLDUNLOADF (line 295) | SYS_KLDUNLOADF = 444
constant SYS_AUDIT (line 296) | SYS_AUDIT = 445
constant SYS_AUDITON (line 297) | SYS_AUDITON = 446
constant SYS_GETAUID (line 298) | SYS_GETAUID = 447
constant SYS_SETAUID (line 299) | SYS_SETAUID = 448
constant SYS_GETAUDIT (line 300) | SYS_GETAUDIT = 449
constant SYS_SETAUDIT (line 301) | SYS_SETAUDIT = 450
constant SYS_GETAUDIT_ADDR (line 302) | SYS_GETAUDIT_ADDR = 451
constant SYS_SETAUDIT_ADDR (line 303) | SYS_SETAUDIT_ADDR = 452
constant SYS_AUDITCTL (line 304) | SYS_AUDITCTL = 453
constant SYS__UMTX_OP (line 305) | SYS__UMTX_OP = 454
constant SYS_THR_NEW (line 306) | SYS_THR_NEW = 455
constant SYS_SIGQUEUE (line 307) | SYS_SIGQUEUE = 456
constant SYS_KMQ_OPEN (line 308) | SYS_KMQ_OPEN = 457
constant SYS_KMQ_SETATTR (line 309) | SYS_KMQ_SETATTR = 458
constant SYS_KMQ_TIMEDRECEIVE (line 310) | SYS_KMQ_TIMEDRECEIVE = 459
constant SYS_KMQ_TIMEDSEND (line 311) | SYS_KMQ_TIMEDSEND = 460
constant SYS_KMQ_NOTIFY (line 312) | SYS_KMQ_NOTIFY = 461
constant SYS_KMQ_UNLINK (line 313) | SYS_KMQ_UNLINK = 462
constant SYS_ABORT2 (line 314) | SYS_ABORT2 = 463
constant SYS_THR_SET_NAME (line 315) | SYS_THR_SET_NAME = 464
constant SYS_AIO_FSYNC (line 316) | SYS_AIO_FSYNC = 465
constant SYS_RTPRIO_THREAD (line 317) | SYS_RTPRIO_THREAD = 466
constant SYS_SCTP_PEELOFF (line 318) | SYS_SCTP_PEELOFF = 471
constant SYS_SCTP_GENERIC_SENDMSG (line 319) | SYS_SCTP_GENERIC_SENDMSG = 472
constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 320) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473
constant SYS_SCTP_GENERIC_RECVMSG (line 321) | SYS_SCTP_GENERIC_RECVMSG = 474
constant SYS_PREAD (line 322) | SYS_PREAD = 475
constant SYS_PWRITE (line 323) | SYS_PWRITE = 476
constant SYS_MMAP (line 324) | SYS_MMAP = 477
constant SYS_LSEEK (line 325) | SYS_LSEEK = 478
constant SYS_TRUNCATE (line 326) | SYS_TRUNCATE = 479
constant SYS_FTRUNCATE (line 327) | SYS_FTRUNCATE = 480
constant SYS_THR_KILL2 (line 328) | SYS_THR_KILL2 = 481
constant SYS_SHM_OPEN (line 329) | SYS_SHM_OPEN = 482
constant SYS_SHM_UNLINK (line 330) | SYS_SHM_UNLINK = 483
constant SYS_CPUSET (line 331) | SYS_CPUSET = 484
constant SYS_CPUSET_SETID (line 332) | SYS_CPUSET_SETID = 485
constant SYS_CPUSET_GETID (line 333) | SYS_CPUSET_GETID = 486
constant SYS_CPUSET_GETAFFINITY (line 334) | SYS_CPUSET_GETAFFINITY = 487
constant SYS_CPUSET_SETAFFINITY (line 335) | SYS_CPUSET_SETAFFINITY = 488
constant SYS_FACCESSAT (line 336) | SYS_FACCESSAT = 489
constant SYS_FCHMODAT (line 337) | SYS_FCHMODAT = 490
constant SYS_FCHOWNAT (line 338) | SYS_FCHOWNAT = 491
constant SYS_FEXECVE (line 339) | SYS_FEXECVE = 492
constant SYS_FSTATAT (line 340) | SYS_FSTATAT = 493
constant SYS_FUTIMESAT (line 341) | SYS_FUTIMESAT = 494
constant SYS_LINKAT (line 342) | SYS_LINKAT = 495
constant SYS_MKDIRAT (line 343) | SYS_MKDIRAT = 496
constant SYS_MKFIFOAT (line 344) | SYS_MKFIFOAT = 497
constant SYS_MKNODAT (line 345) | SYS_MKNODAT = 498
constant SYS_OPENAT (line 346) | SYS_OPENAT = 499
constant SYS_READLINKAT (line 347) | SYS_READLINKAT = 500
constant SYS_RENAMEAT (line 348) | SYS_RENAMEAT = 501
constant SYS_SYMLINKAT (line 349) | SYS_SYMLINKAT = 502
constant SYS_UNLINKAT (line 350) | SYS_UNLINKAT = 503
constant SYS_POSIX_OPENPT (line 351) | SYS_POSIX_OPENPT = 504
constant SYS_GSSD_SYSCALL (line 352) | SYS_GSSD_SYSCALL = 505
constant SYS_JAIL_GET (line 353) | SYS_JAIL_GET = 506
constant SYS_JAIL_SET (line 354) | SYS_JAIL_SET = 507
constant SYS_JAIL_REMOVE (line 355) | SYS_JAIL_REMOVE = 508
constant SYS_CLOSEFROM (line 356) | SYS_CLOSEFROM = 509
constant SYS___SEMCTL (line 357) | SYS___SEMCTL = 510
constant SYS_MSGCTL (line 358) | SYS_MSGCTL = 511
constant SYS_SHMCTL (line 359) | SYS_SHMCTL = 512
constant SYS_LPATHCONF (line 360) | SYS_LPATHCONF = 513
constant SYS___CAP_RIGHTS_GET (line 361) | SYS___CAP_RIGHTS_GET = 515
constant SYS_CAP_ENTER (line 362) | SYS_CAP_ENTER = 516
constant SYS_CAP_GETMODE (line 363) | SYS_CAP_GETMODE = 517
constant SYS_PDFORK (line 364) | SYS_PDFORK = 518
constant SYS_PDKILL (line 365) | SYS_PDKILL = 519
constant SYS_PDGETPID (line 366) | SYS_PDGETPID = 520
constant SYS_PSELECT (line 367) | SYS_PSELECT = 522
constant SYS_GETLOGINCLASS (line 368) | SYS_GETLOGINCLASS = 523
constant SYS_SETLOGINCLASS (line 369) | SYS_SETLOGINCLASS = 524
constant SYS_RCTL_GET_RACCT (line 370) | SYS_RCTL_GET_RACCT = 525
constant SYS_RCTL_GET_RULES (line 371) | SYS_RCTL_GET_RULES = 526
constant SYS_RCTL_GET_LIMITS (line 372) | SYS_RCTL_GET_LIMITS = 527
constant SYS_RCTL_ADD_RULE (line 373) | SYS_RCTL_ADD_RULE = 528
constant SYS_RCTL_REMOVE_RULE (line 374) | SYS_RCTL_REMOVE_RULE = 529
constant SYS_POSIX_FALLOCATE (line 375) | SYS_POSIX_FALLOCATE = 530
constant SYS_POSIX_FADVISE (line 376) | SYS_POSIX_FADVISE = 531
constant SYS_WAIT6 (line 377) | SYS_WAIT6 = 532
constant SYS_CAP_RIGHTS_LIMIT (line 378) | SYS_CAP_RIGHTS_LIMIT = 533
constant SYS_CAP_IOCTLS_LIMIT (line 379) | SYS_CAP_IOCTLS_LIMIT = 534
constant SYS_CAP_IOCTLS_GET (line 380) | SYS_CAP_IOCTLS_GET = 535
constant SYS_CAP_FCNTLS_LIMIT (line 381) | SYS_CAP_FCNTLS_LIMIT = 536
constant SYS_CAP_FCNTLS_GET (line 382) | SYS_CAP_FCNTLS_GET = 537
constant SYS_BINDAT (line 383) | SYS_BINDAT = 538
constant SYS_CONNECTAT (line 384) | SYS_CONNECTAT = 539
constant SYS_CHFLAGSAT (line 385) | SYS_CHFLAGSAT = 540
constant SYS_ACCEPT4 (line 386) | SYS_ACCEPT4 = 541
constant SYS_PIPE2 (line 387) | SYS_PIPE2 = 542
constant SYS_AIO_MLOCK (line 388) | SYS_AIO_MLOCK = 543
constant SYS_PROCCTL (line 389) | SYS_PROCCTL = 544
constant SYS_PPOLL (line 390) | SYS_PPOLL = 545
constant SYS_FUTIMENS (line 391) | SYS_FUTIMENS = 546
constant SYS_UTIMENSAT (line 392) | SYS_UTIMENSAT = 547
constant SYS_NUMA_GETAFFINITY (line 393) | SYS_NUMA_GETAFFINITY = 548
constant SYS_NUMA_SETAFFINITY (line 394) | SYS_NUMA_SETAFFINITY = 549
constant SYS_FDATASYNC (line 395) | SYS_FDATASYNC = 550
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
constant SYS_STATX (line 388) | SYS_STATX = 383
constant SYS_ARCH_PRCTL (line 389) | SYS_ARCH_PRCTL = 384
constant SYS_IO_PGETEVENTS (line 390) | SYS_IO_PGETEVENTS = 385
constant SYS_RSEQ (line 391) | SYS_RSEQ = 386
constant SYS_SEMGET (line 392) | SYS_SEMGET = 393
constant SYS_SEMCTL (line 393) | SYS_SEMCTL = 394
constant SYS_SHMGET (line 394) | SYS_SHMGET = 395
constant SYS_SHMCTL (line 395) | SYS_SHMCTL = 396
constant SYS_SHMAT (line 396) | SYS_SHMAT = 397
constant SYS_SHMDT (line 397) | SYS_SHMDT = 398
constant SYS_MSGGET (line 398) | SYS_MSGGET = 399
constant SYS_MSGSND (line 399) | SYS_MSGSND = 400
constant SYS_MSGRCV (line 400) | SYS_MSGRCV = 401
constant SYS_MSGCTL (line 401) | SYS_MSGCTL = 402
constant SYS_CLOCK_GETTIME64 (line 402) | SYS_CLOCK_GETTIME64 = 403
constant SYS_CLOCK_SETTIME64 (line 403) | SYS_CLOCK_SETTIME64 = 404
constant SYS_CLOCK_ADJTIME64 (line 404) | SYS_CLOCK_ADJTIME64 = 405
constant SYS_CLOCK_GETRES_TIME64 (line 405) | SYS_CLOCK_GETRES_TIME64 = 406
constant SYS_CLOCK_NANOSLEEP_TIME64 (line 406) | SYS_CLOCK_NANOSLEEP_TIME64 = 407
constant SYS_TIMER_GETTIME64 (line 407) | SYS_TIMER_GETTIME64 = 408
constant SYS_TIMER_SETTIME64 (line 408) | SYS_TIMER_SETTIME64 = 409
constant SYS_TIMERFD_GETTIME64 (line 409) | SYS_TIMERFD_GETTIME64 = 410
constant SYS_TIMERFD_SETTIME64 (line 410) | SYS_TIMERFD_SETTIME64 = 411
constant SYS_UTIMENSAT_TIME64 (line 411) | SYS_UTIMENSAT_TIME64 = 412
constant SYS_PSELECT6_TIME64 (line 412) | SYS_PSELECT6_TIME64 = 413
constant SYS_PPOLL_TIME64 (line 413) | SYS_PPOLL_TIME64 = 414
constant SYS_IO_PGETEVENTS_TIME64 (line 414) | SYS_IO_PGETEVENTS_TIME64 = 416
constant SYS_RECVMMSG_TIME64 (line 415) | SYS_RECVMMSG_TIME64 = 417
constant SYS_MQ_TIMEDSEND_TIME64 (line 416) | SYS_MQ_TIMEDSEND_TIME64 = 418
constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 417) | SYS_MQ_TIMEDRECEIVE_TIME64 = 419
constant SYS_SEMTIMEDOP_TIME64 (line 418) | SYS_SEMTIMEDOP_TIME64 = 420
constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 419) | SYS_RT_SIGTIMEDWAIT_TIME64 = 421
constant SYS_FUTEX_TIME64 (line 420) | SYS_FUTEX_TIME64 = 422
constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 421) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 423
constant SYS_PIDFD_SEND_SIGNAL (line 422) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 423) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 424) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 425) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 426) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 427) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 428) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 429) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 430) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 431) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 432) | SYS_PIDFD_OPEN = 434
constant SYS_CLONE3 (line 433) | SYS_CLONE3 = 435
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
constant SYS_STATX (line 341) | SYS_STATX = 332
constant SYS_IO_PGETEVENTS (line 342) | SYS_IO_PGETEVENTS = 333
constant SYS_RSEQ (line 343) | SYS_RSEQ = 334
constant SYS_PIDFD_SEND_SIGNAL (line 344) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 345) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 346) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 347) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 348) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 349) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 350) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 351) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 352) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 353) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 354) | SYS_PIDFD_OPEN = 434
constant SYS_CLONE3 (line 355) | SYS_CLONE3 = 435
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
constant SYS_STATX (line 361) | SYS_STATX = 397
constant SYS_RSEQ (line 362) | SYS_RSEQ = 398
constant SYS_IO_PGETEVENTS (line 363) | SYS_IO_PGETEVENTS = 399
constant SYS_MIGRATE_PAGES (line 364) | SYS_MIGRATE_PAGES = 400
constant SYS_KEXEC_FILE_LOAD (line 365) | SYS_KEXEC_FILE_LOAD = 401
constant SYS_CLOCK_GETTIME64 (line 366) | SYS_CLOCK_GETTIME64 = 403
constant SYS_CLOCK_SETTIME64 (line 367) | SYS_CLOCK_SETTIME64 = 404
constant SYS_CLOCK_ADJTIME64 (line 368) | SYS_CLOCK_ADJTIME64 = 405
constant SYS_CLOCK_GETRES_TIME64 (line 369) | SYS_CLOCK_GETRES_TIME64 = 406
constant SYS_CLOCK_NANOSLEEP_TIME64 (line 370) | SYS_CLOCK_NANOSLEEP_TIME64 = 407
constant SYS_TIMER_GETTIME64 (line 371) | SYS_TIMER_GETTIME64 = 408
constant SYS_TIMER_SETTIME64 (line 372) | SYS_TIMER_SETTIME64 = 409
constant SYS_TIMERFD_GETTIME64 (line 373) | SYS_TIMERFD_GETTIME64 = 410
constant SYS_TIMERFD_SETTIME64 (line 374) | SYS_TIMERFD_SETTIME64 = 411
constant SYS_UTIMENSAT_TIME64 (line 375) | SYS_UTIMENSAT_TIME64 = 412
constant SYS_PSELECT6_TIME64 (line 376) | SYS_PSELECT6_TIME64 = 413
constant SYS_PPOLL_TIME64 (line 377) | SYS_PPOLL_TIME64 = 414
constant SYS_IO_PGETEVENTS_TIME64 (line 378) | SYS_IO_PGETEVENTS_TIME64 = 416
constant SYS_RECVMMSG_TIME64 (line 379) | SYS_RECVMMSG_TIME64 = 417
constant SYS_MQ_TIMEDSEND_TIME64 (line 380) | SYS_MQ_TIMEDSEND_TIME64 = 418
constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 381) | SYS_MQ_TIMEDRECEIVE_TIME64 = 419
constant SYS_SEMTIMEDOP_TIME64 (line 382) | SYS_SEMTIMEDOP_TIME64 = 420
constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 383) | SYS_RT_SIGTIMEDWAIT_TIME64 = 421
constant SYS_FUTEX_TIME64 (line 384) | SYS_FUTEX_TIME64 = 422
constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 385) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 423
constant SYS_PIDFD_SEND_SIGNAL (line 386) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 387) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 388) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 389) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 390) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 391) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 392) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 393) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 394) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 395) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 396) | SYS_PIDFD_OPEN = 434
constant SYS_CLONE3 (line 397) | SYS_CLONE3 = 435
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
constant SYS_STATX (line 285) | SYS_STATX = 291
constant SYS_IO_PGETEVENTS (line 286) | SYS_IO_PGETEVENTS = 292
constant SYS_RSEQ (line 287) | SYS_RSEQ = 293
constant SYS_KEXEC_FILE_LOAD (line 288) | SYS_KEXEC_FILE_LOAD = 294
constant SYS_PIDFD_SEND_SIGNAL (line 289) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 290) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 291) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 292) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 293) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 294) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 295) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 296) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 297) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 298) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 299) | SYS_PIDFD_OPEN = 434
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
constant SYS_STATX (line 374) | SYS_STATX = 4366
constant SYS_RSEQ (line 375) | SYS_RSEQ = 4367
constant SYS_IO_PGETEVENTS (line 376) | SYS_IO_PGETEVENTS = 4368
constant SYS_SEMGET (line 377) | SYS_SEMGET = 4393
constant SYS_SEMCTL (line 378) | SYS_SEMCTL = 4394
constant SYS_SHMGET (line 379) | SYS_SHMGET = 4395
constant SYS_SHMCTL (line 380) | SYS_SHMCTL = 4396
constant SYS_SHMAT (line 381) | SYS_SHMAT = 4397
constant SYS_SHMDT (line 382) | SYS_SHMDT = 4398
constant SYS_MSGGET (line 383) | SYS_MSGGET = 4399
constant SYS_MSGSND (line 384) | SYS_MSGSND = 4400
constant SYS_MSGRCV (line 385) | SYS_MSGRCV = 4401
constant SYS_MSGCTL (line 386) | SYS_MSGCTL = 4402
constant SYS_CLOCK_GETTIME64 (line 387) | SYS_CLOCK_GETTIME64 = 4403
constant SYS_CLOCK_SETTIME64 (line 388) | SYS_CLOCK_SETTIME64 = 4404
constant SYS_CLOCK_ADJTIME64 (line 389) | SYS_CLOCK_ADJTIME64 = 4405
constant SYS_CLOCK_GETRES_TIME64 (line 390) | SYS_CLOCK_GETRES_TIME64 = 4406
constant SYS_CLOCK_NANOSLEEP_TIME64 (line 391) | SYS_CLOCK_NANOSLEEP_TIME64 = 4407
constant SYS_TIMER_GETTIME64 (line 392) | SYS_TIMER_GETTIME64 = 4408
constant SYS_TIMER_SETTIME64 (line 393) | SYS_TIMER_SETTIME64 = 4409
constant SYS_TIMERFD_GETTIME64 (line 394) | SYS_TIMERFD_GETTIME64 = 4410
constant SYS_TIMERFD_SETTIME64 (line 395) | SYS_TIMERFD_SETTIME64 = 4411
constant SYS_UTIMENSAT_TIME64 (line 396) | SYS_UTIMENSAT_TIME64 = 4412
constant SYS_PSELECT6_TIME64 (line 397) | SYS_PSELECT6_TIME64 = 4413
constant SYS_PPOLL_TIME64 (line 398) | SYS_PPOLL_TIME64 = 4414
constant SYS_IO_PGETEVENTS_TIME64 (line 399) | SYS_IO_PGETEVENTS_TIME64 = 4416
constant SYS_RECVMMSG_TIME64 (line 400) | SYS_RECVMMSG_TIME64 = 4417
constant SYS_MQ_TIMEDSEND_TIME64 (line 401) | SYS_MQ_TIMEDSEND_TIME64 = 4418
constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 402) | SYS_MQ_TIMEDRECEIVE_TIME64 = 4419
constant SYS_SEMTIMEDOP_TIME64 (line 403) | SYS_SEMTIMEDOP_TIME64 = 4420
constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 404) | SYS_RT_SIGTIMEDWAIT_TIME64 = 4421
constant SYS_FUTEX_TIME64 (line 405) | SYS_FUTEX_TIME64 = 4422
constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 406) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 4423
constant SYS_PIDFD_SEND_SIGNAL (line 407) | SYS_PIDFD_SEND_SIGNAL = 4424
constant SYS_IO_URING_SETUP (line 408) | SYS_IO_URING_SETUP = 4425
constant SYS_IO_URING_ENTER (line 409) | SYS_IO_URING_ENTER = 4426
constant SYS_IO_URING_REGISTER (line 410) | SYS_IO_URING_REGISTER = 4427
constant SYS_OPEN_TREE (line 411) | SYS_OPEN_TREE = 4428
constant SYS_MOVE_MOUNT (line 412) | SYS_MOVE_MOUNT = 4429
constant SYS_FSOPEN (line 413) | SYS_FSOPEN = 4430
constant SYS_FSCONFIG (line 414) | SYS_FSCONFIG = 4431
constant SYS_FSMOUNT (line 415) | SYS_FSMOUNT = 4432
constant SYS_FSPICK (line 416) | SYS_FSPICK = 4433
constant SYS_PIDFD_OPEN (line 417) | SYS_PIDFD_OPEN = 4434
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
constant SYS_STATX (line 334) | SYS_STATX = 5326
constant SYS_RSEQ (line 335) | SYS_RSEQ = 5327
constant SYS_IO_PGETEVENTS (line 336) | SYS_IO_PGETEVENTS = 5328
constant SYS_PIDFD_SEND_SIGNAL (line 337) | SYS_PIDFD_SEND_SIGNAL = 5424
constant SYS_IO_URING_SETUP (line 338) | SYS_IO_URING_SETUP = 5425
constant SYS_IO_URING_ENTER (line 339) | SYS_IO_URING_ENTER = 5426
constant SYS_IO_URING_REGISTER (line 340) | SYS_IO_URING_REGISTER = 5427
constant SYS_OPEN_TREE (line 341) | SYS_OPEN_TREE = 5428
constant SYS_MOVE_MOUNT (line 342) | SYS_MOVE_MOUNT = 5429
constant SYS_FSOPEN (line 343) | SYS_FSOPEN = 5430
constant SYS_FSCONFIG (line 344) | SYS_FSCONFIG = 5431
constant SYS_FSMOUNT (line 345) | SYS_FSMOUNT = 5432
constant SYS_FSPICK (line 346) | SYS_FSPICK = 5433
constant SYS_PIDFD_OPEN (line 347) | SYS_PIDFD_OPEN = 5434
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
constant SYS_STATX (line 334) | SYS_STATX = 5326
constant SYS_RSEQ (line 335) | SYS_RSEQ = 5327
constant SYS_IO_PGETEVENTS (line 336) | SYS_IO_PGETEVENTS = 5328
constant SYS_PIDFD_SEND_SIGNAL (line 337) | SYS_PIDFD_SEND_SIGNAL = 5424
constant SYS_IO_URING_SETUP (line 338) | SYS_IO_URING_SETUP = 5425
constant SYS_IO_URING_ENTER (line 339) | SYS_IO_URING_ENTER = 5426
constant SYS_IO_URING_REGISTER (line 340) | SYS_IO_URING_REGISTER = 5427
constant SYS_OPEN_TREE (line 341) | SYS_OPEN_TREE = 5428
constant SYS_MOVE_MOUNT (line 342) | SYS_MOVE_MOUNT = 5429
constant SYS_FSOPEN (line 343) | SYS_FSOPEN = 5430
constant SYS_FSCONFIG (line 344) | SYS_FSCONFIG = 5431
constant SYS_FSMOUNT (line 345) | SYS_FSMOUNT = 5432
constant SYS_FSPICK (line 346) | SYS_FSPICK = 5433
constant SYS_PIDFD_OPEN (line 347) | SYS_PIDFD_OPEN = 5434
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
constant SYS_STATX (line 374) | SYS_STATX = 4366
constant SYS_RSEQ (line 375) | SYS_RSEQ = 4367
constant SYS_IO_PGETEVENTS (line 376) | SYS_IO_PGETEVENTS = 4368
constant SYS_SEMGET (line 377) | SYS_SEMGET = 4393
constant SYS_SEMCTL (line 378) | SYS_SEMCTL = 4394
constant SYS_SHMGET (line 379) | SYS_SHMGET = 4395
constant SYS_SHMCTL (line 380) | SYS_SHMCTL = 4396
constant SYS_SHMAT (line 381) | SYS_SHMAT = 4397
constant SYS_SHMDT (line 382) | SYS_SHMDT = 4398
constant SYS_MSGGET (line 383) | SYS_MSGGET = 4399
constant SYS_MSGSND (line 384) | SYS_MSGSND = 4400
constant SYS_MSGRCV (line 385) | SYS_MSGRCV = 4401
constant SYS_MSGCTL (line 386) | SYS_MSGCTL = 4402
constant SYS_CLOCK_GETTIME64 (line 387) | SYS_CLOCK_GETTIME64 = 4403
constant SYS_CLOCK_SETTIME64 (line 388) | SYS_CLOCK_SETTIME64 = 4404
constant SYS_CLOCK_ADJTIME64 (line 389) | SYS_CLOCK_ADJTIME64 = 4405
constant SYS_CLOCK_GETRES_TIME64 (line 390) | SYS_CLOCK_GETRES_TIME64 = 4406
constant SYS_CLOCK_NANOSLEEP_TIME64 (line 391) | SYS_CLOCK_NANOSLEEP_TIME64 = 4407
constant SYS_TIMER_GETTIME64 (line 392) | SYS_TIMER_GETTIME64 = 4408
constant SYS_TIMER_SETTIME64 (line 393) | SYS_TIMER_SETTIME64 = 4409
constant SYS_TIMERFD_GETTIME64 (line 394) | SYS_TIMERFD_GETTIME64 = 4410
constant SYS_TIMERFD_SETTIME64 (line 395) | SYS_TIMERFD_SETTIME64 = 4411
constant SYS_UTIMENSAT_TIME64 (line 396) | SYS_UTIMENSAT_TIME64 = 4412
constant SYS_PSELECT6_TIME64 (line 397) | SYS_PSELECT6_TIME64 = 4413
constant SYS_PPOLL_TIME64 (line 398) | SYS_PPOLL_TIME64 = 4414
constant SYS_IO_PGETEVENTS_TIME64 (line 399) | SYS_IO_PGETEVENTS_TIME64 = 4416
constant SYS_RECVMMSG_TIME64 (line 400) | SYS_RECVMMSG_TIME64 = 4417
constant SYS_MQ_TIMEDSEND_TIME64 (line 401) | SYS_MQ_TIMEDSEND_TIME64 = 4418
constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 402) | SYS_MQ_TIMEDRECEIVE_TIME64 = 4419
constant SYS_SEMTIMEDOP_TIME64 (line 403) | SYS_SEMTIMEDOP_TIME64 = 4420
constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 404) | SYS_RT_SIGTIMEDWAIT_TIME64 = 4421
constant SYS_FUTEX_TIME64 (line 405) | SYS_FUTEX_TIME64 = 4422
constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 406) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 4423
constant SYS_PIDFD_SEND_SIGNAL (line 407) | SYS_PIDFD_SEND_SIGNAL = 4424
constant SYS_IO_URING_SETUP (line 408) | SYS_IO_URING_SETUP = 4425
constant SYS_IO_URING_ENTER (line 409) | SYS_IO_URING_ENTER = 4426
constant SYS_IO_URING_REGISTER (line 410) | SYS_IO_URING_REGISTER = 4427
constant SYS_OPEN_TREE (line 411) | SYS_OPEN_TREE = 4428
constant SYS_MOVE_MOUNT (line 412) | SYS_MOVE_MOUNT = 4429
constant SYS_FSOPEN (line 413) | SYS_FSOPEN = 4430
constant SYS_FSCONFIG (line 414) | SYS_FSCONFIG = 4431
constant SYS_FSMOUNT (line 415) | SYS_FSMOUNT = 4432
constant SYS_FSPICK (line 416) | SYS_FSPICK = 4433
constant SYS_PIDFD_OPEN (line 417) | SYS_PIDFD_OPEN = 4434
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
constant SYS_STATX (line 369) | SYS_STATX = 383
constant SYS_PKEY_ALLOC (line 370) | SYS_PKEY_ALLOC = 384
constant SYS_PKEY_FREE (line 371) | SYS_PKEY_FREE = 385
constant SYS_PKEY_MPROTECT (line 372) | SYS_PKEY_MPROTECT = 386
constant SYS_RSEQ (line 373) | SYS_RSEQ = 387
constant SYS_IO_PGETEVENTS (line 374) | SYS_IO_PGETEVENTS = 388
constant SYS_SEMTIMEDOP (line 375) | SYS_SEMTIMEDOP = 392
constant SYS_SEMGET (line 376) | SYS_SEMGET = 393
constant SYS_SEMCTL (line 377) | SYS_SEMCTL = 394
constant SYS_SHMGET (line 378) | SYS_SHMGET = 395
constant SYS_SHMCTL (line 379) | SYS_SHMCTL = 396
constant SYS_SHMAT (line 380) | SYS_SHMAT = 397
constant SYS_SHMDT (line 381) | SYS_SHMDT = 398
constant SYS_MSGGET (line 382) | SYS_MSGGET = 399
constant SYS_MSGSND (line 383) | SYS_MSGSND = 400
constant SYS_MSGRCV (line 384) | SYS_MSGRCV = 401
constant SYS_MSGCTL (line 385) | SYS_MSGCTL = 402
constant SYS_PIDFD_SEND_SIGNAL (line 386) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 387) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 388) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 389) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 390) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 391) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 392) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 393) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 394) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 395) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 396) | SYS_PIDFD_OPEN = 434
constant SYS_CLONE3 (line 397) | SYS_CLONE3 = 435
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
constant SYS_STATX (line 369) | SYS_STATX = 383
constant SYS_PKEY_ALLOC (line 370) | SYS_PKEY_ALLOC = 384
constant SYS_PKEY_FREE (line 371) | SYS_PKEY_FREE = 385
constant SYS_PKEY_MPROTECT (line 372) | SYS_PKEY_MPROTECT = 386
constant SYS_RSEQ (line 373) | SYS_RSEQ = 387
constant SYS_IO_PGETEVENTS (line 374) | SYS_IO_PGETEVENTS = 388
constant SYS_SEMTIMEDOP (line 375) | SYS_SEMTIMEDOP = 392
constant SYS_SEMGET (line 376) | SYS_SEMGET = 393
constant SYS_SEMCTL (line 377) | SYS_SEMCTL = 394
constant SYS_SHMGET (line 378) | SYS_SHMGET = 395
constant SYS_SHMCTL (line 379) | SYS_SHMCTL = 396
constant SYS_SHMAT (line 380) | SYS_SHMAT = 397
constant SYS_SHMDT (line 381) | SYS_SHMDT = 398
constant SYS_MSGGET (line 382) | SYS_MSGGET = 399
constant SYS_MSGSND (line 383) | SYS_MSGSND = 400
constant SYS_MSGRCV (line 384) | SYS_MSGRCV = 401
constant SYS_MSGCTL (line 385) | SYS_MSGCTL = 402
constant SYS_PIDFD_SEND_SIGNAL (line 386) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 387) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 388) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 389) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 390) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 391) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 392) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 393) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 394) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 395) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 396) | SYS_PIDFD_OPEN = 434
constant SYS_CLONE3 (line 397) | SYS_CLONE3 = 435
FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.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_UMOUNT2 (line 47) | SYS_UMOUNT2 = 39
constant SYS_MOUNT (line 48) | SYS_MOUNT = 40
constant SYS_PIVOT_ROOT (line 49) | SYS_PIVOT_ROOT = 41
constant SYS_NFSSERVCTL (line 50) | SYS_NFSSERVCTL = 42
constant SYS_STATFS (line 51) | SYS_STATFS = 43
constant SYS_FSTATFS (line 52) | SYS_FSTATFS = 44
constant SYS_TRUNCATE (line 53) | SYS_TRUNCATE = 45
constant SYS_FTRUNCATE (line 54) | SYS_FTRUNCATE = 46
constant SYS_FALLOCATE (line 55) | SYS_FALLOCATE = 47
constant SYS_FACCESSAT (line 56) | SYS_FACCESSAT = 48
constant SYS_CHDIR (line 57) | SYS_CHDIR = 49
constant SYS_FCHDIR (line 58) | SYS_FCHDIR = 50
constant SYS_CHROOT (line 59) | SYS_CHROOT = 51
constant SYS_FCHMOD (line 60) | SYS_FCHMOD = 52
constant SYS_FCHMODAT (line 61) | SYS_FCHMODAT = 53
constant SYS_FCHOWNAT (line 62) | SYS_FCHOWNAT = 54
constant SYS_FCHOWN (line 63) | SYS_FCHOWN = 55
constant SYS_OPENAT (line 64) | SYS_OPENAT = 56
constant SYS_CLOSE (line 65) | SYS_CLOSE = 57
constant SYS_VHANGUP (line 66) | SYS_VHANGUP = 58
constant SYS_PIPE2 (line 67) | SYS_PIPE2 = 59
constant SYS_QUOTACTL (line 68) | SYS_QUOTACTL = 60
constant SYS_GETDENTS64 (line 69) | SYS_GETDENTS64 = 61
constant SYS_LSEEK (line 70) | SYS_LSEEK = 62
constant SYS_READ (line 71) | SYS_READ = 63
constant SYS_WRITE (line 72) | SYS_WRITE = 64
constant SYS_READV (line 73) | SYS_READV = 65
constant SYS_WRITEV (line 74) | SYS_WRITEV = 66
constant SYS_PREAD64 (line 75) | SYS_PREAD64 = 67
constant SYS_PWRITE64 (line 76) | SYS_PWRITE64 = 68
constant SYS_PREADV (line 77) | SYS_PREADV = 69
constant SYS_PWRITEV (line 78) | SYS_PWRITEV = 70
constant SYS_SENDFILE (line 79) | SYS_SENDFILE = 71
constant SYS_PSELECT6 (line 80) | SYS_PSELECT6 = 72
constant SYS_PPOLL (line 81) | SYS_PPOLL = 73
constant SYS_SIGNALFD4 (line 82) | SYS_SIGNALFD4 = 74
constant SYS_VMSPLICE (line 83) | SYS_VMSPLICE = 75
constant SYS_SPLICE (line 84) | SYS_SPLICE = 76
constant SYS_TEE (line 85) | SYS_TEE = 77
constant SYS_READLINKAT (line 86) | SYS_READLINKAT = 78
constant SYS_FSTATAT (line 87) | SYS_FSTATAT = 79
constant SYS_FSTAT (line 88) | SYS_FSTAT = 80
constant SYS_SYNC (line 89) | SYS_SYNC = 81
constant SYS_FSYNC (line 90) | SYS_FSYNC = 82
constant SYS_FDATASYNC (line 91) | SYS_FDATASYNC = 83
constant SYS_SYNC_FILE_RANGE (line 92) | SYS_SYNC_FILE_RANGE = 84
constant SYS_TIMERFD_CREATE (line 93) | SYS_TIMERFD_CREATE = 85
constant SYS_TIMERFD_SETTIME (line 94) | SYS_TIMERFD_SETTIME = 86
constant SYS_TIMERFD_GETTIME (line 95) | SYS_TIMERFD_GETTIME = 87
constant SYS_UTIMENSAT (line 96) | SYS_UTIMENSAT = 88
constant SYS_ACCT (line 97) | SYS_ACCT = 89
constant SYS_CAPGET (line 98) | SYS_CAPGET = 90
constant SYS_CAPSET (line 99) | SYS_CAPSET = 91
constant SYS_PERSONALITY (line 100) | SYS_PERSONALITY = 92
constant SYS_EXIT (line 101) | SYS_EXIT = 93
constant SYS_EXIT_GROUP (line 102) | SYS_EXIT_GROUP = 94
constant SYS_WAITID (line 103) | SYS_WAITID = 95
constant SYS_SET_TID_ADDRESS (line 104) | SYS_SET_TID_ADDRESS = 96
constant SYS_UNSHARE (line 105) | SYS_UNSHARE = 97
constant SYS_FUTEX (line 106) | SYS_FUTEX = 98
constant SYS_SET_ROBUST_LIST (line 107) | SYS_SET_ROBUST_LIST = 99
constant SYS_GET_ROBUST_LIST (line 108) | SYS_GET_ROBUST_LIST = 100
constant SYS_NANOSLEEP (line 109) | SYS_NANOSLEEP = 101
constant SYS_GETITIMER (line 110) | SYS_GETITIMER = 102
constant SYS_SETITIMER (line 111) | SYS_SETITIMER = 103
constant SYS_KEXEC_LOAD (line 112) | SYS_KEXEC_LOAD = 104
constant SYS_INIT_MODULE (line 113) | SYS_INIT_MODULE = 105
constant SYS_DELETE_MODULE (line 114) | SYS_DELETE_MODULE = 106
constant SYS_TIMER_CREATE (line 115) | SYS_TIMER_CREATE = 107
constant SYS_TIMER_GETTIME (line 116) | SYS_TIMER_GETTIME = 108
constant SYS_TIMER_GETOVERRUN (line 117) | SYS_TIMER_GETOVERRUN = 109
constant SYS_TIMER_SETTIME (line 118) | SYS_TIMER_SETTIME = 110
constant SYS_TIMER_DELETE (line 119) | SYS_TIMER_DELETE = 111
constant SYS_CLOCK_SETTIME (line 120) | SYS_CLOCK_SETTIME = 112
constant SYS_CLOCK_GETTIME (line 121) | SYS_CLOCK_GETTIME = 113
constant SYS_CLOCK_GETRES (line 122) | SYS_CLOCK_GETRES = 114
constant SYS_CLOCK_NANOSLEEP (line 123) | SYS_CLOCK_NANOSLEEP = 115
constant SYS_SYSLOG (line 124) | SYS_SYSLOG = 116
constant SYS_PTRACE (line 125) | SYS_PTRACE = 117
constant SYS_SCHED_SETPARAM (line 126) | SYS_SCHED_SETPARAM = 118
constant SYS_SCHED_SETSCHEDULER (line 127) | SYS_SCHED_SETSCHEDULER = 119
constant SYS_SCHED_GETSCHEDULER (line 128) | SYS_SCHED_GETSCHEDULER = 120
constant SYS_SCHED_GETPARAM (line 129) | SYS_SCHED_GETPARAM = 121
constant SYS_SCHED_SETAFFINITY (line 130) | SYS_SCHED_SETAFFINITY = 122
constant SYS_SCHED_GETAFFINITY (line 131) | SYS_SCHED_GETAFFINITY = 123
constant SYS_SCHED_YIELD (line 132) | SYS_SCHED_YIELD = 124
constant SYS_SCHED_GET_PRIORITY_MAX (line 133) | SYS_SCHED_GET_PRIORITY_MAX = 125
constant SYS_SCHED_GET_PRIORITY_MIN (line 134) | SYS_SCHED_GET_PRIORITY_MIN = 126
constant SYS_SCHED_RR_GET_INTERVAL (line 135) | SYS_SCHED_RR_GET_INTERVAL = 127
constant SYS_RESTART_SYSCALL (line 136) | SYS_RESTART_SYSCALL = 128
constant SYS_KILL (line 137) | SYS_KILL = 129
constant SYS_TKILL (line 138) | SYS_TKILL = 130
constant SYS_TGKILL (line 139) | SYS_TGKILL = 131
constant SYS_SIGALTSTACK (line 140) | SYS_SIGALTSTACK = 132
constant SYS_RT_SIGSUSPEND (line 141) | SYS_RT_SIGSUSPEND = 133
constant SYS_RT_SIGACTION (line 142) | SYS_RT_SIGACTION = 134
constant SYS_RT_SIGPROCMASK (line 143) | SYS_RT_SIGPROCMASK = 135
constant SYS_RT_SIGPENDING (line 144) | SYS_RT_SIGPENDING = 136
constant SYS_RT_SIGTIMEDWAIT (line 145) | SYS_RT_SIGTIMEDWAIT = 137
constant SYS_RT_SIGQUEUEINFO (line 146) | SYS_RT_SIGQUEUEINFO = 138
constant SYS_RT_SIGRETURN (line 147) | SYS_RT_SIGRETURN = 139
constant SYS_SETPRIORITY (line 148) | SYS_SETPRIORITY = 140
constant SYS_GETPRIORITY (line 149) | SYS_GETPRIORITY = 141
constant SYS_REBOOT (line 150) | SYS_REBOOT = 142
constant SYS_SETREGID (line 151) | SYS_SETREGID = 143
constant SYS_SETGID (line 152) | SYS_SETGID = 144
constant SYS_SETREUID (line 153) | SYS_SETREUID = 145
constant SYS_SETUID (line 154) | SYS_SETUID = 146
constant SYS_SETRESUID (line 155) | SYS_SETRESUID = 147
constant SYS_GETRESUID (line 156) | SYS_GETRESUID = 148
constant SYS_SETRESGID (line 157) | SYS_SETRESGID = 149
constant SYS_GETRESGID (line 158) | SYS_GETRESGID = 150
constant SYS_SETFSUID (line 159) | SYS_SETFSUID = 151
constant SYS_SETFSGID (line 160) | SYS_SETFSGID = 152
constant SYS_TIMES (line 161) | SYS_TIMES = 153
constant SYS_SETPGID (line 162) | SYS_SETPGID = 154
constant SYS_GETPGID (line 163) | SYS_GETPGID = 155
constant SYS_GETSID (line 164) | SYS_GETSID = 156
constant SYS_SETSID (line 165) | SYS_SETSID = 157
constant SYS_GETGROUPS (line 166) | SYS_GETGROUPS = 158
constant SYS_SETGROUPS (line 167) | SYS_SETGROUPS = 159
constant SYS_UNAME (line 168) | SYS_UNAME = 160
constant SYS_SETHOSTNAME (line 169) | SYS_SETHOSTNAME = 161
constant SYS_SETDOMAINNAME (line 170) | SYS_SETDOMAINNAME = 162
constant SYS_GETRLIMIT (line 171) | SYS_GETRLIMIT = 163
constant SYS_SETRLIMIT (line 172) | SYS_SETRLIMIT = 164
constant SYS_GETRUSAGE (line 173) | SYS_GETRUSAGE = 165
constant SYS_UMASK (line 174) | SYS_UMASK = 166
constant SYS_PRCTL (line 175) | SYS_PRCTL = 167
constant SYS_GETCPU (line 176) | SYS_GETCPU = 168
constant SYS_GETTIMEOFDAY (line 177) | SYS_GETTIMEOFDAY = 169
constant SYS_SETTIMEOFDAY (line 178) | SYS_SETTIMEOFDAY = 170
constant SYS_ADJTIMEX (line 179) | SYS_ADJTIMEX = 171
constant SYS_GETPID (line 180) | SYS_GETPID = 172
constant SYS_GETPPID (line 181) | SYS_GETPPID = 173
constant SYS_GETUID (line 182) | SYS_GETUID = 174
constant SYS_GETEUID (line 183) | SYS_GETEUID = 175
constant SYS_GETGID (line 184) | SYS_GETGID = 176
constant SYS_GETEGID (line 185) | SYS_GETEGID = 177
constant SYS_GETTID (line 186) | SYS_GETTID = 178
constant SYS_SYSINFO (line 187) | SYS_SYSINFO = 179
constant SYS_MQ_OPEN (line 188) | SYS_MQ_OPEN = 180
constant SYS_MQ_UNLINK (line 189) | SYS_MQ_UNLINK = 181
constant SYS_MQ_TIMEDSEND (line 190) | SYS_MQ_TIMEDSEND = 182
constant SYS_MQ_TIMEDRECEIVE (line 191) | SYS_MQ_TIMEDRECEIVE = 183
constant SYS_MQ_NOTIFY (line 192) | SYS_MQ_NOTIFY = 184
constant SYS_MQ_GETSETATTR (line 193) | SYS_MQ_GETSETATTR = 185
constant SYS_MSGGET (line 194) | SYS_MSGGET = 186
constant SYS_MSGCTL (line 195) | SYS_MSGCTL = 187
constant SYS_MSGRCV (line 196) | SYS_MSGRCV = 188
constant SYS_MSGSND (line 197) | SYS_MSGSND = 189
constant SYS_SEMGET (line 198) | SYS_SEMGET = 190
constant SYS_SEMCTL (line 199) | SYS_SEMCTL = 191
constant SYS_SEMTIMEDOP (line 200) | SYS_SEMTIMEDOP = 192
constant SYS_SEMOP (line 201) | SYS_SEMOP = 193
constant SYS_SHMGET (line 202) | SYS_SHMGET = 194
constant SYS_SHMCTL (line 203) | SYS_SHMCTL = 195
constant SYS_SHMAT (line 204) | SYS_SHMAT = 196
constant SYS_SHMDT (line 205) | SYS_SHMDT = 197
constant SYS_SOCKET (line 206) | SYS_SOCKET = 198
constant SYS_SOCKETPAIR (line 207) | SYS_SOCKETPAIR = 199
constant SYS_BIND (line 208) | SYS_BIND = 200
constant SYS_LISTEN (line 209) | SYS_LISTEN = 201
constant SYS_ACCEPT (line 210) | SYS_ACCEPT = 202
constant SYS_CONNECT (line 211) | SYS_CONNECT = 203
constant SYS_GETSOCKNAME (line 212) | SYS_GETSOCKNAME = 204
constant SYS_GETPEERNAME (line 213) | SYS_GETPEERNAME = 205
constant SYS_SENDTO (line 214) | SYS_SENDTO = 206
constant SYS_RECVFROM (line 215) | SYS_RECVFROM = 207
constant SYS_SETSOCKOPT (line 216) | SYS_SETSOCKOPT = 208
constant SYS_GETSOCKOPT (line 217) | SYS_GETSOCKOPT = 209
constant SYS_SHUTDOWN (line 218) | SYS_SHUTDOWN = 210
constant SYS_SENDMSG (line 219) | SYS_SENDMSG = 211
constant SYS_RECVMSG (line 220) | SYS_RECVMSG = 212
constant SYS_READAHEAD (line 221) | SYS_READAHEAD = 213
constant SYS_BRK (line 222) | SYS_BRK = 214
constant SYS_MUNMAP (line 223) | SYS_MUNMAP = 215
constant SYS_MREMAP (line 224) | SYS_MREMAP = 216
constant SYS_ADD_KEY (line 225) | SYS_ADD_KEY = 217
constant SYS_REQUEST_KEY (line 226) | SYS_REQUEST_KEY = 218
constant SYS_KEYCTL (line 227) | SYS_KEYCTL = 219
constant SYS_CLONE (line 228) | SYS_CLONE = 220
constant SYS_EXECVE (line 229) | SYS_EXECVE = 221
constant SYS_MMAP (line 230) | SYS_MMAP = 222
constant SYS_FADVISE64 (line 231) | SYS_FADVISE64 = 223
constant SYS_SWAPON (line 232) | SYS_SWAPON = 224
constant SYS_SWAPOFF (line 233) | SYS_SWAPOFF = 225
constant SYS_MPROTECT (line 234) | SYS_MPROTECT = 226
constant SYS_MSYNC (line 235) | SYS_MSYNC = 227
constant SYS_MLOCK (line 236) | SYS_MLOCK = 228
constant SYS_MUNLOCK (line 237) | SYS_MUNLOCK = 229
constant SYS_MLOCKALL (line 238) | SYS_MLOCKALL = 230
constant SYS_MUNLOCKALL (line 239) | SYS_MUNLOCKALL = 231
constant SYS_MINCORE (line 240) | SYS_MINCORE = 232
constant SYS_MADVISE (line 241) | SYS_MADVISE = 233
constant SYS_REMAP_FILE_PAGES (line 242) | SYS_REMAP_FILE_PAGES = 234
constant SYS_MBIND (line 243) | SYS_MBIND = 235
constant SYS_GET_MEMPOLICY (line 244) | SYS_GET_MEMPOLICY = 236
constant SYS_SET_MEMPOLICY (line 245) | SYS_SET_MEMPOLICY = 237
constant SYS_MIGRATE_PAGES (line 246) | SYS_MIGRATE_PAGES = 238
constant SYS_MOVE_PAGES (line 247) | SYS_MOVE_PAGES = 239
constant SYS_RT_TGSIGQUEUEINFO (line 248) | SYS_RT_TGSIGQUEUEINFO = 240
constant SYS_PERF_EVENT_OPEN (line 249) | SYS_PERF_EVENT_OPEN = 241
constant SYS_ACCEPT4 (line 250) | SYS_ACCEPT4 = 242
constant SYS_RECVMMSG (line 251) | SYS_RECVMMSG = 243
constant SYS_ARCH_SPECIFIC_SYSCALL (line 252) | SYS_ARCH_SPECIFIC_SYSCALL = 244
constant SYS_WAIT4 (line 253) | SYS_WAIT4 = 260
constant SYS_PRLIMIT64 (line 254) | SYS_PRLIMIT64 = 261
constant SYS_FANOTIFY_INIT (line 255) | SYS_FANOTIFY_INIT = 262
constant SYS_FANOTIFY_MARK (line 256) | SYS_FANOTIFY_MARK = 263
constant SYS_NAME_TO_HANDLE_AT (line 257) | SYS_NAME_TO_HANDLE_AT = 264
constant SYS_OPEN_BY_HANDLE_AT (line 258) | SYS_OPEN_BY_HANDLE_AT = 265
constant SYS_CLOCK_ADJTIME (line 259) | SYS_CLOCK_ADJTIME = 266
constant SYS_SYNCFS (line 260) | SYS_SYNCFS = 267
constant SYS_SETNS (line 261) | SYS_SETNS = 268
constant SYS_SENDMMSG (line 262) | SYS_SENDMMSG = 269
constant SYS_PROCESS_VM_READV (line 263) | SYS_PROCESS_VM_READV = 270
constant SYS_PROCESS_VM_WRITEV (line 264) | SYS_PROCESS_VM_WRITEV = 271
constant SYS_KCMP (line 265) | SYS_KCMP = 272
constant SYS_FINIT_MODULE (line 266) | SYS_FINIT_MODULE = 273
constant SYS_SCHED_SETATTR (line 267) | SYS_SCHED_SETATTR = 274
constant SYS_SCHED_GETATTR (line 268) | SYS_SCHED_GETATTR = 275
constant SYS_RENAMEAT2 (line 269) | SYS_RENAMEAT2 = 276
constant SYS_SECCOMP (line 270) | SYS_SECCOMP = 277
constant SYS_GETRANDOM (line 271) | SYS_GETRANDOM = 278
constant SYS_MEMFD_CREATE (line 272) | SYS_MEMFD_CREATE = 279
constant SYS_BPF (line 273) | SYS_BPF = 280
constant SYS_EXECVEAT (line 274) | SYS_EXECVEAT = 281
constant SYS_USERFAULTFD (line 275) | SYS_USERFAULTFD = 282
constant SYS_MEMBARRIER (line 276) | SYS_MEMBARRIER = 283
constant SYS_MLOCK2 (line 277) | SYS_MLOCK2 = 284
constant SYS_COPY_FILE_RANGE (line 278) | SYS_COPY_FILE_RANGE = 285
constant SYS_PREADV2 (line 279) | SYS_PREADV2 = 286
constant SYS_PWRITEV2 (line 280) | SYS_PWRITEV2 = 287
constant SYS_PKEY_MPROTECT (line 281) | SYS_PKEY_MPROTECT = 288
constant SYS_PKEY_ALLOC (line 282) | SYS_PKEY_ALLOC = 289
constant SYS_PKEY_FREE (line 283) | SYS_PKEY_FREE = 290
constant SYS_STATX (line 284) | SYS_STATX = 291
constant SYS_IO_PGETEVENTS (line 285) | SYS_IO_PGETEVENTS = 292
constant SYS_RSEQ (line 286) | SYS_RSEQ = 293
constant SYS_KEXEC_FILE_LOAD (line 287) | SYS_KEXEC_FILE_LOAD = 294
constant SYS_PIDFD_SEND_SIGNAL (line 288) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 289) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 290) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 291) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 292) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 293) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 294) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 295) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 296) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 297) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 298) | SYS_PIDFD_OPEN = 434
constant SYS_CLONE3 (line 299) | SYS_CLONE3 = 435
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_SELECT (line 112) | SYS_SELECT = 142
constant SYS_FLOCK (line 113) | SYS_FLOCK = 143
constant SYS_MSYNC (line 114) | SYS_MSYNC = 144
constant SYS_READV (line 115) | SYS_READV = 145
constant SYS_WRITEV (line 116) | SYS_WRITEV = 146
constant SYS_GETSID (line 117) | SYS_GETSID = 147
constant SYS_FDATASYNC (line 118) | SYS_FDATASYNC = 148
constant SYS__SYSCTL (line 119) | SYS__SYSCTL = 149
constant SYS_MLOCK (line 120) | SYS_MLOCK = 150
constant SYS_MUNLOCK (line 121) | SYS_MUNLOCK = 151
constant SYS_MLOCKALL (line 122) | SYS_MLOCKALL = 152
constant SYS_MUNLOCKALL (line 123) | SYS_MUNLOCKALL = 153
constant SYS_SCHED_SETPARAM (line 124) | SYS_SCHED_SETPARAM = 154
constant SYS_SCHED_GETPARAM (line 125) | SYS_SCHED_GETPARAM = 155
constant SYS_SCHED_SETSCHEDULER (line 126) | SYS_SCHED_SETSCHEDULER = 156
constant SYS_SCHED_GETSCHEDULER (line 127) | SYS_SCHED_GETSCHEDULER = 157
constant SYS_SCHED_YIELD (line 128) | SYS_SCHED_YIELD = 158
constant SYS_SCHED_GET_PRIORITY_MAX (line 129) | SYS_SCHED_GET_PRIORITY_MAX = 159
constant SYS_SCHED_GET_PRIORITY_MIN (line 130) | SYS_SCHED_GET_PRIORITY_MIN = 160
constant SYS_SCHED_RR_GET_INTERVAL (line 131) | SYS_SCHED_RR_GET_INTERVAL = 161
constant SYS_NANOSLEEP (line 132) | SYS_NANOSLEEP = 162
constant SYS_MREMAP (line 133) | SYS_MREMAP = 163
constant SYS_QUERY_MODULE (line 134) | SYS_QUERY_MODULE = 167
constant SYS_POLL (line 135) | SYS_POLL = 168
constant SYS_NFSSERVCTL (line 136) | SYS_NFSSERVCTL = 169
constant SYS_PRCTL (line 137) | SYS_PRCTL = 172
constant SYS_RT_SIGRETURN (line 138) | SYS_RT_SIGRETURN = 173
constant SYS_RT_SIGACTION (line 139) | SYS_RT_SIGACTION = 174
constant SYS_RT_SIGPROCMASK (line 140) | SYS_RT_SIGPROCMASK = 175
constant SYS_RT_SIGPENDING (line 141) | SYS_RT_SIGPENDING = 176
constant SYS_RT_SIGTIMEDWAIT (line 142) | SYS_RT_SIGTIMEDWAIT = 177
constant SYS_RT_SIGQUEUEINFO (line 143) | SYS_RT_SIGQUEUEINFO = 178
constant SYS_RT_SIGSUSPEND (line 144) | SYS_RT_SIGSUSPEND = 179
constant SYS_PREAD64 (line 145) | SYS_PREAD64 = 180
constant SYS_PWRITE64 (line 146) | SYS_PWRITE64 = 181
constant SYS_GETCWD (line 147) | SYS_GETCWD = 183
constant SYS_CAPGET (line 148) | SYS_CAPGET = 184
constant SYS_CAPSET (line 149) | SYS_CAPSET = 185
constant SYS_SIGALTSTACK (line 150) | SYS_SIGALTSTACK = 186
constant SYS_SENDFILE (line 151) | SYS_SENDFILE = 187
constant SYS_GETPMSG (line 152) | SYS_GETPMSG = 188
constant SYS_PUTPMSG (line 153) | SYS_PUTPMSG = 189
constant SYS_VFORK (line 154) | SYS_VFORK = 190
constant SYS_GETRLIMIT (line 155) | SYS_GETRLIMIT = 191
constant SYS_LCHOWN (line 156) | SYS_LCHOWN = 198
constant SYS_GETUID (line 157) | SYS_GETUID = 199
constant SYS_GETGID (line 158) | SYS_GETGID = 200
constant SYS_GETEUID (line 159) | SYS_GETEUID = 201
constant SYS_GETEGID (line 160) | SYS_GETEGID = 202
constant SYS_SETREUID (line 161) | SYS_SETREUID = 203
constant SYS_SETREGID (line 162) | SYS_SETREGID = 204
constant SYS_GETGROUPS (line 163) | SYS_GETGROUPS = 205
constant SYS_SETGROUPS (line 164) | SYS_SETGROUPS = 206
constant SYS_FCHOWN (line 165) | SYS_FCHOWN = 207
constant SYS_SETRESUID (line 166) | SYS_SETRESUID = 208
constant SYS_GETRESUID (line 167) | SYS_GETRESUID = 209
constant SYS_SETRESGID (line 168) | SYS_SETRESGID = 210
constant SYS_GETRESGID (line 169) | SYS_GETRESGID = 211
constant SYS_CHOWN (line 170) | SYS_CHOWN = 212
constant SYS_SETUID (line 171) | SYS_SETUID = 213
constant SYS_SETGID (line 172) | SYS_SETGID = 214
constant SYS_SETFSUID (line 173) | SYS_SETFSUID = 215
constant SYS_SETFSGID (line 174) | SYS_SETFSGID = 216
constant SYS_PIVOT_ROOT (line 175) | SYS_PIVOT_ROOT = 217
constant SYS_MINCORE (line 176) | SYS_MINCORE = 218
constant SYS_MADVISE (line 177) | SYS_MADVISE = 219
constant SYS_GETDENTS64 (line 178) | SYS_GETDENTS64 = 220
constant SYS_READAHEAD (line 179) | SYS_READAHEAD = 222
constant SYS_SETXATTR (line 180) | SYS_SETXATTR = 224
constant SYS_LSETXATTR (line 181) | SYS_LSETXATTR = 225
constant SYS_FSETXATTR (line 182) | SYS_FSETXATTR = 226
constant SYS_GETXATTR (line 183) | SYS_GETXATTR = 227
constant SYS_LGETXATTR (line 184) | SYS_LGETXATTR = 228
constant SYS_FGETXATTR (line 185) | SYS_FGETXATTR = 229
constant SYS_LISTXATTR (line 186) | SYS_LISTXATTR = 230
constant SYS_LLISTXATTR (line 187) | SYS_LLISTXATTR = 231
constant SYS_FLISTXATTR (line 188) | SYS_FLISTXATTR = 232
constant SYS_REMOVEXATTR (line 189) | SYS_REMOVEXATTR = 233
constant SYS_LREMOVEXATTR (line 190) | SYS_LREMOVEXATTR = 234
constant SYS_FREMOVEXATTR (line 191) | SYS_FREMOVEXATTR = 235
constant SYS_GETTID (line 192) | SYS_GETTID = 236
constant SYS_TKILL (line 193) | SYS_TKILL = 237
constant SYS_FUTEX (line 194) | SYS_FUTEX = 238
constant SYS_SCHED_SETAFFINITY (line 195) | SYS_SCHED_SETAFFINITY = 239
constant SYS_SCHED_GETAFFINITY (line 196) | SYS_SCHED_GETAFFINITY = 240
constant SYS_TGKILL (line 197) | SYS_TGKILL = 241
constant SYS_IO_SETUP (line 198) | SYS_IO_SETUP = 243
constant SYS_IO_DESTROY (line 199) | SYS_IO_DESTROY = 244
constant SYS_IO_GETEVENTS (line 200) | SYS_IO_GETEVENTS = 245
constant SYS_IO_SUBMIT (line 201) | SYS_IO_SUBMIT = 246
constant SYS_IO_CANCEL (line 202) | SYS_IO_CANCEL = 247
constant SYS_EXIT_GROUP (line 203) | SYS_EXIT_GROUP = 248
constant SYS_EPOLL_CREATE (line 204) | SYS_EPOLL_CREATE = 249
constant SYS_EPOLL_CTL (line 205) | SYS_EPOLL_CTL = 250
constant SYS_EPOLL_WAIT (line 206) | SYS_EPOLL_WAIT = 251
constant SYS_SET_TID_ADDRESS (line 207) | SYS_SET_TID_ADDRESS = 252
constant SYS_FADVISE64 (line 208) | SYS_FADVISE64 = 253
constant SYS_TIMER_CREATE (line 209) | SYS_TIMER_CREATE = 254
constant SYS_TIMER_SETTIME (line 210) | SYS_TIMER_SETTIME = 255
constant SYS_TIMER_GETTIME (line 211) | SYS_TIMER_GETTIME = 256
constant SYS_TIMER_GETOVERRUN (line 212) | SYS_TIMER_GETOVERRUN = 257
constant SYS_TIMER_DELETE (line 213) | SYS_TIMER_DELETE = 258
constant SYS_CLOCK_SETTIME (line 214) | SYS_CLOCK_SETTIME = 259
constant SYS_CLOCK_GETTIME (line 215) | SYS_CLOCK_GETTIME = 260
constant SYS_CLOCK_GETRES (line 216) | SYS_CLOCK_GETRES = 261
constant SYS_CLOCK_NANOSLEEP (line 217) | SYS_CLOCK_NANOSLEEP = 262
constant SYS_STATFS64 (line 218) | SYS_STATFS64 = 265
constant SYS_FSTATFS64 (line 219) | SYS_FSTATFS64 = 266
constant SYS_REMAP_FILE_PAGES (line 220) | SYS_REMAP_FILE_PAGES = 267
constant SYS_MBIND (line 221) | SYS_MBIND = 268
constant SYS_GET_MEMPOLICY (line 222) | SYS_GET_MEMPOLICY = 269
constant SYS_SET_MEMPOLICY (line 223) | SYS_SET_MEMPOLICY = 270
constant SYS_MQ_OPEN (line 224) | SYS_MQ_OPEN = 271
constant SYS_MQ_UNLINK (line 225) | SYS_MQ_UNLINK = 272
constant SYS_MQ_TIMEDSEND (line 226) | SYS_MQ_TIMEDSEND = 273
constant SYS_MQ_TIMEDRECEIVE (line 227) | SYS_MQ_TIMEDRECEIVE = 274
constant SYS_MQ_NOTIFY (line 228) | SYS_MQ_NOTIFY = 275
constant SYS_MQ_GETSETATTR (line 229) | SYS_MQ_GETSETATTR = 276
constant SYS_KEXEC_LOAD (line 230) | SYS_KEXEC_LOAD = 277
constant SYS_ADD_KEY (line 231) | SYS_ADD_KEY = 278
constant SYS_REQUEST_KEY (line 232) | SYS_REQUEST_KEY = 279
constant SYS_KEYCTL (line 233) | SYS_KEYCTL = 280
constant SYS_WAITID (line 234) | SYS_WAITID = 281
constant SYS_IOPRIO_SET (line 235) | SYS_IOPRIO_SET = 282
constant SYS_IOPRIO_GET (line 236) | SYS_IOPRIO_GET = 283
constant SYS_INOTIFY_INIT (line 237) | SYS_INOTIFY_INIT = 284
constant SYS_INOTIFY_ADD_WATCH (line 238) | SYS_INOTIFY_ADD_WATCH = 285
constant SYS_INOTIFY_RM_WATCH (line 239) | SYS_INOTIFY_RM_WATCH = 286
constant SYS_MIGRATE_PAGES (line 240) | SYS_MIGRATE_PAGES = 287
constant SYS_OPENAT (line 241) | SYS_OPENAT = 288
constant SYS_MKDIRAT (line 242) | SYS_MKDIRAT = 289
constant SYS_MKNODAT (line 243) | SYS_MKNODAT = 290
constant SYS_FCHOWNAT (line 244) | SYS_FCHOWNAT = 291
constant SYS_FUTIMESAT (line 245) | SYS_FUTIMESAT = 292
constant SYS_NEWFSTATAT (line 246) | SYS_NEWFSTATAT = 293
constant SYS_UNLINKAT (line 247) | SYS_UNLINKAT = 294
constant SYS_RENAMEAT (line 248) | SYS_RENAMEAT = 295
constant SYS_LINKAT (line 249) | SYS_LINKAT = 296
constant SYS_SYMLINKAT (line 250) | SYS_SYMLINKAT = 297
constant SYS_READLINKAT (line 251) | SYS_READLINKAT = 298
constant SYS_FCHMODAT (line 252) | SYS_FCHMODAT = 299
constant SYS_FACCESSAT (line 253) | SYS_FACCESSAT = 300
constant SYS_PSELECT6 (line 254) | SYS_PSELECT6 = 301
constant SYS_PPOLL (line 255) | SYS_PPOLL = 302
constant SYS_UNSHARE (line 256) | SYS_UNSHARE = 303
constant SYS_SET_ROBUST_LIST (line 257) | SYS_SET_ROBUST_LIST = 304
constant SYS_GET_ROBUST_LIST (line 258) | SYS_GET_ROBUST_LIST = 305
constant SYS_SPLICE (line 259) | SYS_SPLICE = 306
constant SYS_SYNC_FILE_RANGE (line 260) | SYS_SYNC_FILE_RANGE = 307
constant SYS_TEE (line 261) | SYS_TEE = 308
constant SYS_VMSPLICE (line 262) | SYS_VMSPLICE = 309
constant SYS_MOVE_PAGES (line 263) | SYS_MOVE_PAGES = 310
constant SYS_GETCPU (line 264) | SYS_GETCPU = 311
constant SYS_EPOLL_PWAIT (line 265) | SYS_EPOLL_PWAIT = 312
constant SYS_UTIMES (line 266) | SYS_UTIMES = 313
constant SYS_FALLOCATE (line 267) | SYS_FALLOCATE = 314
constant SYS_UTIMENSAT (line 268) | SYS_UTIMENSAT = 315
constant SYS_SIGNALFD (line 269) | SYS_SIGNALFD = 316
constant SYS_TIMERFD (line 270) | SYS_TIMERFD = 317
constant SYS_EVENTFD (line 271) | SYS_EVENTFD = 318
constant SYS_TIMERFD_CREATE (line 272) | SYS_TIMERFD_CREATE = 319
constant SYS_TIMERFD_SETTIME (line 273) | SYS_TIMERFD_SETTIME = 320
constant SYS_TIMERFD_GETTIME (line 274) | SYS_TIMERFD_GETTIME = 321
constant SYS_SIGNALFD4 (line 275) | SYS_SIGNALFD4 = 322
constant SYS_EVENTFD2 (line 276) | SYS_EVENTFD2 = 323
constant SYS_INOTIFY_INIT1 (line 277) | SYS_INOTIFY_INIT1 = 324
constant SYS_PIPE2 (line 278) | SYS_PIPE2 = 325
constant SYS_DUP3 (line 279) | SYS_DUP3 = 326
constant SYS_EPOLL_CREATE1 (line 280) | SYS_EPOLL_CREATE1 = 327
constant SYS_PREADV (line 281) | SYS_PREADV = 328
constant SYS_PWRITEV (line 282) | SYS_PWRITEV = 329
constant SYS_RT_TGSIGQUEUEINFO (line 283) | SYS_RT_TGSIGQUEUEINFO = 330
constant SYS_PERF_EVENT_OPEN (line 284) | SYS_PERF_EVENT_OPEN = 331
constant SYS_FANOTIFY_INIT (line 285) | SYS_FANOTIFY_INIT = 332
constant SYS_FANOTIFY_MARK (line 286) | SYS_FANOTIFY_MARK = 333
constant SYS_PRLIMIT64 (line 287) | SYS_PRLIMIT64 = 334
constant SYS_NAME_TO_HANDLE_AT (line 288) | SYS_NAME_TO_HANDLE_AT = 335
constant SYS_OPEN_BY_HANDLE_AT (line 289) | SYS_OPEN_BY_HANDLE_AT = 336
constant SYS_CLOCK_ADJTIME (line 290) | SYS_CLOCK_ADJTIME = 337
constant SYS_SYNCFS (line 291) | SYS_SYNCFS = 338
constant SYS_SETNS (line 292) | SYS_SETNS = 339
constant SYS_PROCESS_VM_READV (line 293) | SYS_PROCESS_VM_READV = 340
constant SYS_PROCESS_VM_WRITEV (line 294) | SYS_PROCESS_VM_WRITEV = 341
constant SYS_S390_RUNTIME_INSTR (line 295) | SYS_S390_RUNTIME_INSTR = 342
constant SYS_KCMP (line 296) | SYS_KCMP = 343
constant SYS_FINIT_MODULE (line 297) | SYS_FINIT_MODULE = 344
constant SYS_SCHED_SETATTR (line 298) | SYS_SCHED_SETATTR = 345
constant SYS_SCHED_GETATTR (line 299) | SYS_SCHED_GETATTR = 346
constant SYS_RENAMEAT2 (line 300) | SYS_RENAMEAT2 = 347
constant SYS_SECCOMP (line 301) | SYS_SECCOMP = 348
constant SYS_GETRANDOM (line 302) | SYS_GETRANDOM = 349
constant SYS_MEMFD_CREATE (line 303) | SYS_MEMFD_CREATE = 350
constant SYS_BPF (line 304) | SYS_BPF = 351
constant SYS_S390_PCI_MMIO_WRITE (line 305) | SYS_S390_PCI_MMIO_WRITE = 352
constant SYS_S390_PCI_MMIO_READ (line 306) | SYS_S390_PCI_MMIO_READ = 353
constant SYS_EXECVEAT (line 307) | SYS_EXECVEAT = 354
constant SYS_USERFAULTFD (line 308) | SYS_USERFAULTFD = 355
constant SYS_MEMBARRIER (line 309) | SYS_MEMBARRIER = 356
constant SYS_RECVMMSG (line 310) | SYS_RECVMMSG = 357
constant SYS_SENDMMSG (line 311) | SYS_SENDMMSG = 358
constant SYS_SOCKET (line 312) | SYS_SOCKET = 359
constant SYS_SOCKETPAIR (line 313) | SYS_SOCKETPAIR = 360
constant SYS_BIND (line 314) | SYS_BIND = 361
constant SYS_CONNECT (line 315) | SYS_CONNECT = 362
constant SYS_LISTEN (line 316) | SYS_LISTEN = 363
constant SYS_ACCEPT4 (line 317) | SYS_ACCEPT4 = 364
constant SYS_GETSOCKOPT (line 318) | SYS_GETSOCKOPT = 365
constant SYS_SETSOCKOPT (line 319) | SYS_SETSOCKOPT = 366
constant SYS_GETSOCKNAME (line 320) | SYS_GETSOCKNAME = 367
constant SYS_GETPEERNAME (line 321) | SYS_GETPEERNAME = 368
constant SYS_SENDTO (line 322) | SYS_SENDTO = 369
constant SYS_SENDMSG (line 323) | SYS_SENDMSG = 370
constant SYS_RECVFROM (line 324) | SYS_RECVFROM = 371
constant SYS_RECVMSG (line 325) | SYS_RECVMSG = 372
constant SYS_SHUTDOWN (line 326) | SYS_SHUTDOWN = 373
constant SYS_MLOCK2 (line 327) | SYS_MLOCK2 = 374
constant SYS_COPY_FILE_RANGE (line 328) | SYS_COPY_FILE_RANGE = 375
constant SYS_PREADV2 (line 329) | SYS_PREADV2 = 376
constant SYS_PWRITEV2 (line 330) | SYS_PWRITEV2 = 377
constant SYS_S390_GUARDED_STORAGE (line 331) | SYS_S390_GUARDED_STORAGE = 378
constant SYS_STATX (line 332) | SYS_STATX = 379
constant SYS_S390_STHYI (line 333) | SYS_S390_STHYI = 380
constant SYS_KEXEC_FILE_LOAD (line 334) | SYS_KEXEC_FILE_LOAD = 381
constant SYS_IO_PGETEVENTS (line 335) | SYS_IO_PGETEVENTS = 382
constant SYS_RSEQ (line 336) | SYS_RSEQ = 383
constant SYS_PKEY_MPROTECT (line 337) | SYS_PKEY_MPROTECT = 384
constant SYS_PKEY_ALLOC (line 338) | SYS_PKEY_ALLOC = 385
constant SYS_PKEY_FREE (line 339) | SYS_PKEY_FREE = 386
constant SYS_SEMTIMEDOP (line 340) | SYS_SEMTIMEDOP = 392
constant SYS_SEMGET (line 341) | SYS_SEMGET = 393
constant SYS_SEMCTL (line 342) | SYS_SEMCTL = 394
constant SYS_SHMGET (line 343) | SYS_SHMGET = 395
constant SYS_SHMCTL (line 344) | SYS_SHMCTL = 396
constant SYS_SHMAT (line 345) | SYS_SHMAT = 397
constant SYS_SHMDT (line 346) | SYS_SHMDT = 398
constant SYS_MSGGET (line 347) | SYS_MSGGET = 399
constant SYS_MSGSND (line 348) | SYS_MSGSND = 400
constant SYS_MSGRCV (line 349) | SYS_MSGRCV = 401
constant SYS_MSGCTL (line 350) | SYS_MSGCTL = 402
constant SYS_PIDFD_SEND_SIGNAL (line 351) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 352) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 353) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 354) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 355) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 356) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 357) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 358) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 359) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 360) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 361) | SYS_PIDFD_OPEN = 434
constant SYS_CLONE3 (line 362) | SYS_CLONE3 = 435
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_VSERVER (line 256) | SYS_VSERVER = 267
constant SYS_IO_SETUP (line 257) | SYS_IO_SETUP = 268
constant SYS_IO_DESTROY (line 258) | SYS_IO_DESTROY = 269
constant SYS_IO_SUBMIT (line 259) | SYS_IO_SUBMIT = 270
constant SYS_IO_CANCEL (line 260) | SYS_IO_CANCEL = 271
constant SYS_IO_GETEVENTS (line 261) | SYS_IO_GETEVENTS = 272
constant SYS_MQ_OPEN (line 262) | SYS_MQ_OPEN = 273
constant SYS_MQ_UNLINK (line 263) | SYS_MQ_UNLINK = 274
constant SYS_MQ_TIMEDSEND (line 264) | SYS_MQ_TIMEDSEND = 275
constant SYS_MQ_TIMEDRECEIVE (line 265) | SYS_MQ_TIMEDRECEIVE = 276
constant SYS_MQ_NOTIFY (line 266) | SYS_MQ_NOTIFY = 277
constant SYS_MQ_GETSETATTR (line 267) | SYS_MQ_GETSETATTR = 278
constant SYS_WAITID (line 268) | SYS_WAITID = 279
constant SYS_TEE (line 269) | SYS_TEE = 280
constant SYS_ADD_KEY (line 270) | SYS_ADD_KEY = 281
constant SYS_REQUEST_KEY (line 271) | SYS_REQUEST_KEY = 282
constant SYS_KEYCTL (line 272) | SYS_KEYCTL = 283
constant SYS_OPENAT (line 273) | SYS_OPENAT = 284
constant SYS_MKDIRAT (line 274) | SYS_MKDIRAT = 285
constant SYS_MKNODAT (line 275) | SYS_MKNODAT = 286
constant SYS_FCHOWNAT (line 276) | SYS_FCHOWNAT = 287
constant SYS_FUTIMESAT (line 277) | SYS_FUTIMESAT = 288
constant SYS_FSTATAT64 (line 278) | SYS_FSTATAT64 = 289
constant SYS_UNLINKAT (line 279) | SYS_UNLINKAT = 290
constant SYS_RENAMEAT (line 280) | SYS_RENAMEAT = 291
constant SYS_LINKAT (line 281) | SYS_LINKAT = 292
constant SYS_SYMLINKAT (line 282) | SYS_SYMLINKAT = 293
constant SYS_READLINKAT (line 283) | SYS_READLINKAT = 294
constant SYS_FCHMODAT (line 284) | SYS_FCHMODAT = 295
constant SYS_FACCESSAT (line 285) | SYS_FACCESSAT = 296
constant SYS_PSELECT6 (line 286) | SYS_PSELECT6 = 297
constant SYS_PPOLL (line 287) | SYS_PPOLL = 298
constant SYS_UNSHARE (line 288) | SYS_UNSHARE = 299
constant SYS_SET_ROBUST_LIST (line 289) | SYS_SET_ROBUST_LIST = 300
constant SYS_GET_ROBUST_LIST (line 290) | SYS_GET_ROBUST_LIST = 301
constant SYS_MIGRATE_PAGES (line 291) | SYS_MIGRATE_PAGES = 302
constant SYS_MBIND (line 292) | SYS_MBIND = 303
constant SYS_GET_MEMPOLICY (line 293) | SYS_GET_MEMPOLICY = 304
constant SYS_SET_MEMPOLICY (line 294) | SYS_SET_MEMPOLICY = 305
constant SYS_KEXEC_LOAD (line 295) | SYS_KEXEC_LOAD = 306
constant SYS_MOVE_PAGES (line 296) | SYS_MOVE_PAGES = 307
constant SYS_GETCPU (line 297) | SYS_GETCPU = 308
constant SYS_EPOLL_PWAIT (line 298) | SYS_EPOLL_PWAIT = 309
constant SYS_UTIMENSAT (line 299) | SYS_UTIMENSAT = 310
constant SYS_SIGNALFD (line 300) | SYS_SIGNALFD = 311
constant SYS_TIMERFD_CREATE (line 301) | SYS_TIMERFD_CREATE = 312
constant SYS_EVENTFD (line 302) | SYS_EVENTFD = 313
constant SYS_FALLOCATE (line 303) | SYS_FALLOCATE = 314
constant SYS_TIMERFD_SETTIME (line 304) | SYS_TIMERFD_SETTIME = 315
constant SYS_TIMERFD_GETTIME (line 305) | SYS_TIMERFD_GETTIME = 316
constant SYS_SIGNALFD4 (line 306) | SYS_SIGNALFD4 = 317
constant SYS_EVENTFD2 (line 307) | SYS_EVENTFD2 = 318
constant SYS_EPOLL_CREATE1 (line 308) | SYS_EPOLL_CREATE1 = 319
constant SYS_DUP3 (line 309) | SYS_DUP3 = 320
constant SYS_PIPE2 (line 310) | SYS_PIPE2 = 321
constant SYS_INOTIFY_INIT1 (line 311) | SYS_INOTIFY_INIT1 = 322
constant SYS_ACCEPT4 (line 312) | SYS_ACCEPT4 = 323
constant SYS_PREADV (line 313) | SYS_PREADV = 324
constant SYS_PWRITEV (line 314) | SYS_PWRITEV = 325
constant SYS_RT_TGSIGQUEUEINFO (line 315) | SYS_RT_TGSIGQUEUEINFO = 326
constant SYS_PERF_EVENT_OPEN (line 316) | SYS_PERF_EVENT_OPEN = 327
constant SYS_RECVMMSG (line 317) | SYS_RECVMMSG = 328
constant SYS_FANOTIFY_INIT (line 318) | SYS_FANOTIFY_INIT = 329
constant SYS_FANOTIFY_MARK (line 319) | SYS_FANOTIFY_MARK = 330
constant SYS_PRLIMIT64 (line 320) | SYS_PRLIMIT64 = 331
constant SYS_NAME_TO_HANDLE_AT (line 321) | SYS_NAME_TO_HANDLE_AT = 332
constant SYS_OPEN_BY_HANDLE_AT (line 322) | SYS_OPEN_BY_HANDLE_AT = 333
constant SYS_CLOCK_ADJTIME (line 323) | SYS_CLOCK_ADJTIME = 334
constant SYS_SYNCFS (line 324) | SYS_SYNCFS = 335
constant SYS_SENDMMSG (line 325) | SYS_SENDMMSG = 336
constant SYS_SETNS (line 326) | SYS_SETNS = 337
constant SYS_PROCESS_VM_READV (line 327) | SYS_PROCESS_VM_READV = 338
constant SYS_PROCESS_VM_WRITEV (line 328) | SYS_PROCESS_VM_WRITEV = 339
constant SYS_KERN_FEATURES (line 329) | SYS_KERN_FEATURES = 340
constant SYS_KCMP (line 330) | SYS_KCMP = 341
constant SYS_FINIT_MODULE (line 331) | SYS_FINIT_MODULE = 342
constant SYS_SCHED_SETATTR (line 332) | SYS_SCHED_SETATTR = 343
constant SYS_SCHED_GETATTR (line 333) | SYS_SCHED_GETATTR = 344
constant SYS_RENAMEAT2 (line 334) | SYS_RENAMEAT2 = 345
constant SYS_SECCOMP (line 335) | SYS_SECCOMP = 346
constant SYS_GETRANDOM (line 336) | SYS_GETRANDOM = 347
constant SYS_MEMFD_CREATE (line 337) | SYS_MEMFD_CREATE = 348
constant SYS_BPF (line 338) | SYS_BPF = 349
constant SYS_EXECVEAT (line 339) | SYS_EXECVEAT = 350
constant SYS_MEMBARRIER (line 340) | SYS_MEMBARRIER = 351
constant SYS_USERFAULTFD (line 341) | SYS_USERFAULTFD = 352
constant SYS_BIND (line 342) | SYS_BIND = 353
constant SYS_LISTEN (line 343) | SYS_LISTEN = 354
constant SYS_SETSOCKOPT (line 344) | SYS_SETSOCKOPT = 355
constant SYS_MLOCK2 (line 345) | SYS_MLOCK2 = 356
constant SYS_COPY_FILE_RANGE (line 346) | SYS_COPY_FILE_RANGE = 357
constant SYS_PREADV2 (line 347) | SYS_PREADV2 = 358
constant SYS_PWRITEV2 (line 348) | SYS_PWRITEV2 = 359
constant SYS_STATX (line 349) | SYS_STATX = 360
constant SYS_IO_PGETEVENTS (line 350) | SYS_IO_PGETEVENTS = 361
constant SYS_PKEY_MPROTECT (line 351) | SYS_PKEY_MPROTECT = 362
constant SYS_PKEY_ALLOC (line 352) | SYS_PKEY_ALLOC = 363
constant SYS_PKEY_FREE (line 353) | SYS_PKEY_FREE = 364
constant SYS_RSEQ (line 354) | SYS_RSEQ = 365
constant SYS_SEMTIMEDOP (line 355) | SYS_SEMTIMEDOP = 392
constant SYS_SEMGET (line 356) | SYS_SEMGET = 393
constant SYS_SEMCTL (line 357) | SYS_SEMCTL = 394
constant SYS_SHMGET (line 358) | SYS_SHMGET = 395
constant SYS_SHMCTL (line 359) | SYS_SHMCTL = 396
constant SYS_SHMAT (line 360) | SYS_SHMAT = 397
constant SYS_SHMDT (line 361) | SYS_SHMDT = 398
constant SYS_MSGGET (line 362) | SYS_MSGGET = 399
constant SYS_MSGSND (line 363) | SYS_MSGSND = 400
constant SYS_MSGRCV (line 364) | SYS_MSGRCV = 401
constant SYS_MSGCTL (line 365) | SYS_MSGCTL = 402
constant SYS_PIDFD_SEND_SIGNAL (line 366) | SYS_PIDFD_SEND_SIGNAL = 424
constant SYS_IO_URING_SETUP (line 367) | SYS_IO_URING_SETUP = 425
constant SYS_IO_URING_ENTER (line 368) | SYS_IO_URING_ENTER = 426
constant SYS_IO_URING_REGISTER (line 369) | SYS_IO_URING_REGISTER = 427
constant SYS_OPEN_TREE (line 370) | SYS_OPEN_TREE = 428
constant SYS_MOVE_MOUNT (line 371) | SYS_MOVE_MOUNT = 429
constant SYS_FSOPEN (line 372) | SYS_FSOPEN = 430
constant SYS_FSCONFIG (line 373) | SYS_FSCONFIG = 431
constant SYS_FSMOUNT (line 374) | SYS_FSMOUNT = 432
constant SYS_FSPICK (line 375) | SYS_FSPICK = 433
constant SYS_PIDFD_OPEN (line 376) | SYS_PIDFD_OPEN = 434
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_netbsd_arm64.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_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_SETLOGIN (line 56) | SYS_SETLOGIN = 50
constant SYS_ACCT (line 57) | SYS_ACCT = 51
constant SYS_SIGPENDING (line 58) | SYS_SIGPENDING = 52
constant SYS_FSTAT (line 59) | SYS_FSTAT = 53
constant SYS_IOCTL (line 60) | SYS_IOCTL = 54
constant SYS_REBOOT (line 61) | SYS_REBOOT = 55
constant SYS_REVOKE (line 62) | SYS_REVOKE = 56
constant SYS_SYMLINK (line 63) | SYS_SYMLINK = 57
constant SYS_READLINK (line 64) | SYS_READLINK = 58
constant SYS_EXECVE (line 65) | SYS_EXECVE = 59
constant SYS_UMASK (line 66) | SYS_UMASK = 60
constant SYS_CHROOT (line 67) | SYS_CHROOT = 61
constant SYS_GETFSSTAT (line 68) | SYS_GETFSSTAT = 62
constant SYS_STATFS (line 69) | SYS_STATFS = 63
constant SYS_FSTATFS (line 70) | SYS_FSTATFS = 64
constant SYS_FHSTATFS (line 71) | SYS_FHSTATFS = 65
constant SYS_VFORK (line 72) | SYS_VFORK = 66
constant SYS_GETTIMEOFDAY (line 73) | SYS_GETTIMEOFDAY = 67
constant SYS_SETTIMEOFDAY (line 74) | SYS_SETTIMEOFDAY = 68
constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 69
constant SYS_GETITIMER (line 76) | SYS_GETITIMER = 70
constant SYS_SELECT (line 77) | SYS_SELECT = 71
constant SYS_KEVENT (line 78) | SYS_KEVENT = 72
constant SYS_MUNMAP (line 79) | SYS_MUNMAP = 73
constant SYS_MPROTECT (line 80) | SYS_MPROTECT = 74
constant SYS_MADVISE (line 81) | SYS_MADVISE = 75
constant SYS_UTIMES (line 82) | SYS_UTIMES = 76
constant SYS_FUTIMES (line 83) | SYS_FUTIMES = 77
constant SYS_MINCORE (line 84) | SYS_MINCORE = 78
constant SYS_GETGROUPS (line 85) | SYS_GETGROUPS = 79
constant SYS_SETGROUPS (line 86) | SYS_SETGROUPS = 80
constant SYS_GETPGRP (line 87) | SYS_GETPGRP = 81
constant SYS_SETPGID (line 88) | SYS_SETPGID = 82
constant SYS_FUTEX (line 89) | SYS_FUTEX = 83
constant SYS_UTIMENSAT (line 90) | SYS_UTIMENSAT = 84
constant SYS_FUTIMENS (line 91) | SYS_FUTIMENS = 85
constant SYS_KBIND (line 92) | SYS_KBIND = 86
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_PLEDGE (line 114) | SYS_PLEDGE = 108
constant SYS_PPOLL (line 115) | SYS_PPOLL = 109
constant SYS_PSELECT (line 116) | SYS_PSELECT = 110
constant SYS_SIGSUSPEND (line 117) | SYS_SIGSUSPEND = 111
constant SYS_SENDSYSLOG (line 118) | SYS_SENDSYSLOG = 112
constant SYS_UNVEIL (line 119) | SYS_UNVEIL = 114
constant SYS_GETSOCKOPT (line 120) | SYS_GETSOCKOPT = 118
constant SYS_THRKILL (line 121) | SYS_THRKILL = 119
constant SYS_READV (line 122) | SYS_READV = 120
constant SYS_WRITEV (line 123) | SYS_WRITEV = 121
constant SYS_KILL (line 124) | SYS_KILL = 122
constant SYS_FCHOWN (line 125) | SYS_FCHOWN = 123
constant SYS_FCHMOD (line 126) | SYS_FCHMOD = 124
constant SYS_SETREUID (line 127) | SYS_SETREUID = 126
constant SYS_SETREGID (line 128) | SYS_SETREGID = 127
constant SYS_RENAME (line 129) | SYS_RENAME = 128
constant SYS_FLOCK (line 130) | SYS_FLOCK = 131
constant SYS_MKFIFO (line 131) | SYS_MKFIFO = 132
constant SYS_SENDTO (line 132) | SYS_SENDTO = 133
constant SYS_SHUTDOWN (line 133) | SYS_SHUTDOWN = 134
constant SYS_SOCKETPAIR (line 134) | SYS_SOCKETPAIR = 135
constant SYS_MKDIR (line 135) | SYS_MKDIR = 136
constant SYS_RMDIR (line 136) | SYS_RMDIR = 137
constant SYS_ADJTIME (line 137) | SYS_ADJTIME = 140
constant SYS_GETLOGIN_R (line 138) | SYS_GETLOGIN_R = 141
constant SYS_SETSID (line 139) | SYS_SETSID = 147
constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 148
constant SYS_NFSSVC (line 141) | SYS_NFSSVC = 155
constant SYS_GETFH (line 142) | SYS_GETFH = 161
constant SYS_SYSARCH (line 143) | SYS_SYSARCH = 165
constant SYS_PREAD (line 144) | SYS_PREAD = 173
constant SYS_PWRITE (line 145) | SYS_PWRITE = 174
constant SYS_SETGID (line 146) | SYS_SETGID = 181
constant SYS_SETEGID (line 147) | SYS_SETEGID = 182
constant SYS_SETEUID (line 148) | SYS_SETEUID = 183
constant SYS_PATHCONF (line 149) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 150) | SYS_FPATHCONF = 192
constant SYS_SWAPCTL (line 151) | SYS_SWAPCTL = 193
constant SYS_GETRLIMIT (line 152) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 153) | SYS_SETRLIMIT = 195
constant SYS_MMAP (line 154) | SYS_MMAP = 197
constant SYS_LSEEK (line 155) | SYS_LSEEK = 199
constant SYS_TRUNCATE (line 156) | SYS_TRUNCATE = 200
constant SYS_FTRUNCATE (line 157) | SYS_FTRUNCATE = 201
constant SYS_SYSCTL (line 158) | SYS_SYSCTL = 202
constant SYS_MLOCK (line 159) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 204
constant SYS_GETPGID (line 161) | SYS_GETPGID = 207
constant SYS_UTRACE (line 162) | SYS_UTRACE = 209
constant SYS_SEMGET (line 163) | SYS_SEMGET = 221
constant SYS_MSGGET (line 164) | SYS_MSGGET = 225
constant SYS_MSGSND (line 165) | SYS_MSGSND = 226
constant SYS_MSGRCV (line 166) | SYS_MSGRCV = 227
constant SYS_SHMAT (line 167) | SYS_SHMAT = 228
constant SYS_SHMDT (line 168) | SYS_SHMDT = 230
constant SYS_MINHERIT (line 169) | SYS_MINHERIT = 250
constant SYS_POLL (line 170) | SYS_POLL = 252
constant SYS_ISSETUGID (line 171) | SYS_ISSETUGID = 253
constant SYS_LCHOWN (line 172) | SYS_LCHOWN = 254
constant SYS_GETSID (line 173) | SYS_GETSID = 255
constant SYS_MSYNC (line 174) | SYS_MSYNC = 256
constant SYS_PIPE (line 175) | SYS_PIPE = 263
constant SYS_FHOPEN (line 176) | SYS_FHOPEN = 264
constant SYS_PREADV (line 177) | SYS_PREADV = 267
constant SYS_PWRITEV (line 178) | SYS_PWRITEV = 268
constant SYS_KQUEUE (line 179) | SYS_KQUEUE = 269
constant SYS_MLOCKALL (line 180) | SYS_MLOCKALL = 271
constant SYS_MUNLOCKALL (line 181) | SYS_MUNLOCKALL = 272
constant SYS_GETRESUID (line 182) | SYS_GETRESUID = 281
constant SYS_SETRESUID (line 183) | SYS_SETRESUID = 282
constant SYS_GETRESGID (line 184) | SYS_GETRESGID = 283
constant SYS_SETRESGID (line 185) | SYS_SETRESGID = 284
constant SYS_MQUERY (line 186) | SYS_MQUERY = 286
constant SYS_CLOSEFROM (line 187) | SYS_CLOSEFROM = 287
constant SYS_SIGALTSTACK (line 188) | SYS_SIGALTSTACK = 288
constant SYS_SHMGET (line 189) | SYS_SHMGET = 289
constant SYS_SEMOP (line 190) | SYS_SEMOP = 290
constant SYS_FHSTAT (line 191) | SYS_FHSTAT = 294
constant SYS___SEMCTL (line 192) | SYS___SEMCTL = 295
constant SYS_SHMCTL (line 193) | SYS_SHMCTL = 296
constant SYS_MSGCTL (line 194) | SYS_MSGCTL = 297
constant SYS_SCHED_YIELD (line 195) | SYS_SCHED_YIELD = 298
constant SYS_GETTHRID (line 196) | SYS_GETTHRID = 299
constant SYS___THRWAKEUP (line 197) | SYS___THRWAKEUP = 301
constant SYS___THREXIT (line 198) | SYS___THREXIT = 302
constant SYS___THRSIGDIVERT (line 199) | SYS___THRSIGDIVERT = 303
constant SYS___GETCWD (line 200) | SYS___GETCWD = 304
constant SYS_ADJFREQ (line 201) | SYS_ADJFREQ = 305
constant SYS_SETRTABLE (line 202) | SYS_SETRTABLE = 310
constant SYS_GETRTABLE (line 203) | SYS_GETRTABLE = 311
constant SYS_FACCESSAT (line 204) | SYS_FACCESSAT = 313
constant SYS_FCHMODAT (line 205) | SYS_FCHMODAT = 314
constant SYS_FCHOWNAT (line 206) | SYS_FCHOWNAT = 315
constant SYS_LINKAT (line 207) | SYS_LINKAT = 317
constant SYS_MKDIRAT (line 208) | SYS_MKDIRAT = 318
constant SYS_MKFIFOAT (line 209) | SYS_MKFIFOAT = 319
constant SYS_MKNODAT (line 210) | SYS_MKNODAT = 320
constant SYS_OPENAT (line 211) | SYS_OPENAT = 321
constant SYS_READLINKAT (line 212) | SYS_READLINKAT = 322
constant SYS_RENAMEAT (line 213) | SYS_RENAMEAT = 323
constant SYS_SYMLINKAT (line 214) | SYS_SYMLINKAT = 324
constant SYS_UNLINKAT (line 215) | SYS_UNLINKAT = 325
constant SYS___SET_TCB (line 216) | SYS___SET_TCB = 329
constant SYS___GET_TCB (line 217) | 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_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_SETLOGIN (line 56) | SYS_SETLOGIN = 50
constant SYS_ACCT (line 57) | SYS_ACCT = 51
constant SYS_SIGPENDING (line 58) | SYS_SIGPENDING = 52
constant SYS_FSTAT (line 59) | SYS_FSTAT = 53
constant SYS_IOCTL (line 60) | SYS_IOCTL = 54
constant SYS_REBOOT (line 61) | SYS_REBOOT = 55
constant SYS_REVOKE (line 62) | SYS_REVOKE = 56
constant SYS_SYMLINK (line 63) | SYS_SYMLINK = 57
constant SYS_READLINK (line 64) | SYS_READLINK = 58
constant SYS_EXECVE (line 65) | SYS_EXECVE = 59
constant SYS_UMASK (line 66) | SYS_UMASK = 60
constant SYS_CHROOT (line 67) | SYS_CHROOT = 61
constant SYS_GETFSSTAT (line 68) | SYS_GETFSSTAT = 62
constant SYS_STATFS (line 69) | SYS_STATFS = 63
constant SYS_FSTATFS (line 70) | SYS_FSTATFS = 64
constant SYS_FHSTATFS (line 71) | SYS_FHSTATFS = 65
constant SYS_VFORK (line 72) | SYS_VFORK = 66
constant SYS_GETTIMEOFDAY (line 73) | SYS_GETTIMEOFDAY = 67
constant SYS_SETTIMEOFDAY (line 74) | SYS_SETTIMEOFDAY = 68
constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 69
constant SYS_GETITIMER (line 76) | SYS_GETITIMER = 70
constant SYS_SELECT (line 77) | SYS_SELECT = 71
constant SYS_KEVENT (line 78) | SYS_KEVENT = 72
constant SYS_MUNMAP (line 79) | SYS_MUNMAP = 73
constant SYS_MPROTECT (line 80) | SYS_MPROTECT = 74
constant SYS_MADVISE (line 81) | SYS_MADVISE = 75
constant SYS_UTIMES (line 82) | SYS_UTIMES = 76
constant SYS_FUTIMES (line 83) | SYS_FUTIMES = 77
constant SYS_MINCORE (line 84) | SYS_MINCORE = 78
constant SYS_GETGROUPS (line 85) | SYS_GETGROUPS = 79
constant SYS_SETGROUPS (line 86) | SYS_SETGROUPS = 80
constant SYS_GETPGRP (line 87) | SYS_GETPGRP = 81
constant SYS_SETPGID (line 88) | SYS_SETPGID = 82
constant SYS_FUTEX (line 89) | SYS_FUTEX = 83
constant SYS_UTIMENSAT (line 90) | SYS_UTIMENSAT = 84
constant SYS_FUTIMENS (line 91) | SYS_FUTIMENS = 85
constant SYS_KBIND (line 92) | SYS_KBIND = 86
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_PLEDGE (line 114) | SYS_PLEDGE = 108
constant SYS_PPOLL (line 115) | SYS_PPOLL = 109
constant SYS_PSELECT (line 116) | SYS_PSELECT = 110
constant SYS_SIGSUSPEND (line 117) | SYS_SIGSUSPEND = 111
constant SYS_SENDSYSLOG (line 118) | SYS_SENDSYSLOG = 112
constant SYS_UNVEIL (line 119) | SYS_UNVEIL = 114
constant SYS_GETSOCKOPT (line 120) | SYS_GETSOCKOPT = 118
constant SYS_THRKILL (line 121) | SYS_THRKILL = 119
constant SYS_READV (line 122) | SYS_READV = 120
constant SYS_WRITEV (line 123) | SYS_WRITEV = 121
constant SYS_KILL (line 124) | SYS_KILL = 122
constant SYS_FCHOWN (line 125) | SYS_FCHOWN = 123
constant SYS_FCHMOD (line 126) | SYS_FCHMOD = 124
constant SYS_SETREUID (line 127) | SYS_SETREUID = 126
constant SYS_SETREGID (line 128) | SYS_SETREGID = 127
constant SYS_RENAME (line 129) | SYS_RENAME = 128
constant SYS_FLOCK (line 130) | SYS_FLOCK = 131
constant SYS_MKFIFO (line 131) | SYS_MKFIFO = 132
constant SYS_SENDTO (line 132) | SYS_SENDTO = 133
constant SYS_SHUTDOWN (line 133) | SYS_SHUTDOWN = 134
constant SYS_SOCKETPAIR (line 134) | SYS_SOCKETPAIR = 135
constant SYS_MKDIR (line 135) | SYS_MKDIR = 136
constant SYS_RMDIR (line 136) | SYS_RMDIR = 137
constant SYS_ADJTIME (line 137) | SYS_ADJTIME = 140
constant SYS_GETLOGIN_R (line 138) | SYS_GETLOGIN_R = 141
constant SYS_SETSID (line 139) | SYS_SETSID = 147
constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 148
constant SYS_NFSSVC (line 141) | SYS_NFSSVC = 155
constant SYS_GETFH (line 142) | SYS_GETFH = 161
constant SYS_SYSARCH (line 143) | SYS_SYSARCH = 165
constant SYS_PREAD (line 144) | SYS_PREAD = 173
constant SYS_PWRITE (line 145) | SYS_PWRITE = 174
constant SYS_SETGID (line 146) | SYS_SETGID = 181
constant SYS_SETEGID (line 147) | SYS_SETEGID = 182
constant SYS_SETEUID (line 148) | SYS_SETEUID = 183
constant SYS_PATHCONF (line 149) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 150) | SYS_FPATHCONF = 192
constant SYS_SWAPCTL (line 151) | SYS_SWAPCTL = 193
constant SYS_GETRLIMIT (line 152) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 153) | SYS_SETRLIMIT = 195
constant SYS_MMAP (line 154) | SYS_MMAP = 197
constant SYS_LSEEK (line 155) | SYS_LSEEK = 199
constant SYS_TRUNCATE (line 156) | SYS_TRUNCATE = 200
constant SYS_FTRUNCATE (line 157) | SYS_FTRUNCATE = 201
constant SYS_SYSCTL (line 158) | SYS_SYSCTL = 202
constant SYS_MLOCK (line 159) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 204
constant SYS_GETPGID (line 161) | SYS_GETPGID = 207
constant SYS_UTRACE (line 162) | SYS_UTRACE = 209
constant SYS_SEMGET (line 163) | SYS_SEMGET = 221
constant SYS_MSGGET (line 164) | SYS_MSGGET = 225
constant SYS_MSGSND (line 165) | SYS_MSGSND = 226
constant SYS_MSGRCV (line 166) | SYS_MSGRCV = 227
constant SYS_SHMAT (line 167) | SYS_SHMAT = 228
constant SYS_SHMDT (line 168) | SYS_SHMDT = 230
constant SYS_MINHERIT (line 169) | SYS_MINHERIT = 250
constant SYS_POLL (line 170) | SYS_POLL = 252
constant SYS_ISSETUGID (line 171) | SYS_ISSETUGID = 253
constant SYS_LCHOWN (line 172) | SYS_LCHOWN = 254
constant SYS_GETSID (line 173) | SYS_GETSID = 255
constant SYS_MSYNC (line 174) | SYS_MSYNC = 256
constant SYS_PIPE (line 175) | SYS_PIPE = 263
constant SYS_FHOPEN (line 176) | SYS_FHOPEN = 264
constant SYS_PREADV (line 177) | SYS_PREADV = 267
constant SYS_PWRITEV (line 178) | SYS_PWRITEV = 268
constant SYS_KQUEUE (line 179) | SYS_KQUEUE = 269
constant SYS_MLOCKALL (line 180) | SYS_MLOCKALL = 271
constant SYS_MUNLOCKALL (line 181) | SYS_MUNLOCKALL = 272
constant SYS_GETRESUID (line 182) | SYS_GETRESUID = 281
constant SYS_SETRESUID (line 183) | SYS_SETRESUID = 282
constant SYS_GETRESGID (line 184) | SYS_GETRESGID = 283
constant SYS_SETRESGID (line 185) | SYS_SETRESGID = 284
constant SYS_MQUERY (line 186) | SYS_MQUERY = 286
constant SYS_CLOSEFROM (line 187) | SYS_CLOSEFROM = 287
constant SYS_SIGALTSTACK (line 188) | SYS_SIGALTSTACK = 288
constant SYS_SHMGET (line 189) | SYS_SHMGET = 289
constant SYS_SEMOP (line 190) | SYS_SEMOP = 290
constant SYS_FHSTAT (line 191) | SYS_FHSTAT = 294
constant SYS___SEMCTL (line 192) | SYS___SEMCTL = 295
constant SYS_SHMCTL (line 193) | SYS_SHMCTL = 296
constant SYS_MSGCTL (line 194) | SYS_MSGCTL = 297
constant SYS_SCHED_YIELD (line 195) | SYS_SCHED_YIELD = 298
constant SYS_GETTHRID (line 196) | SYS_GETTHRID = 299
constant SYS___THRWAKEUP (line 197) | SYS___THRWAKEUP = 301
constant SYS___THREXIT (line 198) | SYS___THREXIT = 302
constant SYS___THRSIGDIVERT (line 199) | SYS___THRSIGDIVERT = 303
constant SYS___GETCWD (line 200) | SYS___GETCWD = 304
constant SYS_ADJFREQ (line 201) | SYS_ADJFREQ = 305
constant SYS_SETRTABLE (line 202) | SYS_SETRTABLE = 310
constant SYS_GETRTABLE (line 203) | SYS_GETRTABLE = 311
constant SYS_FACCESSAT (line 204) | SYS_FACCESSAT = 313
constant SYS_FCHMODAT (line 205) | SYS_FCHMODAT = 314
constant SYS_FCHOWNAT (line 206) | SYS_FCHOWNAT = 315
constant SYS_LINKAT (line 207) | SYS_LINKAT = 317
constant SYS_MKDIRAT (line 208) | SYS_MKDIRAT = 318
constant SYS_MKFIFOAT (line 209) | SYS_MKFIFOAT = 319
constant SYS_MKNODAT (line 210) | SYS_MKNODAT = 320
constant SYS_OPENAT (line 211) | SYS_OPENAT = 321
constant SYS_READLINKAT (line 212) | SYS_READLINKAT = 322
constant SYS_RENAMEAT (line 213) | SYS_RENAMEAT = 323
constant SYS_SYMLINKAT (line 214) | SYS_SYMLINKAT = 324
constant SYS_UNLINKAT (line 215) | SYS_UNLINKAT = 325
constant SYS___SET_TCB (line 216) | SYS___SET_TCB = 329
constant SYS___GET_TCB (line 217) | 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_SETLOGIN (line 56) | SYS_SETLOGIN = 50
constant SYS_ACCT (line 57) | SYS_ACCT = 51
constant SYS_SIGPENDING (line 58) | SYS_SIGPENDING = 52
constant SYS_FSTAT (line 59) | SYS_FSTAT = 53
constant SYS_IOCTL (line 60) | SYS_IOCTL = 54
constant SYS_REBOOT (line 61) | SYS_REBOOT = 55
constant SYS_REVOKE (line 62) | SYS_REVOKE = 56
constant SYS_SYMLINK (line 63) | SYS_SYMLINK = 57
constant SYS_READLINK (line 64) | SYS_READLINK = 58
constant SYS_EXECVE (line 65) | SYS_EXECVE = 59
constant SYS_UMASK (line 66) | SYS_UMASK = 60
constant SYS_CHROOT (line 67) | SYS_CHROOT = 61
constant SYS_GETFSSTAT (line 68) | SYS_GETFSSTAT = 62
constant SYS_STATFS (line 69) | SYS_STATFS = 63
constant SYS_FSTATFS (line 70) | SYS_FSTATFS = 64
constant SYS_FHSTATFS (line 71) | SYS_FHSTATFS = 65
constant SYS_VFORK (line 72) | SYS_VFORK = 66
constant SYS_GETTIMEOFDAY (line 73) | SYS_GETTIMEOFDAY = 67
constant SYS_SETTIMEOFDAY (line 74) | SYS_SETTIMEOFDAY = 68
constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 69
constant SYS_GETITIMER (line 76) | SYS_GETITIMER = 70
constant SYS_SELECT (line 77) | SYS_SELECT = 71
constant SYS_KEVENT (line 78) | SYS_KEVENT = 72
constant SYS_MUNMAP (line 79) | SYS_MUNMAP = 73
constant SYS_MPROTECT (line 80) | SYS_MPROTECT = 74
constant SYS_MADVISE (line 81) | SYS_MADVISE = 75
constant SYS_UTIMES (line 82) | SYS_UTIMES = 76
constant SYS_FUTIMES (line 83) | SYS_FUTIMES = 77
constant SYS_MINCORE (line 84) | SYS_MINCORE = 78
constant SYS_GETGROUPS (line 85) | SYS_GETGROUPS = 79
constant SYS_SETGROUPS (line 86) | SYS_SETGROUPS = 80
constant SYS_GETPGRP (line 87) | SYS_GETPGRP = 81
constant SYS_SETPGID (line 88) | SYS_SETPGID = 82
constant SYS_FUTEX (line 89) | SYS_FUTEX = 83
constant SYS_UTIMENSAT (line 90) | SYS_UTIMENSAT = 84
constant SYS_FUTIMENS (line 91) | SYS_FUTIMENS = 85
constant SYS_KBIND (line 92) | SYS_KBIND = 86
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_PLEDGE (line 114) | SYS_PLEDGE = 108
constant SYS_PPOLL (line 115) | SYS_PPOLL = 109
constant SYS_PSELECT (line 116) | SYS_PSELECT = 110
constant SYS_SIGSUSPEND (line 117) | SYS_SIGSUSPEND = 111
constant SYS_SENDSYSLOG (line 118) | SYS_SENDSYSLOG = 112
constant SYS_UNVEIL (line 119) | SYS_UNVEIL = 114
constant SYS_GETSOCKOPT (line 120) | SYS_GETSOCKOPT = 118
constant SYS_THRKILL (line 121) | SYS_THRKILL = 119
constant SYS_READV (line 122) | SYS_READV = 120
constant SYS_WRITEV (line 123) | SYS_WRITEV = 121
constant SYS_KILL (line 124) | SYS_KILL = 122
constant SYS_FCHOWN (line 125) | SYS_FCHOWN = 123
constant SYS_FCHMOD (line 126) | SYS_FCHMOD = 124
constant SYS_SETREUID (line 127) | SYS_SETREUID = 126
constant SYS_SETREGID (line 128) | SYS_SETREGID = 127
constant SYS_RENAME (line 129) | SYS_RENAME = 128
constant SYS_FLOCK (line 130) | SYS_FLOCK = 131
constant SYS_MKFIFO (line 131) | SYS_MKFIFO = 132
constant SYS_SENDTO (line 132) | SYS_SENDTO = 133
constant SYS_SHUTDOWN (line 133) | SYS_SHUTDOWN = 134
constant SYS_SOCKETPAIR (line 134) | SYS_SOCKETPAIR = 135
constant SYS_MKDIR (line 135) | SYS_MKDIR = 136
constant SYS_RMDIR (line 136) | SYS_RMDIR = 137
constant SYS_ADJTIME (line 137) | SYS_ADJTIME = 140
constant SYS_GETLOGIN_R (line 138) | SYS_GETLOGIN_R = 141
constant SYS_SETSID (line 139) | SYS_SETSID = 147
constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 148
constant SYS_NFSSVC (line 141) | SYS_NFSSVC = 155
constant SYS_GETFH (line 142) | SYS_GETFH = 161
constant SYS_SYSARCH (line 143) | SYS_SYSARCH = 165
constant SYS_PREAD (line 144) | SYS_PREAD = 173
constant SYS_PWRITE (line 145) | SYS_PWRITE = 174
constant SYS_SETGID (line 146) | SYS_SETGID = 181
constant SYS_SETEGID (line 147) | SYS_SETEGID = 182
constant SYS_SETEUID (line 148) | SYS_SETEUID = 183
constant SYS_PATHCONF (line 149) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 150) | SYS_FPATHCONF = 192
constant SYS_SWAPCTL (line 151) | SYS_SWAPCTL = 193
constant SYS_GETRLIMIT (line 152) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 153) | SYS_SETRLIMIT = 195
constant SYS_MMAP (line 154) | SYS_MMAP = 197
constant SYS_LSEEK (line 155) | SYS_LSEEK = 199
constant SYS_TRUNCATE (line 156) | SYS_TRUNCATE = 200
constant SYS_FTRUNCATE (line 157) | SYS_FTRUNCATE = 201
constant SYS_SYSCTL (line 158) | SYS_SYSCTL = 202
constant SYS_MLOCK (line 159) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 204
constant SYS_GETPGID (line 161) | SYS_GETPGID = 207
constant SYS_UTRACE (line 162) | SYS_UTRACE = 209
constant SYS_SEMGET (line 163) | SYS_SEMGET = 221
constant SYS_MSGGET (line 164) | SYS_MSGGET = 225
constant SYS_MSGSND (line 165) | SYS_MSGSND = 226
constant SYS_MSGRCV (line 166) | SYS_MSGRCV = 227
constant SYS_SHMAT (line 167) | SYS_SHMAT = 228
constant SYS_SHMDT (line 168) | SYS_SHMDT = 230
constant SYS_MINHERIT (line 169) | SYS_MINHERIT = 250
constant SYS_POLL (line 170) | SYS_POLL = 252
constant SYS_ISSETUGID (line 171) | SYS_ISSETUGID = 253
constant SYS_LCHOWN (line 172) | SYS_LCHOWN = 254
constant SYS_GETSID (line 173) | SYS_GETSID = 255
constant SYS_MSYNC (line 174) | SYS_MSYNC = 256
constant SYS_PIPE (line 175) | SYS_PIPE = 263
constant SYS_FHOPEN (line 176) | SYS_FHOPEN = 264
constant SYS_PREADV (line 177) | SYS_PREADV = 267
constant SYS_PWRITEV (line 178) | SYS_PWRITEV = 268
constant SYS_KQUEUE (line 179) | SYS_KQUEUE = 269
constant SYS_MLOCKALL (line 180) | SYS_MLOCKALL = 271
constant SYS_MUNLOCKALL (line 181) | SYS_MUNLOCKALL = 272
constant SYS_GETRESUID (line 182) | SYS_GETRESUID = 281
constant SYS_SETRESUID (line 183) | SYS_SETRESUID = 282
constant SYS_GETRESGID (line 184) | SYS_GETRESGID = 283
constant SYS_SETRESGID (line 185) | SYS_SETRESGID = 284
constant SYS_MQUERY (line 186) | SYS_MQUERY = 286
constant SYS_CLOSEFROM (line 187) | SYS_CLOSEFROM = 287
constant SYS_SIGALTSTACK (line 188) | SYS_SIGALTSTACK = 288
constant SYS_SHMGET (line 189) | SYS_SHMGET = 289
constant SYS_SEMOP (line 190) | SYS_SEMOP = 290
constant SYS_FHSTAT (line 191) | SYS_FHSTAT = 294
constant SYS___SEMCTL (line 192) | SYS___SEMCTL = 295
constant SYS_SHMCTL (line 193) | SYS_SHMCTL = 296
constant SYS_MSGCTL (line 194) | SYS_MSGCTL = 297
constant SYS_SCHED_YIELD (line 195) | SYS_SCHED_YIELD = 298
constant SYS_GETTHRID (line 196) | SYS_GETTHRID = 299
constant SYS___THRWAKEUP (line 197) | SYS___THRWAKEUP = 301
constant SYS___THREXIT (line 198) | SYS___THREXIT = 302
constant SYS___THRSIGDIVERT (line 199) | SYS___THRSIGDIVERT = 303
constant SYS___GETCWD (line 200) | SYS___GETCWD = 304
constant SYS_ADJFREQ (line 201) | SYS_ADJFREQ = 305
constant SYS_SETRTABLE (line 202) | SYS_SETRTABLE = 310
constant SYS_GETRTABLE (line 203) | SYS_GETRTABLE = 311
constant SYS_FACCESSAT (line 204) | SYS_FACCESSAT = 313
constant SYS_FCHMODAT (line 205) | SYS_FCHMODAT = 314
constant SYS_FCHOWNAT (line 206) | SYS_FCHOWNAT = 315
constant SYS_LINKAT (line 207) | SYS_LINKAT = 317
constant SYS_MKDIRAT (line 208) | SYS_MKDIRAT = 318
constant SYS_MKFIFOAT (line 209) | SYS_MKFIFOAT = 319
constant SYS_MKNODAT (line 210) | SYS_MKNODAT = 320
constant SYS_OPENAT (line 211) | SYS_OPENAT = 321
constant SYS_READLINKAT (line 212) | SYS_READLINKAT = 322
constant SYS_RENAMEAT (line 213) | SYS_RENAMEAT = 323
constant SYS_SYMLINKAT (line 214) | SYS_SYMLINKAT = 324
constant SYS_UNLINKAT (line 215) | SYS_UNLINKAT = 325
constant SYS___SET_TCB (line 216) | SYS___SET_TCB = 329
constant SYS___GET_TCB (line 217) | SYS___GET_TCB = 330
FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.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_SETLOGIN (line 56) | SYS_SETLOGIN = 50
constant SYS_ACCT (line 57) | SYS_ACCT = 51
constant SYS_SIGPENDING (line 58) | SYS_SIGPENDING = 52
constant SYS_FSTAT (line 59) | SYS_FSTAT = 53
constant SYS_IOCTL (line 60) | SYS_IOCTL = 54
constant SYS_REBOOT (line 61) | SYS_REBOOT = 55
constant SYS_REVOKE (line 62) | SYS_REVOKE = 56
constant SYS_SYMLINK (line 63) | SYS_SYMLINK = 57
constant SYS_READLINK (line 64) | SYS_READLINK = 58
constant SYS_EXECVE (line 65) | SYS_EXECVE = 59
constant SYS_UMASK (line 66) | SYS_UMASK = 60
constant SYS_CHROOT (line 67) | SYS_CHROOT = 61
constant SYS_GETFSSTAT (line 68) | SYS_GETFSSTAT = 62
constant SYS_STATFS (line 69) | SYS_STATFS = 63
constant SYS_FSTATFS (line 70) | SYS_FSTATFS = 64
constant SYS_FHSTATFS (line 71) | SYS_FHSTATFS = 65
constant SYS_VFORK (line 72) | SYS_VFORK = 66
constant SYS_GETTIMEOFDAY (line 73) | SYS_GETTIMEOFDAY = 67
constant SYS_SETTIMEOFDAY (line 74) | SYS_SETTIMEOFDAY = 68
constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 69
constant SYS_GETITIMER (line 76) | SYS_GETITIMER = 70
constant SYS_SELECT (line 77) | SYS_SELECT = 71
constant SYS_KEVENT (line 78) | SYS_KEVENT = 72
constant SYS_MUNMAP (line 79) | SYS_MUNMAP = 73
constant SYS_MPROTECT (line 80) | SYS_MPROTECT = 74
constant SYS_MADVISE (line 81) | SYS_MADVISE = 75
constant SYS_UTIMES (line 82) | SYS_UTIMES = 76
constant SYS_FUTIMES (line 83) | SYS_FUTIMES = 77
constant SYS_GETGROUPS (line 84) | SYS_GETGROUPS = 79
constant SYS_SETGROUPS (line 85) | SYS_SETGROUPS = 80
constant SYS_GETPGRP (line 86) | SYS_GETPGRP = 81
constant SYS_SETPGID (line 87) | SYS_SETPGID = 82
constant SYS_FUTEX (line 88) | SYS_FUTEX = 83
constant SYS_UTIMENSAT (line 89) | SYS_UTIMENSAT = 84
constant SYS_FUTIMENS (line 90) | SYS_FUTIMENS = 85
constant SYS_KBIND (line 91) | SYS_KBIND = 86
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_ACCEPT4 (line 98) | SYS_ACCEPT4 = 93
constant SYS___THRSLEEP (line 99) | SYS___THRSLEEP = 94
constant SYS_FSYNC (line 100) | SYS_FSYNC = 95
constant SYS_SETPRIORITY (line 101) | SYS_SETPRIORITY = 96
constant SYS_SOCKET (line 102) | SYS_SOCKET = 97
constant SYS_CONNECT (line 103) | SYS_CONNECT = 98
constant SYS_GETDENTS (line 104) | SYS_GETDENTS = 99
constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 100
constant SYS_PIPE2 (line 106) | SYS_PIPE2 = 101
constant SYS_DUP3 (line 107) | SYS_DUP3 = 102
constant SYS_SIGRETURN (line 108) | SYS_SIGRETURN = 103
constant SYS_BIND (line 109) | SYS_BIND = 104
constant SYS_SETSOCKOPT (line 110) | SYS_SETSOCKOPT = 105
constant SYS_LISTEN (line 111) | SYS_LISTEN = 106
constant SYS_CHFLAGSAT (line 112) | SYS_CHFLAGSAT = 107
constant SYS_PLEDGE (line 113) | SYS_PLEDGE = 108
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_SENDSYSLOG (line 117) | SYS_SENDSYSLOG = 112
constant SYS_UNVEIL (line 118) | SYS_UNVEIL = 114
constant SYS_GETSOCKOPT (line 119) | SYS_GETSOCKOPT = 118
constant SYS_THRKILL (line 120) | SYS_THRKILL = 119
constant SYS_READV (line 121) | SYS_READV = 120
constant SYS_WRITEV (line 122) | SYS_WRITEV = 121
constant SYS_KILL (line 123) | SYS_KILL = 122
constant SYS_FCHOWN (line 124) | SYS_FCHOWN = 123
constant SYS_FCHMOD (line 125) | SYS_FCHMOD = 124
constant SYS_SETREUID (line 126) | SYS_SETREUID = 126
constant SYS_SETREGID (line 127) | SYS_SETREGID = 127
constant SYS_RENAME (line 128) | SYS_RENAME = 128
constant SYS_FLOCK (line 129) | SYS_FLOCK = 131
constant SYS_MKFIFO (line 130) | SYS_MKFIFO = 132
constant SYS_SENDTO (line 131) | SYS_SENDTO = 133
constant SYS_SHUTDOWN (line 132) | SYS_SHUTDOWN = 134
constant SYS_SOCKETPAIR (line 133) | SYS_SOCKETPAIR = 135
constant SYS_MKDIR (line 134) | SYS_MKDIR = 136
constant SYS_RMDIR (line 135) | SYS_RMDIR = 137
constant SYS_ADJTIME (line 136) | SYS_ADJTIME = 140
constant SYS_GETLOGIN_R (line 137) | SYS_GETLOGIN_R = 141
constant SYS_SETSID (line 138) | SYS_SETSID = 147
constant SYS_QUOTACTL (line 139) | SYS_QUOTACTL = 148
constant SYS_NFSSVC (line 140) | SYS_NFSSVC = 155
constant SYS_GETFH (line 141) | SYS_GETFH = 161
constant SYS_SYSARCH (line 142) | SYS_SYSARCH = 165
constant SYS_PREAD (line 143) | SYS_PREAD = 173
constant SYS_PWRITE (line 144) | SYS_PWRITE = 174
constant SYS_SETGID (line 145) | SYS_SETGID = 181
constant SYS_SETEGID (line 146) | SYS_SETEGID = 182
constant SYS_SETEUID (line 147) | SYS_SETEUID = 183
constant SYS_PATHCONF (line 148) | SYS_PATHCONF = 191
constant SYS_FPATHCONF (line 149) | SYS_FPATHCONF = 192
constant SYS_SWAPCTL (line 150) | SYS_SWAPCTL = 193
constant SYS_GETRLIMIT (line 151) | SYS_GETRLIMIT = 194
constant SYS_SETRLIMIT (line 152) | SYS_SETRLIMIT = 195
constant SYS_MMAP (line 153) | SYS_MMAP = 197
constant SYS_LSEEK (line 154) | SYS_LSEEK = 199
constant SYS_TRUNCATE (line 155) | SYS_TRUNCATE = 200
constant SYS_FTRUNCATE (line 156) | SYS_FTRUNCATE = 201
constant SYS_SYSCTL (line 157) | SYS_SYSCTL = 202
constant SYS_MLOCK (line 158) | SYS_MLOCK = 203
constant SYS_MUNLOCK (line 159) | SYS_MUNLOCK = 204
constant SYS_GETPGID (line 160) | SYS_GETPGID = 207
constant SYS_UTRACE (line 161) | SYS_UTRACE = 209
constant SYS_SEMGET (line 162) | SYS_SEMGET = 221
constant SYS_MSGGET (line 163) | SYS_MSGGET = 225
constant SYS_MSGSND (line 164) | SYS_MSGSND = 226
constant SYS_MSGRCV (line 165) | SYS_MSGRCV = 227
constant SYS_SHMAT (line 166) | SYS_SHMAT = 228
constant SYS_SHMDT (line 167) | SYS_SHMDT = 230
constant SYS_MINHERIT (line 168) | SYS_MINHERIT = 250
constant SYS_POLL (line 169) | SYS_POLL = 252
constant SYS_ISSETUGID (line 170) | SYS_ISSETUGID = 253
constant SYS_LCHOWN (line 171) | SYS_LCHOWN = 254
constant SYS_GETSID (line 172) | SYS_GETSID = 255
constant SYS_MSYNC (line 173) | SYS_MSYNC = 256
constant SYS_PIPE (line 174) | SYS_PIPE = 263
constant SYS_FHOPEN (line 175) | SYS_FHOPEN = 264
constant SYS_PREADV (line 176) | SYS_PREADV = 267
constant SYS_PWRITEV (line 177) | SYS_PWRITEV = 268
constant SYS_KQUEUE (line 178) | SYS_KQUEUE = 269
constant SYS_MLOCKALL (line 179) | SYS_MLOCKALL = 271
constant SYS_MUNLOCKALL (line 180) | SYS_MUNLOCKALL = 272
constant SYS_GETRESUID (line 181) | SYS_GETRESUID = 281
constant SYS_SETRESUID (line 182) | SYS_SETRESUID = 282
constant SYS_GETRESGID (line 183) | SYS_GETRESGID = 283
constant SYS_SETRESGID (line 184) | SYS_SETRESGID = 284
constant SYS_MQUERY (line 185) | SYS_MQUERY = 286
constant SYS_CLOSEFROM (line 186) | SYS_CLOSEFROM = 287
constant SYS_SIGALTSTACK (line 187) | SYS_SIGALTSTACK = 288
constant SYS_SHMGET (line 188) | SYS_SHMGET = 289
constant SYS_SEMOP (line 189) | SYS_SEMOP = 290
constant SYS_FHSTAT (line 190) | SYS_FHSTAT = 294
constant SYS___SEMCTL (line 191) | SYS___SEMCTL = 295
constant SYS_SHMCTL (line 192) | SYS_SHMCTL = 296
constant SYS_MSGCTL (line 193) | SYS_MSGCTL = 297
constant SYS_SCHED_YIELD (line 194) | SYS_SCHED_YIELD = 298
constant SYS_GETTHRID (line 195) | SYS_GETTHRID = 299
constant SYS___THRWAKEUP (line 196) | SYS___THRWAKEUP = 301
constant SYS___THREXIT (line 197) | SYS___THREXIT = 302
constant SYS___THRSIGDIVERT (line 198) | SYS___THRSIGDIVERT = 303
constant SYS___GETCWD (line 199) | SYS___GETCWD = 304
constant SYS_ADJFREQ (line 200) | SYS_ADJFREQ = 305
constant SYS_SETRTABLE (line 201) | SYS_SETRTABLE = 310
constant SYS_GETRTABLE (line 202) | SYS_GETRTABLE = 311
constant SYS_FACCESSAT (line 203) | SYS_FACCESSAT = 313
constant SYS_FCHMODAT (line 204) | SYS_FCHMODAT = 314
constant SYS_FCHOWNAT (line 205) | SYS_FCHOWNAT = 315
constant SYS_LINKAT (line 206) | SYS_LINKAT = 317
constant SYS_MKDIRAT (line 207) | SYS_MKDIRAT = 318
constant SYS_MKFIFOAT (line 208) | SYS_MKFIFOAT = 319
constant SYS_MKNODAT (line 209) | SYS_MKNODAT = 320
constant SYS_OPENAT (line 210) | SYS_OPENAT = 321
constant SYS_READLINKAT (line 211) | SYS_READLINKAT = 322
constant SYS_RENAMEAT (line 212) | SYS_RENAMEAT = 323
constant SYS_SYMLINKAT (line 213) | SYS_SYMLINKAT = 324
constant SYS_UNLINKAT (line 214) | SYS_UNLINKAT = 325
constant SYS___SET_TCB (line 215) | SYS___SET_TCB = 329
constant SYS___GET_TCB (line 216) | SYS___GET_TCB = 330
FILE: vendor/golang.org/x/sys/unix/ztypes_aix_ppc.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 = 0x3ff
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 off64 (line 24) | type off64
type off (line 25) | type off
type Mode_t (line 26) | type Mode_t
type Timespec (line 28) | type Timespec struct
type Timeval (line 33) | type Timeval struct
type Timeval32 (line 38) | type Timeval32 struct
type Timex (line 43) | type Timex struct
type Time_t (line 45) | type Time_t
type Tms (line 47) | type Tms struct
type Utimbuf (line 49) | type Utimbuf struct
type Timezone (line 54) | type Timezone struct
type Rusage (line 59) | type Rusage struct
type Rlimit (line 78) | type Rlimit struct
type Pid_t (line 83) | type Pid_t
type _Gid_t (line 85) | type _Gid_t
type dev_t (line 87) | type dev_t
type Stat_t (line 89) | type Stat_t struct
type StatxTimestamp (line 111) | type StatxTimestamp struct
type Statx_t (line 113) | type Statx_t struct
type Dirent (line 115) | type Dirent struct
type RawSockaddrInet4 (line 123) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 131) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 140) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 146) | type RawSockaddrDatalink struct
type RawSockaddr (line 157) | type RawSockaddr struct
type RawSockaddrAny (line 163) | type RawSockaddrAny struct
type _Socklen (line 168) | type _Socklen
type Cmsghdr (line 170) | type Cmsghdr struct
type ICMPv6Filter (line 176) | type ICMPv6Filter struct
type Iovec (line 180) | type Iovec struct
type IPMreq (line 185) | type IPMreq struct
type IPv6Mreq (line 190) | type IPv6Mreq struct
type IPv6MTUInfo (line 195) | type IPv6MTUInfo struct
type Linger (line 200) | type Linger struct
type Msghdr (line 205) | type Msghdr struct
constant SizeofSockaddrInet4 (line 216) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 217) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 218) | SizeofSockaddrAny = 0x404
constant SizeofSockaddrUnix (line 219) | SizeofSockaddrUnix = 0x401
constant SizeofSockaddrDatalink (line 220) | SizeofSockaddrDatalink = 0x80
constant SizeofLinger (line 221) | SizeofLinger = 0x8
constant SizeofIPMreq (line 222) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 223) | SizeofIPv6Mreq = 0x14
constant SizeofIPv6MTUInfo (line 224) | SizeofIPv6MTUInfo = 0x20
constant SizeofMsghdr (line 225) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 226) | SizeofCmsghdr = 0xc
constant SizeofICMPv6Filter (line 227) | SizeofICMPv6Filter = 0x20
constant SizeofIfMsghdr (line 231) | SizeofIfMsghdr = 0x10
type IfMsgHdr (line 234) | type IfMsgHdr struct
type FdSet (line 245) | type FdSet struct
type Utsname (line 249) | type Utsname struct
type Ustat_t (line 257) | type Ustat_t struct
type Sigset_t (line 259) | type Sigset_t struct
constant AT_FDCWD (line 265) | AT_FDCWD = -0x2
constant AT_REMOVEDIR (line 266) | AT_REMOVEDIR = 0x1
constant AT_SYMLINK_NOFOLLOW (line 267) | AT_SYMLINK_NOFOLLOW = 0x1
type Termios (line 270) | type Termios struct
type Termio (line 278) | type Termio struct
type Winsize (line 288) | type Winsize struct
type PollFd (line 295) | type PollFd struct
constant POLLERR (line 302) | POLLERR = 0x4000
constant POLLHUP (line 303) | POLLHUP = 0x2000
constant POLLIN (line 304) | POLLIN = 0x1
constant POLLNVAL (line 305) | POLLNVAL = 0x8000
constant POLLOUT (line 306) | POLLOUT = 0x2
constant POLLPRI (line 307) | POLLPRI = 0x4
constant POLLRDBAND (line 308) | POLLRDBAND = 0x20
constant POLLRDNORM (line 309) | POLLRDNORM = 0x10
constant POLLWRBAND (line 310) | POLLWRBAND = 0x40
constant POLLWRNORM (line 311) | POLLWRNORM = 0x2
type Flock_t (line 314) | type Flock_t struct
type Fsid_t (line 324) | type Fsid_t struct
type Fsid64_t (line 327) | type Fsid64_t struct
type Statfs_t (line 331) | type Statfs_t struct
constant RNDGETENTCNT (line 352) | RNDGETENTCNT = 0x80045200
FILE: vendor/golang.org/x/sys/unix/ztypes_aix_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 = 0x3ff
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 off64 (line 24) | type off64
type off (line 25) | type off
type Mode_t (line 26) | type Mode_t
type Timespec (line 28) | type Timespec struct
type Timeval (line 33) | type Timeval struct
type Timeval32 (line 39) | type Timeval32 struct
type Timex (line 44) | type Timex struct
type Time_t (line 46) | type Time_t
type Tms (line 48) | type Tms struct
type Utimbuf (line 50) | type Utimbuf struct
type Timezone (line 55) | type Timezone struct
type Rusage (line 60) | type Rusage struct
type Rlimit (line 79) | type Rlimit struct
type Pid_t (line 84) | type Pid_t
type _Gid_t (line 86) | type _Gid_t
type dev_t (line 88) | type dev_t
type Stat_t (line 90) | type Stat_t struct
type StatxTimestamp (line 114) | type StatxTimestamp struct
type Statx_t (line 116) | type Statx_t struct
type Dirent (line 118) | type Dirent struct
type RawSockaddrInet4 (line 127) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 135) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 144) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 150) | type RawSockaddrDatalink struct
type RawSockaddr (line 161) | type RawSockaddr struct
type RawSockaddrAny (line 167) | type RawSockaddrAny struct
type _Socklen (line 172) | type _Socklen
type Cmsghdr (line 174) | type Cmsghdr struct
type ICMPv6Filter (line 180) | type ICMPv6Filter struct
type Iovec (line 184) | type Iovec struct
type IPMreq (line 189) | type IPMreq struct
type IPv6Mreq (line 194) | type IPv6Mreq struct
type IPv6MTUInfo (line 199) | type IPv6MTUInfo struct
type Linger (line 204) | type Linger struct
type Msghdr (line 209) | type Msghdr struct
constant SizeofSockaddrInet4 (line 220) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 221) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 222) | SizeofSockaddrAny = 0x404
constant SizeofSockaddrUnix (line 223) | SizeofSockaddrUnix = 0x401
constant SizeofSockaddrDatalink (line 224) | SizeofSockaddrDatalink = 0x80
constant SizeofLinger (line 225) | SizeofLinger = 0x8
constant SizeofIPMreq (line 226) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 227) | SizeofIPv6Mreq = 0x14
constant SizeofIPv6MTUInfo (line 228) | SizeofIPv6MTUInfo = 0x20
constant SizeofMsghdr (line 229) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 230) | SizeofCmsghdr = 0xc
constant SizeofICMPv6Filter (line 231) | SizeofICMPv6Filter = 0x20
constant SizeofIfMsghdr (line 235) | SizeofIfMsghdr = 0x10
type IfMsgHdr (line 238) | type IfMsgHdr struct
type FdSet (line 249) | type FdSet struct
type Utsname (line 253) | type Utsname struct
type Ustat_t (line 261) | type Ustat_t struct
type Sigset_t (line 263) | type Sigset_t struct
constant AT_FDCWD (line 268) | AT_FDCWD = -0x2
constant AT_REMOVEDIR (line 269) | AT_REMOVEDIR = 0x1
constant AT_SYMLINK_NOFOLLOW (line 270) | AT_SYMLINK_NOFOLLOW = 0x1
type Termios (line 273) | type Termios struct
type Termio (line 281) | type Termio struct
type Winsize (line 291) | type Winsize struct
type PollFd (line 298) | type PollFd struct
constant POLLERR (line 305) | POLLERR = 0x4000
constant POLLHUP (line 306) | POLLHUP = 0x2000
constant POLLIN (line 307) | POLLIN = 0x1
constant POLLNVAL (line 308) | POLLNVAL = 0x8000
constant POLLOUT (line 309) | POLLOUT = 0x2
constant POLLPRI (line 310) | POLLPRI = 0x4
constant POLLRDBAND (line 311) | POLLRDBAND = 0x20
constant POLLRDNORM (line 312) | POLLRDNORM = 0x10
constant POLLWRBAND (line 313) | POLLWRBAND = 0x40
constant POLLWRNORM (line 314) | POLLWRNORM = 0x2
type Flock_t (line 317) | type Flock_t struct
type Fsid_t (line 327) | type Fsid_t struct
type Fsid64_t (line 330) | type Fsid64_t struct
type Statfs_t (line 334) | type Statfs_t struct
constant RNDGETENTCNT (line 356) | RNDGETENTCNT = 0x80045200
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
type PollFd (line 464) | type PollFd struct
constant POLLERR (line 471) | POLLERR = 0x8
constant POLLHUP (line 472) | POLLHUP = 0x10
constant POLLIN (line 473) | POLLIN = 0x1
constant POLLNVAL (line 474) | POLLNVAL = 0x20
constant POLLOUT (line 475) | POLLOUT = 0x4
constant POLLPRI (line 476) | POLLPRI = 0x2
constant POLLRDBAND (line 477) | POLLRDBAND = 0x80
constant POLLRDNORM (line 478) | POLLRDNORM = 0x40
constant POLLWRBAND (line 479) | POLLWRBAND = 0x100
constant POLLWRNORM (line 480) | POLLWRNORM = 0x4
type Utsname (line 483) | type Utsname struct
constant SizeofClockinfo (line 491) | SizeofClockinfo = 0x14
type Clockinfo (line 493) | type Clockinfo struct
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
type PollFd (line 474) | type PollFd struct
constant POLLERR (line 481) | POLLERR = 0x8
constant POLLHUP (line 482) | POLLHUP = 0x10
constant POLLIN (line 483) | POLLIN = 0x1
constant POLLNVAL (line 484) | POLLNVAL = 0x20
constant POLLOUT (line 485) | POLLOUT = 0x4
constant POLLPRI (line 486) | POLLPRI = 0x2
constant POLLRDBAND (line 487) | POLLRDBAND = 0x80
constant POLLRDNORM (line 488) | POLLRDNORM = 0x40
constant POLLWRBAND (line 489) | POLLWRBAND = 0x100
constant POLLWRNORM (line 490) | POLLWRNORM = 0x4
type Utsname (line 493) | type Utsname struct
constant SizeofClockinfo (line 501) | SizeofClockinfo = 0x14
type Clockinfo (line 503) | type Clockinfo struct
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
type PollFd (line 465) | type PollFd struct
constant POLLERR (line 472) | POLLERR = 0x8
constant POLLHUP (line 473) | POLLHUP = 0x10
constant POLLIN (line 474) | POLLIN = 0x1
constant POLLNVAL (line 475) | POLLNVAL = 0x20
constant POLLOUT (line 476) | POLLOUT = 0x4
constant POLLPRI (line 477) | POLLPRI = 0x2
constant POLLRDBAND (line 478) | POLLRDBAND = 0x80
constant POLLRDNORM (line 479) | POLLRDNORM = 0x40
constant POLLWRBAND (line 480) | POLLWRBAND = 0x100
constant POLLWRNORM (line 481) | POLLWRNORM = 0x4
type Utsname (line 484) | type Utsname struct
constant SizeofClockinfo (line 492) | SizeofClockinfo = 0x14
type Clockinfo (line 494) | type Clockinfo struct
FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_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
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
type PollFd (line 474) | type PollFd struct
constant POLLERR (line 481) | POLLERR = 0x8
constant POLLHUP (line 482) | POLLHUP = 0x10
constant POLLIN (line 483) | POLLIN = 0x1
constant POLLNVAL (line 484) | POLLNVAL = 0x20
constant POLLOUT (line 485) | POLLOUT = 0x4
constant POLLPRI (line 486) | POLLPRI = 0x2
constant POLLRDBAND (line 487) | POLLRDBAND = 0x80
constant POLLRDNORM (line 488) | POLLRDNORM = 0x40
constant POLLWRBAND (line 489) | POLLWRBAND = 0x100
constant POLLWRNORM (line 490) | POLLWRNORM = 0x4
type Utsname (line 493) | type Utsname struct
constant SizeofClockinfo (line 501) | SizeofClockinfo = 0x14
type Clockinfo (line 503) | type Clockinfo struct
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
type Stat_t (line 59) | type Stat_t struct
type Statfs_t (line 81) | type Statfs_t struct
type Flock_t (line 108) | type Flock_t struct
type Dirent (line 116) | type Dirent struct
type Fsid (line 125) | type Fsid struct
constant PathMax (line 130) | PathMax = 0x400
type RawSockaddrInet4 (line 133) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 141) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 150) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 156) | type RawSockaddrDatalink struct
type RawSockaddr (line 169) | type RawSockaddr struct
type RawSockaddrAny (line 175) | type RawSockaddrAny struct
type _Socklen (line 180) | type _Socklen
type Linger (line 182) | type Linger struct
type Iovec (line 187) | type Iovec struct
type IPMreq (line 192) | type IPMreq struct
type IPv6Mreq (line 197) | type IPv6Mreq struct
type Msghdr (line 202) | type Msghdr struct
type Cmsghdr (line 214) | type Cmsghdr struct
type Inet6Pktinfo (line 220) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 225) | type IPv6MTUInfo struct
type ICMPv6Filter (line 230) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 235) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 236) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 237) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 238) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 239) | SizeofSockaddrDatalink = 0x36
constant SizeofLinger (line 240) | SizeofLinger = 0x8
constant SizeofIPMreq (line 241) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 242) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 243) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 244) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 245) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 246) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 247) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 251) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 252) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 253) | PTRACE_KILL = 0x8
type Kevent_t (line 256) | type Kevent_t struct
type FdSet (line 265) | type FdSet struct
constant SizeofIfMsghdr (line 270) | SizeofIfMsghdr = 0xb0
constant SizeofIfData (line 271) | SizeofIfData = 0xa0
constant SizeofIfaMsghdr (line 272) | SizeofIfaMsghdr = 0x14
constant SizeofIfmaMsghdr (line 273) | SizeofIfmaMsghdr = 0x10
constant SizeofIfAnnounceMsghdr (line 274) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 275) | SizeofRtMsghdr = 0x98
constant SizeofRtMetrics (line 276) | SizeofRtMetrics = 0x70
type IfMsghdr (line 279) | type IfMsghdr struct
type IfData (line 290) | type IfData struct
type IfaMsghdr (line 318) | type IfaMsghdr struct
type IfmaMsghdr (line 329) | type IfmaMsghdr struct
type IfAnnounceMsghdr (line 339) | type IfAnnounceMsghdr struct
type RtMsghdr (line 348) | type RtMsghdr struct
type RtMetrics (line 364) | type RtMetrics struct
constant SizeofBpfVersion (line 384) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 385) | SizeofBpfStat = 0x8
constant SizeofBpfProgram (line 386) | SizeofBpfProgram = 0x10
constant SizeofBpfInsn (line 387) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 388) | SizeofBpfHdr = 0x20
type BpfVersion (line 391) | type BpfVersion struct
type BpfStat (line 396) | type BpfStat struct
type BpfProgram (line 401) | type BpfProgram struct
type BpfInsn (line 407) | type BpfInsn struct
type BpfHdr (line 414) | type BpfHdr struct
type Termios (line 422) | type Termios struct
type Winsize (line 432) | type Winsize struct
constant AT_FDCWD (line 440) | AT_FDCWD = 0xfffafdcd
constant AT_SYMLINK_NOFOLLOW (line 441) | AT_SYMLINK_NOFOLLOW = 0x1
type PollFd (line 444) | type PollFd struct
constant POLLERR (line 451) | POLLERR = 0x8
constant POLLHUP (line 452) | POLLHUP = 0x10
constant POLLIN (line 453) | POLLIN = 0x1
constant POLLNVAL (line 454) | POLLNVAL = 0x20
constant POLLOUT (line 455) | POLLOUT = 0x4
constant POLLPRI (line 456) | POLLPRI = 0x2
constant POLLRDBAND (line 457) | POLLRDBAND = 0x80
constant POLLRDNORM (line 458) | POLLRDNORM = 0x40
constant POLLWRBAND (line 459) | POLLWRBAND = 0x100
constant POLLWRNORM (line 460) | POLLWRNORM = 0x4
type Utsname (line 463) | type Utsname struct
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 _statfsVersion (line 60) | _statfsVersion = 0x20140518
constant _dirblksiz (line 61) | _dirblksiz = 0x400
type Stat_t (line 64) | type Stat_t struct
type stat_freebsd11_t (line 90) | type stat_freebsd11_t struct
type Statfs_t (line 111) | type Statfs_t struct
type statfs_freebsd11_t (line 136) | type statfs_freebsd11_t struct
type Flock_t (line 161) | type Flock_t struct
type Dirent (line 170) | type Dirent struct
type dirent_freebsd11 (line 181) | type dirent_freebsd11 struct
type Fsid (line 189) | type Fsid struct
constant PathMax (line 194) | PathMax = 0x400
constant FADV_NORMAL (line 198) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 199) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 200) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 201) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 202) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 203) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 206) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 214) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 223) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 229) | type RawSockaddrDatalink struct
type RawSockaddr (line 240) | type RawSockaddr struct
type RawSockaddrAny (line 246) | type RawSockaddrAny struct
type _Socklen (line 251) | type _Socklen
type Linger (line 253) | type Linger struct
type Iovec (line 258) | type Iovec struct
type IPMreq (line 263) | type IPMreq struct
type IPMreqn (line 268) | type IPMreqn struct
type IPv6Mreq (line 274) | type IPv6Mreq struct
type Msghdr (line 279) | type Msghdr struct
type Cmsghdr (line 289) | type Cmsghdr struct
type Inet6Pktinfo (line 295) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 300) | type IPv6MTUInfo struct
type ICMPv6Filter (line 305) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 310) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 311) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 312) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 313) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 314) | SizeofSockaddrDatalink = 0x36
constant SizeofLinger (line 315) | SizeofLinger = 0x8
constant SizeofIPMreq (line 316) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 317) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 318) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 319) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 320) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 321) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 322) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 323) | SizeofICMPv6Filter = 0x20
constant PTRACE_ATTACH (line 327) | PTRACE_ATTACH = 0xa
constant PTRACE_CONT (line 328) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 329) | PTRACE_DETACH = 0xb
constant PTRACE_GETFPREGS (line 330) | PTRACE_GETFPREGS = 0x23
constant PTRACE_GETFSBASE (line 331) | PTRACE_GETFSBASE = 0x47
constant PTRACE_GETLWPLIST (line 332) | PTRACE_GETLWPLIST = 0xf
constant PTRACE_GETNUMLWPS (line 333) | PTRACE_GETNUMLWPS = 0xe
constant PTRACE_GETREGS (line 334) | PTRACE_GETREGS = 0x21
constant PTRACE_GETXSTATE (line 335) | PTRACE_GETXSTATE = 0x45
constant PTRACE_IO (line 336) | PTRACE_IO = 0xc
constant PTRACE_KILL (line 337) | PTRACE_KILL = 0x8
constant PTRACE_LWPEVENTS (line 338) | PTRACE_LWPEVENTS = 0x18
constant PTRACE_LWPINFO (line 339) | PTRACE_LWPINFO = 0xd
constant PTRACE_SETFPREGS (line 340) | PTRACE_SETFPREGS = 0x24
constant PTRACE_SETREGS (line 341) | PTRACE_SETREGS = 0x22
constant PTRACE_SINGLESTEP (line 342) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_TRACEME (line 343) | PTRACE_TRACEME = 0x0
constant PIOD_READ_D (line 347) | PIOD_READ_D = 0x1
constant PIOD_WRITE_D (line 348) | PIOD_WRITE_D = 0x2
constant PIOD_READ_I (line 349) | PIOD_READ_I = 0x3
constant PIOD_WRITE_I (line 350) | PIOD_WRITE_I = 0x4
constant PL_FLAG_BORN (line 354) | PL_FLAG_BORN = 0x100
constant PL_FLAG_EXITED (line 355) | PL_FLAG_EXITED = 0x200
constant PL_FLAG_SI (line 356) | PL_FLAG_SI = 0x20
constant TRAP_BRKPT (line 360) | TRAP_BRKPT = 0x1
constant TRAP_TRACE (line 361) | TRAP_TRACE = 0x2
type PtraceLwpInfoStruct (line 364) | type PtraceLwpInfoStruct struct
type __Siginfo (line 377) | type __Siginfo struct
type Sigset_t (line 389) | type Sigset_t struct
type Reg (line 393) | type Reg struct
type FpReg (line 415) | type FpReg struct
type PtraceIoDesc (line 422) | type PtraceIoDesc struct
type Kevent_t (line 429) | type Kevent_t struct
type FdSet (line 438) | type FdSet struct
constant sizeofIfMsghdr (line 443) | sizeofIfMsghdr = 0xa8
constant SizeofIfMsghdr (line 444) | SizeofIfMsghdr = 0x60
constant sizeofIfData (line 445) | sizeofIfData = 0x98
constant SizeofIfData (line 446) | SizeofIfData = 0x50
constant SizeofIfaMsghdr (line 447) | SizeofIfaMsghdr = 0x14
constant SizeofIfmaMsghdr (line 448) | SizeofIfmaMsghdr = 0x10
constant SizeofIfAnnounceMsghdr (line 449) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 450) | SizeofRtMsghdr = 0x5c
constant SizeofRtMetrics (line 451) | SizeofRtMetrics = 0x38
type ifMsghdr (line 454) | type ifMsghdr struct
type IfMsghdr (line 465) | type IfMsghdr struct
type ifData (line 476) | type ifData struct
type IfData (line 504) | type IfData struct
type IfaMsghdr (line 532) | type IfaMsghdr struct
type IfmaMsghdr (line 543) | type IfmaMsghdr struct
type IfAnnounceMsghdr (line 553) | type IfAnnounceMsghdr struct
type RtMsghdr (line 562) | type RtMsghdr struct
type RtMetrics (line 578) | type RtMetrics struct
constant SizeofBpfVersion (line 594) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 595) | SizeofBpfStat = 0x8
constant SizeofBpfZbuf (line 596) | SizeofBpfZbuf = 0xc
constant SizeofBpfProgram (line 597) | SizeofBpfProgram = 0x8
constant SizeofBpfInsn (line 598) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 599) | SizeofBpfHdr = 0x14
constant SizeofBpfZbufHeader (line 600) | SizeofBpfZbufHeader = 0x20
type BpfVersion (line 603) | type BpfVersion struct
type BpfStat (line 608) | type BpfStat struct
type BpfZbuf (line 613) | type BpfZbuf struct
type BpfProgram (line 619) | type BpfProgram struct
type BpfInsn (line 624) | type BpfInsn struct
type BpfHdr (line 631) | type BpfHdr struct
type BpfZbufHeader (line 639) | type BpfZbufHeader struct
type Termios (line 646) | type Termios struct
type Winsize (line 656) | type Winsize struct
constant AT_FDCWD (line 664) | AT_FDCWD = -0x64
constant AT_REMOVEDIR (line 665) | AT_REMOVEDIR = 0x800
constant AT_SYMLINK_FOLLOW (line 666) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 667) | AT_SYMLINK_NOFOLLOW = 0x200
type PollFd (line 670) | type PollFd struct
constant POLLERR (line 677) | POLLERR = 0x8
constant POLLHUP (line 678) | POLLHUP = 0x10
constant POLLIN (line 679) | POLLIN = 0x1
constant POLLINIGNEOF (line 680) | POLLINIGNEOF = 0x2000
constant POLLNVAL (line 681) | POLLNVAL = 0x20
constant POLLOUT (line 682) | POLLOUT = 0x4
constant POLLPRI (line 683) | POLLPRI = 0x2
constant POLLRDBAND (line 684) | POLLRDBAND = 0x80
constant POLLRDNORM (line 685) | POLLRDNORM = 0x40
constant POLLWRBAND (line 686) | POLLWRBAND = 0x100
constant POLLWRNORM (line 687) | POLLWRNORM = 0x4
type CapRights (line 690) | type CapRights struct
type Utsname (line 694) | type Utsname 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 _statfsVersion (line 60) | _statfsVersion = 0x20140518
constant _dirblksiz (line 61) | _dirblksiz = 0x400
type Stat_t (line 64) | type Stat_t struct
type stat_freebsd11_t (line 86) | type stat_freebsd11_t struct
type Statfs_t (line 106) | type Statfs_t struct
type statfs_freebsd11_t (line 131) | type statfs_freebsd11_t struct
type Flock_t (line 156) | type Flock_t struct
type Dirent (line 166) | type Dirent struct
type dirent_freebsd11 (line 177) | type dirent_freebsd11 struct
type Fsid (line 185) | type Fsid struct
constant PathMax (line 190) | PathMax = 0x400
constant FADV_NORMAL (line 194) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 195) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 196) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 197) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 198) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 199) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 202) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 210) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 219) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 225) | type RawSockaddrDatalink struct
type RawSockaddr (line 236) | 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 Inet6Pktinfo (line 293) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 298) | type IPv6MTUInfo struct
type ICMPv6Filter (line 303) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 308) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 309) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 310) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 311) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 312) | SizeofSockaddrDatalink = 0x36
constant SizeofLinger (line 313) | SizeofLinger = 0x8
constant SizeofIPMreq (line 314) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 315) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 316) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 317) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 318) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 319) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 320) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 321) | SizeofICMPv6Filter = 0x20
constant PTRACE_ATTACH (line 325) | PTRACE_ATTACH = 0xa
constant PTRACE_CONT (line 326) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 327) | PTRACE_DETACH = 0xb
constant PTRACE_GETFPREGS (line 328) | PTRACE_GETFPREGS = 0x23
constant PTRACE_GETFSBASE (line 329) | PTRACE_GETFSBASE = 0x47
constant PTRACE_GETLWPLIST (line 330) | PTRACE_GETLWPLIST = 0xf
constant PTRACE_GETNUMLWPS (line 331) | PTRACE_GETNUMLWPS = 0xe
constant PTRACE_GETREGS (line 332) | PTRACE_GETREGS = 0x21
constant PTRACE_GETXSTATE (line 333) | PTRACE_GETXSTATE = 0x45
constant PTRACE_IO (line 334) | PTRACE_IO = 0xc
constant PTRACE_KILL (line 335) | PTRACE_KILL = 0x8
constant PTRACE_LWPEVENTS (line 336) | PTRACE_LWPEVENTS = 0x18
constant PTRACE_LWPINFO (line 337) | PTRACE_LWPINFO = 0xd
constant PTRACE_SETFPREGS (line 338) | PTRACE_SETFPREGS = 0x24
constant PTRACE_SETREGS (line 339) | PTRACE_SETREGS = 0x22
constant PTRACE_SINGLESTEP (line 340) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_TRACEME (line 341) | PTRACE_TRACEME = 0x0
constant PIOD_READ_D (line 345) | PIOD_READ_D = 0x1
constant PIOD_WRITE_D (line 346) | PIOD_WRITE_D = 0x2
constant PIOD_READ_I (line 347) | PIOD_READ_I = 0x3
constant PIOD_WRITE_I (line 348) | PIOD_WRITE_I = 0x4
constant PL_FLAG_BORN (line 352) | PL_FLAG_BORN = 0x100
constant PL_FLAG_EXITED (line 353) | PL_FLAG_EXITED = 0x200
constant PL_FLAG_SI (line 354) | PL_FLAG_SI = 0x20
constant TRAP_BRKPT (line 358) | TRAP_BRKPT = 0x1
constant TRAP_TRACE (line 359) | TRAP_TRACE = 0x2
type PtraceLwpInfoStruct (line 362) | type PtraceLwpInfoStruct struct
type __Siginfo (line 375) | type __Siginfo struct
type Sigset_t (line 387) | type Sigset_t struct
type Reg (line 391) | type Reg struct
type FpReg (line 420) | type FpReg struct
type PtraceIoDesc (line 427) | type PtraceIoDesc struct
type Kevent_t (line 434) | type Kevent_t struct
type FdSet (line 443) | type FdSet struct
constant sizeofIfMsghdr (line 448) | sizeofIfMsghdr = 0xa8
constant SizeofIfMsghdr (line 449) | SizeofIfMsghdr = 0xa8
constant sizeofIfData (line 450) | sizeofIfData = 0x98
constant SizeofIfData (line 451) | SizeofIfData = 0x98
constant SizeofIfaMsghdr (line 452) | SizeofIfaMsghdr = 0x14
constant SizeofIfmaMsghdr (line 453) | SizeofIfmaMsghdr = 0x10
constant SizeofIfAnnounceMsghdr (line 454) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 455) | SizeofRtMsghdr = 0x98
constant SizeofRtMetrics (line 456) | SizeofRtMetrics = 0x70
type ifMsghdr (line 459) | type ifMsghdr struct
type IfMsghdr (line 470) | type IfMsghdr struct
type ifData (line 481) | type ifData struct
type IfData (line 509) | type IfData struct
type IfaMsghdr (line 537) | type IfaMsghdr struct
type IfmaMsghdr (line 548) | type IfmaMsghdr struct
type IfAnnounceMsghdr (line 558) | type IfAnnounceMsghdr struct
type RtMsghdr (line 567) | type RtMsghdr struct
type RtMetrics (line 583) | type RtMetrics struct
constant SizeofBpfVersion (line 599) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 600) | SizeofBpfStat = 0x8
constant SizeofBpfZbuf (line 601) | SizeofBpfZbuf = 0x18
constant SizeofBpfProgram (line 602) | SizeofBpfProgram = 0x10
constant SizeofBpfInsn (line 603) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 604) | SizeofBpfHdr = 0x20
constant SizeofBpfZbufHeader (line 605) | SizeofBpfZbufHeader = 0x20
type BpfVersion (line 608) | type BpfVersion struct
type BpfStat (line 613) | type BpfStat struct
type BpfZbuf (line 618) | type BpfZbuf struct
type BpfProgram (line 624) | type BpfProgram struct
type BpfInsn (line 630) | type BpfInsn struct
type BpfHdr (line 637) | type BpfHdr struct
type BpfZbufHeader (line 645) | type BpfZbufHeader struct
type Termios (line 652) | type Termios struct
type Winsize (line 662) | type Winsize struct
constant AT_FDCWD (line 670) | AT_FDCWD = -0x64
constant AT_REMOVEDIR (line 671) | AT_REMOVEDIR = 0x800
constant AT_SYMLINK_FOLLOW (line 672) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 673) | AT_SYMLINK_NOFOLLOW = 0x200
type PollFd (line 676) | type PollFd struct
constant POLLERR (line 683) | POLLERR = 0x8
constant POLLHUP (line 684) | POLLHUP = 0x10
constant POLLIN (line 685) | POLLIN = 0x1
constant POLLINIGNEOF (line 686) | POLLINIGNEOF = 0x2000
constant POLLNVAL (line 687) | POLLNVAL = 0x20
constant POLLOUT (line 688) | POLLOUT = 0x4
constant POLLPRI (line 689) | POLLPRI = 0x2
constant POLLRDBAND (line 690) | POLLRDBAND = 0x80
constant POLLRDNORM (line 691) | POLLRDNORM = 0x40
constant POLLWRBAND (line 692) | POLLWRBAND = 0x100
constant POLLWRNORM (line 693) | POLLWRNORM = 0x4
type CapRights (line 696) | type CapRights struct
type Utsname (line 700) | type Utsname 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 _statfsVersion (line 62) | _statfsVersion = 0x20140518
constant _dirblksiz (line 63) | _dirblksiz = 0x400
type Stat_t (line 66) | type Stat_t struct
type stat_freebsd11_t (line 88) | type stat_freebsd11_t struct
type Statfs_t (line 108) | type Statfs_t struct
type statfs_freebsd11_t (line 133) | type statfs_freebsd11_t struct
type Flock_t (line 158) | type Flock_t struct
type Dirent (line 168) | type Dirent struct
type dirent_freebsd11 (line 179) | type dirent_freebsd11 struct
type Fsid (line 187) | type Fsid struct
constant PathMax (line 192) | PathMax = 0x400
constant FADV_NORMAL (line 196) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 197) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 198) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 199) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 200) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 201) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 204) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 212) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 221) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 227) | type RawSockaddrDatalink struct
type RawSockaddr (line 238) | type RawSockaddr struct
type RawSockaddrAny (line 244) | type RawSockaddrAny struct
type _Socklen (line 249) | type _Socklen
type Linger (line 251) | type Linger struct
type Iovec (line 256) | type Iovec struct
type IPMreq (line 261) | type IPMreq struct
type IPMreqn (line 266) | type IPMreqn struct
type IPv6Mreq (line 272) | type IPv6Mreq struct
type Msghdr (line 277) | type Msghdr struct
type Cmsghdr (line 287) | type Cmsghdr struct
type Inet6Pktinfo (line 293) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 298) | type IPv6MTUInfo struct
type ICMPv6Filter (line 303) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 308) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 309) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 310) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 311) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 312) | SizeofSockaddrDatalink = 0x36
constant SizeofLinger (line 313) | SizeofLinger = 0x8
constant SizeofIPMreq (line 314) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 315) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 316) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 317) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 318) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 319) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 320) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 321) | SizeofICMPv6Filter = 0x20
constant PTRACE_ATTACH (line 325) | PTRACE_ATTACH = 0xa
constant PTRACE_CONT (line 326) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 327) | PTRACE_DETACH = 0xb
constant PTRACE_GETFPREGS (line 328) | PTRACE_GETFPREGS = 0x23
constant PTRACE_GETFSBASE (line 329) | PTRACE_GETFSBASE = 0x47
constant PTRACE_GETLWPLIST (line 330) | PTRACE_GETLWPLIST = 0xf
constant PTRACE_GETNUMLWPS (line 331) | PTRACE_GETNUMLWPS = 0xe
constant PTRACE_GETREGS (line 332) | PTRACE_GETREGS = 0x21
constant PTRACE_GETXSTATE (line 333) | PTRACE_GETXSTATE = 0x45
constant PTRACE_IO (line 334) | PTRACE_IO = 0xc
constant PTRACE_KILL (line 335) | PTRACE_KILL = 0x8
constant PTRACE_LWPEVENTS (line 336) | PTRACE_LWPEVENTS = 0x18
constant PTRACE_LWPINFO (line 337) | PTRACE_LWPINFO = 0xd
constant PTRACE_SETFPREGS (line 338) | PTRACE_SETFPREGS = 0x24
constant PTRACE_SETREGS (line 339) | PTRACE_SETREGS = 0x22
constant PTRACE_SINGLESTEP (line 340) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_TRACEME (line 341) | PTRACE_TRACEME = 0x0
constant PIOD_READ_D (line 345) | PIOD_READ_D = 0x1
constant PIOD_WRITE_D (line 346) | PIOD_WRITE_D = 0x2
constant PIOD_READ_I (line 347) | PIOD_READ_I = 0x3
constant PIOD_WRITE_I (line 348) | PIOD_WRITE_I = 0x4
constant PL_FLAG_BORN (line 352) | PL_FLAG_BORN = 0x100
constant PL_FLAG_EXITED (line 353) | PL_FLAG_EXITED = 0x200
constant PL_FLAG_SI (line 354) | PL_FLAG_SI = 0x20
constant TRAP_BRKPT (line 358) | TRAP_BRKPT = 0x1
constant TRAP_TRACE (line 359) | TRAP_TRACE = 0x2
type PtraceLwpInfoStruct (line 362) | type PtraceLwpInfoStruct struct
type __Siginfo (line 375) | type __Siginfo struct
type Sigset_t (line 387) | type Sigset_t struct
type Reg (line 391) | type Reg struct
type FpReg (line 399) | type FpReg struct
type PtraceIoDesc (line 404) | type PtraceIoDesc struct
type Kevent_t (line 411) | type Kevent_t struct
type FdSet (line 420) | type FdSet struct
constant sizeofIfMsghdr (line 425) | sizeofIfMsghdr = 0xa8
constant SizeofIfMsghdr (line 426) | SizeofIfMsghdr = 0x70
constant sizeofIfData (line 427) | sizeofIfData = 0x98
constant SizeofIfData (line 428) | SizeofIfData = 0x60
constant SizeofIfaMsghdr (line 429) | SizeofIfaMsghdr = 0x14
constant SizeofIfmaMsghdr (line 430) | SizeofIfmaMsghdr = 0x10
constant SizeofIfAnnounceMsghdr (line 431) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 432) | SizeofRtMsghdr = 0x5c
constant SizeofRtMetrics (line 433) | SizeofRtMetrics = 0x38
type ifMsghdr (line 436) | type ifMsghdr struct
type IfMsghdr (line 447) | type IfMsghdr struct
type ifData (line 458) | type ifData struct
type IfData (line 486) | type IfData struct
type IfaMsghdr (line 515) | type IfaMsghdr struct
type IfmaMsghdr (line 526) | type IfmaMsghdr struct
type IfAnnounceMsghdr (line 536) | type IfAnnounceMsghdr struct
type RtMsghdr (line 545) | type RtMsghdr struct
type RtMetrics (line 561) | type RtMetrics struct
constant SizeofBpfVersion (line 577) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 578) | SizeofBpfStat = 0x8
constant SizeofBpfZbuf (line 579) | SizeofBpfZbuf = 0xc
constant SizeofBpfProgram (line 580) | SizeofBpfProgram = 0x8
constant SizeofBpfInsn (line 581) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 582) | SizeofBpfHdr = 0x20
constant SizeofBpfZbufHeader (line 583) | SizeofBpfZbufHeader = 0x20
type BpfVersion (line 586) | type BpfVersion struct
type BpfStat (line 591) | type BpfStat struct
type BpfZbuf (line 596) | type BpfZbuf struct
type BpfProgram (line 602) | type BpfProgram struct
type BpfInsn (line 607) | type BpfInsn struct
type BpfHdr (line 614) | type BpfHdr struct
type BpfZbufHeader (line 622) | type BpfZbufHeader struct
type Termios (line 629) | type Termios struct
type Winsize (line 639) | type Winsize struct
constant AT_FDCWD (line 647) | AT_FDCWD = -0x64
constant AT_REMOVEDIR (line 648) | AT_REMOVEDIR = 0x800
constant AT_SYMLINK_FOLLOW (line 649) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 650) | AT_SYMLINK_NOFOLLOW = 0x200
type PollFd (line 653) | type PollFd struct
constant POLLERR (line 660) | POLLERR = 0x8
constant POLLHUP (line 661) | POLLHUP = 0x10
constant POLLIN (line 662) | POLLIN = 0x1
constant POLLINIGNEOF (line 663) | POLLINIGNEOF = 0x2000
constant POLLNVAL (line 664) | POLLNVAL = 0x20
constant POLLOUT (line 665) | POLLOUT = 0x4
constant POLLPRI (line 666) | POLLPRI = 0x2
constant POLLRDBAND (line 667) | POLLRDBAND = 0x80
constant POLLRDNORM (line 668) | POLLRDNORM = 0x40
constant POLLWRBAND (line 669) | POLLWRBAND = 0x100
constant POLLWRNORM (line 670) | POLLWRNORM = 0x4
type CapRights (line 673) | type CapRights struct
type Utsname (line 677) | type Utsname struct
FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_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
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 _statfsVersion (line 60) | _statfsVersion = 0x20140518
constant _dirblksiz (line 61) | _dirblksiz = 0x400
type Stat_t (line 64) | type Stat_t struct
type stat_freebsd11_t (line 86) | type stat_freebsd11_t struct
type Statfs_t (line 106) | type Statfs_t struct
type statfs_freebsd11_t (line 131) | type statfs_freebsd11_t struct
type Flock_t (line 156) | type Flock_t struct
type Dirent (line 166) | type Dirent struct
type dirent_freebsd11 (line 177) | type dirent_freebsd11 struct
type Fsid (line 185) | type Fsid struct
constant PathMax (line 190) | PathMax = 0x400
constant FADV_NORMAL (line 194) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 195) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 196) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 197) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 198) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 199) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 202) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 210) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 219) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 225) | type RawSockaddrDatalink struct
type RawSockaddr (line 236) | 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 Inet6Pktinfo (line 293) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 298) | type IPv6MTUInfo struct
type ICMPv6Filter (line 303) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 308) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 309) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 310) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 311) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 312) | SizeofSockaddrDatalink = 0x36
constant SizeofLinger (line 313) | SizeofLinger = 0x8
constant SizeofIPMreq (line 314) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 315) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 316) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 317) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 318) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 319) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 320) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 321) | SizeofICMPv6Filter = 0x20
constant PTRACE_ATTACH (line 325) | PTRACE_ATTACH = 0xa
constant PTRACE_CONT (line 326) | PTRACE_CONT = 0x7
constant PTRACE_DETACH (line 327) | PTRACE_DETACH = 0xb
constant PTRACE_GETFPREGS (line 328) | PTRACE_GETFPREGS = 0x23
constant PTRACE_GETFSBASE (line 329) | PTRACE_GETFSBASE = 0x47
constant PTRACE_GETLWPLIST (line 330) | PTRACE_GETLWPLIST = 0xf
constant PTRACE_GETNUMLWPS (line 331) | PTRACE_GETNUMLWPS = 0xe
constant PTRACE_GETREGS (line 332) | PTRACE_GETREGS = 0x21
constant PTRACE_GETXSTATE (line 333) | PTRACE_GETXSTATE = 0x45
constant PTRACE_IO (line 334) | PTRACE_IO = 0xc
constant PTRACE_KILL (line 335) | PTRACE_KILL = 0x8
constant PTRACE_LWPEVENTS (line 336) | PTRACE_LWPEVENTS = 0x18
constant PTRACE_LWPINFO (line 337) | PTRACE_LWPINFO = 0xd
constant PTRACE_SETFPREGS (line 338) | PTRACE_SETFPREGS = 0x24
constant PTRACE_SETREGS (line 339) | PTRACE_SETREGS = 0x22
constant PTRACE_SINGLESTEP (line 340) | PTRACE_SINGLESTEP = 0x9
constant PTRACE_TRACEME (line 341) | PTRACE_TRACEME = 0x0
constant PIOD_READ_D (line 345) | PIOD_READ_D = 0x1
constant PIOD_WRITE_D (line 346) | PIOD_WRITE_D = 0x2
constant PIOD_READ_I (line 347) | PIOD_READ_I = 0x3
constant PIOD_WRITE_I (line 348) | PIOD_WRITE_I = 0x4
constant PL_FLAG_BORN (line 352) | PL_FLAG_BORN = 0x100
constant PL_FLAG_EXITED (line 353) | PL_FLAG_EXITED = 0x200
constant PL_FLAG_SI (line 354) | PL_FLAG_SI = 0x20
constant TRAP_BRKPT (line 358) | TRAP_BRKPT = 0x1
constant TRAP_TRACE (line 359) | TRAP_TRACE = 0x2
type PtraceLwpInfoStruct (line 362) | type PtraceLwpInfoStruct struct
type __Siginfo (line 375) | type __Siginfo struct
type Sigset_t (line 387) | type Sigset_t struct
type Reg (line 391) | type Reg struct
type FpReg (line 399) | type FpReg struct
type PtraceIoDesc (line 405) | type PtraceIoDesc struct
type Kevent_t (line 412) | type Kevent_t struct
type FdSet (line 421) | type FdSet struct
constant sizeofIfMsghdr (line 426) | sizeofIfMsghdr = 0xa8
constant SizeofIfMsghdr (line 427) | SizeofIfMsghdr = 0xa8
constant sizeofIfData (line 428) | sizeofIfData = 0x98
constant SizeofIfData (line 429) | SizeofIfData = 0x98
constant SizeofIfaMsghdr (line 430) | SizeofIfaMsghdr = 0x14
constant SizeofIfmaMsghdr (line 431) | SizeofIfmaMsghdr = 0x10
constant SizeofIfAnnounceMsghdr (line 432) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 433) | SizeofRtMsghdr = 0x98
constant SizeofRtMetrics (line 434) | SizeofRtMetrics = 0x70
type ifMsghdr (line 437) | type ifMsghdr struct
type IfMsghdr (line 448) | type IfMsghdr struct
type ifData (line 459) | type ifData struct
type IfData (line 487) | type IfData struct
type IfaMsghdr (line 515) | type IfaMsghdr struct
type IfmaMsghdr (line 526) | type IfmaMsghdr struct
type IfAnnounceMsghdr (line 536) | type IfAnnounceMsghdr struct
type RtMsghdr (line 545) | type RtMsghdr struct
type RtMetrics (line 561) | type RtMetrics struct
constant SizeofBpfVersion (line 577) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 578) | SizeofBpfStat = 0x8
constant SizeofBpfZbuf (line 579) | SizeofBpfZbuf = 0x18
constant SizeofBpfProgram (line 580) | SizeofBpfProgram = 0x10
constant SizeofBpfInsn (line 581) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 582) | SizeofBpfHdr = 0x20
constant SizeofBpfZbufHeader (line 583) | SizeofBpfZbufHeader = 0x20
type BpfVersion (line 586) | type BpfVersion struct
type BpfStat (line 591) | type BpfStat struct
type BpfZbuf (line 596) | type BpfZbuf struct
type BpfProgram (line 602) | type BpfProgram struct
type BpfInsn (line 608) | type BpfInsn struct
type BpfHdr (line 615) | type BpfHdr struct
type BpfZbufHeader (line 623) | type BpfZbufHeader struct
type Termios (line 630) | type Termios struct
type Winsize (line 640) | type Winsize struct
constant AT_FDCWD (line 648) | AT_FDCWD = -0x64
constant AT_REMOVEDIR (line 649) | AT_REMOVEDIR = 0x800
constant AT_SYMLINK_FOLLOW (line 650) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 651) | AT_SYMLINK_NOFOLLOW = 0x200
type PollFd (line 654) | type PollFd struct
constant POLLERR (line 661) | POLLERR = 0x8
constant POLLHUP (line 662) | POLLHUP = 0x10
constant POLLIN (line 663) | POLLIN = 0x1
constant POLLINIGNEOF (line 664) | POLLINIGNEOF = 0x2000
constant POLLNVAL (line 665) | POLLNVAL = 0x20
constant POLLOUT (line 666) | POLLOUT = 0x4
constant POLLPRI (line 667) | POLLPRI = 0x2
constant POLLRDBAND (line 668) | POLLRDBAND = 0x80
constant POLLRDNORM (line 669) | POLLRDNORM = 0x40
constant POLLWRBAND (line 670) | POLLWRBAND = 0x100
constant POLLWRNORM (line 671) | POLLWRNORM = 0x4
type CapRights (line 674) | type CapRights struct
type Utsname (line 678) | type Utsname 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 StatxTimestamp (line 117) | type StatxTimestamp struct
type Statx_t (line 123) | type Statx_t struct
type Dirent (line 147) | type Dirent struct
type Fsid (line 156) | type Fsid struct
type Flock_t (line 160) | type Flock_t struct
type FscryptPolicy (line 168) | type FscryptPolicy struct
type FscryptKey (line 176) | type FscryptKey struct
type KeyctlDHParams (line 182) | type KeyctlDHParams struct
constant FADV_NORMAL (line 189) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 190) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 191) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 192) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 193) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 194) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 197) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 204) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 212) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 217) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 227) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 234) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 240) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 249) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 256) | type RawSockaddrCAN struct
type RawSockaddrALG (line 262) | type RawSockaddrALG struct
type RawSockaddrVM (line 270) | type RawSockaddrVM struct
type RawSockaddrXDP (line 278) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 286) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 288) | type RawSockaddrTIPC struct
type RawSockaddr (line 295) | type RawSockaddr struct
type RawSockaddrAny (line 300) | type RawSockaddrAny struct
type _Socklen (line 305) | type _Socklen
type Linger (line 307) | type Linger struct
type Iovec (line 312) | type Iovec struct
type IPMreq (line 317) | type IPMreq struct
type IPMreqn (line 322) | type IPMreqn struct
type IPv6Mreq (line 328) | type IPv6Mreq struct
type PacketMreq (line 333) | type PacketMreq struct
type Msghdr (line 340) | type Msghdr struct
type Cmsghdr (line 350) | type Cmsghdr struct
type Inet4Pktinfo (line 356) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 362) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 367) | type IPv6MTUInfo struct
type ICMPv6Filter (line 372) | type ICMPv6Filter struct
type Ucred (line 376) | type Ucred struct
type TCPInfo (line 382) | type TCPInfo struct
type CanFilter (line 415) | type CanFilter struct
constant SizeofSockaddrInet4 (line 421) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 422) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 423) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 424) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 425) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 426) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 427) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 428) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 429) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 430) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 431) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 432) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 433) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 434) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 435) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 436) | SizeofLinger = 0x8
constant SizeofIovec (line 437) | SizeofIovec = 0x8
constant SizeofIPMreq (line 438) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 439) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 440) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 441) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 442) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 443) | SizeofCmsghdr = 0xc
constant SizeofInet4Pktinfo (line 444) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 445) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 446) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 447) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 448) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 449) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 450) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 454) | NDA_UNSPEC = 0x0
constant NDA_DST (line 455) | NDA_DST = 0x1
constant NDA_LLADDR (line 456) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 457) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 458) | NDA_PROBES = 0x4
constant NDA_VLAN (line 459) | NDA_VLAN = 0x5
constant NDA_PORT (line 460) | NDA_PORT = 0x6
constant NDA_VNI (line 461) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 462) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 463) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 464) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 465) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 466) | NTF_USE = 0x1
constant NTF_SELF (line 467) | NTF_SELF = 0x2
constant NTF_MASTER (line 468) | NTF_MASTER = 0x4
constant NTF_PROXY (line 469) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 470) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 471) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 472) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 473) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 474) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 475) | NUD_STALE = 0x4
constant NUD_DELAY (line 476) | NUD_DELAY = 0x8
constant NUD_PROBE (line 477) | NUD_PROBE = 0x10
constant NUD_FAILED (line 478) | NUD_FAILED = 0x20
constant NUD_NOARP (line 479) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 480) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 481) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 482) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 483) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 484) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 485) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 486) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 487) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 488) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 489) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 490) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 491) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 492) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 493) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 494) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 495) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 496) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 497) | IFLA_MTU = 0x4
constant IFLA_LINK (line 498) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 499) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 500) | IFLA_STATS = 0x7
constant IFLA_COST (line 501) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 502) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 503) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 504) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 505) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 506) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 507) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 508) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 509) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 510) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 511) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 512) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 513) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 514) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 515) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 516) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 517) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 518) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 519) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 520) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 521) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 522) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 523) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 524) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 525) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 526) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 527) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 528) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 529) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 530) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 531) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 532) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 533) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 534) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 535) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 536) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 537) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 538) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 539) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 540) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 541) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 542) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 543) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 544) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 545) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 546) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 547) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 548) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 549) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 550) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 551) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 552) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 553) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 554) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 555) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 556) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 557) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 558) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 559) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 560) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 561) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 562) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 563) | RTA_UNSPEC = 0x0
constant RTA_DST (line 564) | RTA_DST = 0x1
constant RTA_SRC (line 565) | RTA_SRC = 0x2
constant RTA_IIF (line 566) | RTA_IIF = 0x3
constant RTA_OIF (line 567) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 568) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 569) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 570) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 571) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 572) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 573) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 574) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 575) | RTA_TABLE = 0xf
constant RTA_MARK (line 576) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 577) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 578) | RTA_VIA = 0x12
constant RTA_NEWDST (line 579) | RTA_NEWDST = 0x13
constant RTA_PREF (line 580) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 581) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 582) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 583) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 584) | RTA_PAD = 0x18
constant RTA_UID (line 585) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 586) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 587) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 588) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 589) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 590) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 591) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 592) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 593) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 594) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 595) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 596) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 597) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 598) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 599) | RTN_THROW = 0x9
constant RTN_NAT (line 600) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 601) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 602) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 603) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 604) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 605) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 606) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 607) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 608) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 609) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 610) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 611) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 612) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 613) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 614) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 615) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 616) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 617) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 618) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 619) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 620) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 621) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 622) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 623) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 624) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 625) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 626) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 627) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 628) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 629) | SizeofNdMsg = 0xc
type NlMsghdr (line 632) | type NlMsghdr struct
type NlMsgerr (line 640) | type NlMsgerr struct
type RtGenmsg (line 645) | type RtGenmsg struct
type NlAttr (line 649) | type NlAttr struct
type RtAttr (line 654) | type RtAttr struct
type IfInfomsg (line 659) | type IfInfomsg struct
type IfAddrmsg (line 668) | type IfAddrmsg struct
type IfaCacheinfo (line 676) | type IfaCacheinfo struct
type RtMsg (line 683) | type RtMsg struct
type RtNexthop (line 695) | type RtNexthop struct
type NdUseroptmsg (line 702) | type NdUseroptmsg struct
type NdMsg (line 713) | type NdMsg struct
constant SizeofSockFilter (line 724) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 725) | SizeofSockFprog = 0x8
type SockFilter (line 728) | type SockFilter struct
type SockFprog (line 735) | type SockFprog struct
type InotifyEvent (line 740) | type InotifyEvent struct
constant SizeofInotifyEvent (line 747) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 749) | type PtraceRegs struct
type FdSet (line 769) | type FdSet struct
type Sysinfo_t (line 773) | type Sysinfo_t struct
type Utsname (line 790) | type Utsname struct
type Ustat_t (line 799) | type Ustat_t struct
type EpollEvent (line 806) | type EpollEvent struct
constant AT_EMPTY_PATH (line 813) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 814) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 815) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 816) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 818) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 819) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 820) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 822) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 823) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 825) | AT_EACCESS = 0x200
type PollFd (line 828) | type PollFd struct
constant POLLIN (line 835) | POLLIN = 0x1
constant POLLPRI (line 836) | POLLPRI = 0x2
constant POLLOUT (line 837) | POLLOUT = 0x4
constant POLLRDHUP (line 838) | POLLRDHUP = 0x2000
constant POLLERR (line 839) | POLLERR = 0x8
constant POLLHUP (line 840) | POLLHUP = 0x10
constant POLLNVAL (line 841) | POLLNVAL = 0x20
type Sigset_t (line 844) | type Sigset_t struct
constant _C__NSIG (line 848) | _C__NSIG = 0x41
type SignalfdSiginfo (line 850) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 875) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 877) | type Termios struct
type Winsize (line 888) | type Winsize struct
type Taskstats (line 895) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 947) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 948) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 949) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 950) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 951) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 952) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 953) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 954) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 955) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 956) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 957) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 958) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 959) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 960) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 961) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 964) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 973) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 974) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 975) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 976) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 977) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 978) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 979) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 982) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 989) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 990) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 991) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 992) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 993) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 994) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 995) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 996) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 997) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 998) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 999) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 1000) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 1001) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 1002) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 1003) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 1004) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 1005) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1006) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1007) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1008) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1009) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1010) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1011) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1012) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1015) | type cpuMask
constant _CPU_SETSIZE (line 1018) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1019) | _NCPUBITS = 0x20
constant BDADDR_BREDR (line 1023) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1024) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1025) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1028) | type PerfEventAttr struct
type PerfEventMmapPage (line 1050) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1077) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1078) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1079) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1080) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1081) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1082) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1083) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1084) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1085) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1086) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1087) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1088) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1089) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1090) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1091) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1092) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1093) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1094) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1095) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1096) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1097) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1098) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1099) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1100) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1101) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1102) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1103) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1107) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1108) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1109) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1110) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1111) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1112) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1114) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1115) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1116) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1117) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1118) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1119) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1120) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1121) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1122) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1123) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1125) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1126) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1127) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1128) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1129) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1130) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1131) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1133) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1134) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1135) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1137) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1138) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1140) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1141) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1142) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1143) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1144) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1145) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1146) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1147) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1148) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1149) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1150) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1152) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1153) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1154) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1155) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1156) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1157) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1158) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1159) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1160) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1161) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1162) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1163) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1165) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1166) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1167) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1168) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1169) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1170) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1171) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1172) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1173) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1174) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1175) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1176) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1177) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1178) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1179) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1180) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1181) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1183) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1184) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1185) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1186) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1188) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1189) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1190) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1191) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1192) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1193) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1194) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1195) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1196) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1197) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1198) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1199) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1200) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1201) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1202) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1203) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1205) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1206) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1207) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1209) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1210) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1211) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1213) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1214) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1215) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1216) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1220) | CBitFieldMaskBit0 = 0x1
constant CBitFieldMaskBit1 (line 1221) | CBitFieldMaskBit1 = 0x2
constant CBitFieldMaskBit2 (line 1222) | CBitFieldMaskBit2 = 0x4
constant CBitFieldMaskBit3 (line 1223) | CBitFieldMaskBit3 = 0x8
constant CBitFieldMaskBit4 (line 1224) | CBitFieldMaskBit4 = 0x10
constant CBitFieldMaskBit5 (line 1225) | CBitFieldMaskBit5 = 0x20
constant CBitFieldMaskBit6 (line 1226) | CBitFieldMaskBit6 = 0x40
constant CBitFieldMaskBit7 (line 1227) | CBitFieldMaskBit7 = 0x80
constant CBitFieldMaskBit8 (line 1228) | CBitFieldMaskBit8 = 0x100
constant CBitFieldMaskBit9 (line 1229) | CBitFieldMaskBit9 = 0x200
constant CBitFieldMaskBit10 (line 1230) | CBitFieldMaskBit10 = 0x400
constant CBitFieldMaskBit11 (line 1231) | CBitFieldMaskBit11 = 0x800
constant CBitFieldMaskBit12 (line 1232) | CBitFieldMaskBit12 = 0x1000
constant CBitFieldMaskBit13 (line 1233) | CBitFieldMaskBit13 = 0x2000
constant CBitFieldMaskBit14 (line 1234) | CBitFieldMaskBit14 = 0x4000
constant CBitFieldMaskBit15 (line 1235) | CBitFieldMaskBit15 = 0x8000
constant CBitFieldMaskBit16 (line 1236) | CBitFieldMaskBit16 = 0x10000
constant CBitFieldMaskBit17 (line 1237) | CBitFieldMaskBit17 = 0x20000
constant CBitFieldMaskBit18 (line 1238) | CBitFieldMaskBit18 = 0x40000
constant CBitFieldMaskBit19 (line 1239) | CBitFieldMaskBit19 = 0x80000
constant CBitFieldMaskBit20 (line 1240) | CBitFieldMaskBit20 = 0x100000
constant CBitFieldMaskBit21 (line 1241) | CBitFieldMaskBit21 = 0x200000
constant CBitFieldMaskBit22 (line 1242) | CBitFieldMaskBit22 = 0x400000
constant CBitFieldMaskBit23 (line 1243) | CBitFieldMaskBit23 = 0x800000
constant CBitFieldMaskBit24 (line 1244) | CBitFieldMaskBit24 = 0x1000000
constant CBitFieldMaskBit25 (line 1245) | CBitFieldMaskBit25 = 0x2000000
constant CBitFieldMaskBit26 (line 1246) | CBitFieldMaskBit26 = 0x4000000
constant CBitFieldMaskBit27 (line 1247) | CBitFieldMaskBit27 = 0x8000000
constant CBitFieldMaskBit28 (line 1248) | CBitFieldMaskBit28 = 0x10000000
constant CBitFieldMaskBit29 (line 1249) | CBitFieldMaskBit29 = 0x20000000
constant CBitFieldMaskBit30 (line 1250) | CBitFieldMaskBit30 = 0x40000000
constant CBitFieldMaskBit31 (line 1251) | CBitFieldMaskBit31 = 0x80000000
constant CBitFieldMaskBit32 (line 1252) | CBitFieldMaskBit32 = 0x100000000
constant CBitFieldMaskBit33 (line 1253) | CBitFieldMaskBit33 = 0x200000000
constant CBitFieldMaskBit34 (line 1254) | CBitFieldMaskBit34 = 0x400000000
constant CBitFieldMaskBit35 (line 1255) | CBitFieldMaskBit35 = 0x800000000
constant CBitFieldMaskBit36 (line 1256) | CBitFieldMaskBit36 = 0x1000000000
constant CBitFieldMaskBit37 (line 1257) | CBitFieldMaskBit37 = 0x2000000000
constant CBitFieldMaskBit38 (line 1258) | CBitFieldMaskBit38 = 0x4000000000
constant CBitFieldMaskBit39 (line 1259) | CBitFieldMaskBit39 = 0x8000000000
constant CBitFieldMaskBit40 (line 1260) | CBitFieldMaskBit40 = 0x10000000000
constant CBitFieldMaskBit41 (line 1261) | CBitFieldMaskBit41 = 0x20000000000
constant CBitFieldMaskBit42 (line 1262) | CBitFieldMaskBit42 = 0x40000000000
constant CBitFieldMaskBit43 (line 1263) | CBitFieldMaskBit43 = 0x80000000000
constant CBitFieldMaskBit44 (line 1264) | CBitFieldMaskBit44 = 0x100000000000
constant CBitFieldMaskBit45 (line 1265) | CBitFieldMaskBit45 = 0x200000000000
constant CBitFieldMaskBit46 (line 1266) | CBitFieldMaskBit46 = 0x400000000000
constant CBitFieldMaskBit47 (line 1267) | CBitFieldMaskBit47 = 0x800000000000
constant CBitFieldMaskBit48 (line 1268) | CBitFieldMaskBit48 = 0x1000000000000
constant CBitFieldMaskBit49 (line 1269) | CBitFieldMaskBit49 = 0x2000000000000
constant CBitFieldMaskBit50 (line 1270) | CBitFieldMaskBit50 = 0x4000000000000
constant CBitFieldMaskBit51 (line 1271) | CBitFieldMaskBit51 = 0x8000000000000
constant CBitFieldMaskBit52 (line 1272) | CBitFieldMaskBit52 = 0x10000000000000
constant CBitFieldMaskBit53 (line 1273) | CBitFieldMaskBit53 = 0x20000000000000
constant CBitFieldMaskBit54 (line 1274) | CBitFieldMaskBit54 = 0x40000000000000
constant CBitFieldMaskBit55 (line 1275) | CBitFieldMaskBit55 = 0x80000000000000
constant CBitFieldMaskBit56 (line 1276) | CBitFieldMaskBit56 = 0x100000000000000
constant CBitFieldMaskBit57 (line 1277) | CBitFieldMaskBit57 = 0x200000000000000
constant CBitFieldMaskBit58 (line 1278) | CBitFieldMaskBit58 = 0x400000000000000
constant CBitFieldMaskBit59 (line 1279) | CBitFieldMaskBit59 = 0x800000000000000
constant CBitFieldMaskBit60 (line 1280) | CBitFieldMaskBit60 = 0x1000000000000000
constant CBitFieldMaskBit61 (line 1281) | CBitFieldMaskBit61 = 0x2000000000000000
constant CBitFieldMaskBit62 (line 1282) | CBitFieldMaskBit62 = 0x4000000000000000
constant CBitFieldMaskBit63 (line 1283) | CBitFieldMaskBit63 = 0x8000000000000000
type SockaddrStorage (line 1286) | type SockaddrStorage struct
type TCPMD5Sig (line 1292) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1301) | type HDDriveCmdHdr struct
type HDGeometry (line 1308) | type HDGeometry struct
type HDDriveID (line 1315) | type HDDriveID struct
type Statfs_t (line 1397) | type Statfs_t struct
constant ST_MANDLOCK (line 1413) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1414) | ST_NOATIME = 0x400
constant ST_NODEV (line 1415) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1416) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1417) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1418) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1419) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1420) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1421) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1424) | type TpacketHdr struct
type Tpacket2Hdr (line 1434) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1447) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1460) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1467) | type TpacketBlockDesc struct
type TpacketBDTS (line 1473) | type TpacketBDTS struct
type TpacketHdrV1 (line 1478) | type TpacketHdrV1 struct
type TpacketReq (line 1488) | type TpacketReq struct
type TpacketReq3 (line 1495) | type TpacketReq3 struct
type TpacketStats (line 1505) | type TpacketStats struct
type TpacketStatsV3 (line 1510) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1516) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1527) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1528) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1529) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1533) | SizeofTpacketHdr = 0x18
constant SizeofTpacket2Hdr (line 1534) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1535) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1537) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1538) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1542) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1543) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1544) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1545) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1546) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1547) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1551) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1552) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1556) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1557) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1558) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1559) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1560) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1561) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1562) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1563) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1564) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1567) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1574) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1575) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1579) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1580) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1581) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1582) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1583) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1584) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1585) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1586) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1587) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1588) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1589) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1590) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1591) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1592) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1593) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1594) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1595) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1596) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1597) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1598) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1599) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1600) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1601) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1602) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1603) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1604) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1605) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1606) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1607) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1608) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1609) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1610) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1611) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1612) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1613) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1614) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1615) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1616) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1617) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1618) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1619) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1620) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1621) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1622) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1623) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1624) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1625) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1626) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1627) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1628) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1629) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1630) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1631) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1632) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1633) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1634) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1635) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1636) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1637) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1638) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1639) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1640) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1641) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1642) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1643) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1644) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1645) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1646) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1647) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1648) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1649) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1650) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1651) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1652) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1653) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1654) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1655) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1656) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1657) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1658) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1659) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1660) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1661) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1662) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1663) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1664) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1665) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1666) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1667) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1668) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1669) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1670) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1671) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1672) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1673) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1674) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1675) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1676) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1677) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1678) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1679) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1680) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1681) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1682) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1683) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1684) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1685) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1686) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1687) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1688) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1689) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1690) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1691) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1692) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1693) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1694) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1695) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1696) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1697) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1698) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1699) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1700) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1701) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1702) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1703) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1704) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1705) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1706) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1707) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1708) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1709) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1710) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1711) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1712) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1713) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1714) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1715) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1716) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1717) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1718) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1719) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1720) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1721) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1722) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1723) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1724) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1725) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1726) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1727) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1728) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1729) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1730) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1731) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1732) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1733) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1734) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1735) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1736) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1737) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1738) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1739) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1740) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1741) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1742) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1743) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1744) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1745) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1746) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1747) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1748) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1749) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1750) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1751) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1752) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1753) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1754) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1755) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1756) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1757) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1758) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1759) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1760) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1761) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1762) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1763) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1764) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1765) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1766) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1767) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1768) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1769) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1770) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1771) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1772) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1773) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1774) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1775) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1776) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1777) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1778) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1779) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1780) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1781) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1782) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1783) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1784) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1785) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1786) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1787) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1788) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1789) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1790) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1791) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1792) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1793) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1794) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1795) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1796) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1797) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1798) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1799) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1800) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1801) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1802) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1803) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1804) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1805) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1806) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1807) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1808) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1809) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1810) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1811) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1812) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1813) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1814) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1815) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1816) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1817) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1818) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1819) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1820) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1821) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1822) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1823) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1824) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1825) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1826) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1827) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1828) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1829) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1830) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1831) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1832) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1833) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1834) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1835) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1836) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1837) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1838) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1839) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1840) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1841) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1842) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1843) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1844) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1845) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1846) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1847) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1848) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1849) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1850) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1851) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1852) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1853) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1854) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1855) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1856) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1857) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1858) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1859) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1860) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1861) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1862) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1863) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1864) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1865) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1866) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1867) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1868) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1869) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1870) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1871) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1872) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1873) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1874) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1875) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1876) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1877) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1878) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1879) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1880) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1881) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1882) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1883) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1884) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1885) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1886) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1887) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1888) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1889) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1890) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1891) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1892) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1893) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1894) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1895) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1896) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1897) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1898) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1899) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1900) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1901) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1902) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1903) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1904) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1905) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1906) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1907) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1908) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1909) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1910) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1911) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1912) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1913) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1914) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1915) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1916) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1917) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1918) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1919) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1920) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1921) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1922) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1923) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1924) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1925) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1926) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1927) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1928) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1929) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1930) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1931) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1932) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1933) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1934) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1935) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1936) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1937) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1938) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1939) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1940) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1941) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1942) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1943) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1944) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1945) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1946) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1947) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1948) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1949) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1950) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1951) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1952) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1953) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1954) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1955) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1956) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1957) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1958) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1959) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1960) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1961) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1962) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1963) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1964) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1965) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1966) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1967) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1968) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1969) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1970) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1971) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1972) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1973) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1974) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1975) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1976) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1977) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1978) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1979) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1980) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1981) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1982) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1983) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1984) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1985) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1986) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1987) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1988) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1989) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1990) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1991) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1992) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1993) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1994) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1995) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1996) | NFT_NG_RANDOM = 0x1
type RTCTime (line 1999) | type RTCTime struct
type RTCWkAlrm (line 2011) | type RTCWkAlrm struct
type RTCPLLInfo (line 2017) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2027) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2034) | type BlkpgPartition struct
constant BLKPG (line 2043) | BLKPG = 0x1269
constant BLKPG_ADD_PARTITION (line 2044) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2045) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2046) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2050) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2051) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2052) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2053) | NETNSA_FD = 0x3
type XDPRingOffset (line 2056) | type XDPRingOffset struct
type XDPMmapOffsets (line 2062) | type XDPMmapOffsets struct
type XDPUmemReg (line 2069) | type XDPUmemReg struct
type XDPStatistics (line 2076) | type XDPStatistics struct
type XDPDesc (line 2082) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2089) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2090) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2091) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2092) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2093) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2094) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2095) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2096) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2097) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2098) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2099) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2100) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2101) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2102) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2103) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2104) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2105) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2106) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2107) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2108) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2109) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2110) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2111) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2112) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2113) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2116) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2121) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2122) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2123) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2124) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2125) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2126) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2127) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2128) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2129) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2130) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2131) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2132) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2133) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2134) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2135) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2137) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2138) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2140) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2141) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2142) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2145) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2155) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2165) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2171) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2172) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2173) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2174) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2175) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2176) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2177) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2181) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2182) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2183) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2184) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2185) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2186) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2187) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2188) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2189) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2190) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2191) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2192) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2193) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2194) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2195) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2196) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2197) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2198) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2199) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2200) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2201) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2202) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2205) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2215) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2224) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2235) | type CryptoStatCipher struct
type CryptoStatCompress (line 2244) | type CryptoStatCompress struct
type CryptoStatHash (line 2253) | type CryptoStatHash struct
type CryptoStatKPP (line 2260) | type CryptoStatKPP struct
type CryptoStatRNG (line 2268) | type CryptoStatRNG struct
type CryptoStatLarval (line 2276) | type CryptoStatLarval struct
type CryptoReportLarval (line 2280) | type CryptoReportLarval struct
type CryptoReportHash (line 2284) | type CryptoReportHash struct
type CryptoReportCipher (line 2290) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2297) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2306) | type CryptoReportAEAD struct
type CryptoReportComp (line 2314) | type CryptoReportComp struct
type CryptoReportRNG (line 2318) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2323) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2327) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2331) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2336) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2337) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2338) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2339) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2340) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2341) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2342) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2343) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2344) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2345) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2346) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2347) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2348) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2349) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2350) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2351) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2352) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2353) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2354) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2355) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2356) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2357) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2358) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2359) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2360) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2361) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2362) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2363) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2364) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2365) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2366) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2367) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2368) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2369) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2370) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2371) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2372) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2373) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2374) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2375) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2376) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2377) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2378) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2379) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2380) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2381) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2382) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2383) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2384) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2385) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2386) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2387) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2388) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2389) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2390) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2391) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2392) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2393) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2394) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2395) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2396) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2397) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2398) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2399) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2400) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2401) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2402) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2403) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2404) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2405) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2406) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2407) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2408) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2409) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2410) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2411) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2412) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2413) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2414) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2415) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2416) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2417) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2418) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2419) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2420) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2421) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2422) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2423) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2424) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2425) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2426) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2427) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2428) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2429) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2430) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2431) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2432) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2433) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2434) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2435) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2436) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2437) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2438) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2439) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2440) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2441) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2442) | BPF_OK = 0x0
constant BPF_DROP (line 2443) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2444) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2445) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2446) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2447) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2448) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2449) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2450) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2451) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2452) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2453) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2454) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2455) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2456) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2457) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2458) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2459) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2460) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2461) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2462) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2463) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2464) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2465) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2466) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2467) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2468) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2469) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2470) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2471) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2472) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2473) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2474) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2475) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2476) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2477) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2478) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2479) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2480) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2481) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2482) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2483) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2484) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2487) | type CapUserHeader struct
type CapUserData (line 2492) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2499) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2500) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2501) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2505) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2506) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2507) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2508) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2511) | type LoopInfo struct
type LoopInfo64 (line 2525) | type LoopInfo64 struct
type TIPCSocketAddr (line 2541) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2546) | type TIPCServiceRange struct
type TIPCServiceName (line 2552) | type TIPCServiceName struct
type TIPCSubscr (line 2558) | type TIPCSubscr struct
type TIPCEvent (line 2565) | type TIPCEvent struct
type TIPCGroupReq (line 2573) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2580) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2586) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2592) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2593) | TIPC_NODE_SCOPE = 0x3
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 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 StatxTimestamp (line 116) | type StatxTimestamp struct
type Statx_t (line 122) | type Statx_t struct
type Dirent (line 146) | type Dirent struct
type Fsid (line 155) | type Fsid struct
type Flock_t (line 159) | type Flock_t struct
type FscryptPolicy (line 168) | type FscryptPolicy struct
type FscryptKey (line 176) | type FscryptKey struct
type KeyctlDHParams (line 182) | type KeyctlDHParams struct
constant FADV_NORMAL (line 189) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 190) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 191) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 192) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 193) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 194) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 197) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 204) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 212) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 217) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 227) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 234) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 240) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 249) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 256) | type RawSockaddrCAN struct
type RawSockaddrALG (line 262) | type RawSockaddrALG struct
type RawSockaddrVM (line 270) | type RawSockaddrVM struct
type RawSockaddrXDP (line 278) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 286) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 288) | type RawSockaddrTIPC struct
type RawSockaddr (line 295) | type RawSockaddr struct
type RawSockaddrAny (line 300) | type RawSockaddrAny struct
type _Socklen (line 305) | type _Socklen
type Linger (line 307) | type Linger struct
type Iovec (line 312) | type Iovec struct
type IPMreq (line 317) | type IPMreq struct
type IPMreqn (line 322) | type IPMreqn struct
type IPv6Mreq (line 328) | type IPv6Mreq struct
type PacketMreq (line 333) | type PacketMreq struct
type Msghdr (line 340) | type Msghdr struct
type Cmsghdr (line 351) | type Cmsghdr struct
type Inet4Pktinfo (line 357) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 363) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 368) | type IPv6MTUInfo struct
type ICMPv6Filter (line 373) | type ICMPv6Filter struct
type Ucred (line 377) | type Ucred struct
type TCPInfo (line 383) | type TCPInfo struct
type CanFilter (line 416) | type CanFilter struct
constant SizeofSockaddrInet4 (line 422) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 423) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 424) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 425) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 426) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 427) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 428) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 429) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 430) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 431) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 432) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 433) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 434) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 435) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 436) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 437) | SizeofLinger = 0x8
constant SizeofIovec (line 438) | SizeofIovec = 0x10
constant SizeofIPMreq (line 439) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 440) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 441) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 442) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 443) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 444) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 445) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 446) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 447) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 448) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 449) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 450) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 451) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 455) | NDA_UNSPEC = 0x0
constant NDA_DST (line 456) | NDA_DST = 0x1
constant NDA_LLADDR (line 457) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 458) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 459) | NDA_PROBES = 0x4
constant NDA_VLAN (line 460) | NDA_VLAN = 0x5
constant NDA_PORT (line 461) | NDA_PORT = 0x6
constant NDA_VNI (line 462) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 463) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 464) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 465) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 466) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 467) | NTF_USE = 0x1
constant NTF_SELF (line 468) | NTF_SELF = 0x2
constant NTF_MASTER (line 469) | NTF_MASTER = 0x4
constant NTF_PROXY (line 470) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 471) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 472) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 473) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 474) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 475) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 476) | NUD_STALE = 0x4
constant NUD_DELAY (line 477) | NUD_DELAY = 0x8
constant NUD_PROBE (line 478) | NUD_PROBE = 0x10
constant NUD_FAILED (line 479) | NUD_FAILED = 0x20
constant NUD_NOARP (line 480) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 481) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 482) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 483) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 484) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 485) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 486) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 487) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 488) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 489) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 490) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 491) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 492) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 493) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 494) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 495) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 496) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 497) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 498) | IFLA_MTU = 0x4
constant IFLA_LINK (line 499) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 500) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 501) | IFLA_STATS = 0x7
constant IFLA_COST (line 502) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 503) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 504) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 505) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 506) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 507) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 508) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 509) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 510) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 511) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 512) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 513) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 514) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 515) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 516) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 517) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 518) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 519) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 520) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 521) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 522) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 523) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 524) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 525) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 526) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 527) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 528) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 529) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 530) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 531) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 532) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 533) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 534) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 535) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 536) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 537) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 538) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 539) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 540) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 541) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 542) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 543) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 544) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 545) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 546) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 547) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 548) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 549) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 550) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 551) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 552) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 553) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 554) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 555) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 556) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 557) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 558) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 559) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 560) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 561) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 562) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 563) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 564) | RTA_UNSPEC = 0x0
constant RTA_DST (line 565) | RTA_DST = 0x1
constant RTA_SRC (line 566) | RTA_SRC = 0x2
constant RTA_IIF (line 567) | RTA_IIF = 0x3
constant RTA_OIF (line 568) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 569) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 570) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 571) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 572) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 573) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 574) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 575) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 576) | RTA_TABLE = 0xf
constant RTA_MARK (line 577) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 578) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 579) | RTA_VIA = 0x12
constant RTA_NEWDST (line 580) | RTA_NEWDST = 0x13
constant RTA_PREF (line 581) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 582) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 583) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 584) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 585) | RTA_PAD = 0x18
constant RTA_UID (line 586) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 587) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 588) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 589) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 590) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 591) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 592) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 593) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 594) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 595) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 596) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 597) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 598) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 599) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 600) | RTN_THROW = 0x9
constant RTN_NAT (line 601) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 602) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 603) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 604) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 605) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 606) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 607) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 608) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 609) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 610) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 611) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 612) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 613) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 614) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 615) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 616) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 617) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 618) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 619) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 620) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 621) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 622) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 623) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 624) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 625) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 626) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 627) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 628) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 629) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 630) | SizeofNdMsg = 0xc
type NlMsghdr (line 633) | type NlMsghdr struct
type NlMsgerr (line 641) | type NlMsgerr struct
type RtGenmsg (line 646) | type RtGenmsg struct
type NlAttr (line 650) | type NlAttr struct
type RtAttr (line 655) | type RtAttr struct
type IfInfomsg (line 660) | type IfInfomsg struct
type IfAddrmsg (line 669) | type IfAddrmsg struct
type IfaCacheinfo (line 677) | type IfaCacheinfo struct
type RtMsg (line 684) | type RtMsg struct
type RtNexthop (line 696) | type RtNexthop struct
type NdUseroptmsg (line 703) | type NdUseroptmsg struct
type NdMsg (line 714) | type NdMsg struct
constant SizeofSockFilter (line 725) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 726) | SizeofSockFprog = 0x10
type SockFilter (line 729) | type SockFilter struct
type SockFprog (line 736) | type SockFprog struct
type InotifyEvent (line 741) | type InotifyEvent struct
constant SizeofInotifyEvent (line 748) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 750) | type PtraceRegs struct
type FdSet (line 780) | type FdSet struct
type Sysinfo_t (line 784) | type Sysinfo_t struct
type Utsname (line 802) | type Utsname struct
type Ustat_t (line 811) | type Ustat_t struct
type EpollEvent (line 819) | type EpollEvent struct
constant AT_EMPTY_PATH (line 826) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 827) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 828) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 829) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 831) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 832) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 833) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 835) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 836) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 838) | AT_EACCESS = 0x200
type PollFd (line 841) | type PollFd struct
constant POLLIN (line 848) | POLLIN = 0x1
constant POLLPRI (line 849) | POLLPRI = 0x2
constant POLLOUT (line 850) | POLLOUT = 0x4
constant POLLRDHUP (line 851) | POLLRDHUP = 0x2000
constant POLLERR (line 852) | POLLERR = 0x8
constant POLLHUP (line 853) | POLLHUP = 0x10
constant POLLNVAL (line 854) | POLLNVAL = 0x20
type Sigset_t (line 857) | type Sigset_t struct
constant _C__NSIG (line 861) | _C__NSIG = 0x41
type SignalfdSiginfo (line 863) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 888) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 890) | type Termios struct
type Winsize (line 901) | type Winsize struct
type Taskstats (line 908) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 958) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 959) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 960) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 961) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 962) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 963) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 964) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 965) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 966) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 967) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 968) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 969) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 970) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 971) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 972) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 975) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 984) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 985) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 986) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 987) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 988) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 989) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 990) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 993) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 1000) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 1001) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 1002) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 1003) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 1004) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 1005) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 1006) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 1007) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 1008) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 1009) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 1010) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 1011) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 1012) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 1013) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 1014) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 1015) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 1016) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1017) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1018) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1019) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1020) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1021) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1022) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1023) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1026) | type cpuMask
constant _CPU_SETSIZE (line 1029) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1030) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1034) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1035) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1036) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1039) | type PerfEventAttr struct
type PerfEventMmapPage (line 1061) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1088) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1089) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1090) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1091) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1092) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1093) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1094) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1095) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1096) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1097) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1098) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1099) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1100) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1101) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1102) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1103) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1104) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1105) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1106) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1107) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1108) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1109) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1110) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1111) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1112) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1113) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1114) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1118) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1119) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1120) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1121) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1122) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1123) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1125) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1126) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1127) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1128) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1129) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1130) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1131) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1132) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1133) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1134) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1136) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1137) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1138) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1139) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1140) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1141) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1142) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1144) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1145) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1146) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1148) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1149) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1151) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1152) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1153) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1154) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1155) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1156) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1157) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1158) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1159) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1160) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1161) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1163) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1164) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1165) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1166) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1167) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1168) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1169) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1170) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1171) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1172) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1173) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1174) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1176) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1177) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1178) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1179) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1180) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1181) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1182) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1183) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1184) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1185) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1186) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1187) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1188) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1189) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1190) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1191) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1192) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1194) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1195) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1196) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1197) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1199) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1200) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1201) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1202) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1203) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1204) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1205) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1206) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1207) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1208) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1209) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1210) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1211) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1212) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1213) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1214) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1216) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1217) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1218) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1220) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1221) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1222) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1224) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1225) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1226) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1227) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1231) | CBitFieldMaskBit0 = 0x1
constant CBitFieldMaskBit1 (line 1232) | CBitFieldMaskBit1 = 0x2
constant CBitFieldMaskBit2 (line 1233) | CBitFieldMaskBit2 = 0x4
constant CBitFieldMaskBit3 (line 1234) | CBitFieldMaskBit3 = 0x8
constant CBitFieldMaskBit4 (line 1235) | CBitFieldMaskBit4 = 0x10
constant CBitFieldMaskBit5 (line 1236) | CBitFieldMaskBit5 = 0x20
constant CBitFieldMaskBit6 (line 1237) | CBitFieldMaskBit6 = 0x40
constant CBitFieldMaskBit7 (line 1238) | CBitFieldMaskBit7 = 0x80
constant CBitFieldMaskBit8 (line 1239) | CBitFieldMaskBit8 = 0x100
constant CBitFieldMaskBit9 (line 1240) | CBitFieldMaskBit9 = 0x200
constant CBitFieldMaskBit10 (line 1241) | CBitFieldMaskBit10 = 0x400
constant CBitFieldMaskBit11 (line 1242) | CBitFieldMaskBit11 = 0x800
constant CBitFieldMaskBit12 (line 1243) | CBitFieldMaskBit12 = 0x1000
constant CBitFieldMaskBit13 (line 1244) | CBitFieldMaskBit13 = 0x2000
constant CBitFieldMaskBit14 (line 1245) | CBitFieldMaskBit14 = 0x4000
constant CBitFieldMaskBit15 (line 1246) | CBitFieldMaskBit15 = 0x8000
constant CBitFieldMaskBit16 (line 1247) | CBitFieldMaskBit16 = 0x10000
constant CBitFieldMaskBit17 (line 1248) | CBitFieldMaskBit17 = 0x20000
constant CBitFieldMaskBit18 (line 1249) | CBitFieldMaskBit18 = 0x40000
constant CBitFieldMaskBit19 (line 1250) | CBitFieldMaskBit19 = 0x80000
constant CBitFieldMaskBit20 (line 1251) | CBitFieldMaskBit20 = 0x100000
constant CBitFieldMaskBit21 (line 1252) | CBitFieldMaskBit21 = 0x200000
constant CBitFieldMaskBit22 (line 1253) | CBitFieldMaskBit22 = 0x400000
constant CBitFieldMaskBit23 (line 1254) | CBitFieldMaskBit23 = 0x800000
constant CBitFieldMaskBit24 (line 1255) | CBitFieldMaskBit24 = 0x1000000
constant CBitFieldMaskBit25 (line 1256) | CBitFieldMaskBit25 = 0x2000000
constant CBitFieldMaskBit26 (line 1257) | CBitFieldMaskBit26 = 0x4000000
constant CBitFieldMaskBit27 (line 1258) | CBitFieldMaskBit27 = 0x8000000
constant CBitFieldMaskBit28 (line 1259) | CBitFieldMaskBit28 = 0x10000000
constant CBitFieldMaskBit29 (line 1260) | CBitFieldMaskBit29 = 0x20000000
constant CBitFieldMaskBit30 (line 1261) | CBitFieldMaskBit30 = 0x40000000
constant CBitFieldMaskBit31 (line 1262) | CBitFieldMaskBit31 = 0x80000000
constant CBitFieldMaskBit32 (line 1263) | CBitFieldMaskBit32 = 0x100000000
constant CBitFieldMaskBit33 (line 1264) | CBitFieldMaskBit33 = 0x200000000
constant CBitFieldMaskBit34 (line 1265) | CBitFieldMaskBit34 = 0x400000000
constant CBitFieldMaskBit35 (line 1266) | CBitFieldMaskBit35 = 0x800000000
constant CBitFieldMaskBit36 (line 1267) | CBitFieldMaskBit36 = 0x1000000000
constant CBitFieldMaskBit37 (line 1268) | CBitFieldMaskBit37 = 0x2000000000
constant CBitFieldMaskBit38 (line 1269) | CBitFieldMaskBit38 = 0x4000000000
constant CBitFieldMaskBit39 (line 1270) | CBitFieldMaskBit39 = 0x8000000000
constant CBitFieldMaskBit40 (line 1271) | CBitFieldMaskBit40 = 0x10000000000
constant CBitFieldMaskBit41 (line 1272) | CBitFieldMaskBit41 = 0x20000000000
constant CBitFieldMaskBit42 (line 1273) | CBitFieldMaskBit42 = 0x40000000000
constant CBitFieldMaskBit43 (line 1274) | CBitFieldMaskBit43 = 0x80000000000
constant CBitFieldMaskBit44 (line 1275) | CBitFieldMaskBit44 = 0x100000000000
constant CBitFieldMaskBit45 (line 1276) | CBitFieldMaskBit45 = 0x200000000000
constant CBitFieldMaskBit46 (line 1277) | CBitFieldMaskBit46 = 0x400000000000
constant CBitFieldMaskBit47 (line 1278) | CBitFieldMaskBit47 = 0x800000000000
constant CBitFieldMaskBit48 (line 1279) | CBitFieldMaskBit48 = 0x1000000000000
constant CBitFieldMaskBit49 (line 1280) | CBitFieldMaskBit49 = 0x2000000000000
constant CBitFieldMaskBit50 (line 1281) | CBitFieldMaskBit50 = 0x4000000000000
constant CBitFieldMaskBit51 (line 1282) | CBitFieldMaskBit51 = 0x8000000000000
constant CBitFieldMaskBit52 (line 1283) | CBitFieldMaskBit52 = 0x10000000000000
constant CBitFieldMaskBit53 (line 1284) | CBitFieldMaskBit53 = 0x20000000000000
constant CBitFieldMaskBit54 (line 1285) | CBitFieldMaskBit54 = 0x40000000000000
constant CBitFieldMaskBit55 (line 1286) | CBitFieldMaskBit55 = 0x80000000000000
constant CBitFieldMaskBit56 (line 1287) | CBitFieldMaskBit56 = 0x100000000000000
constant CBitFieldMaskBit57 (line 1288) | CBitFieldMaskBit57 = 0x200000000000000
constant CBitFieldMaskBit58 (line 1289) | CBitFieldMaskBit58 = 0x400000000000000
constant CBitFieldMaskBit59 (line 1290) | CBitFieldMaskBit59 = 0x800000000000000
constant CBitFieldMaskBit60 (line 1291) | CBitFieldMaskBit60 = 0x1000000000000000
constant CBitFieldMaskBit61 (line 1292) | CBitFieldMaskBit61 = 0x2000000000000000
constant CBitFieldMaskBit62 (line 1293) | CBitFieldMaskBit62 = 0x4000000000000000
constant CBitFieldMaskBit63 (line 1294) | CBitFieldMaskBit63 = 0x8000000000000000
type SockaddrStorage (line 1297) | type SockaddrStorage struct
type TCPMD5Sig (line 1303) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1312) | type HDDriveCmdHdr struct
type HDGeometry (line 1319) | type HDGeometry struct
type HDDriveID (line 1326) | type HDDriveID struct
type Statfs_t (line 1408) | type Statfs_t struct
constant ST_MANDLOCK (line 1424) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1425) | ST_NOATIME = 0x400
constant ST_NODEV (line 1426) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1427) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1428) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1429) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1430) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1431) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1432) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1435) | type TpacketHdr struct
type Tpacket2Hdr (line 1446) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1459) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1472) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1479) | type TpacketBlockDesc struct
type TpacketBDTS (line 1485) | type TpacketBDTS struct
type TpacketHdrV1 (line 1490) | type TpacketHdrV1 struct
type TpacketReq (line 1500) | type TpacketReq struct
type TpacketReq3 (line 1507) | type TpacketReq3 struct
type TpacketStats (line 1517) | type TpacketStats struct
type TpacketStatsV3 (line 1522) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1528) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1539) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1540) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1541) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1545) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1546) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1547) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1549) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1550) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1554) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1555) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1556) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1557) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1558) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1559) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1563) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1564) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1568) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1569) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1570) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1571) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1572) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1573) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1574) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1575) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1576) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1579) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1586) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1587) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1591) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1592) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1593) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1594) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1595) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1596) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1597) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1598) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1599) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1600) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1601) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1602) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1603) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1604) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1605) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1606) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1607) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1608) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1609) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1610) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1611) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1612) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1613) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1614) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1615) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1616) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1617) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1618) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1619) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1620) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1621) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1622) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1623) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1624) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1625) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1626) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1627) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1628) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1629) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1630) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1631) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1632) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1633) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1634) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1635) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1636) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1637) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1638) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1639) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1640) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1641) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1642) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1643) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1644) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1645) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1646) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1647) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1648) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1649) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1650) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1651) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1652) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1653) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1654) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1655) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1656) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1657) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1658) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1659) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1660) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1661) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1662) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1663) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1664) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1665) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1666) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1667) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1668) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1669) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1670) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1671) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1672) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1673) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1674) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1675) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1676) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1677) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1678) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1679) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1680) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1681) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1682) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1683) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1684) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1685) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1686) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1687) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1688) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1689) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1690) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1691) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1692) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1693) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1694) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1695) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1696) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1697) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1698) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1699) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1700) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1701) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1702) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1703) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1704) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1705) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1706) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1707) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1708) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1709) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1710) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1711) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1712) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1713) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1714) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1715) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1716) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1717) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1718) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1719) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1720) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1721) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1722) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1723) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1724) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1725) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1726) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1727) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1728) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1729) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1730) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1731) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1732) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1733) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1734) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1735) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1736) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1737) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1738) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1739) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1740) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1741) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1742) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1743) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1744) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1745) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1746) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1747) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1748) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1749) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1750) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1751) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1752) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1753) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1754) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1755) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1756) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1757) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1758) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1759) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1760) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1761) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1762) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1763) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1764) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1765) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1766) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1767) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1768) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1769) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1770) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1771) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1772) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1773) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1774) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1775) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1776) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1777) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1778) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1779) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1780) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1781) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1782) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1783) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1784) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1785) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1786) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1787) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1788) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1789) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1790) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1791) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1792) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1793) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1794) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1795) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1796) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1797) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1798) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1799) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1800) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1801) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1802) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1803) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1804) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1805) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1806) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1807) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1808) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1809) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1810) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1811) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1812) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1813) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1814) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1815) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1816) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1817) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1818) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1819) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1820) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1821) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1822) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1823) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1824) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1825) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1826) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1827) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1828) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1829) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1830) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1831) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1832) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1833) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1834) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1835) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1836) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1837) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1838) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1839) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1840) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1841) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1842) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1843) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1844) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1845) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1846) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1847) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1848) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1849) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1850) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1851) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1852) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1853) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1854) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1855) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1856) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1857) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1858) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1859) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1860) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1861) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1862) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1863) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1864) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1865) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1866) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1867) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1868) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1869) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1870) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1871) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1872) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1873) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1874) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1875) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1876) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1877) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1878) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1879) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1880) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1881) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1882) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1883) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1884) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1885) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1886) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1887) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1888) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1889) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1890) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1891) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1892) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1893) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1894) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1895) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1896) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1897) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1898) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1899) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1900) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1901) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1902) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1903) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1904) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1905) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1906) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1907) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1908) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1909) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1910) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1911) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1912) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1913) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1914) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1915) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1916) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1917) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1918) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1919) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1920) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1921) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1922) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1923) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1924) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1925) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1926) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1927) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1928) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1929) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1930) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1931) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1932) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1933) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1934) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1935) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1936) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1937) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1938) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1939) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1940) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1941) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1942) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1943) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1944) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1945) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1946) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1947) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1948) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1949) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1950) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1951) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1952) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1953) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1954) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1955) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1956) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1957) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1958) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1959) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1960) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1961) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1962) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1963) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1964) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1965) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1966) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1967) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1968) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1969) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1970) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1971) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1972) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1973) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1974) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1975) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1976) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1977) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1978) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1979) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1980) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1981) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1982) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1983) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1984) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1985) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1986) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1987) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1988) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1989) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1990) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1991) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1992) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1993) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1994) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1995) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1996) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1997) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1998) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1999) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 2000) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 2001) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 2002) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 2003) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 2004) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 2005) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 2006) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 2007) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 2008) | NFT_NG_RANDOM = 0x1
type RTCTime (line 2011) | type RTCTime struct
type RTCWkAlrm (line 2023) | type RTCWkAlrm struct
type RTCPLLInfo (line 2029) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2039) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2046) | type BlkpgPartition struct
constant BLKPG (line 2056) | BLKPG = 0x1269
constant BLKPG_ADD_PARTITION (line 2057) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2058) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2059) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2063) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2064) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2065) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2066) | NETNSA_FD = 0x3
type XDPRingOffset (line 2069) | type XDPRingOffset struct
type XDPMmapOffsets (line 2075) | type XDPMmapOffsets struct
type XDPUmemReg (line 2082) | type XDPUmemReg struct
type XDPStatistics (line 2089) | type XDPStatistics struct
type XDPDesc (line 2095) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2102) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2103) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2104) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2105) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2106) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2107) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2108) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2109) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2110) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2111) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2112) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2113) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2114) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2115) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2116) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2117) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2118) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2119) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2120) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2121) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2122) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2123) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2124) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2125) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2126) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2129) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2134) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2135) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2136) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2137) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2138) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2139) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2140) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2141) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2142) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2143) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2144) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2145) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2146) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2147) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2148) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2150) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2151) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2153) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2154) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2155) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2158) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2168) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2178) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2184) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2185) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2186) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2187) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2188) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2189) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2190) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2194) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2195) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2196) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2197) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2198) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2199) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2200) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2201) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2202) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2203) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2204) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2205) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2206) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2207) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2208) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2209) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2210) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2211) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2212) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2213) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2214) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2215) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2218) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2228) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2237) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2248) | type CryptoStatCipher struct
type CryptoStatCompress (line 2257) | type CryptoStatCompress struct
type CryptoStatHash (line 2266) | type CryptoStatHash struct
type CryptoStatKPP (line 2273) | type CryptoStatKPP struct
type CryptoStatRNG (line 2281) | type CryptoStatRNG struct
type CryptoStatLarval (line 2289) | type CryptoStatLarval struct
type CryptoReportLarval (line 2293) | type CryptoReportLarval struct
type CryptoReportHash (line 2297) | type CryptoReportHash struct
type CryptoReportCipher (line 2303) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2310) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2319) | type CryptoReportAEAD struct
type CryptoReportComp (line 2327) | type CryptoReportComp struct
type CryptoReportRNG (line 2331) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2336) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2340) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2344) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2349) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2350) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2351) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2352) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2353) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2354) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2355) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2356) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2357) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2358) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2359) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2360) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2361) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2362) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2363) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2364) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2365) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2366) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2367) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2368) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2369) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2370) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2371) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2372) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2373) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2374) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2375) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2376) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2377) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2378) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2379) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2380) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2381) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2382) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2383) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2384) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2385) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2386) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2387) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2388) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2389) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2390) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2391) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2392) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2393) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2394) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2395) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2396) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2397) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2398) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2399) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2400) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2401) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2402) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2403) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2404) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2405) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2406) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2407) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2408) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2409) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2410) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2411) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2412) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2413) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2414) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2415) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2416) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2417) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2418) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2419) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2420) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2421) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2422) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2423) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2424) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2425) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2426) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2427) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2428) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2429) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2430) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2431) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2432) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2433) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2434) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2435) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2436) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2437) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2438) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2439) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2440) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2441) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2442) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2443) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2444) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2445) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2446) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2447) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2448) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2449) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2450) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2451) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2452) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2453) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2454) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2455) | BPF_OK = 0x0
constant BPF_DROP (line 2456) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2457) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2458) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2459) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2460) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2461) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2462) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2463) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2464) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2465) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2466) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2467) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2468) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2469) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2470) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2471) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2472) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2473) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2474) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2475) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2476) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2477) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2478) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2479) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2480) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2481) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2482) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2483) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2484) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2485) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2486) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2487) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2488) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2489) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2490) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2491) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2492) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2493) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2494) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2495) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2496) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2497) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2500) | type CapUserHeader struct
type CapUserData (line 2505) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2512) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2513) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2514) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2518) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2519) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2520) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2521) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2524) | type LoopInfo struct
type LoopInfo64 (line 2539) | type LoopInfo64 struct
type TIPCSocketAddr (line 2555) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2560) | type TIPCServiceRange struct
type TIPCServiceName (line 2566) | type TIPCServiceName struct
type TIPCSubscr (line 2572) | type TIPCSubscr struct
type TIPCEvent (line 2579) | type TIPCEvent struct
type TIPCGroupReq (line 2587) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2594) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2600) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2606) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2607) | TIPC_NODE_SCOPE = 0x3
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 StatxTimestamp (line 119) | type StatxTimestamp struct
type Statx_t (line 125) | type Statx_t struct
type Dirent (line 149) | type Dirent struct
type Fsid (line 158) | type Fsid struct
type Flock_t (line 162) | type Flock_t struct
type FscryptPolicy (line 172) | type FscryptPolicy struct
type FscryptKey (line 180) | type FscryptKey struct
type KeyctlDHParams (line 186) | type KeyctlDHParams struct
constant FADV_NORMAL (line 193) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 194) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 195) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 196) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 197) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 198) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 201) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 208) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 216) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 221) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 231) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 238) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 244) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 253) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 260) | type RawSockaddrCAN struct
type RawSockaddrALG (line 266) | type RawSockaddrALG struct
type RawSockaddrVM (line 274) | type RawSockaddrVM struct
type RawSockaddrXDP (line 282) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 290) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 292) | type RawSockaddrTIPC struct
type RawSockaddr (line 299) | type RawSockaddr struct
type RawSockaddrAny (line 304) | type RawSockaddrAny struct
type _Socklen (line 309) | type _Socklen
type Linger (line 311) | type Linger struct
type Iovec (line 316) | type Iovec struct
type IPMreq (line 321) | type IPMreq struct
type IPMreqn (line 326) | type IPMreqn struct
type IPv6Mreq (line 332) | type IPv6Mreq struct
type PacketMreq (line 337) | type PacketMreq struct
type Msghdr (line 344) | type Msghdr struct
type Cmsghdr (line 354) | type Cmsghdr struct
type Inet4Pktinfo (line 360) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 366) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 371) | type IPv6MTUInfo struct
type ICMPv6Filter (line 376) | type ICMPv6Filter struct
type Ucred (line 380) | type Ucred struct
type TCPInfo (line 386) | type TCPInfo struct
type CanFilter (line 419) | type CanFilter struct
constant SizeofSockaddrInet4 (line 425) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 426) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 427) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 428) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 429) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 430) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 431) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 432) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 433) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 434) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 435) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 436) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 437) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 438) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 439) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 440) | SizeofLinger = 0x8
constant SizeofIovec (line 441) | SizeofIovec = 0x8
constant SizeofIPMreq (line 442) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 443) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 444) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 445) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 446) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 447) | SizeofCmsghdr = 0xc
constant SizeofInet4Pktinfo (line 448) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 449) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 450) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 451) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 452) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 453) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 454) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 458) | NDA_UNSPEC = 0x0
constant NDA_DST (line 459) | NDA_DST = 0x1
constant NDA_LLADDR (line 460) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 461) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 462) | NDA_PROBES = 0x4
constant NDA_VLAN (line 463) | NDA_VLAN = 0x5
constant NDA_PORT (line 464) | NDA_PORT = 0x6
constant NDA_VNI (line 465) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 466) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 467) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 468) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 469) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 470) | NTF_USE = 0x1
constant NTF_SELF (line 471) | NTF_SELF = 0x2
constant NTF_MASTER (line 472) | NTF_MASTER = 0x4
constant NTF_PROXY (line 473) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 474) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 475) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 476) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 477) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 478) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 479) | NUD_STALE = 0x4
constant NUD_DELAY (line 480) | NUD_DELAY = 0x8
constant NUD_PROBE (line 481) | NUD_PROBE = 0x10
constant NUD_FAILED (line 482) | NUD_FAILED = 0x20
constant NUD_NOARP (line 483) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 484) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 485) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 486) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 487) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 488) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 489) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 490) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 491) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 492) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 493) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 494) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 495) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 496) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 497) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 498) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 499) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 500) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 501) | IFLA_MTU = 0x4
constant IFLA_LINK (line 502) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 503) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 504) | IFLA_STATS = 0x7
constant IFLA_COST (line 505) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 506) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 507) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 508) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 509) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 510) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 511) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 512) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 513) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 514) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 515) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 516) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 517) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 518) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 519) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 520) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 521) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 522) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 523) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 524) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 525) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 526) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 527) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 528) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 529) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 530) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 531) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 532) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 533) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 534) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 535) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 536) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 537) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 538) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 539) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 540) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 541) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 542) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 543) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 544) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 545) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 546) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 547) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 548) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 549) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 550) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 551) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 552) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 553) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 554) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 555) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 556) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 557) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 558) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 559) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 560) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 561) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 562) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 563) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 564) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 565) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 566) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 567) | RTA_UNSPEC = 0x0
constant RTA_DST (line 568) | RTA_DST = 0x1
constant RTA_SRC (line 569) | RTA_SRC = 0x2
constant RTA_IIF (line 570) | RTA_IIF = 0x3
constant RTA_OIF (line 571) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 572) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 573) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 574) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 575) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 576) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 577) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 578) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 579) | RTA_TABLE = 0xf
constant RTA_MARK (line 580) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 581) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 582) | RTA_VIA = 0x12
constant RTA_NEWDST (line 583) | RTA_NEWDST = 0x13
constant RTA_PREF (line 584) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 585) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 586) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 587) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 588) | RTA_PAD = 0x18
constant RTA_UID (line 589) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 590) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 591) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 592) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 593) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 594) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 595) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 596) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 597) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 598) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 599) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 600) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 601) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 602) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 603) | RTN_THROW = 0x9
constant RTN_NAT (line 604) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 605) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 606) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 607) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 608) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 609) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 610) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 611) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 612) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 613) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 614) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 615) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 616) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 617) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 618) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 619) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 620) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 621) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 622) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 623) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 624) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 625) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 626) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 627) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 628) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 629) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 630) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 631) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 632) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 633) | SizeofNdMsg = 0xc
type NlMsghdr (line 636) | type NlMsghdr struct
type NlMsgerr (line 644) | type NlMsgerr struct
type RtGenmsg (line 649) | type RtGenmsg struct
type NlAttr (line 653) | type NlAttr struct
type RtAttr (line 658) | type RtAttr struct
type IfInfomsg (line 663) | type IfInfomsg struct
type IfAddrmsg (line 672) | type IfAddrmsg struct
type IfaCacheinfo (line 680) | type IfaCacheinfo struct
type RtMsg (line 687) | type RtMsg struct
type RtNexthop (line 699) | type RtNexthop struct
type NdUseroptmsg (line 706) | type NdUseroptmsg struct
type NdMsg (line 717) | type NdMsg struct
constant SizeofSockFilter (line 728) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 729) | SizeofSockFprog = 0x8
type SockFilter (line 732) | type SockFilter struct
type SockFprog (line 739) | type SockFprog struct
type InotifyEvent (line 744) | type InotifyEvent struct
constant SizeofInotifyEvent (line 751) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 753) | type PtraceRegs struct
type FdSet (line 757) | type FdSet struct
type Sysinfo_t (line 761) | type Sysinfo_t struct
type Utsname (line 778) | type Utsname struct
type Ustat_t (line 787) | type Ustat_t struct
type EpollEvent (line 794) | type EpollEvent struct
constant AT_EMPTY_PATH (line 802) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 803) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 804) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 805) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 807) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 808) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 809) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 811) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 812) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 814) | AT_EACCESS = 0x200
type PollFd (line 817) | type PollFd struct
constant POLLIN (line 824) | POLLIN = 0x1
constant POLLPRI (line 825) | POLLPRI = 0x2
constant POLLOUT (line 826) | POLLOUT = 0x4
constant POLLRDHUP (line 827) | POLLRDHUP = 0x2000
constant POLLERR (line 828) | POLLERR = 0x8
constant POLLHUP (line 829) | POLLHUP = 0x10
constant POLLNVAL (line 830) | POLLNVAL = 0x20
type Sigset_t (line 833) | type Sigset_t struct
constant _C__NSIG (line 837) | _C__NSIG = 0x41
type SignalfdSiginfo (line 839) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 864) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 866) | type Termios struct
type Winsize (line 877) | type Winsize struct
type Taskstats (line 884) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 936) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 937) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 938) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 939) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 940) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 941) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 942) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 943) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 944) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 945) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 946) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 947) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 948) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 949) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 950) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 953) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 962) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 963) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 964) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 965) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 966) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 967) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 968) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 971) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 978) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 979) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 980) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 981) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 982) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 983) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 984) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 985) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 986) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 987) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 988) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 989) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 990) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 991) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 992) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 993) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 994) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 995) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 996) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 997) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 998) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 999) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1000) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1001) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1004) | type cpuMask
constant _CPU_SETSIZE (line 1007) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1008) | _NCPUBITS = 0x20
constant BDADDR_BREDR (line 1012) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1013) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1014) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1017) | type PerfEventAttr struct
type PerfEventMmapPage (line 1039) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1066) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1067) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1068) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1069) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1070) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1071) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1072) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1073) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1074) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1075) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1076) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1077) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1078) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1079) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1080) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1081) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1082) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1083) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1084) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1085) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1086) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1087) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1088) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1089) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1090) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1091) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1092) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1096) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1097) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1098) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1099) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1100) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1101) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1103) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1104) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1105) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1106) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1107) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1108) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1109) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1110) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1111) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1112) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1114) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1115) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1116) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1117) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1118) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1119) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1120) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1122) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1123) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1124) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1126) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1127) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1129) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1130) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1131) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1132) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1133) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1134) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1135) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1136) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1137) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1138) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1139) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1141) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1142) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1143) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1144) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1145) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1146) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1147) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1148) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1149) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1150) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1151) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1152) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1154) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1155) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1156) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1157) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1158) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1159) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1160) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1161) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1162) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1163) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1164) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1165) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1166) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1167) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1168) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1169) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1170) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1172) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1173) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1174) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1175) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1177) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1178) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1179) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1180) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1181) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1182) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1183) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1184) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1185) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1186) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1187) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1188) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1189) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1190) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1191) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1192) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1194) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1195) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1196) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1198) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1199) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1200) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1202) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1203) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1204) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1205) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1209) | CBitFieldMaskBit0 = 0x1
constant CBitFieldMaskBit1 (line 1210) | CBitFieldMaskBit1 = 0x2
constant CBitFieldMaskBit2 (line 1211) | CBitFieldMaskBit2 = 0x4
constant CBitFieldMaskBit3 (line 1212) | CBitFieldMaskBit3 = 0x8
constant CBitFieldMaskBit4 (line 1213) | CBitFieldMaskBit4 = 0x10
constant CBitFieldMaskBit5 (line 1214) | CBitFieldMaskBit5 = 0x20
constant CBitFieldMaskBit6 (line 1215) | CBitFieldMaskBit6 = 0x40
constant CBitFieldMaskBit7 (line 1216) | CBitFieldMaskBit7 = 0x80
constant CBitFieldMaskBit8 (line 1217) | CBitFieldMaskBit8 = 0x100
constant CBitFieldMaskBit9 (line 1218) | CBitFieldMaskBit9 = 0x200
constant CBitFieldMaskBit10 (line 1219) | CBitFieldMaskBit10 = 0x400
constant CBitFieldMaskBit11 (line 1220) | CBitFieldMaskBit11 = 0x800
constant CBitFieldMaskBit12 (line 1221) | CBitFieldMaskBit12 = 0x1000
constant CBitFieldMaskBit13 (line 1222) | CBitFieldMaskBit13 = 0x2000
constant CBitFieldMaskBit14 (line 1223) | CBitFieldMaskBit14 = 0x4000
constant CBitFieldMaskBit15 (line 1224) | CBitFieldMaskBit15 = 0x8000
constant CBitFieldMaskBit16 (line 1225) | CBitFieldMaskBit16 = 0x10000
constant CBitFieldMaskBit17 (line 1226) | CBitFieldMaskBit17 = 0x20000
constant CBitFieldMaskBit18 (line 1227) | CBitFieldMaskBit18 = 0x40000
constant CBitFieldMaskBit19 (line 1228) | CBitFieldMaskBit19 = 0x80000
constant CBitFieldMaskBit20 (line 1229) | CBitFieldMaskBit20 = 0x100000
constant CBitFieldMaskBit21 (line 1230) | CBitFieldMaskBit21 = 0x200000
constant CBitFieldMaskBit22 (line 1231) | CBitFieldMaskBit22 = 0x400000
constant CBitFieldMaskBit23 (line 1232) | CBitFieldMaskBit23 = 0x800000
constant CBitFieldMaskBit24 (line 1233) | CBitFieldMaskBit24 = 0x1000000
constant CBitFieldMaskBit25 (line 1234) | CBitFieldMaskBit25 = 0x2000000
constant CBitFieldMaskBit26 (line 1235) | CBitFieldMaskBit26 = 0x4000000
constant CBitFieldMaskBit27 (line 1236) | CBitFieldMaskBit27 = 0x8000000
constant CBitFieldMaskBit28 (line 1237) | CBitFieldMaskBit28 = 0x10000000
constant CBitFieldMaskBit29 (line 1238) | CBitFieldMaskBit29 = 0x20000000
constant CBitFieldMaskBit30 (line 1239) | CBitFieldMaskBit30 = 0x40000000
constant CBitFieldMaskBit31 (line 1240) | CBitFieldMaskBit31 = 0x80000000
constant CBitFieldMaskBit32 (line 1241) | CBitFieldMaskBit32 = 0x100000000
constant CBitFieldMaskBit33 (line 1242) | CBitFieldMaskBit33 = 0x200000000
constant CBitFieldMaskBit34 (line 1243) | CBitFieldMaskBit34 = 0x400000000
constant CBitFieldMaskBit35 (line 1244) | CBitFieldMaskBit35 = 0x800000000
constant CBitFieldMaskBit36 (line 1245) | CBitFieldMaskBit36 = 0x1000000000
constant CBitFieldMaskBit37 (line 1246) | CBitFieldMaskBit37 = 0x2000000000
constant CBitFieldMaskBit38 (line 1247) | CBitFieldMaskBit38 = 0x4000000000
constant CBitFieldMaskBit39 (line 1248) | CBitFieldMaskBit39 = 0x8000000000
constant CBitFieldMaskBit40 (line 1249) | CBitFieldMaskBit40 = 0x10000000000
constant CBitFieldMaskBit41 (line 1250) | CBitFieldMaskBit41 = 0x20000000000
constant CBitFieldMaskBit42 (line 1251) | CBitFieldMaskBit42 = 0x40000000000
constant CBitFieldMaskBit43 (line 1252) | CBitFieldMaskBit43 = 0x80000000000
constant CBitFieldMaskBit44 (line 1253) | CBitFieldMaskBit44 = 0x100000000000
constant CBitFieldMaskBit45 (line 1254) | CBitFieldMaskBit45 = 0x200000000000
constant CBitFieldMaskBit46 (line 1255) | CBitFieldMaskBit46 = 0x400000000000
constant CBitFieldMaskBit47 (line 1256) | CBitFieldMaskBit47 = 0x800000000000
constant CBitFieldMaskBit48 (line 1257) | CBitFieldMaskBit48 = 0x1000000000000
constant CBitFieldMaskBit49 (line 1258) | CBitFieldMaskBit49 = 0x2000000000000
constant CBitFieldMaskBit50 (line 1259) | CBitFieldMaskBit50 = 0x4000000000000
constant CBitFieldMaskBit51 (line 1260) | CBitFieldMaskBit51 = 0x8000000000000
constant CBitFieldMaskBit52 (line 1261) | CBitFieldMaskBit52 = 0x10000000000000
constant CBitFieldMaskBit53 (line 1262) | CBitFieldMaskBit53 = 0x20000000000000
constant CBitFieldMaskBit54 (line 1263) | CBitFieldMaskBit54 = 0x40000000000000
constant CBitFieldMaskBit55 (line 1264) | CBitFieldMaskBit55 = 0x80000000000000
constant CBitFieldMaskBit56 (line 1265) | CBitFieldMaskBit56 = 0x100000000000000
constant CBitFieldMaskBit57 (line 1266) | CBitFieldMaskBit57 = 0x200000000000000
constant CBitFieldMaskBit58 (line 1267) | CBitFieldMaskBit58 = 0x400000000000000
constant CBitFieldMaskBit59 (line 1268) | CBitFieldMaskBit59 = 0x800000000000000
constant CBitFieldMaskBit60 (line 1269) | CBitFieldMaskBit60 = 0x1000000000000000
constant CBitFieldMaskBit61 (line 1270) | CBitFieldMaskBit61 = 0x2000000000000000
constant CBitFieldMaskBit62 (line 1271) | CBitFieldMaskBit62 = 0x4000000000000000
constant CBitFieldMaskBit63 (line 1272) | CBitFieldMaskBit63 = 0x8000000000000000
type SockaddrStorage (line 1275) | type SockaddrStorage struct
type TCPMD5Sig (line 1281) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1290) | type HDDriveCmdHdr struct
type HDGeometry (line 1297) | type HDGeometry struct
type HDDriveID (line 1304) | type HDDriveID struct
type Statfs_t (line 1386) | type Statfs_t struct
constant ST_MANDLOCK (line 1403) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1404) | ST_NOATIME = 0x400
constant ST_NODEV (line 1405) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1406) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1407) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1408) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1409) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1410) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1411) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1414) | type TpacketHdr struct
type Tpacket2Hdr (line 1424) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1437) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1450) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1457) | type TpacketBlockDesc struct
type TpacketBDTS (line 1463) | type TpacketBDTS struct
type TpacketHdrV1 (line 1468) | type TpacketHdrV1 struct
type TpacketReq (line 1478) | type TpacketReq struct
type TpacketReq3 (line 1485) | type TpacketReq3 struct
type TpacketStats (line 1495) | type TpacketStats struct
type TpacketStatsV3 (line 1500) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1506) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1517) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1518) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1519) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1523) | SizeofTpacketHdr = 0x18
constant SizeofTpacket2Hdr (line 1524) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1525) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1527) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1528) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1532) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1533) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1534) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1535) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1536) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1537) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1541) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1542) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1546) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1547) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1548) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1549) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1550) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1551) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1552) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1553) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1554) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1557) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1564) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1565) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1569) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1570) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1571) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1572) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1573) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1574) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1575) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1576) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1577) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1578) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1579) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1580) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1581) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1582) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1583) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1584) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1585) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1586) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1587) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1588) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1589) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1590) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1591) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1592) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1593) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1594) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1595) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1596) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1597) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1598) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1599) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1600) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1601) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1602) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1603) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1604) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1605) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1606) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1607) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1608) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1609) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1610) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1611) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1612) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1613) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1614) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1615) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1616) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1617) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1618) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1619) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1620) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1621) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1622) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1623) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1624) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1625) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1626) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1627) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1628) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1629) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1630) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1631) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1632) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1633) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1634) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1635) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1636) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1637) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1638) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1639) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1640) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1641) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1642) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1643) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1644) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1645) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1646) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1647) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1648) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1649) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1650) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1651) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1652) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1653) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1654) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1655) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1656) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1657) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1658) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1659) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1660) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1661) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1662) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1663) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1664) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1665) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1666) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1667) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1668) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1669) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1670) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1671) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1672) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1673) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1674) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1675) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1676) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1677) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1678) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1679) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1680) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1681) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1682) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1683) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1684) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1685) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1686) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1687) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1688) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1689) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1690) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1691) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1692) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1693) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1694) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1695) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1696) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1697) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1698) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1699) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1700) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1701) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1702) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1703) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1704) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1705) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1706) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1707) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1708) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1709) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1710) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1711) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1712) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1713) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1714) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1715) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1716) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1717) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1718) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1719) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1720) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1721) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1722) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1723) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1724) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1725) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1726) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1727) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1728) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1729) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1730) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1731) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1732) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1733) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1734) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1735) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1736) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1737) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1738) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1739) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1740) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1741) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1742) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1743) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1744) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1745) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1746) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1747) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1748) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1749) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1750) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1751) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1752) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1753) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1754) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1755) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1756) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1757) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1758) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1759) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1760) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1761) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1762) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1763) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1764) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1765) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1766) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1767) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1768) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1769) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1770) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1771) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1772) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1773) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1774) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1775) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1776) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1777) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1778) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1779) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1780) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1781) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1782) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1783) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1784) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1785) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1786) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1787) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1788) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1789) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1790) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1791) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1792) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1793) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1794) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1795) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1796) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1797) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1798) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1799) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1800) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1801) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1802) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1803) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1804) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1805) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1806) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1807) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1808) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1809) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1810) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1811) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1812) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1813) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1814) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1815) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1816) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1817) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1818) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1819) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1820) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1821) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1822) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1823) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1824) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1825) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1826) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1827) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1828) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1829) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1830) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1831) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1832) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1833) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1834) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1835) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1836) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1837) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1838) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1839) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1840) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1841) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1842) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1843) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1844) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1845) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1846) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1847) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1848) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1849) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1850) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1851) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1852) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1853) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1854) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1855) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1856) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1857) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1858) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1859) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1860) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1861) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1862) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1863) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1864) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1865) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1866) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1867) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1868) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1869) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1870) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1871) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1872) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1873) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1874) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1875) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1876) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1877) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1878) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1879) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1880) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1881) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1882) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1883) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1884) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1885) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1886) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1887) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1888) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1889) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1890) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1891) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1892) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1893) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1894) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1895) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1896) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1897) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1898) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1899) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1900) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1901) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1902) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1903) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1904) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1905) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1906) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1907) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1908) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1909) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1910) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1911) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1912) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1913) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1914) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1915) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1916) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1917) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1918) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1919) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1920) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1921) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1922) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1923) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1924) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1925) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1926) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1927) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1928) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1929) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1930) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1931) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1932) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1933) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1934) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1935) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1936) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1937) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1938) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1939) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1940) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1941) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1942) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1943) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1944) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1945) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1946) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1947) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1948) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1949) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1950) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1951) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1952) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1953) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1954) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1955) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1956) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1957) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1958) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1959) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1960) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1961) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1962) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1963) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1964) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1965) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1966) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1967) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1968) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1969) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1970) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1971) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1972) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1973) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1974) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1975) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1976) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1977) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1978) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1979) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1980) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1981) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1982) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1983) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1984) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1985) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1986) | NFT_NG_RANDOM = 0x1
type RTCTime (line 1989) | type RTCTime struct
type RTCWkAlrm (line 2001) | type RTCWkAlrm struct
type RTCPLLInfo (line 2007) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2017) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2024) | type BlkpgPartition struct
constant BLKPG (line 2034) | BLKPG = 0x1269
constant BLKPG_ADD_PARTITION (line 2035) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2036) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2037) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2041) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2042) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2043) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2044) | NETNSA_FD = 0x3
type XDPRingOffset (line 2047) | type XDPRingOffset struct
type XDPMmapOffsets (line 2053) | type XDPMmapOffsets struct
type XDPUmemReg (line 2060) | type XDPUmemReg struct
type XDPStatistics (line 2067) | type XDPStatistics struct
type XDPDesc (line 2073) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2080) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2081) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2082) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2083) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2084) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2085) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2086) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2087) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2088) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2089) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2090) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2091) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2092) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2093) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2094) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2095) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2096) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2097) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2098) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2099) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2100) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2101) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2102) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2103) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2104) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2107) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2112) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2113) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2114) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2115) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2116) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2117) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2118) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2119) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2120) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2121) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2122) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2123) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2124) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2125) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2126) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2128) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2129) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2131) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2132) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2133) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2136) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2146) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2156) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2162) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2163) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2164) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2165) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2166) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2167) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2168) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2172) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2173) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2174) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2175) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2176) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2177) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2178) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2179) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2180) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2181) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2182) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2183) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2184) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2185) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2186) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2187) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2188) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2189) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2190) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2191) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2192) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2193) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2196) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2206) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2215) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2226) | type CryptoStatCipher struct
type CryptoStatCompress (line 2235) | type CryptoStatCompress struct
type CryptoStatHash (line 2244) | type CryptoStatHash struct
type CryptoStatKPP (line 2251) | type CryptoStatKPP struct
type CryptoStatRNG (line 2259) | type CryptoStatRNG struct
type CryptoStatLarval (line 2267) | type CryptoStatLarval struct
type CryptoReportLarval (line 2271) | type CryptoReportLarval struct
type CryptoReportHash (line 2275) | type CryptoReportHash struct
type CryptoReportCipher (line 2281) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2288) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2297) | type CryptoReportAEAD struct
type CryptoReportComp (line 2305) | type CryptoReportComp struct
type CryptoReportRNG (line 2309) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2314) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2318) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2322) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2327) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2328) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2329) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2330) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2331) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2332) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2333) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2334) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2335) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2336) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2337) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2338) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2339) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2340) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2341) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2342) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2343) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2344) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2345) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2346) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2347) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2348) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2349) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2350) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2351) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2352) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2353) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2354) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2355) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2356) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2357) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2358) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2359) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2360) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2361) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2362) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2363) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2364) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2365) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2366) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2367) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2368) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2369) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2370) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2371) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2372) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2373) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2374) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2375) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2376) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2377) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2378) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2379) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2380) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2381) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2382) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2383) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2384) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2385) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2386) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2387) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2388) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2389) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2390) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2391) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2392) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2393) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2394) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2395) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2396) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2397) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2398) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2399) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2400) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2401) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2402) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2403) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2404) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2405) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2406) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2407) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2408) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2409) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2410) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2411) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2412) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2413) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2414) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2415) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2416) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2417) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2418) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2419) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2420) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2421) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2422) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2423) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2424) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2425) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2426) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2427) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2428) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2429) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2430) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2431) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2432) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2433) | BPF_OK = 0x0
constant BPF_DROP (line 2434) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2435) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2436) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2437) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2438) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2439) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2440) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2441) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2442) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2443) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2444) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2445) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2446) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2447) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2448) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2449) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2450) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2451) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2452) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2453) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2454) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2455) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2456) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2457) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2458) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2459) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2460) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2461) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2462) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2463) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2464) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2465) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2466) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2467) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2468) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2469) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2470) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2471) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2472) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2473) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2474) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2475) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2478) | type CapUserHeader struct
type CapUserData (line 2483) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2490) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2491) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2492) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2496) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2497) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2498) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2499) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2502) | type LoopInfo struct
type LoopInfo64 (line 2516) | type LoopInfo64 struct
type TIPCSocketAddr (line 2532) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2537) | type TIPCServiceRange struct
type TIPCServiceName (line 2543) | type TIPCServiceName struct
type TIPCSubscr (line 2549) | type TIPCSubscr struct
type TIPCEvent (line 2556) | type TIPCEvent struct
type TIPCGroupReq (line 2564) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2571) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2577) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2583) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2584) | TIPC_NODE_SCOPE = 0x3
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 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 StatxTimestamp (line 117) | type StatxTimestamp struct
type Statx_t (line 123) | type Statx_t struct
type Dirent (line 147) | type Dirent struct
type Fsid (line 156) | type Fsid struct
type Flock_t (line 160) | type Flock_t struct
type FscryptPolicy (line 169) | type FscryptPolicy struct
type FscryptKey (line 177) | type FscryptKey struct
type KeyctlDHParams (line 183) | type KeyctlDHParams struct
constant FADV_NORMAL (line 190) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 191) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 192) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 193) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 194) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 195) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 198) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 205) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 213) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 218) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 228) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 235) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 241) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 250) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 257) | type RawSockaddrCAN struct
type RawSockaddrALG (line 263) | type RawSockaddrALG struct
type RawSockaddrVM (line 271) | type RawSockaddrVM struct
type RawSockaddrXDP (line 279) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 287) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 289) | type RawSockaddrTIPC struct
type RawSockaddr (line 296) | type RawSockaddr struct
type RawSockaddrAny (line 301) | type RawSockaddrAny struct
type _Socklen (line 306) | type _Socklen
type Linger (line 308) | type Linger struct
type Iovec (line 313) | type Iovec struct
type IPMreq (line 318) | type IPMreq struct
type IPMreqn (line 323) | type IPMreqn struct
type IPv6Mreq (line 329) | type IPv6Mreq struct
type PacketMreq (line 334) | type PacketMreq struct
type Msghdr (line 341) | type Msghdr struct
type Cmsghdr (line 352) | type Cmsghdr struct
type Inet4Pktinfo (line 358) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 364) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 369) | type IPv6MTUInfo struct
type ICMPv6Filter (line 374) | type ICMPv6Filter struct
type Ucred (line 378) | type Ucred struct
type TCPInfo (line 384) | type TCPInfo struct
type CanFilter (line 417) | type CanFilter struct
constant SizeofSockaddrInet4 (line 423) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 424) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 425) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 426) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 427) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 428) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 429) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 430) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 431) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 432) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 433) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 434) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 435) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 436) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 437) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 438) | SizeofLinger = 0x8
constant SizeofIovec (line 439) | SizeofIovec = 0x10
constant SizeofIPMreq (line 440) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 441) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 442) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 443) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 444) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 445) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 446) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 447) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 448) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 449) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 450) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 451) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 452) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 456) | NDA_UNSPEC = 0x0
constant NDA_DST (line 457) | NDA_DST = 0x1
constant NDA_LLADDR (line 458) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 459) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 460) | NDA_PROBES = 0x4
constant NDA_VLAN (line 461) | NDA_VLAN = 0x5
constant NDA_PORT (line 462) | NDA_PORT = 0x6
constant NDA_VNI (line 463) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 464) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 465) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 466) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 467) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 468) | NTF_USE = 0x1
constant NTF_SELF (line 469) | NTF_SELF = 0x2
constant NTF_MASTER (line 470) | NTF_MASTER = 0x4
constant NTF_PROXY (line 471) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 472) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 473) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 474) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 475) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 476) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 477) | NUD_STALE = 0x4
constant NUD_DELAY (line 478) | NUD_DELAY = 0x8
constant NUD_PROBE (line 479) | NUD_PROBE = 0x10
constant NUD_FAILED (line 480) | NUD_FAILED = 0x20
constant NUD_NOARP (line 481) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 482) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 483) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 484) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 485) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 486) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 487) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 488) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 489) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 490) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 491) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 492) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 493) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 494) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 495) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 496) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 497) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 498) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 499) | IFLA_MTU = 0x4
constant IFLA_LINK (line 500) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 501) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 502) | IFLA_STATS = 0x7
constant IFLA_COST (line 503) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 504) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 505) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 506) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 507) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 508) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 509) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 510) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 511) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 512) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 513) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 514) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 515) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 516) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 517) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 518) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 519) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 520) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 521) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 522) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 523) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 524) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 525) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 526) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 527) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 528) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 529) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 530) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 531) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 532) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 533) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 534) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 535) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 536) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 537) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 538) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 539) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 540) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 541) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 542) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 543) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 544) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 545) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 546) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 547) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 548) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 549) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 550) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 551) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 552) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 553) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 554) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 555) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 556) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 557) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 558) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 559) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 560) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 561) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 562) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 563) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 564) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 565) | RTA_UNSPEC = 0x0
constant RTA_DST (line 566) | RTA_DST = 0x1
constant RTA_SRC (line 567) | RTA_SRC = 0x2
constant RTA_IIF (line 568) | RTA_IIF = 0x3
constant RTA_OIF (line 569) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 570) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 571) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 572) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 573) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 574) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 575) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 576) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 577) | RTA_TABLE = 0xf
constant RTA_MARK (line 578) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 579) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 580) | RTA_VIA = 0x12
constant RTA_NEWDST (line 581) | RTA_NEWDST = 0x13
constant RTA_PREF (line 582) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 583) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 584) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 585) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 586) | RTA_PAD = 0x18
constant RTA_UID (line 587) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 588) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 589) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 590) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 591) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 592) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 593) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 594) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 595) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 596) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 597) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 598) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 599) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 600) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 601) | RTN_THROW = 0x9
constant RTN_NAT (line 602) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 603) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 604) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 605) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 606) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 607) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 608) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 609) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 610) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 611) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 612) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 613) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 614) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 615) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 616) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 617) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 618) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 619) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 620) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 621) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 622) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 623) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 624) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 625) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 626) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 627) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 628) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 629) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 630) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 631) | SizeofNdMsg = 0xc
type NlMsghdr (line 634) | type NlMsghdr struct
type NlMsgerr (line 642) | type NlMsgerr struct
type RtGenmsg (line 647) | type RtGenmsg struct
type NlAttr (line 651) | type NlAttr struct
type RtAttr (line 656) | type RtAttr struct
type IfInfomsg (line 661) | type IfInfomsg struct
type IfAddrmsg (line 670) | type IfAddrmsg struct
type IfaCacheinfo (line 678) | type IfaCacheinfo struct
type RtMsg (line 685) | type RtMsg struct
type RtNexthop (line 697) | type RtNexthop struct
type NdUseroptmsg (line 704) | type NdUseroptmsg struct
type NdMsg (line 715) | type NdMsg struct
constant SizeofSockFilter (line 726) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 727) | SizeofSockFprog = 0x10
type SockFilter (line 730) | type SockFilter struct
type SockFprog (line 737) | type SockFprog struct
type InotifyEvent (line 742) | type InotifyEvent struct
constant SizeofInotifyEvent (line 749) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 751) | type PtraceRegs struct
type FdSet (line 758) | type FdSet struct
type Sysinfo_t (line 762) | type Sysinfo_t struct
type Utsname (line 780) | type Utsname struct
type Ustat_t (line 789) | type Ustat_t struct
type EpollEvent (line 797) | type EpollEvent struct
constant AT_EMPTY_PATH (line 805) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 806) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 807) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 808) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 810) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 811) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 812) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 814) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 815) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 817) | AT_EACCESS = 0x200
type PollFd (line 820) | type PollFd struct
constant POLLIN (line 827) | POLLIN = 0x1
constant POLLPRI (line 828) | POLLPRI = 0x2
constant POLLOUT (line 829) | POLLOUT = 0x4
constant POLLRDHUP (line 830) | POLLRDHUP = 0x2000
constant POLLERR (line 831) | POLLERR = 0x8
constant POLLHUP (line 832) | POLLHUP = 0x10
constant POLLNVAL (line 833) | POLLNVAL = 0x20
type Sigset_t (line 836) | type Sigset_t struct
constant _C__NSIG (line 840) | _C__NSIG = 0x41
type SignalfdSiginfo (line 842) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 867) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 869) | type Termios struct
type Winsize (line 880) | type Winsize struct
type Taskstats (line 887) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 937) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 938) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 939) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 940) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 941) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 942) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 943) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 944) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 945) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 946) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 947) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 948) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 949) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 950) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 951) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 954) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 963) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 964) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 965) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 966) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 967) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 968) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 969) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 972) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 979) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 980) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 981) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 982) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 983) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 984) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 985) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 986) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 987) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 988) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 989) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 990) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 991) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 992) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 993) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 994) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 995) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 996) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 997) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 998) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 999) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1000) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1001) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1002) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1005) | type cpuMask
constant _CPU_SETSIZE (line 1008) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1009) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1013) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1014) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1015) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1018) | type PerfEventAttr struct
type PerfEventMmapPage (line 1040) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1067) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1068) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1069) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1070) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1071) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1072) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1073) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1074) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1075) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1076) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1077) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1078) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1079) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1080) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1081) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1082) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1083) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1084) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1085) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1086) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1087) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1088) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1089) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1090) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1091) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1092) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1093) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1097) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1098) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1099) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1100) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1101) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1102) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1104) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1105) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1106) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1107) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1108) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1109) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1110) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1111) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1112) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1113) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1115) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1116) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1117) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1118) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1119) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1120) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1121) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1123) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1124) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1125) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1127) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1128) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1130) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1131) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1132) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1133) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1134) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1135) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1136) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1137) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1138) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1139) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1140) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1142) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1143) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1144) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1145) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1146) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1147) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1148) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1149) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1150) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1151) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1152) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1153) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1155) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1156) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1157) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1158) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1159) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1160) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1161) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1162) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1163) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1164) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1165) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1166) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1167) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1168) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1169) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1170) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1171) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1173) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1174) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1175) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1176) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1178) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1179) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1180) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1181) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1182) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1183) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1184) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1185) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1186) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1187) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1188) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1189) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1190) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1191) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1192) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1193) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1195) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1196) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1197) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1199) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1200) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1201) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1203) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1204) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1205) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1206) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1210) | CBitFieldMaskBit0 = 0x1
constant CBitFieldMaskBit1 (line 1211) | CBitFieldMaskBit1 = 0x2
constant CBitFieldMaskBit2 (line 1212) | CBitFieldMaskBit2 = 0x4
constant CBitFieldMaskBit3 (line 1213) | CBitFieldMaskBit3 = 0x8
constant CBitFieldMaskBit4 (line 1214) | CBitFieldMaskBit4 = 0x10
constant CBitFieldMaskBit5 (line 1215) | CBitFieldMaskBit5 = 0x20
constant CBitFieldMaskBit6 (line 1216) | CBitFieldMaskBit6 = 0x40
constant CBitFieldMaskBit7 (line 1217) | CBitFieldMaskBit7 = 0x80
constant CBitFieldMaskBit8 (line 1218) | CBitFieldMaskBit8 = 0x100
constant CBitFieldMaskBit9 (line 1219) | CBitFieldMaskBit9 = 0x200
constant CBitFieldMaskBit10 (line 1220) | CBitFieldMaskBit10 = 0x400
constant CBitFieldMaskBit11 (line 1221) | CBitFieldMaskBit11 = 0x800
constant CBitFieldMaskBit12 (line 1222) | CBitFieldMaskBit12 = 0x1000
constant CBitFieldMaskBit13 (line 1223) | CBitFieldMaskBit13 = 0x2000
constant CBitFieldMaskBit14 (line 1224) | CBitFieldMaskBit14 = 0x4000
constant CBitFieldMaskBit15 (line 1225) | CBitFieldMaskBit15 = 0x8000
constant CBitFieldMaskBit16 (line 1226) | CBitFieldMaskBit16 = 0x10000
constant CBitFieldMaskBit17 (line 1227) | CBitFieldMaskBit17 = 0x20000
constant CBitFieldMaskBit18 (line 1228) | CBitFieldMaskBit18 = 0x40000
constant CBitFieldMaskBit19 (line 1229) | CBitFieldMaskBit19 = 0x80000
constant CBitFieldMaskBit20 (line 1230) | CBitFieldMaskBit20 = 0x100000
constant CBitFieldMaskBit21 (line 1231) | CBitFieldMaskBit21 = 0x200000
constant CBitFieldMaskBit22 (line 1232) | CBitFieldMaskBit22 = 0x400000
constant CBitFieldMaskBit23 (line 1233) | CBitFieldMaskBit23 = 0x800000
constant CBitFieldMaskBit24 (line 1234) | CBitFieldMaskBit24 = 0x1000000
constant CBitFieldMaskBit25 (line 1235) | CBitFieldMaskBit25 = 0x2000000
constant CBitFieldMaskBit26 (line 1236) | CBitFieldMaskBit26 = 0x4000000
constant CBitFieldMaskBit27 (line 1237) | CBitFieldMaskBit27 = 0x8000000
constant CBitFieldMaskBit28 (line 1238) | CBitFieldMaskBit28 = 0x10000000
constant CBitFieldMaskBit29 (line 1239) | CBitFieldMaskBit29 = 0x20000000
constant CBitFieldMaskBit30 (line 1240) | CBitFieldMaskBit30 = 0x40000000
constant CBitFieldMaskBit31 (line 1241) | CBitFieldMaskBit31 = 0x80000000
constant CBitFieldMaskBit32 (line 1242) | CBitFieldMaskBit32 = 0x100000000
constant CBitFieldMaskBit33 (line 1243) | CBitFieldMaskBit33 = 0x200000000
constant CBitFieldMaskBit34 (line 1244) | CBitFieldMaskBit34 = 0x400000000
constant CBitFieldMaskBit35 (line 1245) | CBitFieldMaskBit35 = 0x800000000
constant CBitFieldMaskBit36 (line 1246) | CBitFieldMaskBit36 = 0x1000000000
constant CBitFieldMaskBit37 (line 1247) | CBitFieldMaskBit37 = 0x2000000000
constant CBitFieldMaskBit38 (line 1248) | CBitFieldMaskBit38 = 0x4000000000
constant CBitFieldMaskBit39 (line 1249) | CBitFieldMaskBit39 = 0x8000000000
constant CBitFieldMaskBit40 (line 1250) | CBitFieldMaskBit40 = 0x10000000000
constant CBitFieldMaskBit41 (line 1251) | CBitFieldMaskBit41 = 0x20000000000
constant CBitFieldMaskBit42 (line 1252) | CBitFieldMaskBit42 = 0x40000000000
constant CBitFieldMaskBit43 (line 1253) | CBitFieldMaskBit43 = 0x80000000000
constant CBitFieldMaskBit44 (line 1254) | CBitFieldMaskBit44 = 0x100000000000
constant CBitFieldMaskBit45 (line 1255) | CBitFieldMaskBit45 = 0x200000000000
constant CBitFieldMaskBit46 (line 1256) | CBitFieldMaskBit46 = 0x400000000000
constant CBitFieldMaskBit47 (line 1257) | CBitFieldMaskBit47 = 0x800000000000
constant CBitFieldMaskBit48 (line 1258) | CBitFieldMaskBit48 = 0x1000000000000
constant CBitFieldMaskBit49 (line 1259) | CBitFieldMaskBit49 = 0x2000000000000
constant CBitFieldMaskBit50 (line 1260) | CBitFieldMaskBit50 = 0x4000000000000
constant CBitFieldMaskBit51 (line 1261) | CBitFieldMaskBit51 = 0x8000000000000
constant CBitFieldMaskBit52 (line 1262) | CBitFieldMaskBit52 = 0x10000000000000
constant CBitFieldMaskBit53 (line 1263) | CBitFieldMaskBit53 = 0x20000000000000
constant CBitFieldMaskBit54 (line 1264) | CBitFieldMaskBit54 = 0x40000000000000
constant CBitFieldMaskBit55 (line 1265) | CBitFieldMaskBit55 = 0x80000000000000
constant CBitFieldMaskBit56 (line 1266) | CBitFieldMaskBit56 = 0x100000000000000
constant CBitFieldMaskBit57 (line 1267) | CBitFieldMaskBit57 = 0x200000000000000
constant CBitFieldMaskBit58 (line 1268) | CBitFieldMaskBit58 = 0x400000000000000
constant CBitFieldMaskBit59 (line 1269) | CBitFieldMaskBit59 = 0x800000000000000
constant CBitFieldMaskBit60 (line 1270) | CBitFieldMaskBit60 = 0x1000000000000000
constant CBitFieldMaskBit61 (line 1271) | CBitFieldMaskBit61 = 0x2000000000000000
constant CBitFieldMaskBit62 (line 1272) | CBitFieldMaskBit62 = 0x4000000000000000
constant CBitFieldMaskBit63 (line 1273) | CBitFieldMaskBit63 = 0x8000000000000000
type SockaddrStorage (line 1276) | type SockaddrStorage struct
type TCPMD5Sig (line 1282) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1291) | type HDDriveCmdHdr struct
type HDGeometry (line 1298) | type HDGeometry struct
type HDDriveID (line 1305) | type HDDriveID struct
type Statfs_t (line 1387) | type Statfs_t struct
constant ST_MANDLOCK (line 1403) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1404) | ST_NOATIME = 0x400
constant ST_NODEV (line 1405) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1406) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1407) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1408) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1409) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1410) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1411) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1414) | type TpacketHdr struct
type Tpacket2Hdr (line 1425) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1438) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1451) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1458) | type TpacketBlockDesc struct
type TpacketBDTS (line 1464) | type TpacketBDTS struct
type TpacketHdrV1 (line 1469) | type TpacketHdrV1 struct
type TpacketReq (line 1479) | type TpacketReq struct
type TpacketReq3 (line 1486) | type TpacketReq3 struct
type TpacketStats (line 1496) | type TpacketStats struct
type TpacketStatsV3 (line 1501) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1507) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1518) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1519) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1520) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1524) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1525) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1526) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1528) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1529) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1533) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1534) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1535) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1536) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1537) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1538) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1542) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1543) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1547) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1548) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1549) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1550) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1551) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1552) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1553) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1554) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1555) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1558) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1565) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1566) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1570) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1571) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1572) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1573) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1574) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1575) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1576) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1577) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1578) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1579) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1580) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1581) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1582) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1583) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1584) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1585) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1586) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1587) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1588) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1589) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1590) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1591) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1592) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1593) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1594) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1595) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1596) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1597) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1598) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1599) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1600) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1601) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1602) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1603) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1604) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1605) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1606) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1607) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1608) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1609) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1610) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1611) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1612) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1613) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1614) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1615) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1616) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1617) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1618) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1619) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1620) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1621) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1622) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1623) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1624) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1625) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1626) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1627) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1628) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1629) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1630) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1631) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1632) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1633) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1634) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1635) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1636) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1637) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1638) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1639) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1640) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1641) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1642) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1643) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1644) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1645) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1646) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1647) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1648) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1649) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1650) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1651) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1652) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1653) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1654) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1655) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1656) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1657) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1658) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1659) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1660) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1661) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1662) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1663) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1664) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1665) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1666) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1667) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1668) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1669) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1670) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1671) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1672) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1673) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1674) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1675) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1676) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1677) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1678) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1679) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1680) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1681) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1682) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1683) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1684) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1685) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1686) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1687) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1688) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1689) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1690) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1691) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1692) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1693) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1694) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1695) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1696) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1697) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1698) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1699) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1700) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1701) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1702) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1703) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1704) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1705) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1706) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1707) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1708) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1709) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1710) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1711) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1712) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1713) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1714) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1715) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1716) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1717) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1718) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1719) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1720) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1721) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1722) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1723) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1724) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1725) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1726) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1727) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1728) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1729) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1730) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1731) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1732) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1733) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1734) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1735) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1736) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1737) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1738) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1739) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1740) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1741) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1742) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1743) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1744) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1745) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1746) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1747) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1748) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1749) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1750) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1751) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1752) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1753) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1754) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1755) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1756) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1757) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1758) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1759) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1760) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1761) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1762) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1763) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1764) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1765) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1766) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1767) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1768) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1769) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1770) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1771) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1772) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1773) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1774) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1775) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1776) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1777) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1778) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1779) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1780) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1781) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1782) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1783) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1784) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1785) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1786) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1787) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1788) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1789) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1790) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1791) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1792) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1793) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1794) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1795) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1796) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1797) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1798) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1799) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1800) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1801) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1802) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1803) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1804) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1805) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1806) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1807) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1808) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1809) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1810) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1811) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1812) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1813) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1814) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1815) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1816) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1817) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1818) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1819) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1820) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1821) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1822) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1823) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1824) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1825) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1826) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1827) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1828) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1829) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1830) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1831) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1832) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1833) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1834) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1835) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1836) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1837) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1838) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1839) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1840) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1841) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1842) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1843) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1844) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1845) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1846) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1847) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1848) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1849) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1850) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1851) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1852) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1853) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1854) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1855) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1856) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1857) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1858) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1859) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1860) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1861) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1862) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1863) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1864) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1865) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1866) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1867) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1868) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1869) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1870) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1871) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1872) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1873) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1874) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1875) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1876) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1877) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1878) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1879) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1880) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1881) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1882) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1883) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1884) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1885) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1886) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1887) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1888) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1889) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1890) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1891) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1892) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1893) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1894) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1895) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1896) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1897) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1898) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1899) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1900) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1901) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1902) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1903) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1904) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1905) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1906) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1907) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1908) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1909) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1910) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1911) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1912) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1913) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1914) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1915) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1916) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1917) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1918) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1919) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1920) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1921) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1922) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1923) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1924) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1925) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1926) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1927) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1928) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1929) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1930) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1931) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1932) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1933) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1934) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1935) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1936) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1937) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1938) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1939) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1940) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1941) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1942) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1943) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1944) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1945) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1946) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1947) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1948) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1949) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1950) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1951) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1952) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1953) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1954) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1955) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1956) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1957) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1958) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1959) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1960) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1961) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1962) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1963) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1964) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1965) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1966) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1967) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1968) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1969) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1970) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1971) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1972) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1973) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1974) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1975) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1976) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1977) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1978) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1979) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1980) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1981) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1982) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1983) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1984) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1985) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1986) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1987) | NFT_NG_RANDOM = 0x1
type RTCTime (line 1990) | type RTCTime struct
type RTCWkAlrm (line 2002) | type RTCWkAlrm struct
type RTCPLLInfo (line 2008) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2018) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2025) | type BlkpgPartition struct
constant BLKPG (line 2035) | BLKPG = 0x1269
constant BLKPG_ADD_PARTITION (line 2036) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2037) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2038) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2042) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2043) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2044) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2045) | NETNSA_FD = 0x3
type XDPRingOffset (line 2048) | type XDPRingOffset struct
type XDPMmapOffsets (line 2054) | type XDPMmapOffsets struct
type XDPUmemReg (line 2061) | type XDPUmemReg struct
type XDPStatistics (line 2068) | type XDPStatistics struct
type XDPDesc (line 2074) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2081) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2082) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2083) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2084) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2085) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2086) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2087) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2088) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2089) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2090) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2091) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2092) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2093) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2094) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2095) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2096) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2097) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2098) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2099) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2100) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2101) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2102) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2103) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2104) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2105) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2108) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2113) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2114) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2115) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2116) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2117) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2118) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2119) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2120) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2121) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2122) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2123) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2124) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2125) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2126) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2127) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2129) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2130) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2132) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2133) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2134) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2137) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2147) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2157) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2163) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2164) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2165) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2166) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2167) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2168) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2169) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2173) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2174) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2175) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2176) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2177) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2178) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2179) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2180) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2181) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2182) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2183) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2184) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2185) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2186) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2187) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2188) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2189) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2190) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2191) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2192) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2193) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2194) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2197) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2207) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2216) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2227) | type CryptoStatCipher struct
type CryptoStatCompress (line 2236) | type CryptoStatCompress struct
type CryptoStatHash (line 2245) | type CryptoStatHash struct
type CryptoStatKPP (line 2252) | type CryptoStatKPP struct
type CryptoStatRNG (line 2260) | type CryptoStatRNG struct
type CryptoStatLarval (line 2268) | type CryptoStatLarval struct
type CryptoReportLarval (line 2272) | type CryptoReportLarval struct
type CryptoReportHash (line 2276) | type CryptoReportHash struct
type CryptoReportCipher (line 2282) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2289) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2298) | type CryptoReportAEAD struct
type CryptoReportComp (line 2306) | type CryptoReportComp struct
type CryptoReportRNG (line 2310) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2315) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2319) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2323) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2328) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2329) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2330) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2331) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2332) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2333) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2334) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2335) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2336) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2337) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2338) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2339) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2340) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2341) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2342) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2343) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2344) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2345) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2346) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2347) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2348) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2349) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2350) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2351) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2352) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2353) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2354) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2355) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2356) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2357) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2358) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2359) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2360) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2361) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2362) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2363) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2364) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2365) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2366) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2367) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2368) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2369) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2370) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2371) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2372) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2373) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2374) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2375) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2376) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2377) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2378) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2379) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2380) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2381) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2382) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2383) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2384) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2385) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2386) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2387) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2388) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2389) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2390) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2391) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2392) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2393) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2394) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2395) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2396) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2397) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2398) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2399) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2400) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2401) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2402) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2403) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2404) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2405) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2406) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2407) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2408) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2409) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2410) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2411) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2412) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2413) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2414) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2415) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2416) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2417) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2418) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2419) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2420) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2421) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2422) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2423) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2424) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2425) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2426) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2427) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2428) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2429) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2430) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2431) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2432) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2433) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2434) | BPF_OK = 0x0
constant BPF_DROP (line 2435) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2436) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2437) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2438) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2439) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2440) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2441) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2442) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2443) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2444) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2445) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2446) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2447) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2448) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2449) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2450) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2451) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2452) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2453) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2454) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2455) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2456) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2457) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2458) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2459) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2460) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2461) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2462) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2463) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2464) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2465) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2466) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2467) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2468) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2469) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2470) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2471) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2472) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2473) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2474) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2475) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2476) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2479) | type CapUserHeader struct
type CapUserData (line 2484) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2491) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2492) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2493) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2497) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2498) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2499) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2500) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2503) | type LoopInfo struct
type LoopInfo64 (line 2518) | type LoopInfo64 struct
type TIPCSocketAddr (line 2534) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2539) | type TIPCServiceRange struct
type TIPCServiceName (line 2545) | type TIPCServiceName struct
type TIPCSubscr (line 2551) | type TIPCSubscr struct
type TIPCEvent (line 2558) | type TIPCEvent struct
type TIPCGroupReq (line 2566) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2573) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2579) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2585) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2586) | TIPC_NODE_SCOPE = 0x3
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 StatxTimestamp (line 118) | type StatxTimestamp struct
type Statx_t (line 124) | type Statx_t struct
type Dirent (line 148) | type Dirent struct
type Fsid (line 157) | type Fsid struct
type Flock_t (line 161) | type Flock_t struct
type FscryptPolicy (line 171) | type FscryptPolicy struct
type FscryptKey (line 179) | type FscryptKey struct
type KeyctlDHParams (line 185) | type KeyctlDHParams struct
constant FADV_NORMAL (line 192) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 193) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 194) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 195) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 196) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 197) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 200) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 207) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 215) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 220) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 230) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 237) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 243) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 252) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 259) | type RawSockaddrCAN struct
type RawSockaddrALG (line 265) | type RawSockaddrALG struct
type RawSockaddrVM (line 273) | type RawSockaddrVM struct
type RawSockaddrXDP (line 281) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 289) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 291) | type RawSockaddrTIPC struct
type RawSockaddr (line 298) | type RawSockaddr struct
type RawSockaddrAny (line 303) | type RawSockaddrAny struct
type _Socklen (line 308) | type _Socklen
type Linger (line 310) | type Linger struct
type Iovec (line 315) | type Iovec struct
type IPMreq (line 320) | type IPMreq struct
type IPMreqn (line 325) | type IPMreqn struct
type IPv6Mreq (line 331) | type IPv6Mreq struct
type PacketMreq (line 336) | type PacketMreq struct
type Msghdr (line 343) | type Msghdr struct
type Cmsghdr (line 353) | type Cmsghdr struct
type Inet4Pktinfo (line 359) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 365) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 370) | type IPv6MTUInfo struct
type ICMPv6Filter (line 375) | type ICMPv6Filter struct
type Ucred (line 379) | type Ucred struct
type TCPInfo (line 385) | type TCPInfo struct
type CanFilter (line 418) | type CanFilter struct
constant SizeofSockaddrInet4 (line 424) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 425) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 426) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 427) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 428) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 429) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 430) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 431) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 432) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 433) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 434) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 435) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 436) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 437) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 438) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 439) | SizeofLinger = 0x8
constant SizeofIovec (line 440) | SizeofIovec = 0x8
constant SizeofIPMreq (line 441) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 442) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 443) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 444) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 445) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 446) | SizeofCmsghdr = 0xc
constant SizeofInet4Pktinfo (line 447) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 448) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 449) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 450) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 451) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 452) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 453) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 457) | NDA_UNSPEC = 0x0
constant NDA_DST (line 458) | NDA_DST = 0x1
constant NDA_LLADDR (line 459) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 460) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 461) | NDA_PROBES = 0x4
constant NDA_VLAN (line 462) | NDA_VLAN = 0x5
constant NDA_PORT (line 463) | NDA_PORT = 0x6
constant NDA_VNI (line 464) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 465) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 466) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 467) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 468) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 469) | NTF_USE = 0x1
constant NTF_SELF (line 470) | NTF_SELF = 0x2
constant NTF_MASTER (line 471) | NTF_MASTER = 0x4
constant NTF_PROXY (line 472) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 473) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 474) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 475) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 476) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 477) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 478) | NUD_STALE = 0x4
constant NUD_DELAY (line 479) | NUD_DELAY = 0x8
constant NUD_PROBE (line 480) | NUD_PROBE = 0x10
constant NUD_FAILED (line 481) | NUD_FAILED = 0x20
constant NUD_NOARP (line 482) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 483) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 484) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 485) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 486) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 487) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 488) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 489) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 490) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 491) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 492) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 493) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 494) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 495) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 496) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 497) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 498) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 499) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 500) | IFLA_MTU = 0x4
constant IFLA_LINK (line 501) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 502) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 503) | IFLA_STATS = 0x7
constant IFLA_COST (line 504) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 505) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 506) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 507) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 508) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 509) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 510) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 511) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 512) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 513) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 514) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 515) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 516) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 517) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 518) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 519) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 520) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 521) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 522) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 523) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 524) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 525) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 526) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 527) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 528) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 529) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 530) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 531) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 532) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 533) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 534) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 535) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 536) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 537) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 538) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 539) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 540) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 541) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 542) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 543) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 544) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 545) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 546) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 547) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 548) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 549) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 550) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 551) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 552) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 553) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 554) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 555) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 556) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 557) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 558) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 559) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 560) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 561) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 562) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 563) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 564) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 565) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 566) | RTA_UNSPEC = 0x0
constant RTA_DST (line 567) | RTA_DST = 0x1
constant RTA_SRC (line 568) | RTA_SRC = 0x2
constant RTA_IIF (line 569) | RTA_IIF = 0x3
constant RTA_OIF (line 570) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 571) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 572) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 573) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 574) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 575) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 576) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 577) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 578) | RTA_TABLE = 0xf
constant RTA_MARK (line 579) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 580) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 581) | RTA_VIA = 0x12
constant RTA_NEWDST (line 582) | RTA_NEWDST = 0x13
constant RTA_PREF (line 583) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 584) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 585) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 586) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 587) | RTA_PAD = 0x18
constant RTA_UID (line 588) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 589) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 590) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 591) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 592) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 593) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 594) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 595) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 596) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 597) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 598) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 599) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 600) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 601) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 602) | RTN_THROW = 0x9
constant RTN_NAT (line 603) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 604) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 605) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 606) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 607) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 608) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 609) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 610) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 611) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 612) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 613) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 614) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 615) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 616) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 617) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 618) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 619) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 620) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 621) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 622) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 623) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 624) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 625) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 626) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 627) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 628) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 629) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 630) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 631) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 632) | SizeofNdMsg = 0xc
type NlMsghdr (line 635) | type NlMsghdr struct
type NlMsgerr (line 643) | type NlMsgerr struct
type RtGenmsg (line 648) | type RtGenmsg struct
type NlAttr (line 652) | type NlAttr struct
type RtAttr (line 657) | type RtAttr struct
type IfInfomsg (line 662) | type IfInfomsg struct
type IfAddrmsg (line 671) | type IfAddrmsg struct
type IfaCacheinfo (line 679) | type IfaCacheinfo struct
type RtMsg (line 686) | type RtMsg struct
type RtNexthop (line 698) | type RtNexthop struct
type NdUseroptmsg (line 705) | type NdUseroptmsg struct
type NdMsg (line 716) | type NdMsg struct
constant SizeofSockFilter (line 727) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 728) | SizeofSockFprog = 0x8
type SockFilter (line 731) | type SockFilter struct
type SockFprog (line 738) | type SockFprog struct
type InotifyEvent (line 743) | type InotifyEvent struct
constant SizeofInotifyEvent (line 750) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 752) | type PtraceRegs struct
type FdSet (line 762) | type FdSet struct
type Sysinfo_t (line 766) | type Sysinfo_t struct
type Utsname (line 783) | type Utsname struct
type Ustat_t (line 792) | type Ustat_t struct
type EpollEvent (line 799) | type EpollEvent struct
constant AT_EMPTY_PATH (line 807) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 808) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 809) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 810) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 812) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 813) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 814) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 816) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 817) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 819) | AT_EACCESS = 0x200
type PollFd (line 822) | type PollFd struct
constant POLLIN (line 829) | POLLIN = 0x1
constant POLLPRI (line 830) | POLLPRI = 0x2
constant POLLOUT (line 831) | POLLOUT = 0x4
constant POLLRDHUP (line 832) | POLLRDHUP = 0x2000
constant POLLERR (line 833) | POLLERR = 0x8
constant POLLHUP (line 834) | POLLHUP = 0x10
constant POLLNVAL (line 835) | POLLNVAL = 0x20
type Sigset_t (line 838) | type Sigset_t struct
constant _C__NSIG (line 842) | _C__NSIG = 0x80
type SignalfdSiginfo (line 844) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 869) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 871) | type Termios struct
type Winsize (line 882) | type Winsize struct
type Taskstats (line 889) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 941) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 942) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 943) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 944) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 945) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 946) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 947) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 948) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 949) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 950) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 951) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 952) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 953) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 954) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 955) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 958) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 967) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 968) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 969) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 970) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 971) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 972) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 973) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 976) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 983) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 984) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 985) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 986) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 987) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 988) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 989) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 990) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 991) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 992) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 993) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 994) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 995) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 996) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 997) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 998) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 999) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1000) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1001) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1002) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1003) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1004) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1005) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1006) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1009) | type cpuMask
constant _CPU_SETSIZE (line 1012) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1013) | _NCPUBITS = 0x20
constant BDADDR_BREDR (line 1017) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1018) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1019) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1022) | type PerfEventAttr struct
type PerfEventMmapPage (line 1044) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1071) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1072) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1073) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1074) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1075) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1076) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1077) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1078) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1079) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1080) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1081) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1082) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1083) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1084) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1085) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1086) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1087) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1088) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1089) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1090) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1091) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1092) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1093) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1094) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1095) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1096) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1097) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1101) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1102) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1103) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1104) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1105) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1106) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1108) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1109) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1110) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1111) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1112) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1113) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1114) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1115) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1116) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1117) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1119) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1120) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1121) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1122) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1123) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1124) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1125) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1127) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1128) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1129) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1131) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1132) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1134) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1135) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1136) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1137) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1138) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1139) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1140) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1141) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1142) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1143) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1144) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1146) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1147) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1148) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1149) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1150) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1151) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1152) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1153) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1154) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1155) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1156) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1157) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1159) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1160) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1161) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1162) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1163) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1164) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1165) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1166) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1167) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1168) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1169) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1170) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1171) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1172) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1173) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1174) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1175) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1177) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1178) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1179) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1180) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1182) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1183) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1184) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1185) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1186) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1187) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1188) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1189) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1190) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1191) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1192) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1193) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1194) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1195) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1196) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1197) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1199) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1200) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1201) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1203) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1204) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1205) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1207) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1208) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1209) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1210) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1214) | CBitFieldMaskBit0 = 0x8000000000000000
constant CBitFieldMaskBit1 (line 1215) | CBitFieldMaskBit1 = 0x4000000000000000
constant CBitFieldMaskBit2 (line 1216) | CBitFieldMaskBit2 = 0x2000000000000000
constant CBitFieldMaskBit3 (line 1217) | CBitFieldMaskBit3 = 0x1000000000000000
constant CBitFieldMaskBit4 (line 1218) | CBitFieldMaskBit4 = 0x800000000000000
constant CBitFieldMaskBit5 (line 1219) | CBitFieldMaskBit5 = 0x400000000000000
constant CBitFieldMaskBit6 (line 1220) | CBitFieldMaskBit6 = 0x200000000000000
constant CBitFieldMaskBit7 (line 1221) | CBitFieldMaskBit7 = 0x100000000000000
constant CBitFieldMaskBit8 (line 1222) | CBitFieldMaskBit8 = 0x80000000000000
constant CBitFieldMaskBit9 (line 1223) | CBitFieldMaskBit9 = 0x40000000000000
constant CBitFieldMaskBit10 (line 1224) | CBitFieldMaskBit10 = 0x20000000000000
constant CBitFieldMaskBit11 (line 1225) | CBitFieldMaskBit11 = 0x10000000000000
constant CBitFieldMaskBit12 (line 1226) | CBitFieldMaskBit12 = 0x8000000000000
constant CBitFieldMaskBit13 (line 1227) | CBitFieldMaskBit13 = 0x4000000000000
constant CBitFieldMaskBit14 (line 1228) | CBitFieldMaskBit14 = 0x2000000000000
constant CBitFieldMaskBit15 (line 1229) | CBitFieldMaskBit15 = 0x1000000000000
constant CBitFieldMaskBit16 (line 1230) | CBitFieldMaskBit16 = 0x800000000000
constant CBitFieldMaskBit17 (line 1231) | CBitFieldMaskBit17 = 0x400000000000
constant CBitFieldMaskBit18 (line 1232) | CBitFieldMaskBit18 = 0x200000000000
constant CBitFieldMaskBit19 (line 1233) | CBitFieldMaskBit19 = 0x100000000000
constant CBitFieldMaskBit20 (line 1234) | CBitFieldMaskBit20 = 0x80000000000
constant CBitFieldMaskBit21 (line 1235) | CBitFieldMaskBit21 = 0x40000000000
constant CBitFieldMaskBit22 (line 1236) | CBitFieldMaskBit22 = 0x20000000000
constant CBitFieldMaskBit23 (line 1237) | CBitFieldMaskBit23 = 0x10000000000
constant CBitFieldMaskBit24 (line 1238) | CBitFieldMaskBit24 = 0x8000000000
constant CBitFieldMaskBit25 (line 1239) | CBitFieldMaskBit25 = 0x4000000000
constant CBitFieldMaskBit26 (line 1240) | CBitFieldMaskBit26 = 0x2000000000
constant CBitFieldMaskBit27 (line 1241) | CBitFieldMaskBit27 = 0x1000000000
constant CBitFieldMaskBit28 (line 1242) | CBitFieldMaskBit28 = 0x800000000
constant CBitFieldMaskBit29 (line 1243) | CBitFieldMaskBit29 = 0x400000000
constant CBitFieldMaskBit30 (line 1244) | CBitFieldMaskBit30 = 0x200000000
constant CBitFieldMaskBit31 (line 1245) | CBitFieldMaskBit31 = 0x100000000
constant CBitFieldMaskBit32 (line 1246) | CBitFieldMaskBit32 = 0x80000000
constant CBitFieldMaskBit33 (line 1247) | CBitFieldMaskBit33 = 0x40000000
constant CBitFieldMaskBit34 (line 1248) | CBitFieldMaskBit34 = 0x20000000
constant CBitFieldMaskBit35 (line 1249) | CBitFieldMaskBit35 = 0x10000000
constant CBitFieldMaskBit36 (line 1250) | CBitFieldMaskBit36 = 0x8000000
constant CBitFieldMaskBit37 (line 1251) | CBitFieldMaskBit37 = 0x4000000
constant CBitFieldMaskBit38 (line 1252) | CBitFieldMaskBit38 = 0x2000000
constant CBitFieldMaskBit39 (line 1253) | CBitFieldMaskBit39 = 0x1000000
constant CBitFieldMaskBit40 (line 1254) | CBitFieldMaskBit40 = 0x800000
constant CBitFieldMaskBit41 (line 1255) | CBitFieldMaskBit41 = 0x400000
constant CBitFieldMaskBit42 (line 1256) | CBitFieldMaskBit42 = 0x200000
constant CBitFieldMaskBit43 (line 1257) | CBitFieldMaskBit43 = 0x100000
constant CBitFieldMaskBit44 (line 1258) | CBitFieldMaskBit44 = 0x80000
constant CBitFieldMaskBit45 (line 1259) | CBitFieldMaskBit45 = 0x40000
constant CBitFieldMaskBit46 (line 1260) | CBitFieldMaskBit46 = 0x20000
constant CBitFieldMaskBit47 (line 1261) | CBitFieldMaskBit47 = 0x10000
constant CBitFieldMaskBit48 (line 1262) | CBitFieldMaskBit48 = 0x8000
constant CBitFieldMaskBit49 (line 1263) | CBitFieldMaskBit49 = 0x4000
constant CBitFieldMaskBit50 (line 1264) | CBitFieldMaskBit50 = 0x2000
constant CBitFieldMaskBit51 (line 1265) | CBitFieldMaskBit51 = 0x1000
constant CBitFieldMaskBit52 (line 1266) | CBitFieldMaskBit52 = 0x800
constant CBitFieldMaskBit53 (line 1267) | CBitFieldMaskBit53 = 0x400
constant CBitFieldMaskBit54 (line 1268) | CBitFieldMaskBit54 = 0x200
constant CBitFieldMaskBit55 (line 1269) | CBitFieldMaskBit55 = 0x100
constant CBitFieldMaskBit56 (line 1270) | CBitFieldMaskBit56 = 0x80
constant CBitFieldMaskBit57 (line 1271) | CBitFieldMaskBit57 = 0x40
constant CBitFieldMaskBit58 (line 1272) | CBitFieldMaskBit58 = 0x20
constant CBitFieldMaskBit59 (line 1273) | CBitFieldMaskBit59 = 0x10
constant CBitFieldMaskBit60 (line 1274) | CBitFieldMaskBit60 = 0x8
constant CBitFieldMaskBit61 (line 1275) | CBitFieldMaskBit61 = 0x4
constant CBitFieldMaskBit62 (line 1276) | CBitFieldMaskBit62 = 0x2
constant CBitFieldMaskBit63 (line 1277) | CBitFieldMaskBit63 = 0x1
type SockaddrStorage (line 1280) | type SockaddrStorage struct
type TCPMD5Sig (line 1286) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1295) | type HDDriveCmdHdr struct
type HDGeometry (line 1302) | type HDGeometry struct
type HDDriveID (line 1309) | type HDDriveID struct
type Statfs_t (line 1391) | type Statfs_t struct
constant ST_MANDLOCK (line 1409) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1410) | ST_NOATIME = 0x400
constant ST_NODEV (line 1411) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1412) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1413) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1414) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1415) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1416) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1417) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1420) | type TpacketHdr struct
type Tpacket2Hdr (line 1430) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1443) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1456) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1463) | type TpacketBlockDesc struct
type TpacketBDTS (line 1469) | type TpacketBDTS struct
type TpacketHdrV1 (line 1474) | type TpacketHdrV1 struct
type TpacketReq (line 1484) | type TpacketReq struct
type TpacketReq3 (line 1491) | type TpacketReq3 struct
type TpacketStats (line 1501) | type TpacketStats struct
type TpacketStatsV3 (line 1506) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1512) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1523) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1524) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1525) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1529) | SizeofTpacketHdr = 0x18
constant SizeofTpacket2Hdr (line 1530) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1531) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1533) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1534) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1538) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1539) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1540) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1541) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1542) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1543) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1547) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1548) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1552) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1553) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1554) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1555) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1556) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1557) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1558) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1559) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1560) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1563) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1570) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1571) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1575) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1576) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1577) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1578) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1579) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1580) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1581) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1582) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1583) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1584) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1585) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1586) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1587) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1588) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1589) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1590) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1591) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1592) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1593) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1594) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1595) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1596) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1597) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1598) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1599) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1600) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1601) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1602) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1603) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1604) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1605) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1606) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1607) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1608) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1609) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1610) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1611) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1612) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1613) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1614) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1615) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1616) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1617) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1618) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1619) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1620) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1621) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1622) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1623) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1624) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1625) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1626) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1627) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1628) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1629) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1630) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1631) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1632) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1633) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1634) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1635) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1636) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1637) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1638) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1639) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1640) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1641) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1642) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1643) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1644) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1645) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1646) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1647) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1648) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1649) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1650) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1651) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1652) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1653) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1654) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1655) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1656) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1657) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1658) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1659) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1660) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1661) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1662) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1663) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1664) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1665) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1666) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1667) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1668) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1669) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1670) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1671) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1672) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1673) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1674) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1675) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1676) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1677) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1678) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1679) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1680) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1681) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1682) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1683) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1684) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1685) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1686) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1687) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1688) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1689) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1690) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1691) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1692) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1693) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1694) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1695) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1696) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1697) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1698) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1699) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1700) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1701) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1702) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1703) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1704) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1705) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1706) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1707) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1708) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1709) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1710) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1711) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1712) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1713) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1714) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1715) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1716) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1717) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1718) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1719) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1720) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1721) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1722) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1723) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1724) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1725) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1726) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1727) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1728) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1729) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1730) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1731) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1732) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1733) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1734) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1735) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1736) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1737) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1738) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1739) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1740) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1741) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1742) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1743) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1744) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1745) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1746) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1747) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1748) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1749) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1750) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1751) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1752) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1753) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1754) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1755) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1756) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1757) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1758) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1759) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1760) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1761) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1762) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1763) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1764) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1765) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1766) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1767) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1768) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1769) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1770) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1771) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1772) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1773) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1774) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1775) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1776) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1777) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1778) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1779) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1780) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1781) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1782) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1783) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1784) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1785) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1786) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1787) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1788) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1789) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1790) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1791) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1792) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1793) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1794) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1795) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1796) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1797) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1798) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1799) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1800) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1801) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1802) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1803) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1804) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1805) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1806) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1807) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1808) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1809) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1810) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1811) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1812) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1813) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1814) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1815) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1816) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1817) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1818) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1819) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1820) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1821) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1822) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1823) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1824) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1825) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1826) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1827) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1828) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1829) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1830) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1831) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1832) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1833) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1834) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1835) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1836) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1837) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1838) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1839) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1840) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1841) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1842) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1843) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1844) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1845) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1846) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1847) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1848) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1849) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1850) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1851) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1852) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1853) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1854) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1855) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1856) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1857) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1858) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1859) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1860) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1861) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1862) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1863) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1864) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1865) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1866) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1867) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1868) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1869) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1870) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1871) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1872) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1873) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1874) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1875) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1876) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1877) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1878) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1879) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1880) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1881) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1882) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1883) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1884) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1885) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1886) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1887) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1888) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1889) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1890) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1891) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1892) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1893) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1894) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1895) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1896) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1897) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1898) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1899) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1900) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1901) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1902) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1903) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1904) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1905) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1906) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1907) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1908) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1909) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1910) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1911) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1912) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1913) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1914) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1915) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1916) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1917) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1918) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1919) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1920) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1921) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1922) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1923) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1924) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1925) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1926) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1927) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1928) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1929) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1930) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1931) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1932) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1933) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1934) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1935) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1936) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1937) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1938) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1939) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1940) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1941) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1942) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1943) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1944) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1945) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1946) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1947) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1948) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1949) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1950) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1951) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1952) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1953) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1954) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1955) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1956) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1957) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1958) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1959) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1960) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1961) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1962) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1963) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1964) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1965) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1966) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1967) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1968) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1969) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1970) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1971) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1972) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1973) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1974) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1975) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1976) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1977) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1978) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1979) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1980) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1981) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1982) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1983) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1984) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1985) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1986) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1987) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1988) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1989) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1990) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1991) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1992) | NFT_NG_RANDOM = 0x1
type RTCTime (line 1995) | type RTCTime struct
type RTCWkAlrm (line 2007) | type RTCWkAlrm struct
type RTCPLLInfo (line 2013) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2023) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2030) | type BlkpgPartition struct
constant BLKPG (line 2040) | BLKPG = 0x20001269
constant BLKPG_ADD_PARTITION (line 2041) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2042) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2043) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2047) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2048) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2049) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2050) | NETNSA_FD = 0x3
type XDPRingOffset (line 2053) | type XDPRingOffset struct
type XDPMmapOffsets (line 2059) | type XDPMmapOffsets struct
type XDPUmemReg (line 2066) | type XDPUmemReg struct
type XDPStatistics (line 2073) | type XDPStatistics struct
type XDPDesc (line 2079) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2086) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2087) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2088) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2089) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2090) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2091) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2092) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2093) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2094) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2095) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2096) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2097) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2098) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2099) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2100) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2101) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2102) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2103) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2104) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2105) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2106) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2107) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2108) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2109) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2110) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2113) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2118) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2119) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2120) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2121) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2122) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2123) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2124) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2125) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2126) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2127) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2128) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2129) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2130) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2131) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2132) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2134) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2135) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2137) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2138) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2139) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2142) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2152) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2162) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2168) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2169) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2170) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2171) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2172) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2173) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2174) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2178) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2179) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2180) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2181) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2182) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2183) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2184) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2185) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2186) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2187) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2188) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2189) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2190) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2191) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2192) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2193) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2194) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2195) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2196) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2197) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2198) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2199) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2202) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2212) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2221) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2232) | type CryptoStatCipher struct
type CryptoStatCompress (line 2241) | type CryptoStatCompress struct
type CryptoStatHash (line 2250) | type CryptoStatHash struct
type CryptoStatKPP (line 2257) | type CryptoStatKPP struct
type CryptoStatRNG (line 2265) | type CryptoStatRNG struct
type CryptoStatLarval (line 2273) | type CryptoStatLarval struct
type CryptoReportLarval (line 2277) | type CryptoReportLarval struct
type CryptoReportHash (line 2281) | type CryptoReportHash struct
type CryptoReportCipher (line 2287) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2294) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2303) | type CryptoReportAEAD struct
type CryptoReportComp (line 2311) | type CryptoReportComp struct
type CryptoReportRNG (line 2315) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2320) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2324) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2328) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2333) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2334) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2335) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2336) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2337) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2338) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2339) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2340) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2341) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2342) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2343) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2344) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2345) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2346) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2347) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2348) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2349) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2350) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2351) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2352) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2353) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2354) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2355) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2356) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2357) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2358) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2359) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2360) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2361) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2362) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2363) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2364) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2365) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2366) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2367) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2368) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2369) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2370) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2371) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2372) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2373) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2374) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2375) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2376) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2377) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2378) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2379) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2380) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2381) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2382) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2383) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2384) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2385) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2386) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2387) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2388) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2389) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2390) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2391) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2392) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2393) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2394) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2395) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2396) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2397) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2398) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2399) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2400) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2401) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2402) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2403) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2404) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2405) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2406) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2407) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2408) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2409) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2410) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2411) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2412) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2413) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2414) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2415) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2416) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2417) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2418) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2419) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2420) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2421) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2422) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2423) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2424) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2425) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2426) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2427) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2428) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2429) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2430) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2431) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2432) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2433) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2434) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2435) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2436) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2437) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2438) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2439) | BPF_OK = 0x0
constant BPF_DROP (line 2440) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2441) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2442) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2443) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2444) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2445) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2446) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2447) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2448) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2449) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2450) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2451) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2452) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2453) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2454) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2455) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2456) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2457) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2458) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2459) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2460) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2461) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2462) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2463) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2464) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2465) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2466) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2467) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2468) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2469) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2470) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2471) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2472) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2473) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2474) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2475) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2476) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2477) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2478) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2479) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2480) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2481) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2484) | type CapUserHeader struct
type CapUserData (line 2489) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2496) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2497) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2498) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2502) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2503) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2504) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2505) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2508) | type LoopInfo struct
type LoopInfo64 (line 2522) | type LoopInfo64 struct
type TIPCSocketAddr (line 2538) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2543) | type TIPCServiceRange struct
type TIPCServiceName (line 2549) | type TIPCServiceName struct
type TIPCSubscr (line 2555) | type TIPCSubscr struct
type TIPCEvent (line 2562) | type TIPCEvent struct
type TIPCGroupReq (line 2570) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2577) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2583) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2589) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2590) | TIPC_NODE_SCOPE = 0x3
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 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 StatxTimestamp (line 117) | type StatxTimestamp struct
type Statx_t (line 123) | type Statx_t struct
type Dirent (line 147) | type Dirent struct
type Fsid (line 156) | type Fsid struct
type Flock_t (line 160) | type Flock_t struct
type FscryptPolicy (line 169) | type FscryptPolicy struct
type FscryptKey (line 177) | type FscryptKey struct
type KeyctlDHParams (line 183) | type KeyctlDHParams struct
constant FADV_NORMAL (line 190) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 191) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 192) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 193) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 194) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 195) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 198) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 205) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 213) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 218) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 228) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 235) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 241) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 250) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 257) | type RawSockaddrCAN struct
type RawSockaddrALG (line 263) | type RawSockaddrALG struct
type RawSockaddrVM (line 271) | type RawSockaddrVM struct
type RawSockaddrXDP (line 279) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 287) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 289) | type RawSockaddrTIPC struct
type RawSockaddr (line 296) | type RawSockaddr struct
type RawSockaddrAny (line 301) | type RawSockaddrAny struct
type _Socklen (line 306) | type _Socklen
type Linger (line 308) | type Linger struct
type Iovec (line 313) | type Iovec struct
type IPMreq (line 318) | type IPMreq struct
type IPMreqn (line 323) | type IPMreqn struct
type IPv6Mreq (line 329) | type IPv6Mreq struct
type PacketMreq (line 334) | type PacketMreq struct
type Msghdr (line 341) | type Msghdr struct
type Cmsghdr (line 352) | type Cmsghdr struct
type Inet4Pktinfo (line 358) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 364) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 369) | type IPv6MTUInfo struct
type ICMPv6Filter (line 374) | type ICMPv6Filter struct
type Ucred (line 378) | type Ucred struct
type TCPInfo (line 384) | type TCPInfo struct
type CanFilter (line 417) | type CanFilter struct
constant SizeofSockaddrInet4 (line 423) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 424) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 425) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 426) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 427) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 428) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 429) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 430) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 431) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 432) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 433) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 434) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 435) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 436) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 437) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 438) | SizeofLinger = 0x8
constant SizeofIovec (line 439) | SizeofIovec = 0x10
constant SizeofIPMreq (line 440) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 441) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 442) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 443) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 444) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 445) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 446) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 447) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 448) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 449) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 450) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 451) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 452) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 456) | NDA_UNSPEC = 0x0
constant NDA_DST (line 457) | NDA_DST = 0x1
constant NDA_LLADDR (line 458) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 459) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 460) | NDA_PROBES = 0x4
constant NDA_VLAN (line 461) | NDA_VLAN = 0x5
constant NDA_PORT (line 462) | NDA_PORT = 0x6
constant NDA_VNI (line 463) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 464) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 465) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 466) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 467) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 468) | NTF_USE = 0x1
constant NTF_SELF (line 469) | NTF_SELF = 0x2
constant NTF_MASTER (line 470) | NTF_MASTER = 0x4
constant NTF_PROXY (line 471) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 472) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 473) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 474) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 475) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 476) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 477) | NUD_STALE = 0x4
constant NUD_DELAY (line 478) | NUD_DELAY = 0x8
constant NUD_PROBE (line 479) | NUD_PROBE = 0x10
constant NUD_FAILED (line 480) | NUD_FAILED = 0x20
constant NUD_NOARP (line 481) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 482) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 483) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 484) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 485) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 486) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 487) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 488) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 489) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 490) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 491) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 492) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 493) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 494) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 495) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 496) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 497) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 498) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 499) | IFLA_MTU = 0x4
constant IFLA_LINK (line 500) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 501) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 502) | IFLA_STATS = 0x7
constant IFLA_COST (line 503) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 504) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 505) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 506) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 507) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 508) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 509) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 510) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 511) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 512) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 513) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 514) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 515) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 516) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 517) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 518) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 519) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 520) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 521) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 522) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 523) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 524) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 525) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 526) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 527) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 528) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 529) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 530) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 531) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 532) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 533) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 534) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 535) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 536) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 537) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 538) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 539) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 540) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 541) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 542) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 543) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 544) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 545) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 546) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 547) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 548) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 549) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 550) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 551) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 552) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 553) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 554) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 555) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 556) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 557) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 558) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 559) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 560) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 561) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 562) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 563) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 564) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 565) | RTA_UNSPEC = 0x0
constant RTA_DST (line 566) | RTA_DST = 0x1
constant RTA_SRC (line 567) | RTA_SRC = 0x2
constant RTA_IIF (line 568) | RTA_IIF = 0x3
constant RTA_OIF (line 569) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 570) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 571) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 572) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 573) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 574) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 575) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 576) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 577) | RTA_TABLE = 0xf
constant RTA_MARK (line 578) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 579) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 580) | RTA_VIA = 0x12
constant RTA_NEWDST (line 581) | RTA_NEWDST = 0x13
constant RTA_PREF (line 582) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 583) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 584) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 585) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 586) | RTA_PAD = 0x18
constant RTA_UID (line 587) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 588) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 589) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 590) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 591) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 592) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 593) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 594) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 595) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 596) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 597) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 598) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 599) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 600) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 601) | RTN_THROW = 0x9
constant RTN_NAT (line 602) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 603) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 604) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 605) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 606) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 607) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 608) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 609) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 610) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 611) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 612) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 613) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 614) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 615) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 616) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 617) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 618) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 619) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 620) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 621) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 622) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 623) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 624) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 625) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 626) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 627) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 628) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 629) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 630) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 631) | SizeofNdMsg = 0xc
type NlMsghdr (line 634) | type NlMsghdr struct
type NlMsgerr (line 642) | type NlMsgerr struct
type RtGenmsg (line 647) | type RtGenmsg struct
type NlAttr (line 651) | type NlAttr struct
type RtAttr (line 656) | type RtAttr struct
type IfInfomsg (line 661) | type IfInfomsg struct
type IfAddrmsg (line 670) | type IfAddrmsg struct
type IfaCacheinfo (line 678) | type IfaCacheinfo struct
type RtMsg (line 685) | type RtMsg struct
type RtNexthop (line 697) | type RtNexthop struct
type NdUseroptmsg (line 704) | type NdUseroptmsg struct
type NdMsg (line 715) | type NdMsg struct
constant SizeofSockFilter (line 726) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 727) | SizeofSockFprog = 0x10
type SockFilter (line 730) | type SockFilter struct
type SockFprog (line 737) | type SockFprog struct
type InotifyEvent (line 742) | type InotifyEvent struct
constant SizeofInotifyEvent (line 749) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 751) | type PtraceRegs struct
type FdSet (line 761) | type FdSet struct
type Sysinfo_t (line 765) | type Sysinfo_t struct
type Utsname (line 783) | type Utsname struct
type Ustat_t (line 792) | type Ustat_t struct
type EpollEvent (line 800) | type EpollEvent struct
constant AT_EMPTY_PATH (line 807) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 808) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 809) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 810) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 812) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 813) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 814) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 816) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 817) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 819) | AT_EACCESS = 0x200
type PollFd (line 822) | type PollFd struct
constant POLLIN (line 829) | POLLIN = 0x1
constant POLLPRI (line 830) | POLLPRI = 0x2
constant POLLOUT (line 831) | POLLOUT = 0x4
constant POLLRDHUP (line 832) | POLLRDHUP = 0x2000
constant POLLERR (line 833) | POLLERR = 0x8
constant POLLHUP (line 834) | POLLHUP = 0x10
constant POLLNVAL (line 835) | POLLNVAL = 0x20
type Sigset_t (line 838) | type Sigset_t struct
constant _C__NSIG (line 842) | _C__NSIG = 0x80
type SignalfdSiginfo (line 844) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 869) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 871) | type Termios struct
type Winsize (line 882) | type Winsize struct
type Taskstats (line 889) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 939) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 940) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 941) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 942) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 943) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 944) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 945) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 946) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 947) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 948) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 949) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 950) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 951) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 952) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 953) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 956) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 965) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 966) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 967) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 968) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 969) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 970) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 971) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 974) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 981) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 982) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 983) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 984) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 985) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 986) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 987) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 988) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 989) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 990) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 991) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 992) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 993) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 994) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 995) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 996) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 997) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 998) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 999) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1000) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1001) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1002) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1003) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1004) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1007) | type cpuMask
constant _CPU_SETSIZE (line 1010) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1011) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1015) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1016) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1017) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1020) | type PerfEventAttr struct
type PerfEventMmapPage (line 1042) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1069) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1070) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1071) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1072) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1073) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1074) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1075) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1076) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1077) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1078) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1079) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1080) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1081) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1082) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1083) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1084) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1085) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1086) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1087) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1088) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1089) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1090) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1091) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1092) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1093) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1094) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1095) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1099) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1100) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1101) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1102) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1103) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1104) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1106) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1107) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1108) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1109) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1110) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1111) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1112) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1113) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1114) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1115) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1117) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1118) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1119) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1120) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1121) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1122) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1123) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1125) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1126) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1127) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1129) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1130) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1132) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1133) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1134) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1135) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1136) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1137) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1138) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1139) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1140) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1141) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1142) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1144) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1145) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1146) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1147) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1148) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1149) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1150) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1151) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1152) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1153) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1154) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1155) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1157) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1158) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1159) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1160) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1161) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1162) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1163) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1164) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1165) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1166) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1167) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1168) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1169) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1170) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1171) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1172) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1173) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1175) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1176) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1177) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1178) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1180) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1181) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1182) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1183) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1184) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1185) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1186) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1187) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1188) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1189) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1190) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1191) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1192) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1193) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1194) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1195) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1197) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1198) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1199) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1201) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1202) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1203) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1205) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1206) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1207) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1208) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1212) | CBitFieldMaskBit0 = 0x8000000000000000
constant CBitFieldMaskBit1 (line 1213) | CBitFieldMaskBit1 = 0x4000000000000000
constant CBitFieldMaskBit2 (line 1214) | CBitFieldMaskBit2 = 0x2000000000000000
constant CBitFieldMaskBit3 (line 1215) | CBitFieldMaskBit3 = 0x1000000000000000
constant CBitFieldMaskBit4 (line 1216) | CBitFieldMaskBit4 = 0x800000000000000
constant CBitFieldMaskBit5 (line 1217) | CBitFieldMaskBit5 = 0x400000000000000
constant CBitFieldMaskBit6 (line 1218) | CBitFieldMaskBit6 = 0x200000000000000
constant CBitFieldMaskBit7 (line 1219) | CBitFieldMaskBit7 = 0x100000000000000
constant CBitFieldMaskBit8 (line 1220) | CBitFieldMaskBit8 = 0x80000000000000
constant CBitFieldMaskBit9 (line 1221) | CBitFieldMaskBit9 = 0x40000000000000
constant CBitFieldMaskBit10 (line 1222) | CBitFieldMaskBit10 = 0x20000000000000
constant CBitFieldMaskBit11 (line 1223) | CBitFieldMaskBit11 = 0x10000000000000
constant CBitFieldMaskBit12 (line 1224) | CBitFieldMaskBit12 = 0x8000000000000
constant CBitFieldMaskBit13 (line 1225) | CBitFieldMaskBit13 = 0x4000000000000
constant CBitFieldMaskBit14 (line 1226) | CBitFieldMaskBit14 = 0x2000000000000
constant CBitFieldMaskBit15 (line 1227) | CBitFieldMaskBit15 = 0x1000000000000
constant CBitFieldMaskBit16 (line 1228) | CBitFieldMaskBit16 = 0x800000000000
constant CBitFieldMaskBit17 (line 1229) | CBitFieldMaskBit17 = 0x400000000000
constant CBitFieldMaskBit18 (line 1230) | CBitFieldMaskBit18 = 0x200000000000
constant CBitFieldMaskBit19 (line 1231) | CBitFieldMaskBit19 = 0x100000000000
constant CBitFieldMaskBit20 (line 1232) | CBitFieldMaskBit20 = 0x80000000000
constant CBitFieldMaskBit21 (line 1233) | CBitFieldMaskBit21 = 0x40000000000
constant CBitFieldMaskBit22 (line 1234) | CBitFieldMaskBit22 = 0x20000000000
constant CBitFieldMaskBit23 (line 1235) | CBitFieldMaskBit23 = 0x10000000000
constant CBitFieldMaskBit24 (line 1236) | CBitFieldMaskBit24 = 0x8000000000
constant CBitFieldMaskBit25 (line 1237) | CBitFieldMaskBit25 = 0x4000000000
constant CBitFieldMaskBit26 (line 1238) | CBitFieldMaskBit26 = 0x2000000000
constant CBitFieldMaskBit27 (line 1239) | CBitFieldMaskBit27 = 0x1000000000
constant CBitFieldMaskBit28 (line 1240) | CBitFieldMaskBit28 = 0x800000000
constant CBitFieldMaskBit29 (line 1241) | CBitFieldMaskBit29 = 0x400000000
constant CBitFieldMaskBit30 (line 1242) | CBitFieldMaskBit30 = 0x200000000
constant CBitFieldMaskBit31 (line 1243) | CBitFieldMaskBit31 = 0x100000000
constant CBitFieldMaskBit32 (line 1244) | CBitFieldMaskBit32 = 0x80000000
constant CBitFieldMaskBit33 (line 1245) | CBitFieldMaskBit33 = 0x40000000
constant CBitFieldMaskBit34 (line 1246) | CBitFieldMaskBit34 = 0x20000000
constant CBitFieldMaskBit35 (line 1247) | CBitFieldMaskBit35 = 0x10000000
constant CBitFieldMaskBit36 (line 1248) | CBitFieldMaskBit36 = 0x8000000
constant CBitFieldMaskBit37 (line 1249) | CBitFieldMaskBit37 = 0x4000000
constant CBitFieldMaskBit38 (line 1250) | CBitFieldMaskBit38 = 0x2000000
constant CBitFieldMaskBit39 (line 1251) | CBitFieldMaskBit39 = 0x1000000
constant CBitFieldMaskBit40 (line 1252) | CBitFieldMaskBit40 = 0x800000
constant CBitFieldMaskBit41 (line 1253) | CBitFieldMaskBit41 = 0x400000
constant CBitFieldMaskBit42 (line 1254) | CBitFieldMaskBit42 = 0x200000
constant CBitFieldMaskBit43 (line 1255) | CBitFieldMaskBit43 = 0x100000
constant CBitFieldMaskBit44 (line 1256) | CBitFieldMaskBit44 = 0x80000
constant CBitFieldMaskBit45 (line 1257) | CBitFieldMaskBit45 = 0x40000
constant CBitFieldMaskBit46 (line 1258) | CBitFieldMaskBit46 = 0x20000
constant CBitFieldMaskBit47 (line 1259) | CBitFieldMaskBit47 = 0x10000
constant CBitFieldMaskBit48 (line 1260) | CBitFieldMaskBit48 = 0x8000
constant CBitFieldMaskBit49 (line 1261) | CBitFieldMaskBit49 = 0x4000
constant CBitFieldMaskBit50 (line 1262) | CBitFieldMaskBit50 = 0x2000
constant CBitFieldMaskBit51 (line 1263) | CBitFieldMaskBit51 = 0x1000
constant CBitFieldMaskBit52 (line 1264) | CBitFieldMaskBit52 = 0x800
constant CBitFieldMaskBit53 (line 1265) | CBitFieldMaskBit53 = 0x400
constant CBitFieldMaskBit54 (line 1266) | CBitFieldMaskBit54 = 0x200
constant CBitFieldMaskBit55 (line 1267) | CBitFieldMaskBit55 = 0x100
constant CBitFieldMaskBit56 (line 1268) | CBitFieldMaskBit56 = 0x80
constant CBitFieldMaskBit57 (line 1269) | CBitFieldMaskBit57 = 0x40
constant CBitFieldMaskBit58 (line 1270) | CBitFieldMaskBit58 = 0x20
constant CBitFieldMaskBit59 (line 1271) | CBitFieldMaskBit59 = 0x10
constant CBitFieldMaskBit60 (line 1272) | CBitFieldMaskBit60 = 0x8
constant CBitFieldMaskBit61 (line 1273) | CBitFieldMaskBit61 = 0x4
constant CBitFieldMaskBit62 (line 1274) | CBitFieldMaskBit62 = 0x2
constant CBitFieldMaskBit63 (line 1275) | CBitFieldMaskBit63 = 0x1
type SockaddrStorage (line 1278) | type SockaddrStorage struct
type TCPMD5Sig (line 1284) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1293) | type HDDriveCmdHdr struct
type HDGeometry (line 1300) | type HDGeometry struct
type HDDriveID (line 1307) | type HDDriveID struct
type Statfs_t (line 1389) | type Statfs_t struct
constant ST_MANDLOCK (line 1405) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1406) | ST_NOATIME = 0x400
constant ST_NODEV (line 1407) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1408) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1409) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1410) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1411) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1412) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1413) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1416) | type TpacketHdr struct
type Tpacket2Hdr (line 1427) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1440) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1453) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1460) | type TpacketBlockDesc struct
type TpacketBDTS (line 1466) | type TpacketBDTS struct
type TpacketHdrV1 (line 1471) | type TpacketHdrV1 struct
type TpacketReq (line 1481) | type TpacketReq struct
type TpacketReq3 (line 1488) | type TpacketReq3 struct
type TpacketStats (line 1498) | type TpacketStats struct
type TpacketStatsV3 (line 1503) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1509) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1520) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1521) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1522) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1526) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1527) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1528) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1530) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1531) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1535) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1536) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1537) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1538) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1539) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1540) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1544) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1545) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1549) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1550) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1551) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1552) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1553) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1554) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1555) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1556) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1557) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1560) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1567) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1568) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1572) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1573) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1574) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1575) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1576) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1577) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1578) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1579) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1580) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1581) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1582) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1583) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1584) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1585) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1586) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1587) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1588) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1589) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1590) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1591) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1592) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1593) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1594) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1595) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1596) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1597) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1598) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1599) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1600) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1601) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1602) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1603) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1604) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1605) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1606) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1607) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1608) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1609) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1610) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1611) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1612) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1613) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1614) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1615) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1616) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1617) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1618) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1619) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1620) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1621) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1622) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1623) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1624) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1625) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1626) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1627) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1628) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1629) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1630) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1631) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1632) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1633) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1634) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1635) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1636) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1637) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1638) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1639) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1640) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1641) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1642) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1643) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1644) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1645) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1646) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1647) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1648) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1649) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1650) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1651) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1652) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1653) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1654) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1655) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1656) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1657) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1658) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1659) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1660) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1661) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1662) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1663) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1664) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1665) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1666) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1667) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1668) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1669) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1670) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1671) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1672) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1673) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1674) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1675) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1676) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1677) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1678) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1679) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1680) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1681) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1682) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1683) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1684) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1685) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1686) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1687) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1688) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1689) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1690) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1691) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1692) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1693) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1694) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1695) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1696) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1697) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1698) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1699) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1700) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1701) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1702) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1703) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1704) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1705) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1706) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1707) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1708) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1709) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1710) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1711) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1712) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1713) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1714) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1715) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1716) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1717) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1718) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1719) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1720) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1721) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1722) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1723) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1724) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1725) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1726) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1727) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1728) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1729) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1730) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1731) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1732) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1733) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1734) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1735) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1736) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1737) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1738) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1739) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1740) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1741) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1742) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1743) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1744) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1745) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1746) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1747) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1748) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1749) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1750) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1751) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1752) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1753) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1754) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1755) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1756) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1757) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1758) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1759) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1760) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1761) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1762) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1763) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1764) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1765) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1766) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1767) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1768) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1769) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1770) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1771) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1772) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1773) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1774) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1775) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1776) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1777) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1778) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1779) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1780) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1781) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1782) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1783) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1784) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1785) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1786) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1787) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1788) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1789) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1790) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1791) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1792) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1793) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1794) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1795) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1796) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1797) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1798) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1799) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1800) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1801) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1802) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1803) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1804) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1805) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1806) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1807) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1808) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1809) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1810) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1811) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1812) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1813) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1814) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1815) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1816) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1817) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1818) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1819) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1820) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1821) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1822) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1823) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1824) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1825) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1826) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1827) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1828) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1829) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1830) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1831) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1832) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1833) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1834) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1835) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1836) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1837) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1838) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1839) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1840) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1841) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1842) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1843) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1844) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1845) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1846) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1847) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1848) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1849) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1850) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1851) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1852) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1853) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1854) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1855) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1856) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1857) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1858) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1859) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1860) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1861) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1862) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1863) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1864) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1865) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1866) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1867) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1868) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1869) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1870) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1871) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1872) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1873) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1874) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1875) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1876) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1877) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1878) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1879) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1880) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1881) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1882) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1883) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1884) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1885) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1886) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1887) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1888) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1889) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1890) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1891) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1892) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1893) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1894) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1895) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1896) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1897) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1898) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1899) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1900) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1901) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1902) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1903) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1904) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1905) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1906) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1907) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1908) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1909) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1910) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1911) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1912) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1913) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1914) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1915) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1916) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1917) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1918) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1919) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1920) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1921) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1922) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1923) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1924) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1925) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1926) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1927) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1928) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1929) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1930) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1931) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1932) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1933) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1934) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1935) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1936) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1937) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1938) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1939) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1940) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1941) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1942) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1943) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1944) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1945) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1946) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1947) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1948) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1949) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1950) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1951) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1952) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1953) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1954) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1955) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1956) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1957) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1958) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1959) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1960) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1961) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1962) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1963) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1964) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1965) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1966) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1967) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1968) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1969) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1970) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1971) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1972) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1973) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1974) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1975) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1976) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1977) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1978) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1979) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1980) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1981) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1982) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1983) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1984) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1985) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1986) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1987) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1988) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1989) | NFT_NG_RANDOM = 0x1
type RTCTime (line 1992) | type RTCTime struct
type RTCWkAlrm (line 2004) | type RTCWkAlrm struct
type RTCPLLInfo (line 2010) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2020) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2027) | type BlkpgPartition struct
constant BLKPG (line 2037) | BLKPG = 0x20001269
constant BLKPG_ADD_PARTITION (line 2038) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2039) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2040) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2044) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2045) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2046) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2047) | NETNSA_FD = 0x3
type XDPRingOffset (line 2050) | type XDPRingOffset struct
type XDPMmapOffsets (line 2056) | type XDPMmapOffsets struct
type XDPUmemReg (line 2063) | type XDPUmemReg struct
type XDPStatistics (line 2070) | type XDPStatistics struct
type XDPDesc (line 2076) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2083) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2084) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2085) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2086) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2087) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2088) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2089) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2090) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2091) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2092) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2093) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2094) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2095) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2096) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2097) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2098) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2099) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2100) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2101) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2102) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2103) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2104) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2105) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2106) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2107) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2110) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2115) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2116) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2117) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2118) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2119) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2120) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2121) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2122) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2123) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2124) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2125) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2126) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2127) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2128) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2129) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2131) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2132) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2134) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2135) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2136) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2139) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2149) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2159) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2165) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2166) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2167) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2168) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2169) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2170) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2171) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2175) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2176) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2177) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2178) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2179) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2180) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2181) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2182) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2183) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2184) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2185) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2186) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2187) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2188) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2189) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2190) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2191) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2192) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2193) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2194) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2195) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2196) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2199) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2209) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2218) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2229) | type CryptoStatCipher struct
type CryptoStatCompress (line 2238) | type CryptoStatCompress struct
type CryptoStatHash (line 2247) | type CryptoStatHash struct
type CryptoStatKPP (line 2254) | type CryptoStatKPP struct
type CryptoStatRNG (line 2262) | type CryptoStatRNG struct
type CryptoStatLarval (line 2270) | type CryptoStatLarval struct
type CryptoReportLarval (line 2274) | type CryptoReportLarval struct
type CryptoReportHash (line 2278) | type CryptoReportHash struct
type CryptoReportCipher (line 2284) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2291) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2300) | type CryptoReportAEAD struct
type CryptoReportComp (line 2308) | type CryptoReportComp struct
type CryptoReportRNG (line 2312) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2317) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2321) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2325) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2330) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2331) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2332) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2333) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2334) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2335) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2336) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2337) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2338) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2339) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2340) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2341) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2342) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2343) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2344) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2345) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2346) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2347) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2348) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2349) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2350) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2351) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2352) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2353) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2354) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2355) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2356) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2357) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2358) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2359) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2360) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2361) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2362) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2363) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2364) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2365) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2366) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2367) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2368) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2369) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2370) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2371) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2372) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2373) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2374) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2375) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2376) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2377) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2378) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2379) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2380) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2381) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2382) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2383) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2384) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2385) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2386) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2387) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2388) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2389) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2390) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2391) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2392) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2393) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2394) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2395) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2396) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2397) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2398) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2399) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2400) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2401) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2402) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2403) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2404) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2405) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2406) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2407) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2408) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2409) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2410) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2411) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2412) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2413) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2414) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2415) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2416) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2417) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2418) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2419) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2420) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2421) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2422) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2423) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2424) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2425) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2426) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2427) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2428) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2429) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2430) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2431) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2432) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2433) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2434) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2435) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2436) | BPF_OK = 0x0
constant BPF_DROP (line 2437) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2438) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2439) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2440) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2441) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2442) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2443) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2444) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2445) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2446) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2447) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2448) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2449) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2450) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2451) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2452) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2453) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2454) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2455) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2456) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2457) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2458) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2459) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2460) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2461) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2462) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2463) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2464) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2465) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2466) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2467) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2468) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2469) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2470) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2471) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2472) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2473) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2474) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2475) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2476) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2477) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2478) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2481) | type CapUserHeader struct
type CapUserData (line 2486) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2493) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2494) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2495) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2499) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2500) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2501) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2502) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2505) | type LoopInfo struct
type LoopInfo64 (line 2520) | type LoopInfo64 struct
type TIPCSocketAddr (line 2536) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2541) | type TIPCServiceRange struct
type TIPCServiceName (line 2547) | type TIPCServiceName struct
type TIPCSubscr (line 2553) | type TIPCSubscr struct
type TIPCEvent (line 2560) | type TIPCEvent struct
type TIPCGroupReq (line 2568) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2575) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2581) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2587) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2588) | TIPC_NODE_SCOPE = 0x3
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 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 StatxTimestamp (line 117) | type StatxTimestamp struct
type Statx_t (line 123) | type Statx_t struct
type Dirent (line 147) | type Dirent struct
type Fsid (line 156) | type Fsid struct
type Flock_t (line 160) | type Flock_t struct
type FscryptPolicy (line 169) | type FscryptPolicy struct
type FscryptKey (line 177) | type FscryptKey struct
type KeyctlDHParams (line 183) | type KeyctlDHParams struct
constant FADV_NORMAL (line 190) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 191) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 192) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 193) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 194) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 195) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 198) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 205) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 213) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 218) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 228) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 235) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 241) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 250) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 257) | type RawSockaddrCAN struct
type RawSockaddrALG (line 263) | type RawSockaddrALG struct
type RawSockaddrVM (line 271) | type RawSockaddrVM struct
type RawSockaddrXDP (line 279) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 287) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 289) | type RawSockaddrTIPC struct
type RawSockaddr (line 296) | type RawSockaddr struct
type RawSockaddrAny (line 301) | type RawSockaddrAny struct
type _Socklen (line 306) | type _Socklen
type Linger (line 308) | type Linger struct
type Iovec (line 313) | type Iovec struct
type IPMreq (line 318) | type IPMreq struct
type IPMreqn (line 323) | type IPMreqn struct
type IPv6Mreq (line 329) | type IPv6Mreq struct
type PacketMreq (line 334) | type PacketMreq struct
type Msghdr (line 341) | type Msghdr struct
type Cmsghdr (line 352) | type Cmsghdr struct
type Inet4Pktinfo (line 358) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 364) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 369) | type IPv6MTUInfo struct
type ICMPv6Filter (line 374) | type ICMPv6Filter struct
type Ucred (line 378) | type Ucred struct
type TCPInfo (line 384) | type TCPInfo struct
type CanFilter (line 417) | type CanFilter struct
constant SizeofSockaddrInet4 (line 423) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 424) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 425) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 426) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 427) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 428) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 429) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 430) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 431) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 432) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 433) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 434) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 435) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 436) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 437) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 438) | SizeofLinger = 0x8
constant SizeofIovec (line 439) | SizeofIovec = 0x10
constant SizeofIPMreq (line 440) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 441) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 442) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 443) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 444) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 445) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 446) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 447) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 448) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 449) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 450) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 451) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 452) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 456) | NDA_UNSPEC = 0x0
constant NDA_DST (line 457) | NDA_DST = 0x1
constant NDA_LLADDR (line 458) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 459) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 460) | NDA_PROBES = 0x4
constant NDA_VLAN (line 461) | NDA_VLAN = 0x5
constant NDA_PORT (line 462) | NDA_PORT = 0x6
constant NDA_VNI (line 463) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 464) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 465) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 466) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 467) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 468) | NTF_USE = 0x1
constant NTF_SELF (line 469) | NTF_SELF = 0x2
constant NTF_MASTER (line 470) | NTF_MASTER = 0x4
constant NTF_PROXY (line 471) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 472) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 473) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 474) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 475) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 476) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 477) | NUD_STALE = 0x4
constant NUD_DELAY (line 478) | NUD_DELAY = 0x8
constant NUD_PROBE (line 479) | NUD_PROBE = 0x10
constant NUD_FAILED (line 480) | NUD_FAILED = 0x20
constant NUD_NOARP (line 481) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 482) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 483) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 484) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 485) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 486) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 487) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 488) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 489) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 490) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 491) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 492) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 493) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 494) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 495) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 496) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 497) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 498) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 499) | IFLA_MTU = 0x4
constant IFLA_LINK (line 500) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 501) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 502) | IFLA_STATS = 0x7
constant IFLA_COST (line 503) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 504) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 505) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 506) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 507) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 508) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 509) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 510) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 511) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 512) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 513) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 514) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 515) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 516) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 517) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 518) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 519) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 520) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 521) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 522) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 523) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 524) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 525) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 526) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 527) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 528) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 529) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 530) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 531) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 532) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 533) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 534) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 535) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 536) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 537) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 538) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 539) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 540) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 541) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 542) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 543) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 544) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 545) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 546) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 547) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 548) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 549) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 550) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 551) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 552) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 553) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 554) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 555) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 556) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 557) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 558) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 559) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 560) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 561) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 562) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 563) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 564) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 565) | RTA_UNSPEC = 0x0
constant RTA_DST (line 566) | RTA_DST = 0x1
constant RTA_SRC (line 567) | RTA_SRC = 0x2
constant RTA_IIF (line 568) | RTA_IIF = 0x3
constant RTA_OIF (line 569) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 570) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 571) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 572) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 573) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 574) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 575) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 576) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 577) | RTA_TABLE = 0xf
constant RTA_MARK (line 578) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 579) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 580) | RTA_VIA = 0x12
constant RTA_NEWDST (line 581) | RTA_NEWDST = 0x13
constant RTA_PREF (line 582) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 583) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 584) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 585) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 586) | RTA_PAD = 0x18
constant RTA_UID (line 587) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 588) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 589) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 590) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 591) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 592) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 593) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 594) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 595) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 596) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 597) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 598) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 599) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 600) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 601) | RTN_THROW = 0x9
constant RTN_NAT (line 602) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 603) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 604) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 605) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 606) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 607) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 608) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 609) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 610) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 611) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 612) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 613) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 614) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 615) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 616) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 617) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 618) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 619) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 620) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 621) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 622) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 623) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 624) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 625) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 626) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 627) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 628) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 629) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 630) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 631) | SizeofNdMsg = 0xc
type NlMsghdr (line 634) | type NlMsghdr struct
type NlMsgerr (line 642) | type NlMsgerr struct
type RtGenmsg (line 647) | type RtGenmsg struct
type NlAttr (line 651) | type NlAttr struct
type RtAttr (line 656) | type RtAttr struct
type IfInfomsg (line 661) | type IfInfomsg struct
type IfAddrmsg (line 670) | type IfAddrmsg struct
type IfaCacheinfo (line 678) | type IfaCacheinfo struct
type RtMsg (line 685) | type RtMsg struct
type RtNexthop (line 697) | type RtNexthop struct
type NdUseroptmsg (line 704) | type NdUseroptmsg struct
type NdMsg (line 715) | type NdMsg struct
constant SizeofSockFilter (line 726) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 727) | SizeofSockFprog = 0x10
type SockFilter (line 730) | type SockFilter struct
type SockFprog (line 737) | type SockFprog struct
type InotifyEvent (line 742) | type InotifyEvent struct
constant SizeofInotifyEvent (line 749) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 751) | type PtraceRegs struct
type FdSet (line 761) | type FdSet struct
type Sysinfo_t (line 765) | type Sysinfo_t struct
type Utsname (line 783) | type Utsname struct
type Ustat_t (line 792) | type Ustat_t struct
type EpollEvent (line 800) | type EpollEvent struct
constant AT_EMPTY_PATH (line 807) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 808) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 809) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 810) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 812) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 813) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 814) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 816) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 817) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 819) | AT_EACCESS = 0x200
type PollFd (line 822) | type PollFd struct
constant POLLIN (line 829) | POLLIN = 0x1
constant POLLPRI (line 830) | POLLPRI = 0x2
constant POLLOUT (line 831) | POLLOUT = 0x4
constant POLLRDHUP (line 832) | POLLRDHUP = 0x2000
constant POLLERR (line 833) | POLLERR = 0x8
constant POLLHUP (line 834) | POLLHUP = 0x10
constant POLLNVAL (line 835) | POLLNVAL = 0x20
type Sigset_t (line 838) | type Sigset_t struct
constant _C__NSIG (line 842) | _C__NSIG = 0x80
type SignalfdSiginfo (line 844) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 869) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 871) | type Termios struct
type Winsize (line 882) | type Winsize struct
type Taskstats (line 889) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 939) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 940) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 941) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 942) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 943) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 944) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 945) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 946) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 947) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 948) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 949) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 950) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 951) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 952) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 953) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 956) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 965) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 966) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 967) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 968) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 969) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 970) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 971) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 974) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 981) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 982) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 983) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 984) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 985) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 986) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 987) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 988) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 989) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 990) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 991) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 992) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 993) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 994) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 995) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 996) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 997) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 998) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 999) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1000) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1001) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1002) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1003) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1004) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1007) | type cpuMask
constant _CPU_SETSIZE (line 1010) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1011) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1015) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1016) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1017) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1020) | type PerfEventAttr struct
type PerfEventMmapPage (line 1042) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1069) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1070) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1071) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1072) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1073) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1074) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1075) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1076) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1077) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1078) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1079) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1080) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1081) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1082) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1083) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1084) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1085) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1086) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1087) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1088) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1089) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1090) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1091) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1092) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1093) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1094) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1095) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1099) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1100) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1101) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1102) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1103) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1104) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1106) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1107) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1108) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1109) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1110) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1111) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1112) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1113) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1114) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1115) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1117) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1118) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1119) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1120) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1121) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1122) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1123) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1125) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1126) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1127) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1129) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1130) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1132) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1133) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1134) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1135) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1136) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1137) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1138) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1139) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1140) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1141) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1142) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1144) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1145) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1146) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1147) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1148) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1149) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1150) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1151) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1152) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1153) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1154) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1155) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1157) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1158) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1159) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1160) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1161) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1162) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1163) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1164) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1165) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1166) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1167) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1168) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1169) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1170) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1171) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1172) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1173) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1175) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1176) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1177) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1178) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1180) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1181) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1182) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1183) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1184) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1185) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1186) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1187) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1188) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1189) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1190) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1191) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1192) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1193) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1194) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1195) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1197) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1198) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1199) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1201) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1202) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1203) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1205) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1206) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1207) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1208) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1212) | CBitFieldMaskBit0 = 0x1
constant CBitFieldMaskBit1 (line 1213) | CBitFieldMaskBit1 = 0x2
constant CBitFieldMaskBit2 (line 1214) | CBitFieldMaskBit2 = 0x4
constant CBitFieldMaskBit3 (line 1215) | CBitFieldMaskBit3 = 0x8
constant CBitFieldMaskBit4 (line 1216) | CBitFieldMaskBit4 = 0x10
constant CBitFieldMaskBit5 (line 1217) | CBitFieldMaskBit5 = 0x20
constant CBitFieldMaskBit6 (line 1218) | CBitFieldMaskBit6 = 0x40
constant CBitFieldMaskBit7 (line 1219) | CBitFieldMaskBit7 = 0x80
constant CBitFieldMaskBit8 (line 1220) | CBitFieldMaskBit8 = 0x100
constant CBitFieldMaskBit9 (line 1221) | CBitFieldMaskBit9 = 0x200
constant CBitFieldMaskBit10 (line 1222) | CBitFieldMaskBit10 = 0x400
constant CBitFieldMaskBit11 (line 1223) | CBitFieldMaskBit11 = 0x800
constant CBitFieldMaskBit12 (line 1224) | CBitFieldMaskBit12 = 0x1000
constant CBitFieldMaskBit13 (line 1225) | CBitFieldMaskBit13 = 0x2000
constant CBitFieldMaskBit14 (line 1226) | CBitFieldMaskBit14 = 0x4000
constant CBitFieldMaskBit15 (line 1227) | CBitFieldMaskBit15 = 0x8000
constant CBitFieldMaskBit16 (line 1228) | CBitFieldMaskBit16 = 0x10000
constant CBitFieldMaskBit17 (line 1229) | CBitFieldMaskBit17 = 0x20000
constant CBitFieldMaskBit18 (line 1230) | CBitFieldMaskBit18 = 0x40000
constant CBitFieldMaskBit19 (line 1231) | CBitFieldMaskBit19 = 0x80000
constant CBitFieldMaskBit20 (line 1232) | CBitFieldMaskBit20 = 0x100000
constant CBitFieldMaskBit21 (line 1233) | CBitFieldMaskBit21 = 0x200000
constant CBitFieldMaskBit22 (line 1234) | CBitFieldMaskBit22 = 0x400000
constant CBitFieldMaskBit23 (line 1235) | CBitFieldMaskBit23 = 0x800000
constant CBitFieldMaskBit24 (line 1236) | CBitFieldMaskBit24 = 0x1000000
constant CBitFieldMaskBit25 (line 1237) | CBitFieldMaskBit25 = 0x2000000
constant CBitFieldMaskBit26 (line 1238) | CBitFieldMaskBit26 = 0x4000000
constant CBitFieldMaskBit27 (line 1239) | CBitFieldMaskBit27 = 0x8000000
constant CBitFieldMaskBit28 (line 1240) | CBitFieldMaskBit28 = 0x10000000
constant CBitFieldMaskBit29 (line 1241) | CBitFieldMaskBit29 = 0x20000000
constant CBitFieldMaskBit30 (line 1242) | CBitFieldMaskBit30 = 0x40000000
constant CBitFieldMaskBit31 (line 1243) | CBitFieldMaskBit31 = 0x80000000
constant CBitFieldMaskBit32 (line 1244) | CBitFieldMaskBit32 = 0x100000000
constant CBitFieldMaskBit33 (line 1245) | CBitFieldMaskBit33 = 0x200000000
constant CBitFieldMaskBit34 (line 1246) | CBitFieldMaskBit34 = 0x400000000
constant CBitFieldMaskBit35 (line 1247) | CBitFieldMaskBit35 = 0x800000000
constant CBitFieldMaskBit36 (line 1248) | CBitFieldMaskBit36 = 0x1000000000
constant CBitFieldMaskBit37 (line 1249) | CBitFieldMaskBit37 = 0x2000000000
constant CBitFieldMaskBit38 (line 1250) | CBitFieldMaskBit38 = 0x4000000000
constant CBitFieldMaskBit39 (line 1251) | CBitFieldMaskBit39 = 0x8000000000
constant CBitFieldMaskBit40 (line 1252) | CBitFieldMaskBit40 = 0x10000000000
constant CBitFieldMaskBit41 (line 1253) | CBitFieldMaskBit41 = 0x20000000000
constant CBitFieldMaskBit42 (line 1254) | CBitFieldMaskBit42 = 0x40000000000
constant CBitFieldMaskBit43 (line 1255) | CBitFieldMaskBit43 = 0x80000000000
constant CBitFieldMaskBit44 (line 1256) | CBitFieldMaskBit44 = 0x100000000000
constant CBitFieldMaskBit45 (line 1257) | CBitFieldMaskBit45 = 0x200000000000
constant CBitFieldMaskBit46 (line 1258) | CBitFieldMaskBit46 = 0x400000000000
constant CBitFieldMaskBit47 (line 1259) | CBitFieldMaskBit47 = 0x800000000000
constant CBitFieldMaskBit48 (line 1260) | CBitFieldMaskBit48 = 0x1000000000000
constant CBitFieldMaskBit49 (line 1261) | CBitFieldMaskBit49 = 0x2000000000000
constant CBitFieldMaskBit50 (line 1262) | CBitFieldMaskBit50 = 0x4000000000000
constant CBitFieldMaskBit51 (line 1263) | CBitFieldMaskBit51 = 0x8000000000000
constant CBitFieldMaskBit52 (line 1264) | CBitFieldMaskBit52 = 0x10000000000000
constant CBitFieldMaskBit53 (line 1265) | CBitFieldMaskBit53 = 0x20000000000000
constant CBitFieldMaskBit54 (line 1266) | CBitFieldMaskBit54 = 0x40000000000000
constant CBitFieldMaskBit55 (line 1267) | CBitFieldMaskBit55 = 0x80000000000000
constant CBitFieldMaskBit56 (line 1268) | CBitFieldMaskBit56 = 0x100000000000000
constant CBitFieldMaskBit57 (line 1269) | CBitFieldMaskBit57 = 0x200000000000000
constant CBitFieldMaskBit58 (line 1270) | CBitFieldMaskBit58 = 0x400000000000000
constant CBitFieldMaskBit59 (line 1271) | CBitFieldMaskBit59 = 0x800000000000000
constant CBitFieldMaskBit60 (line 1272) | CBitFieldMaskBit60 = 0x1000000000000000
constant CBitFieldMaskBit61 (line 1273) | CBitFieldMaskBit61 = 0x2000000000000000
constant CBitFieldMaskBit62 (line 1274) | CBitFieldMaskBit62 = 0x4000000000000000
constant CBitFieldMaskBit63 (line 1275) | CBitFieldMaskBit63 = 0x8000000000000000
type SockaddrStorage (line 1278) | type SockaddrStorage struct
type TCPMD5Sig (line 1284) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1293) | type HDDriveCmdHdr struct
type HDGeometry (line 1300) | type HDGeometry struct
type HDDriveID (line 1307) | type HDDriveID struct
type Statfs_t (line 1389) | type Statfs_t struct
constant ST_MANDLOCK (line 1405) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1406) | ST_NOATIME = 0x400
constant ST_NODEV (line 1407) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1408) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1409) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1410) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1411) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1412) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1413) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1416) | type TpacketHdr struct
type Tpacket2Hdr (line 1427) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1440) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1453) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1460) | type TpacketBlockDesc struct
type TpacketBDTS (line 1466) | type TpacketBDTS struct
type TpacketHdrV1 (line 1471) | type TpacketHdrV1 struct
type TpacketReq (line 1481) | type TpacketReq struct
type TpacketReq3 (line 1488) | type TpacketReq3 struct
type TpacketStats (line 1498) | type TpacketStats struct
type TpacketStatsV3 (line 1503) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1509) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1520) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1521) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1522) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1526) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1527) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1528) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1530) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1531) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1535) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1536) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1537) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1538) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1539) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1540) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1544) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1545) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1549) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1550) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1551) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1552) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1553) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1554) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1555) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1556) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1557) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1560) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1567) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1568) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1572) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1573) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1574) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1575) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1576) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1577) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1578) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1579) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1580) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1581) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1582) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1583) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1584) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1585) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1586) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1587) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1588) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1589) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1590) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1591) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1592) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1593) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1594) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1595) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1596) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1597) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1598) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1599) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1600) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1601) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1602) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1603) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1604) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1605) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1606) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1607) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1608) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1609) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1610) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1611) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1612) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1613) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1614) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1615) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1616) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1617) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1618) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1619) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1620) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1621) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1622) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1623) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1624) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1625) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1626) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1627) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1628) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1629) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1630) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1631) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1632) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1633) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1634) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1635) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1636) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1637) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1638) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1639) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1640) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1641) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1642) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1643) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1644) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1645) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1646) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1647) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1648) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1649) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1650) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1651) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1652) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1653) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1654) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1655) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1656) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1657) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1658) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1659) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1660) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1661) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1662) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1663) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1664) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1665) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1666) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1667) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1668) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1669) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1670) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1671) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1672) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1673) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1674) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1675) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1676) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1677) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1678) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1679) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1680) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1681) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1682) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1683) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1684) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1685) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1686) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1687) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1688) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1689) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1690) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1691) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1692) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1693) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1694) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1695) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1696) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1697) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1698) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1699) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1700) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1701) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1702) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1703) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1704) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1705) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1706) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1707) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1708) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1709) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1710) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1711) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1712) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1713) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1714) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1715) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1716) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1717) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1718) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1719) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1720) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1721) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1722) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1723) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1724) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1725) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1726) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1727) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1728) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1729) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1730) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1731) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1732) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1733) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1734) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1735) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1736) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1737) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1738) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1739) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1740) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1741) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1742) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1743) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1744) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1745) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1746) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1747) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1748) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1749) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1750) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1751) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1752) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1753) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1754) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1755) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1756) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1757) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1758) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1759) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1760) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1761) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1762) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1763) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1764) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1765) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1766) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1767) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1768) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1769) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1770) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1771) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1772) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1773) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1774) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1775) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1776) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1777) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1778) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1779) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1780) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1781) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1782) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1783) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1784) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1785) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1786) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1787) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1788) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1789) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1790) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1791) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1792) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1793) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1794) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1795) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1796) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1797) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1798) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1799) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1800) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1801) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1802) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1803) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1804) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1805) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1806) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1807) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1808) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1809) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1810) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1811) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1812) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1813) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1814) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1815) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1816) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1817) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1818) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1819) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1820) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1821) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1822) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1823) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1824) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1825) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1826) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1827) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1828) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1829) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1830) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1831) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1832) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1833) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1834) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1835) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1836) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1837) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1838) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1839) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1840) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1841) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1842) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1843) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1844) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1845) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1846) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1847) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1848) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1849) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1850) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1851) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1852) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1853) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1854) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1855) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1856) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1857) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1858) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1859) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1860) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1861) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1862) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1863) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1864) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1865) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1866) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1867) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1868) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1869) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1870) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1871) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1872) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1873) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1874) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1875) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1876) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1877) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1878) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1879) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1880) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1881) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1882) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1883) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1884) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1885) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1886) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1887) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1888) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1889) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1890) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1891) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1892) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1893) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1894) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1895) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1896) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1897) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1898) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1899) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1900) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1901) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1902) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1903) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1904) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1905) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1906) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1907) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1908) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1909) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1910) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1911) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1912) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1913) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1914) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1915) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1916) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1917) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1918) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1919) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1920) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1921) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1922) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1923) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1924) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1925) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1926) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1927) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1928) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1929) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1930) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1931) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1932) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1933) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1934) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1935) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1936) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1937) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1938) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1939) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1940) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1941) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1942) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1943) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1944) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1945) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1946) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1947) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1948) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1949) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1950) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1951) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1952) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1953) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1954) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1955) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1956) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1957) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1958) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1959) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1960) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1961) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1962) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1963) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1964) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1965) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1966) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1967) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1968) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1969) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1970) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1971) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1972) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1973) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1974) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1975) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1976) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1977) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1978) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1979) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1980) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1981) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1982) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1983) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1984) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1985) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1986) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1987) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1988) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1989) | NFT_NG_RANDOM = 0x1
type RTCTime (line 1992) | type RTCTime struct
type RTCWkAlrm (line 2004) | type RTCWkAlrm struct
type RTCPLLInfo (line 2010) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2020) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2027) | type BlkpgPartition struct
constant BLKPG (line 2037) | BLKPG = 0x20001269
constant BLKPG_ADD_PARTITION (line 2038) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2039) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2040) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2044) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2045) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2046) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2047) | NETNSA_FD = 0x3
type XDPRingOffset (line 2050) | type XDPRingOffset struct
type XDPMmapOffsets (line 2056) | type XDPMmapOffsets struct
type XDPUmemReg (line 2063) | type XDPUmemReg struct
type XDPStatistics (line 2070) | type XDPStatistics struct
type XDPDesc (line 2076) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2083) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2084) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2085) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2086) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2087) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2088) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2089) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2090) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2091) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2092) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2093) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2094) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2095) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2096) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2097) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2098) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2099) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2100) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2101) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2102) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2103) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2104) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2105) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2106) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2107) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2110) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2115) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2116) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2117) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2118) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2119) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2120) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2121) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2122) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2123) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2124) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2125) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2126) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2127) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2128) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2129) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2131) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2132) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2134) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2135) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2136) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2139) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2149) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2159) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2165) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2166) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2167) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2168) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2169) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2170) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2171) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2175) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2176) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2177) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2178) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2179) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2180) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2181) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2182) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2183) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2184) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2185) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2186) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2187) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2188) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2189) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2190) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2191) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2192) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2193) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2194) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2195) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2196) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2199) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2209) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2218) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2229) | type CryptoStatCipher struct
type CryptoStatCompress (line 2238) | type CryptoStatCompress struct
type CryptoStatHash (line 2247) | type CryptoStatHash struct
type CryptoStatKPP (line 2254) | type CryptoStatKPP struct
type CryptoStatRNG (line 2262) | type CryptoStatRNG struct
type CryptoStatLarval (line 2270) | type CryptoStatLarval struct
type CryptoReportLarval (line 2274) | type CryptoReportLarval struct
type CryptoReportHash (line 2278) | type CryptoReportHash struct
type CryptoReportCipher (line 2284) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2291) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2300) | type CryptoReportAEAD struct
type CryptoReportComp (line 2308) | type CryptoReportComp struct
type CryptoReportRNG (line 2312) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2317) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2321) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2325) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2330) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2331) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2332) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2333) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2334) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2335) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2336) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2337) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2338) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2339) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2340) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2341) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2342) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2343) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2344) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2345) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2346) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2347) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2348) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2349) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2350) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2351) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2352) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2353) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2354) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2355) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2356) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2357) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2358) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2359) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2360) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2361) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2362) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2363) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2364) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2365) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2366) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2367) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2368) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2369) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2370) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2371) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2372) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2373) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2374) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2375) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2376) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2377) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2378) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2379) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2380) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2381) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2382) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2383) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2384) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2385) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2386) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2387) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2388) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2389) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2390) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2391) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2392) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2393) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2394) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2395) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2396) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2397) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2398) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2399) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2400) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2401) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2402) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2403) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2404) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2405) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2406) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2407) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2408) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2409) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2410) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2411) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2412) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2413) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2414) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2415) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2416) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2417) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2418) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2419) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2420) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2421) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2422) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2423) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2424) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2425) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2426) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2427) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2428) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2429) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2430) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2431) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2432) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2433) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2434) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2435) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2436) | BPF_OK = 0x0
constant BPF_DROP (line 2437) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2438) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2439) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2440) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2441) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2442) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2443) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2444) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2445) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2446) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2447) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2448) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2449) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2450) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2451) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2452) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2453) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2454) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2455) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2456) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2457) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2458) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2459) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2460) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2461) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2462) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2463) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2464) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2465) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2466) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2467) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2468) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2469) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2470) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2471) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2472) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2473) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2474) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2475) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2476) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2477) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2478) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2481) | type CapUserHeader struct
type CapUserData (line 2486) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2493) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2494) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2495) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2499) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2500) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2501) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2502) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2505) | type LoopInfo struct
type LoopInfo64 (line 2520) | type LoopInfo64 struct
type TIPCSocketAddr (line 2536) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2541) | type TIPCServiceRange struct
type TIPCServiceName (line 2547) | type TIPCServiceName struct
type TIPCSubscr (line 2553) | type TIPCSubscr struct
type TIPCEvent (line 2560) | type TIPCEvent struct
type TIPCGroupReq (line 2568) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2575) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2581) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2587) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2588) | TIPC_NODE_SCOPE = 0x3
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 StatxTimestamp (line 118) | type StatxTimestamp struct
type Statx_t (line 124) | type Statx_t struct
type Dirent (line 148) | type Dirent struct
type Fsid (line 157) | type Fsid struct
type Flock_t (line 161) | type Flock_t struct
type FscryptPolicy (line 171) | type FscryptPolicy struct
type FscryptKey (line 179) | type FscryptKey struct
type KeyctlDHParams (line 185) | type KeyctlDHParams struct
constant FADV_NORMAL (line 192) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 193) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 194) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 195) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 196) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 197) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 200) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 207) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 215) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 220) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 230) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 237) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 243) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 252) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 259) | type RawSockaddrCAN struct
type RawSockaddrALG (line 265) | type RawSockaddrALG struct
type RawSockaddrVM (line 273) | type RawSockaddrVM struct
type RawSockaddrXDP (line 281) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 289) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 291) | type RawSockaddrTIPC struct
type RawSockaddr (line 298) | type RawSockaddr struct
type RawSockaddrAny (line 303) | type RawSockaddrAny struct
type _Socklen (line 308) | type _Socklen
type Linger (line 310) | type Linger struct
type Iovec (line 315) | type Iovec struct
type IPMreq (line 320) | type IPMreq struct
type IPMreqn (line 325) | type IPMreqn struct
type IPv6Mreq (line 331) | type IPv6Mreq struct
type PacketMreq (line 336) | type PacketMreq struct
type Msghdr (line 343) | type Msghdr struct
type Cmsghdr (line 353) | type Cmsghdr struct
type Inet4Pktinfo (line 359) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 365) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 370) | type IPv6MTUInfo struct
type ICMPv6Filter (line 375) | type ICMPv6Filter struct
type Ucred (line 379) | type Ucred struct
type TCPInfo (line 385) | type TCPInfo struct
type CanFilter (line 418) | type CanFilter struct
constant SizeofSockaddrInet4 (line 424) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 425) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 426) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 427) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 428) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 429) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 430) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 431) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 432) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 433) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 434) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 435) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 436) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 437) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 438) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 439) | SizeofLinger = 0x8
constant SizeofIovec (line 440) | SizeofIovec = 0x8
constant SizeofIPMreq (line 441) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 442) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 443) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 444) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 445) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 446) | SizeofCmsghdr = 0xc
constant SizeofInet4Pktinfo (line 447) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 448) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 449) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 450) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 451) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 452) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 453) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 457) | NDA_UNSPEC = 0x0
constant NDA_DST (line 458) | NDA_DST = 0x1
constant NDA_LLADDR (line 459) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 460) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 461) | NDA_PROBES = 0x4
constant NDA_VLAN (line 462) | NDA_VLAN = 0x5
constant NDA_PORT (line 463) | NDA_PORT = 0x6
constant NDA_VNI (line 464) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 465) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 466) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 467) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 468) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 469) | NTF_USE = 0x1
constant NTF_SELF (line 470) | NTF_SELF = 0x2
constant NTF_MASTER (line 471) | NTF_MASTER = 0x4
constant NTF_PROXY (line 472) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 473) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 474) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 475) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 476) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 477) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 478) | NUD_STALE = 0x4
constant NUD_DELAY (line 479) | NUD_DELAY = 0x8
constant NUD_PROBE (line 480) | NUD_PROBE = 0x10
constant NUD_FAILED (line 481) | NUD_FAILED = 0x20
constant NUD_NOARP (line 482) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 483) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 484) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 485) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 486) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 487) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 488) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 489) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 490) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 491) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 492) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 493) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 494) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 495) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 496) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 497) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 498) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 499) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 500) | IFLA_MTU = 0x4
constant IFLA_LINK (line 501) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 502) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 503) | IFLA_STATS = 0x7
constant IFLA_COST (line 504) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 505) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 506) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 507) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 508) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 509) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 510) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 511) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 512) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 513) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 514) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 515) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 516) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 517) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 518) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 519) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 520) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 521) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 522) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 523) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 524) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 525) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 526) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 527) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 528) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 529) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 530) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 531) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 532) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 533) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 534) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 535) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 536) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 537) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 538) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 539) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 540) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 541) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 542) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 543) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 544) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 545) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 546) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 547) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 548) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 549) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 550) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 551) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 552) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 553) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 554) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 555) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 556) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 557) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 558) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 559) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 560) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 561) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 562) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 563) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 564) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 565) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 566) | RTA_UNSPEC = 0x0
constant RTA_DST (line 567) | RTA_DST = 0x1
constant RTA_SRC (line 568) | RTA_SRC = 0x2
constant RTA_IIF (line 569) | RTA_IIF = 0x3
constant RTA_OIF (line 570) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 571) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 572) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 573) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 574) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 575) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 576) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 577) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 578) | RTA_TABLE = 0xf
constant RTA_MARK (line 579) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 580) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 581) | RTA_VIA = 0x12
constant RTA_NEWDST (line 582) | RTA_NEWDST = 0x13
constant RTA_PREF (line 583) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 584) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 585) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 586) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 587) | RTA_PAD = 0x18
constant RTA_UID (line 588) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 589) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 590) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 591) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 592) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 593) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 594) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 595) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 596) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 597) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 598) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 599) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 600) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 601) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 602) | RTN_THROW = 0x9
constant RTN_NAT (line 603) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 604) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 605) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 606) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 607) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 608) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 609) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 610) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 611) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 612) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 613) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 614) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 615) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 616) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 617) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 618) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 619) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 620) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 621) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 622) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 623) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 624) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 625) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 626) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 627) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 628) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 629) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 630) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 631) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 632) | SizeofNdMsg = 0xc
type NlMsghdr (line 635) | type NlMsghdr struct
type NlMsgerr (line 643) | type NlMsgerr struct
type RtGenmsg (line 648) | type RtGenmsg struct
type NlAttr (line 652) | type NlAttr struct
type RtAttr (line 657) | type RtAttr struct
type IfInfomsg (line 662) | type IfInfomsg struct
type IfAddrmsg (line 671) | type IfAddrmsg struct
type IfaCacheinfo (line 679) | type IfaCacheinfo struct
type RtMsg (line 686) | type RtMsg struct
type RtNexthop (line 698) | type RtNexthop struct
type NdUseroptmsg (line 705) | type NdUseroptmsg struct
type NdMsg (line 716) | type NdMsg struct
constant SizeofSockFilter (line 727) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 728) | SizeofSockFprog = 0x8
type SockFilter (line 731) | type SockFilter struct
type SockFprog (line 738) | type SockFprog struct
type InotifyEvent (line 743) | type InotifyEvent struct
constant SizeofInotifyEvent (line 750) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 752) | type PtraceRegs struct
type FdSet (line 762) | type FdSet struct
type Sysinfo_t (line 766) | type Sysinfo_t struct
type Utsname (line 783) | type Utsname struct
type Ustat_t (line 792) | type Ustat_t struct
type EpollEvent (line 799) | type EpollEvent struct
constant AT_EMPTY_PATH (line 807) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 808) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 809) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 810) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 812) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 813) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 814) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 816) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 817) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 819) | AT_EACCESS = 0x200
type PollFd (line 822) | type PollFd struct
constant POLLIN (line 829) | POLLIN = 0x1
constant POLLPRI (line 830) | POLLPRI = 0x2
constant POLLOUT (line 831) | POLLOUT = 0x4
constant POLLRDHUP (line 832) | POLLRDHUP = 0x2000
constant POLLERR (line 833) | POLLERR = 0x8
constant POLLHUP (line 834) | POLLHUP = 0x10
constant POLLNVAL (line 835) | POLLNVAL = 0x20
type Sigset_t (line 838) | type Sigset_t struct
constant _C__NSIG (line 842) | _C__NSIG = 0x80
type SignalfdSiginfo (line 844) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 869) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 871) | type Termios struct
type Winsize (line 882) | type Winsize struct
type Taskstats (line 889) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 941) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 942) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 943) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 944) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 945) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 946) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 947) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 948) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 949) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 950) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 951) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 952) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 953) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 954) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 955) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 958) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 967) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 968) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 969) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 970) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 971) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 972) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 973) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 976) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 983) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 984) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 985) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 986) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 987) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 988) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 989) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 990) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 991) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 992) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 993) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 994) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 995) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 996) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 997) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 998) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 999) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1000) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1001) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1002) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1003) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1004) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1005) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1006) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1009) | type cpuMask
constant _CPU_SETSIZE (line 1012) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1013) | _NCPUBITS = 0x20
constant BDADDR_BREDR (line 1017) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1018) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1019) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1022) | type PerfEventAttr struct
type PerfEventMmapPage (line 1044) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1071) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1072) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1073) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1074) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1075) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1076) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1077) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1078) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1079) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1080) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1081) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1082) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1083) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1084) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1085) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1086) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1087) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1088) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1089) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1090) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1091) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1092) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1093) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1094) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1095) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1096) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1097) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1101) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1102) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1103) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1104) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1105) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1106) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1108) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1109) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1110) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1111) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1112) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1113) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1114) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1115) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1116) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1117) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1119) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1120) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1121) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1122) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1123) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1124) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1125) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1127) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1128) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1129) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1131) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1132) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1134) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1135) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1136) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1137) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1138) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1139) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1140) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1141) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1142) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1143) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1144) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1146) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1147) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1148) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1149) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1150) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1151) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1152) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1153) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1154) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1155) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1156) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1157) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1159) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1160) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1161) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1162) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1163) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1164) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1165) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1166) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1167) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1168) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1169) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1170) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1171) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1172) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1173) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1174) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1175) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1177) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1178) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1179) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1180) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1182) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1183) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1184) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1185) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1186) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1187) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1188) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1189) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1190) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1191) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1192) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1193) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1194) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1195) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1196) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1197) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1199) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1200) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1201) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1203) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1204) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1205) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1207) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1208) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1209) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1210) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1214) | CBitFieldMaskBit0 = 0x1
constant CBitFieldMaskBit1 (line 1215) | CBitFieldMaskBit1 = 0x2
constant CBitFieldMaskBit2 (line 1216) | CBitFieldMaskBit2 = 0x4
constant CBitFieldMaskBit3 (line 1217) | CBitFieldMaskBit3 = 0x8
constant CBitFieldMaskBit4 (line 1218) | CBitFieldMaskBit4 = 0x10
constant CBitFieldMaskBit5 (line 1219) | CBitFieldMaskBit5 = 0x20
constant CBitFieldMaskBit6 (line 1220) | CBitFieldMaskBit6 = 0x40
constant CBitFieldMaskBit7 (line 1221) | CBitFieldMaskBit7 = 0x80
constant CBitFieldMaskBit8 (line 1222) | CBitFieldMaskBit8 = 0x100
constant CBitFieldMaskBit9 (line 1223) | CBitFieldMaskBit9 = 0x200
constant CBitFieldMaskBit10 (line 1224) | CBitFieldMaskBit10 = 0x400
constant CBitFieldMaskBit11 (line 1225) | CBitFieldMaskBit11 = 0x800
constant CBitFieldMaskBit12 (line 1226) | CBitFieldMaskBit12 = 0x1000
constant CBitFieldMaskBit13 (line 1227) | CBitFieldMaskBit13 = 0x2000
constant CBitFieldMaskBit14 (line 1228) | CBitFieldMaskBit14 = 0x4000
constant CBitFieldMaskBit15 (line 1229) | CBitFieldMaskBit15 = 0x8000
constant CBitFieldMaskBit16 (line 1230) | CBitFieldMaskBit16 = 0x10000
constant CBitFieldMaskBit17 (line 1231) | CBitFieldMaskBit17 = 0x20000
constant CBitFieldMaskBit18 (line 1232) | CBitFieldMaskBit18 = 0x40000
constant CBitFieldMaskBit19 (line 1233) | CBitFieldMaskBit19 = 0x80000
constant CBitFieldMaskBit20 (line 1234) | CBitFieldMaskBit20 = 0x100000
constant CBitFieldMaskBit21 (line 1235) | CBitFieldMaskBit21 = 0x200000
constant CBitFieldMaskBit22 (line 1236) | CBitFieldMaskBit22 = 0x400000
constant CBitFieldMaskBit23 (line 1237) | CBitFieldMaskBit23 = 0x800000
constant CBitFieldMaskBit24 (line 1238) | CBitFieldMaskBit24 = 0x1000000
constant CBitFieldMaskBit25 (line 1239) | CBitFieldMaskBit25 = 0x2000000
constant CBitFieldMaskBit26 (line 1240) | CBitFieldMaskBit26 = 0x4000000
constant CBitFieldMaskBit27 (line 1241) | CBitFieldMaskBit27 = 0x8000000
constant CBitFieldMaskBit28 (line 1242) | CBitFieldMaskBit28 = 0x10000000
constant CBitFieldMaskBit29 (line 1243) | CBitFieldMaskBit29 = 0x20000000
constant CBitFieldMaskBit30 (line 1244) | CBitFieldMaskBit30 = 0x40000000
constant CBitFieldMaskBit31 (line 1245) | CBitFieldMaskBit31 = 0x80000000
constant CBitFieldMaskBit32 (line 1246) | CBitFieldMaskBit32 = 0x100000000
constant CBitFieldMaskBit33 (line 1247) | CBitFieldMaskBit33 = 0x200000000
constant CBitFieldMaskBit34 (line 1248) | CBitFieldMaskBit34 = 0x400000000
constant CBitFieldMaskBit35 (line 1249) | CBitFieldMaskBit35 = 0x800000000
constant CBitFieldMaskBit36 (line 1250) | CBitFieldMaskBit36 = 0x1000000000
constant CBitFieldMaskBit37 (line 1251) | CBitFieldMaskBit37 = 0x2000000000
constant CBitFieldMaskBit38 (line 1252) | CBitFieldMaskBit38 = 0x4000000000
constant CBitFieldMaskBit39 (line 1253) | CBitFieldMaskBit39 = 0x8000000000
constant CBitFieldMaskBit40 (line 1254) | CBitFieldMaskBit40 = 0x10000000000
constant CBitFieldMaskBit41 (line 1255) | CBitFieldMaskBit41 = 0x20000000000
constant CBitFieldMaskBit42 (line 1256) | CBitFieldMaskBit42 = 0x40000000000
constant CBitFieldMaskBit43 (line 1257) | CBitFieldMaskBit43 = 0x80000000000
constant CBitFieldMaskBit44 (line 1258) | CBitFieldMaskBit44 = 0x100000000000
constant CBitFieldMaskBit45 (line 1259) | CBitFieldMaskBit45 = 0x200000000000
constant CBitFieldMaskBit46 (line 1260) | CBitFieldMaskBit46 = 0x400000000000
constant CBitFieldMaskBit47 (line 1261) | CBitFieldMaskBit47 = 0x800000000000
constant CBitFieldMaskBit48 (line 1262) | CBitFieldMaskBit48 = 0x1000000000000
constant CBitFieldMaskBit49 (line 1263) | CBitFieldMaskBit49 = 0x2000000000000
constant CBitFieldMaskBit50 (line 1264) | CBitFieldMaskBit50 = 0x4000000000000
constant CBitFieldMaskBit51 (line 1265) | CBitFieldMaskBit51 = 0x8000000000000
constant CBitFieldMaskBit52 (line 1266) | CBitFieldMaskBit52 = 0x10000000000000
constant CBitFieldMaskBit53 (line 1267) | CBitFieldMaskBit53 = 0x20000000000000
constant CBitFieldMaskBit54 (line 1268) | CBitFieldMaskBit54 = 0x40000000000000
constant CBitFieldMaskBit55 (line 1269) | CBitFieldMaskBit55 = 0x80000000000000
constant CBitFieldMaskBit56 (line 1270) | CBitFieldMaskBit56 = 0x100000000000000
constant CBitFieldMaskBit57 (line 1271) | CBitFieldMaskBit57 = 0x200000000000000
constant CBitFieldMaskBit58 (line 1272) | CBitFieldMaskBit58 = 0x400000000000000
constant CBitFieldMaskBit59 (line 1273) | CBitFieldMaskBit59 = 0x800000000000000
constant CBitFieldMaskBit60 (line 1274) | CBitFieldMaskBit60 = 0x1000000000000000
constant CBitFieldMaskBit61 (line 1275) | CBitFieldMaskBit61 = 0x2000000000000000
constant CBitFieldMaskBit62 (line 1276) | CBitFieldMaskBit62 = 0x4000000000000000
constant CBitFieldMaskBit63 (line 1277) | CBitFieldMaskBit63 = 0x8000000000000000
type SockaddrStorage (line 1280) | type SockaddrStorage struct
type TCPMD5Sig (line 1286) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1295) | type HDDriveCmdHdr struct
type HDGeometry (line 1302) | type HDGeometry struct
type HDDriveID (line 1309) | type HDDriveID struct
type Statfs_t (line 1391) | type Statfs_t struct
constant ST_MANDLOCK (line 1409) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1410) | ST_NOATIME = 0x400
constant ST_NODEV (line 1411) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1412) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1413) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1414) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1415) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1416) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1417) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1420) | type TpacketHdr struct
type Tpacket2Hdr (line 1430) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1443) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1456) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1463) | type TpacketBlockDesc struct
type TpacketBDTS (line 1469) | type TpacketBDTS struct
type TpacketHdrV1 (line 1474) | type TpacketHdrV1 struct
type TpacketReq (line 1484) | type TpacketReq struct
type TpacketReq3 (line 1491) | type TpacketReq3 struct
type TpacketStats (line 1501) | type TpacketStats struct
type TpacketStatsV3 (line 1506) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1512) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1523) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1524) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1525) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1529) | SizeofTpacketHdr = 0x18
constant SizeofTpacket2Hdr (line 1530) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1531) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1533) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1534) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1538) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1539) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1540) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1541) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1542) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1543) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1547) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1548) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1552) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1553) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1554) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1555) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1556) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1557) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1558) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1559) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1560) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1563) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1570) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1571) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1575) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1576) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1577) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1578) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1579) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1580) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1581) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1582) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1583) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1584) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1585) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1586) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1587) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1588) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1589) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1590) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1591) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1592) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1593) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1594) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1595) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1596) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1597) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1598) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1599) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1600) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1601) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1602) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1603) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1604) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1605) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1606) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1607) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1608) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1609) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1610) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1611) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1612) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1613) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1614) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1615) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1616) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1617) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1618) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1619) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1620) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1621) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1622) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1623) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1624) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1625) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1626) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1627) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1628) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1629) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1630) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1631) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1632) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1633) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1634) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1635) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1636) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1637) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1638) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1639) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1640) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1641) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1642) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1643) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1644) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1645) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1646) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1647) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1648) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1649) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1650) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1651) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1652) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1653) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1654) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1655) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1656) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1657) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1658) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1659) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1660) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1661) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1662) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1663) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1664) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1665) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1666) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1667) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1668) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1669) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1670) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1671) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1672) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1673) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1674) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1675) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1676) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1677) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1678) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1679) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1680) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1681) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1682) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1683) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1684) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1685) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1686) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1687) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1688) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1689) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1690) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1691) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1692) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1693) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1694) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1695) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1696) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1697) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1698) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1699) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1700) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1701) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1702) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1703) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1704) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1705) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1706) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1707) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1708) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1709) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1710) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1711) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1712) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1713) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1714) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1715) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1716) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1717) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1718) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1719) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1720) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1721) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1722) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1723) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1724) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1725) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1726) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1727) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1728) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1729) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1730) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1731) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1732) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1733) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1734) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1735) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1736) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1737) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1738) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1739) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1740) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1741) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1742) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1743) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1744) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1745) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1746) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1747) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1748) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1749) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1750) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1751) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1752) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1753) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1754) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1755) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1756) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1757) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1758) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1759) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1760) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1761) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1762) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1763) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1764) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1765) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1766) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1767) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1768) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1769) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1770) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1771) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1772) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1773) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1774) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1775) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1776) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1777) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1778) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1779) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1780) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1781) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1782) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1783) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1784) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1785) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1786) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1787) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1788) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1789) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1790) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1791) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1792) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1793) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1794) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1795) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1796) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1797) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1798) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1799) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1800) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1801) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1802) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1803) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1804) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1805) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1806) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1807) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1808) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1809) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1810) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1811) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1812) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1813) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1814) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1815) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1816) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1817) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1818) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1819) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1820) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1821) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1822) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1823) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1824) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1825) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1826) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1827) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1828) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1829) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1830) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1831) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1832) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1833) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1834) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1835) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1836) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1837) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1838) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1839) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1840) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1841) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1842) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1843) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1844) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1845) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1846) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1847) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1848) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1849) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1850) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1851) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1852) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1853) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1854) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1855) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1856) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1857) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1858) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1859) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1860) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1861) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1862) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1863) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1864) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1865) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1866) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1867) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1868) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1869) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1870) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1871) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1872) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1873) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1874) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1875) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1876) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1877) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1878) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1879) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1880) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1881) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1882) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1883) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1884) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1885) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1886) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1887) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1888) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1889) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1890) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1891) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1892) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1893) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1894) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1895) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1896) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1897) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1898) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1899) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1900) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1901) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1902) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1903) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1904) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1905) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1906) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1907) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1908) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1909) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1910) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1911) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1912) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1913) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1914) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1915) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1916) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1917) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1918) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1919) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1920) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1921) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1922) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1923) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1924) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1925) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1926) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1927) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1928) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1929) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1930) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1931) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1932) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1933) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1934) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1935) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1936) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1937) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1938) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1939) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1940) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1941) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1942) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1943) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1944) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1945) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1946) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1947) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1948) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1949) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1950) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1951) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1952) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1953) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1954) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1955) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1956) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1957) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1958) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1959) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1960) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1961) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1962) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1963) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1964) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1965) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1966) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1967) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1968) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1969) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1970) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1971) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1972) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1973) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1974) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1975) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1976) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1977) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1978) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1979) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1980) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1981) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1982) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1983) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1984) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1985) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1986) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1987) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1988) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1989) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1990) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1991) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1992) | NFT_NG_RANDOM = 0x1
type RTCTime (line 1995) | type RTCTime struct
type RTCWkAlrm (line 2007) | type RTCWkAlrm struct
type RTCPLLInfo (line 2013) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2023) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2030) | type BlkpgPartition struct
constant BLKPG (line 2040) | BLKPG = 0x20001269
constant BLKPG_ADD_PARTITION (line 2041) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2042) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2043) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2047) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2048) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2049) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2050) | NETNSA_FD = 0x3
type XDPRingOffset (line 2053) | type XDPRingOffset struct
type XDPMmapOffsets (line 2059) | type XDPMmapOffsets struct
type XDPUmemReg (line 2066) | type XDPUmemReg struct
type XDPStatistics (line 2073) | type XDPStatistics struct
type XDPDesc (line 2079) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2086) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2087) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2088) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2089) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2090) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2091) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2092) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2093) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2094) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2095) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2096) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2097) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2098) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2099) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2100) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2101) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2102) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2103) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2104) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2105) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2106) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2107) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2108) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2109) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2110) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2113) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2118) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2119) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2120) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2121) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2122) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2123) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2124) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2125) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2126) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2127) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2128) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2129) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2130) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2131) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2132) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2134) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2135) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2137) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2138) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2139) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2142) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2152) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2162) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2168) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2169) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2170) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2171) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2172) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2173) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2174) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2178) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2179) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2180) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2181) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2182) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2183) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2184) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2185) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2186) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2187) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2188) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2189) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2190) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2191) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2192) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2193) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2194) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2195) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2196) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2197) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2198) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2199) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2202) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2212) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2221) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2232) | type CryptoStatCipher struct
type CryptoStatCompress (line 2241) | type CryptoStatCompress struct
type CryptoStatHash (line 2250) | type CryptoStatHash struct
type CryptoStatKPP (line 2257) | type CryptoStatKPP struct
type CryptoStatRNG (line 2265) | type CryptoStatRNG struct
type CryptoStatLarval (line 2273) | type CryptoStatLarval struct
type CryptoReportLarval (line 2277) | type CryptoReportLarval struct
type CryptoReportHash (line 2281) | type CryptoReportHash struct
type CryptoReportCipher (line 2287) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2294) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2303) | type CryptoReportAEAD struct
type CryptoReportComp (line 2311) | type CryptoReportComp struct
type CryptoReportRNG (line 2315) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2320) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2324) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2328) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2333) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2334) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2335) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2336) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2337) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2338) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2339) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2340) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2341) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2342) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2343) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2344) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2345) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2346) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2347) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2348) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2349) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2350) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2351) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2352) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2353) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2354) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2355) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2356) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2357) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2358) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2359) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2360) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2361) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2362) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2363) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2364) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2365) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2366) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2367) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2368) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2369) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2370) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2371) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2372) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2373) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2374) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2375) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2376) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2377) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2378) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2379) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2380) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2381) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2382) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2383) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2384) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2385) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2386) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2387) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2388) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2389) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2390) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2391) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2392) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2393) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2394) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2395) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2396) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2397) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2398) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2399) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2400) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2401) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2402) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2403) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2404) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2405) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2406) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2407) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2408) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2409) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2410) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2411) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2412) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2413) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2414) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2415) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2416) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2417) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2418) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2419) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2420) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2421) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2422) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2423) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2424) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2425) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2426) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2427) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2428) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2429) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2430) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2431) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2432) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2433) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2434) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2435) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2436) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2437) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2438) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2439) | BPF_OK = 0x0
constant BPF_DROP (line 2440) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2441) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2442) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2443) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2444) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2445) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2446) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2447) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2448) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2449) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2450) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2451) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2452) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2453) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2454) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2455) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2456) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2457) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2458) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2459) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2460) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2461) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2462) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2463) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2464) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2465) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2466) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2467) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2468) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2469) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2470) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2471) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2472) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2473) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2474) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2475) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2476) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2477) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2478) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2479) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2480) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2481) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2484) | type CapUserHeader struct
type CapUserData (line 2489) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2496) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2497) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2498) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2502) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2503) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2504) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2505) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2508) | type LoopInfo struct
type LoopInfo64 (line 2522) | type LoopInfo64 struct
type TIPCSocketAddr (line 2538) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2543) | type TIPCServiceRange struct
type TIPCServiceName (line 2549) | type TIPCServiceName struct
type TIPCSubscr (line 2555) | type TIPCSubscr struct
type TIPCEvent (line 2562) | type TIPCEvent struct
type TIPCGroupReq (line 2570) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2577) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2583) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2589) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2590) | TIPC_NODE_SCOPE = 0x3
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 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 StatxTimestamp (line 118) | type StatxTimestamp struct
type Statx_t (line 124) | type Statx_t struct
type Dirent (line 148) | type Dirent struct
type Fsid (line 157) | type Fsid struct
type Flock_t (line 161) | type Flock_t struct
type FscryptPolicy (line 170) | type FscryptPolicy struct
type FscryptKey (line 178) | type FscryptKey struct
type KeyctlDHParams (line 184) | type KeyctlDHParams struct
constant FADV_NORMAL (line 191) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 192) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 193) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 194) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 195) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 196) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 199) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 206) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 214) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 219) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 229) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 236) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 242) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 251) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 258) | type RawSockaddrCAN struct
type RawSockaddrALG (line 264) | type RawSockaddrALG struct
type RawSockaddrVM (line 272) | type RawSockaddrVM struct
type RawSockaddrXDP (line 280) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 288) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 290) | type RawSockaddrTIPC struct
type RawSockaddr (line 297) | type RawSockaddr struct
type RawSockaddrAny (line 302) | type RawSockaddrAny struct
type _Socklen (line 307) | type _Socklen
type Linger (line 309) | type Linger struct
type Iovec (line 314) | type Iovec struct
type IPMreq (line 319) | type IPMreq struct
type IPMreqn (line 324) | type IPMreqn struct
type IPv6Mreq (line 330) | type IPv6Mreq struct
type PacketMreq (line 335) | type PacketMreq struct
type Msghdr (line 342) | type Msghdr struct
type Cmsghdr (line 353) | type Cmsghdr struct
type Inet4Pktinfo (line 359) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 365) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 370) | type IPv6MTUInfo struct
type ICMPv6Filter (line 375) | type ICMPv6Filter struct
type Ucred (line 379) | type Ucred struct
type TCPInfo (line 385) | type TCPInfo struct
type CanFilter (line 418) | type CanFilter struct
constant SizeofSockaddrInet4 (line 424) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 425) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 426) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 427) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 428) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 429) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 430) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 431) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 432) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 433) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 434) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 435) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 436) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 437) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 438) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 439) | SizeofLinger = 0x8
constant SizeofIovec (line 440) | SizeofIovec = 0x10
constant SizeofIPMreq (line 441) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 442) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 443) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 444) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 445) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 446) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 447) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 448) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 449) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 450) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 451) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 452) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 453) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 457) | NDA_UNSPEC = 0x0
constant NDA_DST (line 458) | NDA_DST = 0x1
constant NDA_LLADDR (line 459) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 460) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 461) | NDA_PROBES = 0x4
constant NDA_VLAN (line 462) | NDA_VLAN = 0x5
constant NDA_PORT (line 463) | NDA_PORT = 0x6
constant NDA_VNI (line 464) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 465) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 466) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 467) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 468) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 469) | NTF_USE = 0x1
constant NTF_SELF (line 470) | NTF_SELF = 0x2
constant NTF_MASTER (line 471) | NTF_MASTER = 0x4
constant NTF_PROXY (line 472) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 473) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 474) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 475) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 476) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 477) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 478) | NUD_STALE = 0x4
constant NUD_DELAY (line 479) | NUD_DELAY = 0x8
constant NUD_PROBE (line 480) | NUD_PROBE = 0x10
constant NUD_FAILED (line 481) | NUD_FAILED = 0x20
constant NUD_NOARP (line 482) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 483) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 484) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 485) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 486) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 487) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 488) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 489) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 490) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 491) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 492) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 493) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 494) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 495) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 496) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 497) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 498) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 499) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 500) | IFLA_MTU = 0x4
constant IFLA_LINK (line 501) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 502) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 503) | IFLA_STATS = 0x7
constant IFLA_COST (line 504) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 505) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 506) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 507) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 508) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 509) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 510) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 511) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 512) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 513) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 514) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 515) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 516) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 517) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 518) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 519) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 520) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 521) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 522) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 523) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 524) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 525) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 526) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 527) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 528) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 529) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 530) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 531) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 532) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 533) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 534) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 535) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 536) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 537) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 538) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 539) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 540) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 541) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 542) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 543) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 544) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 545) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 546) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 547) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 548) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 549) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 550) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 551) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 552) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 553) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 554) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 555) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 556) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 557) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 558) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 559) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 560) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 561) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 562) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 563) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 564) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 565) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 566) | RTA_UNSPEC = 0x0
constant RTA_DST (line 567) | RTA_DST = 0x1
constant RTA_SRC (line 568) | RTA_SRC = 0x2
constant RTA_IIF (line 569) | RTA_IIF = 0x3
constant RTA_OIF (line 570) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 571) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 572) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 573) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 574) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 575) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 576) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 577) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 578) | RTA_TABLE = 0xf
constant RTA_MARK (line 579) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 580) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 581) | RTA_VIA = 0x12
constant RTA_NEWDST (line 582) | RTA_NEWDST = 0x13
constant RTA_PREF (line 583) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 584) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 585) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 586) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 587) | RTA_PAD = 0x18
constant RTA_UID (line 588) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 589) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 590) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 591) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 592) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 593) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 594) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 595) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 596) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 597) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 598) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 599) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 600) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 601) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 602) | RTN_THROW = 0x9
constant RTN_NAT (line 603) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 604) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 605) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 606) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 607) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 608) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 609) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 610) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 611) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 612) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 613) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 614) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 615) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 616) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 617) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 618) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 619) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 620) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 621) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 622) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 623) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 624) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 625) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 626) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 627) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 628) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 629) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 630) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 631) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 632) | SizeofNdMsg = 0xc
type NlMsghdr (line 635) | type NlMsghdr struct
type NlMsgerr (line 643) | type NlMsgerr struct
type RtGenmsg (line 648) | type RtGenmsg struct
type NlAttr (line 652) | type NlAttr struct
type RtAttr (line 657) | type RtAttr struct
type IfInfomsg (line 662) | type IfInfomsg struct
type IfAddrmsg (line 671) | type IfAddrmsg struct
type IfaCacheinfo (line 679) | type IfaCacheinfo struct
type RtMsg (line 686) | type RtMsg struct
type RtNexthop (line 698) | type RtNexthop struct
type NdUseroptmsg (line 705) | type NdUseroptmsg struct
type NdMsg (line 716) | type NdMsg struct
constant SizeofSockFilter (line 727) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 728) | SizeofSockFprog = 0x10
type SockFilter (line 731) | type SockFilter struct
type SockFprog (line 738) | type SockFprog struct
type InotifyEvent (line 743) | type InotifyEvent struct
constant SizeofInotifyEvent (line 750) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 752) | type PtraceRegs struct
type FdSet (line 768) | type FdSet struct
type Sysinfo_t (line 772) | type Sysinfo_t struct
type Utsname (line 790) | type Utsname struct
type Ustat_t (line 799) | type Ustat_t struct
type EpollEvent (line 807) | type EpollEvent struct
constant AT_EMPTY_PATH (line 815) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 816) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 817) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 818) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 820) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 821) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 822) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 824) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 825) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 827) | AT_EACCESS = 0x200
type PollFd (line 830) | type PollFd struct
constant POLLIN (line 837) | POLLIN = 0x1
constant POLLPRI (line 838) | POLLPRI = 0x2
constant POLLOUT (line 839) | POLLOUT = 0x4
constant POLLRDHUP (line 840) | POLLRDHUP = 0x2000
constant POLLERR (line 841) | POLLERR = 0x8
constant POLLHUP (line 842) | POLLHUP = 0x10
constant POLLNVAL (line 843) | POLLNVAL = 0x20
type Sigset_t (line 846) | type Sigset_t struct
constant _C__NSIG (line 850) | _C__NSIG = 0x41
type SignalfdSiginfo (line 852) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 877) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 879) | type Termios struct
type Winsize (line 890) | type Winsize struct
type Taskstats (line 897) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 947) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 948) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 949) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 950) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 951) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 952) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 953) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 954) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 955) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 956) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 957) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 958) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 959) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 960) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 961) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 964) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 973) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 974) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 975) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 976) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 977) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 978) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 979) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 982) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 989) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 990) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 991) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 992) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 993) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 994) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 995) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 996) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 997) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 998) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 999) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 1000) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 1001) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 1002) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 1003) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 1004) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 1005) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1006) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1007) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1008) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1009) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1010) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1011) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1012) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1015) | type cpuMask
constant _CPU_SETSIZE (line 1018) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1019) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1023) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1024) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1025) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1028) | type PerfEventAttr struct
type PerfEventMmapPage (line 1050) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1077) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1078) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1079) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1080) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1081) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1082) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1083) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1084) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1085) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1086) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1087) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1088) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1089) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1090) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1091) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1092) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1093) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1094) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1095) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1096) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1097) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1098) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1099) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1100) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1101) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1102) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1103) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1107) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1108) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1109) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1110) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1111) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1112) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1114) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1115) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1116) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1117) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1118) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1119) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1120) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1121) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1122) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1123) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1125) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1126) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1127) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1128) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1129) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1130) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1131) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1133) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1134) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1135) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1137) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1138) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1140) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1141) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1142) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1143) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1144) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1145) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1146) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1147) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1148) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1149) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1150) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1152) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1153) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1154) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1155) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1156) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1157) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1158) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1159) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1160) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1161) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1162) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1163) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1165) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1166) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1167) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1168) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1169) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1170) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1171) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1172) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1173) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1174) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1175) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1176) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1177) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1178) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1179) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1180) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1181) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1183) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1184) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1185) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1186) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1188) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1189) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1190) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1191) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1192) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1193) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1194) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1195) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1196) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1197) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1198) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1199) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1200) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1201) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1202) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1203) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1205) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1206) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1207) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1209) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1210) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1211) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1213) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1214) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1215) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1216) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1220) | CBitFieldMaskBit0 = 0x8000000000000000
constant CBitFieldMaskBit1 (line 1221) | CBitFieldMaskBit1 = 0x4000000000000000
constant CBitFieldMaskBit2 (line 1222) | CBitFieldMaskBit2 = 0x2000000000000000
constant CBitFieldMaskBit3 (line 1223) | CBitFieldMaskBit3 = 0x1000000000000000
constant CBitFieldMaskBit4 (line 1224) | CBitFieldMaskBit4 = 0x800000000000000
constant CBitFieldMaskBit5 (line 1225) | CBitFieldMaskBit5 = 0x400000000000000
constant CBitFieldMaskBit6 (line 1226) | CBitFieldMaskBit6 = 0x200000000000000
constant CBitFieldMaskBit7 (line 1227) | CBitFieldMaskBit7 = 0x100000000000000
constant CBitFieldMaskBit8 (line 1228) | CBitFieldMaskBit8 = 0x80000000000000
constant CBitFieldMaskBit9 (line 1229) | CBitFieldMaskBit9 = 0x40000000000000
constant CBitFieldMaskBit10 (line 1230) | CBitFieldMaskBit10 = 0x20000000000000
constant CBitFieldMaskBit11 (line 1231) | CBitFieldMaskBit11 = 0x10000000000000
constant CBitFieldMaskBit12 (line 1232) | CBitFieldMaskBit12 = 0x8000000000000
constant CBitFieldMaskBit13 (line 1233) | CBitFieldMaskBit13 = 0x4000000000000
constant CBitFieldMaskBit14 (line 1234) | CBitFieldMaskBit14 = 0x2000000000000
constant CBitFieldMaskBit15 (line 1235) | CBitFieldMaskBit15 = 0x1000000000000
constant CBitFieldMaskBit16 (line 1236) | CBitFieldMaskBit16 = 0x800000000000
constant CBitFieldMaskBit17 (line 1237) | CBitFieldMaskBit17 = 0x400000000000
constant CBitFieldMaskBit18 (line 1238) | CBitFieldMaskBit18 = 0x200000000000
constant CBitFieldMaskBit19 (line 1239) | CBitFieldMaskBit19 = 0x100000000000
constant CBitFieldMaskBit20 (line 1240) | CBitFieldMaskBit20 = 0x80000000000
constant CBitFieldMaskBit21 (line 1241) | CBitFieldMaskBit21 = 0x40000000000
constant CBitFieldMaskBit22 (line 1242) | CBitFieldMaskBit22 = 0x20000000000
constant CBitFieldMaskBit23 (line 1243) | CBitFieldMaskBit23 = 0x10000000000
constant CBitFieldMaskBit24 (line 1244) | CBitFieldMaskBit24 = 0x8000000000
constant CBitFieldMaskBit25 (line 1245) | CBitFieldMaskBit25 = 0x4000000000
constant CBitFieldMaskBit26 (line 1246) | CBitFieldMaskBit26 = 0x2000000000
constant CBitFieldMaskBit27 (line 1247) | CBitFieldMaskBit27 = 0x1000000000
constant CBitFieldMaskBit28 (line 1248) | CBitFieldMaskBit28 = 0x800000000
constant CBitFieldMaskBit29 (line 1249) | CBitFieldMaskBit29 = 0x400000000
constant CBitFieldMaskBit30 (line 1250) | CBitFieldMaskBit30 = 0x200000000
constant CBitFieldMaskBit31 (line 1251) | CBitFieldMaskBit31 = 0x100000000
constant CBitFieldMaskBit32 (line 1252) | CBitFieldMaskBit32 = 0x80000000
constant CBitFieldMaskBit33 (line 1253) | CBitFieldMaskBit33 = 0x40000000
constant CBitFieldMaskBit34 (line 1254) | CBitFieldMaskBit34 = 0x20000000
constant CBitFieldMaskBit35 (line 1255) | CBitFieldMaskBit35 = 0x10000000
constant CBitFieldMaskBit36 (line 1256) | CBitFieldMaskBit36 = 0x8000000
constant CBitFieldMaskBit37 (line 1257) | CBitFieldMaskBit37 = 0x4000000
constant CBitFieldMaskBit38 (line 1258) | CBitFieldMaskBit38 = 0x2000000
constant CBitFieldMaskBit39 (line 1259) | CBitFieldMaskBit39 = 0x1000000
constant CBitFieldMaskBit40 (line 1260) | CBitFieldMaskBit40 = 0x800000
constant CBitFieldMaskBit41 (line 1261) | CBitFieldMaskBit41 = 0x400000
constant CBitFieldMaskBit42 (line 1262) | CBitFieldMaskBit42 = 0x200000
constant CBitFieldMaskBit43 (line 1263) | CBitFieldMaskBit43 = 0x100000
constant CBitFieldMaskBit44 (line 1264) | CBitFieldMaskBit44 = 0x80000
constant CBitFieldMaskBit45 (line 1265) | CBitFieldMaskBit45 = 0x40000
constant CBitFieldMaskBit46 (line 1266) | CBitFieldMaskBit46 = 0x20000
constant CBitFieldMaskBit47 (line 1267) | CBitFieldMaskBit47 = 0x10000
constant CBitFieldMaskBit48 (line 1268) | CBitFieldMaskBit48 = 0x8000
constant CBitFieldMaskBit49 (line 1269) | CBitFieldMaskBit49 = 0x4000
constant CBitFieldMaskBit50 (line 1270) | CBitFieldMaskBit50 = 0x2000
constant CBitFieldMaskBit51 (line 1271) | CBitFieldMaskBit51 = 0x1000
constant CBitFieldMaskBit52 (line 1272) | CBitFieldMaskBit52 = 0x800
constant CBitFieldMaskBit53 (line 1273) | CBitFieldMaskBit53 = 0x400
constant CBitFieldMaskBit54 (line 1274) | CBitFieldMaskBit54 = 0x200
constant CBitFieldMaskBit55 (line 1275) | CBitFieldMaskBit55 = 0x100
constant CBitFieldMaskBit56 (line 1276) | CBitFieldMaskBit56 = 0x80
constant CBitFieldMaskBit57 (line 1277) | CBitFieldMaskBit57 = 0x40
constant CBitFieldMaskBit58 (line 1278) | CBitFieldMaskBit58 = 0x20
constant CBitFieldMaskBit59 (line 1279) | CBitFieldMaskBit59 = 0x10
constant CBitFieldMaskBit60 (line 1280) | CBitFieldMaskBit60 = 0x8
constant CBitFieldMaskBit61 (line 1281) | CBitFieldMaskBit61 = 0x4
constant CBitFieldMaskBit62 (line 1282) | CBitFieldMaskBit62 = 0x2
constant CBitFieldMaskBit63 (line 1283) | CBitFieldMaskBit63 = 0x1
type SockaddrStorage (line 1286) | type SockaddrStorage struct
type TCPMD5Sig (line 1292) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1301) | type HDDriveCmdHdr struct
type HDGeometry (line 1308) | type HDGeometry struct
type HDDriveID (line 1315) | type HDDriveID struct
type Statfs_t (line 1397) | type Statfs_t struct
constant ST_MANDLOCK (line 1413) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1414) | ST_NOATIME = 0x400
constant ST_NODEV (line 1415) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1416) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1417) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1418) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1419) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1420) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1421) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1424) | type TpacketHdr struct
type Tpacket2Hdr (line 1435) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1448) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1461) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1468) | type TpacketBlockDesc struct
type TpacketBDTS (line 1474) | type TpacketBDTS struct
type TpacketHdrV1 (line 1479) | type TpacketHdrV1 struct
type TpacketReq (line 1489) | type TpacketReq struct
type TpacketReq3 (line 1496) | type TpacketReq3 struct
type TpacketStats (line 1506) | type TpacketStats struct
type TpacketStatsV3 (line 1511) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1517) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1528) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1529) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1530) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1534) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1535) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1536) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1538) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1539) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1543) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1544) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1545) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1546) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1547) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1548) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1552) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1553) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1557) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1558) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1559) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1560) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1561) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1562) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1563) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1564) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1565) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1568) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1575) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1576) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1580) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1581) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1582) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1583) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1584) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1585) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1586) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1587) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1588) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1589) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1590) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1591) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1592) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1593) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1594) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1595) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1596) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1597) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1598) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1599) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1600) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1601) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1602) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1603) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1604) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1605) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1606) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1607) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1608) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1609) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1610) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1611) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1612) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1613) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1614) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1615) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1616) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1617) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1618) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1619) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1620) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1621) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1622) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1623) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1624) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1625) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1626) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1627) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1628) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1629) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1630) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1631) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1632) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1633) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1634) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1635) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1636) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1637) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1638) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1639) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1640) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1641) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1642) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1643) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1644) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1645) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1646) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1647) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1648) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1649) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1650) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1651) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1652) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1653) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1654) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1655) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1656) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1657) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1658) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1659) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1660) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1661) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1662) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1663) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1664) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1665) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1666) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1667) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1668) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1669) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1670) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1671) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1672) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1673) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1674) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1675) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1676) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1677) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1678) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1679) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1680) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1681) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1682) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1683) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1684) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1685) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1686) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1687) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1688) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1689) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1690) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1691) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1692) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1693) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1694) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1695) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1696) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1697) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1698) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1699) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1700) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1701) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1702) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1703) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1704) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1705) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1706) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1707) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1708) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1709) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1710) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1711) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1712) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1713) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1714) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1715) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1716) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1717) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1718) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1719) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1720) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1721) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1722) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1723) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1724) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1725) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1726) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1727) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1728) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1729) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1730) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1731) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1732) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1733) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1734) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1735) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1736) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1737) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1738) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1739) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1740) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1741) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1742) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1743) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1744) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1745) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1746) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1747) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1748) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1749) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1750) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1751) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1752) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1753) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1754) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1755) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1756) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1757) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1758) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1759) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1760) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1761) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1762) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1763) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1764) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1765) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1766) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1767) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1768) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1769) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1770) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1771) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1772) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1773) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1774) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1775) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1776) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1777) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1778) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1779) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1780) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1781) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1782) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1783) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1784) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1785) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1786) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1787) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1788) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1789) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1790) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1791) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1792) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1793) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1794) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1795) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1796) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1797) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1798) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1799) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1800) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1801) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1802) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1803) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1804) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1805) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1806) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1807) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1808) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1809) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1810) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1811) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1812) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1813) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1814) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1815) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1816) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1817) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1818) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1819) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1820) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1821) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1822) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1823) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1824) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1825) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1826) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1827) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1828) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1829) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1830) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1831) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1832) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1833) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1834) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1835) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1836) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1837) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1838) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1839) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1840) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1841) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1842) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1843) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1844) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1845) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1846) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1847) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1848) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1849) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1850) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1851) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1852) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1853) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1854) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1855) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1856) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1857) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1858) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1859) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1860) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1861) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1862) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1863) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1864) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1865) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1866) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1867) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1868) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1869) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1870) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1871) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1872) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1873) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1874) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1875) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1876) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1877) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1878) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1879) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1880) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1881) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1882) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1883) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1884) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1885) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1886) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1887) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1888) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1889) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1890) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1891) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1892) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1893) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1894) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1895) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1896) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1897) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1898) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1899) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1900) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1901) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1902) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1903) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1904) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1905) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1906) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1907) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1908) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1909) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1910) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1911) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1912) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1913) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1914) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1915) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1916) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1917) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1918) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1919) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1920) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1921) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1922) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1923) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1924) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1925) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1926) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1927) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1928) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1929) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1930) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1931) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1932) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1933) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1934) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1935) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1936) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1937) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1938) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1939) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1940) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1941) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1942) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1943) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1944) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1945) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1946) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1947) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1948) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1949) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1950) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1951) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1952) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1953) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1954) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1955) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1956) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1957) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1958) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1959) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1960) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1961) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1962) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1963) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1964) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1965) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1966) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1967) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1968) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1969) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1970) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1971) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1972) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1973) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1974) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1975) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1976) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1977) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1978) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1979) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1980) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1981) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1982) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1983) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1984) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1985) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1986) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1987) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1988) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1989) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1990) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1991) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1992) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1993) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1994) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1995) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1996) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1997) | NFT_NG_RANDOM = 0x1
type RTCTime (line 2000) | type RTCTime struct
type RTCWkAlrm (line 2012) | type RTCWkAlrm struct
type RTCPLLInfo (line 2018) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2028) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2035) | type BlkpgPartition struct
constant BLKPG (line 2045) | BLKPG = 0x20001269
constant BLKPG_ADD_PARTITION (line 2046) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2047) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2048) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2052) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2053) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2054) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2055) | NETNSA_FD = 0x3
type XDPRingOffset (line 2058) | type XDPRingOffset struct
type XDPMmapOffsets (line 2064) | type XDPMmapOffsets struct
type XDPUmemReg (line 2071) | type XDPUmemReg struct
type XDPStatistics (line 2078) | type XDPStatistics struct
type XDPDesc (line 2084) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2091) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2092) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2093) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2094) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2095) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2096) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2097) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2098) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2099) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2100) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2101) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2102) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2103) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2104) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2105) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2106) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2107) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2108) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2109) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2110) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2111) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2112) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2113) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2114) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2115) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2118) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2123) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2124) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2125) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2126) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2127) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2128) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2129) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2130) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2131) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2132) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2133) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2134) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2135) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2136) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2137) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2139) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2140) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2142) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2143) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2144) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2147) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2157) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2167) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2173) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2174) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2175) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2176) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2177) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2178) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2179) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2183) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2184) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2185) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2186) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2187) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2188) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2189) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2190) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2191) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2192) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2193) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2194) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2195) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2196) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2197) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2198) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2199) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2200) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2201) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2202) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2203) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2204) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2207) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2217) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2226) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2237) | type CryptoStatCipher struct
type CryptoStatCompress (line 2246) | type CryptoStatCompress struct
type CryptoStatHash (line 2255) | type CryptoStatHash struct
type CryptoStatKPP (line 2262) | type CryptoStatKPP struct
type CryptoStatRNG (line 2270) | type CryptoStatRNG struct
type CryptoStatLarval (line 2278) | type CryptoStatLarval struct
type CryptoReportLarval (line 2282) | type CryptoReportLarval struct
type CryptoReportHash (line 2286) | type CryptoReportHash struct
type CryptoReportCipher (line 2292) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2299) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2308) | type CryptoReportAEAD struct
type CryptoReportComp (line 2316) | type CryptoReportComp struct
type CryptoReportRNG (line 2320) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2325) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2329) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2333) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2338) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2339) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2340) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2341) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2342) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2343) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2344) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2345) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2346) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2347) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2348) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2349) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2350) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2351) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2352) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2353) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2354) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2355) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2356) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2357) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2358) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2359) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2360) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2361) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2362) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2363) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2364) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2365) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2366) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2367) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2368) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2369) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2370) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2371) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2372) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2373) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2374) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2375) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2376) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2377) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2378) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2379) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2380) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2381) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2382) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2383) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2384) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2385) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2386) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2387) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2388) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2389) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2390) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2391) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2392) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2393) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2394) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2395) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2396) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2397) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2398) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2399) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2400) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2401) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2402) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2403) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2404) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2405) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2406) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2407) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2408) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2409) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2410) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2411) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2412) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2413) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2414) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2415) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2416) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2417) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2418) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2419) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2420) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2421) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2422) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2423) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2424) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2425) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2426) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2427) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2428) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2429) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2430) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2431) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2432) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2433) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2434) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2435) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2436) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2437) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2438) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2439) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2440) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2441) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2442) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2443) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2444) | BPF_OK = 0x0
constant BPF_DROP (line 2445) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2446) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2447) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2448) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2449) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2450) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2451) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2452) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2453) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2454) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2455) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2456) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2457) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2458) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2459) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2460) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2461) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2462) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2463) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2464) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2465) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2466) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2467) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2468) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2469) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2470) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2471) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2472) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2473) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2474) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2475) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2476) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2477) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2478) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2479) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2480) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2481) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2482) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2483) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2484) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2485) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2486) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2489) | type CapUserHeader struct
type CapUserData (line 2494) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2501) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2502) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2503) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2507) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2508) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2509) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2510) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2513) | type LoopInfo struct
type LoopInfo64 (line 2528) | type LoopInfo64 struct
type TIPCSocketAddr (line 2544) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2549) | type TIPCServiceRange struct
type TIPCServiceName (line 2555) | type TIPCServiceName struct
type TIPCSubscr (line 2561) | type TIPCSubscr struct
type TIPCEvent (line 2568) | type TIPCEvent struct
type TIPCGroupReq (line 2576) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2583) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2589) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2595) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2596) | TIPC_NODE_SCOPE = 0x3
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 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 StatxTimestamp (line 118) | type StatxTimestamp struct
type Statx_t (line 124) | type Statx_t struct
type Dirent (line 148) | type Dirent struct
type Fsid (line 157) | type Fsid struct
type Flock_t (line 161) | type Flock_t struct
type FscryptPolicy (line 170) | type FscryptPolicy struct
type FscryptKey (line 178) | type FscryptKey struct
type KeyctlDHParams (line 184) | type KeyctlDHParams struct
constant FADV_NORMAL (line 191) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 192) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 193) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 194) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 195) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 196) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 199) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 206) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 214) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 219) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 229) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 236) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 242) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 251) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 258) | type RawSockaddrCAN struct
type RawSockaddrALG (line 264) | type RawSockaddrALG struct
type RawSockaddrVM (line 272) | type RawSockaddrVM struct
type RawSockaddrXDP (line 280) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 288) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 290) | type RawSockaddrTIPC struct
type RawSockaddr (line 297) | type RawSockaddr struct
type RawSockaddrAny (line 302) | type RawSockaddrAny struct
type _Socklen (line 307) | type _Socklen
type Linger (line 309) | type Linger struct
type Iovec (line 314) | type Iovec struct
type IPMreq (line 319) | type IPMreq struct
type IPMreqn (line 324) | type IPMreqn struct
type IPv6Mreq (line 330) | type IPv6Mreq struct
type PacketMreq (line 335) | type PacketMreq struct
type Msghdr (line 342) | type Msghdr struct
type Cmsghdr (line 353) | type Cmsghdr struct
type Inet4Pktinfo (line 359) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 365) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 370) | type IPv6MTUInfo struct
type ICMPv6Filter (line 375) | type ICMPv6Filter struct
type Ucred (line 379) | type Ucred struct
type TCPInfo (line 385) | type TCPInfo struct
type CanFilter (line 418) | type CanFilter struct
constant SizeofSockaddrInet4 (line 424) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 425) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 426) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 427) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 428) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 429) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 430) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 431) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 432) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 433) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 434) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 435) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 436) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 437) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 438) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 439) | SizeofLinger = 0x8
constant SizeofIovec (line 440) | SizeofIovec = 0x10
constant SizeofIPMreq (line 441) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 442) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 443) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 444) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 445) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 446) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 447) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 448) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 449) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 450) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 451) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 452) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 453) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 457) | NDA_UNSPEC = 0x0
constant NDA_DST (line 458) | NDA_DST = 0x1
constant NDA_LLADDR (line 459) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 460) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 461) | NDA_PROBES = 0x4
constant NDA_VLAN (line 462) | NDA_VLAN = 0x5
constant NDA_PORT (line 463) | NDA_PORT = 0x6
constant NDA_VNI (line 464) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 465) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 466) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 467) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 468) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 469) | NTF_USE = 0x1
constant NTF_SELF (line 470) | NTF_SELF = 0x2
constant NTF_MASTER (line 471) | NTF_MASTER = 0x4
constant NTF_PROXY (line 472) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 473) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 474) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 475) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 476) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 477) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 478) | NUD_STALE = 0x4
constant NUD_DELAY (line 479) | NUD_DELAY = 0x8
constant NUD_PROBE (line 480) | NUD_PROBE = 0x10
constant NUD_FAILED (line 481) | NUD_FAILED = 0x20
constant NUD_NOARP (line 482) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 483) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 484) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 485) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 486) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 487) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 488) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 489) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 490) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 491) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 492) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 493) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 494) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 495) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 496) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 497) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 498) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 499) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 500) | IFLA_MTU = 0x4
constant IFLA_LINK (line 501) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 502) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 503) | IFLA_STATS = 0x7
constant IFLA_COST (line 504) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 505) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 506) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 507) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 508) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 509) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 510) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 511) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 512) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 513) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 514) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 515) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 516) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 517) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 518) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 519) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 520) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 521) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 522) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 523) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 524) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 525) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 526) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 527) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 528) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 529) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 530) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 531) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 532) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 533) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 534) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 535) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 536) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 537) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 538) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 539) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 540) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 541) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 542) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 543) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 544) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 545) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 546) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 547) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 548) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 549) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 550) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 551) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 552) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 553) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 554) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 555) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 556) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 557) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 558) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 559) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 560) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 561) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 562) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 563) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 564) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 565) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 566) | RTA_UNSPEC = 0x0
constant RTA_DST (line 567) | RTA_DST = 0x1
constant RTA_SRC (line 568) | RTA_SRC = 0x2
constant RTA_IIF (line 569) | RTA_IIF = 0x3
constant RTA_OIF (line 570) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 571) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 572) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 573) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 574) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 575) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 576) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 577) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 578) | RTA_TABLE = 0xf
constant RTA_MARK (line 579) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 580) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 581) | RTA_VIA = 0x12
constant RTA_NEWDST (line 582) | RTA_NEWDST = 0x13
constant RTA_PREF (line 583) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 584) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 585) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 586) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 587) | RTA_PAD = 0x18
constant RTA_UID (line 588) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 589) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 590) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 591) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 592) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 593) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 594) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 595) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 596) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 597) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 598) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 599) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 600) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 601) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 602) | RTN_THROW = 0x9
constant RTN_NAT (line 603) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 604) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 605) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 606) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 607) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 608) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 609) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 610) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 611) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 612) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 613) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 614) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 615) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 616) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 617) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 618) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 619) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 620) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 621) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 622) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 623) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 624) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 625) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 626) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 627) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 628) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 629) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 630) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 631) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 632) | SizeofNdMsg = 0xc
type NlMsghdr (line 635) | type NlMsghdr struct
type NlMsgerr (line 643) | type NlMsgerr struct
type RtGenmsg (line 648) | type RtGenmsg struct
type NlAttr (line 652) | type NlAttr struct
type RtAttr (line 657) | type RtAttr struct
type IfInfomsg (line 662) | type IfInfomsg struct
type IfAddrmsg (line 671) | type IfAddrmsg struct
type IfaCacheinfo (line 679) | type IfaCacheinfo struct
type RtMsg (line 686) | type RtMsg struct
type RtNexthop (line 698) | type RtNexthop struct
type NdUseroptmsg (line 705) | type NdUseroptmsg struct
type NdMsg (line 716) | type NdMsg struct
constant SizeofSockFilter (line 727) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 728) | SizeofSockFprog = 0x10
type SockFilter (line 731) | type SockFilter struct
type SockFprog (line 738) | type SockFprog struct
type InotifyEvent (line 743) | type InotifyEvent struct
constant SizeofInotifyEvent (line 750) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 752) | type PtraceRegs struct
type FdSet (line 768) | type FdSet struct
type Sysinfo_t (line 772) | type Sysinfo_t struct
type Utsname (line 790) | type Utsname struct
type Ustat_t (line 799) | type Ustat_t struct
type EpollEvent (line 807) | type EpollEvent struct
constant AT_EMPTY_PATH (line 815) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 816) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 817) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 818) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 820) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 821) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 822) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 824) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 825) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 827) | AT_EACCESS = 0x200
type PollFd (line 830) | type PollFd struct
constant POLLIN (line 837) | POLLIN = 0x1
constant POLLPRI (line 838) | POLLPRI = 0x2
constant POLLOUT (line 839) | POLLOUT = 0x4
constant POLLRDHUP (line 840) | POLLRDHUP = 0x2000
constant POLLERR (line 841) | POLLERR = 0x8
constant POLLHUP (line 842) | POLLHUP = 0x10
constant POLLNVAL (line 843) | POLLNVAL = 0x20
type Sigset_t (line 846) | type Sigset_t struct
constant _C__NSIG (line 850) | _C__NSIG = 0x41
type SignalfdSiginfo (line 852) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 877) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 879) | type Termios struct
type Winsize (line 890) | type Winsize struct
type Taskstats (line 897) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 947) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 948) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 949) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 950) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 951) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 952) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 953) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 954) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 955) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 956) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 957) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 958) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 959) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 960) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 961) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 964) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 973) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 974) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 975) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 976) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 977) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 978) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 979) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 982) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 989) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 990) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 991) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 992) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 993) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 994) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 995) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 996) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 997) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 998) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 999) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 1000) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 1001) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 1002) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 1003) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 1004) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 1005) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1006) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1007) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1008) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1009) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1010) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1011) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1012) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1015) | type cpuMask
constant _CPU_SETSIZE (line 1018) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1019) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1023) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1024) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1025) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1028) | type PerfEventAttr struct
type PerfEventMmapPage (line 1050) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1077) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1078) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1079) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1080) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1081) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1082) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1083) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1084) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1085) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1086) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1087) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1088) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1089) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1090) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1091) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1092) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1093) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1094) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1095) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1096) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1097) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1098) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1099) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1100) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1101) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1102) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1103) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1107) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1108) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1109) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1110) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1111) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1112) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1114) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1115) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1116) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1117) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1118) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1119) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1120) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1121) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1122) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1123) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1125) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1126) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1127) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1128) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1129) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1130) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1131) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1133) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1134) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1135) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1137) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1138) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1140) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1141) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1142) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1143) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1144) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1145) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1146) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1147) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1148) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1149) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1150) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1152) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1153) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1154) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1155) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1156) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1157) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1158) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1159) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1160) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1161) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1162) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1163) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1165) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1166) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1167) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1168) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1169) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1170) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1171) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1172) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1173) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1174) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1175) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1176) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1177) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1178) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1179) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1180) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1181) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1183) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1184) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1185) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1186) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1188) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1189) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1190) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1191) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1192) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1193) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1194) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1195) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1196) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1197) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1198) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1199) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1200) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1201) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1202) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1203) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1205) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1206) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1207) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1209) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1210) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1211) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1213) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1214) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1215) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1216) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1220) | CBitFieldMaskBit0 = 0x1
constant CBitFieldMaskBit1 (line 1221) | CBitFieldMaskBit1 = 0x2
constant CBitFieldMaskBit2 (line 1222) | CBitFieldMaskBit2 = 0x4
constant CBitFieldMaskBit3 (line 1223) | CBitFieldMaskBit3 = 0x8
constant CBitFieldMaskBit4 (line 1224) | CBitFieldMaskBit4 = 0x10
constant CBitFieldMaskBit5 (line 1225) | CBitFieldMaskBit5 = 0x20
constant CBitFieldMaskBit6 (line 1226) | CBitFieldMaskBit6 = 0x40
constant CBitFieldMaskBit7 (line 1227) | CBitFieldMaskBit7 = 0x80
constant CBitFieldMaskBit8 (line 1228) | CBitFieldMaskBit8 = 0x100
constant CBitFieldMaskBit9 (line 1229) | CBitFieldMaskBit9 = 0x200
constant CBitFieldMaskBit10 (line 1230) | CBitFieldMaskBit10 = 0x400
constant CBitFieldMaskBit11 (line 1231) | CBitFieldMaskBit11 = 0x800
constant CBitFieldMaskBit12 (line 1232) | CBitFieldMaskBit12 = 0x1000
constant CBitFieldMaskBit13 (line 1233) | CBitFieldMaskBit13 = 0x2000
constant CBitFieldMaskBit14 (line 1234) | CBitFieldMaskBit14 = 0x4000
constant CBitFieldMaskBit15 (line 1235) | CBitFieldMaskBit15 = 0x8000
constant CBitFieldMaskBit16 (line 1236) | CBitFieldMaskBit16 = 0x10000
constant CBitFieldMaskBit17 (line 1237) | CBitFieldMaskBit17 = 0x20000
constant CBitFieldMaskBit18 (line 1238) | CBitFieldMaskBit18 = 0x40000
constant CBitFieldMaskBit19 (line 1239) | CBitFieldMaskBit19 = 0x80000
constant CBitFieldMaskBit20 (line 1240) | CBitFieldMaskBit20 = 0x100000
constant CBitFieldMaskBit21 (line 1241) | CBitFieldMaskBit21 = 0x200000
constant CBitFieldMaskBit22 (line 1242) | CBitFieldMaskBit22 = 0x400000
constant CBitFieldMaskBit23 (line 1243) | CBitFieldMaskBit23 = 0x800000
constant CBitFieldMaskBit24 (line 1244) | CBitFieldMaskBit24 = 0x1000000
constant CBitFieldMaskBit25 (line 1245) | CBitFieldMaskBit25 = 0x2000000
constant CBitFieldMaskBit26 (line 1246) | CBitFieldMaskBit26 = 0x4000000
constant CBitFieldMaskBit27 (line 1247) | CBitFieldMaskBit27 = 0x8000000
constant CBitFieldMaskBit28 (line 1248) | CBitFieldMaskBit28 = 0x10000000
constant CBitFieldMaskBit29 (line 1249) | CBitFieldMaskBit29 = 0x20000000
constant CBitFieldMaskBit30 (line 1250) | CBitFieldMaskBit30 = 0x40000000
constant CBitFieldMaskBit31 (line 1251) | CBitFieldMaskBit31 = 0x80000000
constant CBitFieldMaskBit32 (line 1252) | CBitFieldMaskBit32 = 0x100000000
constant CBitFieldMaskBit33 (line 1253) | CBitFieldMaskBit33 = 0x200000000
constant CBitFieldMaskBit34 (line 1254) | CBitFieldMaskBit34 = 0x400000000
constant CBitFieldMaskBit35 (line 1255) | CBitFieldMaskBit35 = 0x800000000
constant CBitFieldMaskBit36 (line 1256) | CBitFieldMaskBit36 = 0x1000000000
constant CBitFieldMaskBit37 (line 1257) | CBitFieldMaskBit37 = 0x2000000000
constant CBitFieldMaskBit38 (line 1258) | CBitFieldMaskBit38 = 0x4000000000
constant CBitFieldMaskBit39 (line 1259) | CBitFieldMaskBit39 = 0x8000000000
constant CBitFieldMaskBit40 (line 1260) | CBitFieldMaskBit40 = 0x10000000000
constant CBitFieldMaskBit41 (line 1261) | CBitFieldMaskBit41 = 0x20000000000
constant CBitFieldMaskBit42 (line 1262) | CBitFieldMaskBit42 = 0x40000000000
constant CBitFieldMaskBit43 (line 1263) | CBitFieldMaskBit43 = 0x80000000000
constant CBitFieldMaskBit44 (line 1264) | CBitFieldMaskBit44 = 0x100000000000
constant CBitFieldMaskBit45 (line 1265) | CBitFieldMaskBit45 = 0x200000000000
constant CBitFieldMaskBit46 (line 1266) | CBitFieldMaskBit46 = 0x400000000000
constant CBitFieldMaskBit47 (line 1267) | CBitFieldMaskBit47 = 0x800000000000
constant CBitFieldMaskBit48 (line 1268) | CBitFieldMaskBit48 = 0x1000000000000
constant CBitFieldMaskBit49 (line 1269) | CBitFieldMaskBit49 = 0x2000000000000
constant CBitFieldMaskBit50 (line 1270) | CBitFieldMaskBit50 = 0x4000000000000
constant CBitFieldMaskBit51 (line 1271) | CBitFieldMaskBit51 = 0x8000000000000
constant CBitFieldMaskBit52 (line 1272) | CBitFieldMaskBit52 = 0x10000000000000
constant CBitFieldMaskBit53 (line 1273) | CBitFieldMaskBit53 = 0x20000000000000
constant CBitFieldMaskBit54 (line 1274) | CBitFieldMaskBit54 = 0x40000000000000
constant CBitFieldMaskBit55 (line 1275) | CBitFieldMaskBit55 = 0x80000000000000
constant CBitFieldMaskBit56 (line 1276) | CBitFieldMaskBit56 = 0x100000000000000
constant CBitFieldMaskBit57 (line 1277) | CBitFieldMaskBit57 = 0x200000000000000
constant CBitFieldMaskBit58 (line 1278) | CBitFieldMaskBit58 = 0x400000000000000
constant CBitFieldMaskBit59 (line 1279) | CBitFieldMaskBit59 = 0x800000000000000
constant CBitFieldMaskBit60 (line 1280) | CBitFieldMaskBit60 = 0x1000000000000000
constant CBitFieldMaskBit61 (line 1281) | CBitFieldMaskBit61 = 0x2000000000000000
constant CBitFieldMaskBit62 (line 1282) | CBitFieldMaskBit62 = 0x4000000000000000
constant CBitFieldMaskBit63 (line 1283) | CBitFieldMaskBit63 = 0x8000000000000000
type SockaddrStorage (line 1286) | type SockaddrStorage struct
type TCPMD5Sig (line 1292) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1301) | type HDDriveCmdHdr struct
type HDGeometry (line 1308) | type HDGeometry struct
type HDDriveID (line 1315) | type HDDriveID struct
type Statfs_t (line 1397) | type Statfs_t struct
constant ST_MANDLOCK (line 1413) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1414) | ST_NOATIME = 0x400
constant ST_NODEV (line 1415) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1416) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1417) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1418) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1419) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1420) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1421) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1424) | type TpacketHdr struct
type Tpacket2Hdr (line 1435) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1448) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1461) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1468) | type TpacketBlockDesc struct
type TpacketBDTS (line 1474) | type TpacketBDTS struct
type TpacketHdrV1 (line 1479) | type TpacketHdrV1 struct
type TpacketReq (line 1489) | type TpacketReq struct
type TpacketReq3 (line 1496) | type TpacketReq3 struct
type TpacketStats (line 1506) | type TpacketStats struct
type TpacketStatsV3 (line 1511) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1517) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1528) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1529) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1530) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1534) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1535) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1536) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1538) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1539) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1543) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1544) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1545) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1546) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1547) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1548) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1552) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1553) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1557) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1558) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1559) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1560) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1561) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1562) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1563) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1564) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1565) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1568) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1575) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1576) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1580) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1581) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1582) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1583) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1584) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1585) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1586) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1587) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1588) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1589) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1590) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1591) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1592) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1593) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1594) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1595) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1596) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1597) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1598) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1599) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1600) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1601) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1602) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1603) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1604) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1605) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1606) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1607) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1608) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1609) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1610) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1611) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1612) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1613) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1614) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1615) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1616) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1617) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1618) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1619) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1620) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1621) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1622) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1623) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1624) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1625) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1626) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1627) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1628) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1629) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1630) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1631) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1632) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1633) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1634) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1635) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1636) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1637) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1638) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1639) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1640) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1641) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1642) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1643) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1644) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1645) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1646) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1647) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1648) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1649) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1650) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1651) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1652) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1653) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1654) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1655) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1656) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1657) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1658) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1659) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1660) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1661) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1662) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1663) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1664) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1665) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1666) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1667) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1668) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1669) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1670) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1671) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1672) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1673) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1674) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1675) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1676) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1677) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1678) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1679) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1680) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1681) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1682) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1683) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1684) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1685) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1686) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1687) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1688) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1689) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1690) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1691) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1692) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1693) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1694) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1695) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1696) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1697) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1698) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1699) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1700) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1701) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1702) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1703) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1704) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1705) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1706) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1707) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1708) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1709) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1710) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1711) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1712) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1713) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1714) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1715) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1716) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1717) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1718) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1719) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1720) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1721) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1722) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1723) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1724) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1725) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1726) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1727) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1728) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1729) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1730) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1731) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1732) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1733) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1734) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1735) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1736) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1737) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1738) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1739) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1740) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1741) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1742) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1743) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1744) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1745) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1746) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1747) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1748) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1749) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1750) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1751) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1752) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1753) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1754) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1755) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1756) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1757) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1758) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1759) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1760) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1761) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1762) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1763) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1764) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1765) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1766) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1767) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1768) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1769) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1770) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1771) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1772) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1773) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1774) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1775) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1776) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1777) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1778) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1779) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1780) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1781) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1782) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1783) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1784) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1785) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1786) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1787) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1788) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1789) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1790) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1791) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1792) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1793) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1794) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1795) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1796) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1797) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1798) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1799) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1800) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1801) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1802) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1803) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1804) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1805) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1806) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1807) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1808) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1809) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1810) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1811) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1812) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1813) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1814) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1815) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1816) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1817) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1818) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1819) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1820) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1821) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1822) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1823) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1824) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1825) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1826) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1827) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1828) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1829) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1830) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1831) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1832) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1833) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1834) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1835) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1836) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1837) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1838) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1839) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1840) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1841) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1842) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1843) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1844) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1845) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1846) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1847) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1848) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1849) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1850) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1851) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1852) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1853) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1854) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1855) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1856) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1857) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1858) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1859) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1860) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1861) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1862) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1863) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1864) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1865) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1866) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1867) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1868) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1869) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1870) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1871) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1872) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1873) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1874) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1875) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1876) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1877) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1878) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1879) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1880) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1881) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1882) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1883) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1884) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1885) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1886) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1887) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1888) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1889) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1890) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1891) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1892) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1893) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1894) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1895) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1896) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1897) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1898) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1899) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1900) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1901) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1902) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1903) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1904) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1905) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1906) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1907) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1908) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1909) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1910) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1911) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1912) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1913) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1914) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1915) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1916) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1917) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1918) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1919) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1920) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1921) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1922) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1923) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1924) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1925) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1926) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1927) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1928) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1929) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1930) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1931) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1932) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1933) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1934) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1935) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1936) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1937) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1938) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1939) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1940) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1941) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1942) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1943) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1944) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1945) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1946) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1947) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1948) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1949) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1950) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1951) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1952) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1953) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1954) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1955) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1956) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1957) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1958) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1959) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1960) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1961) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1962) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1963) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1964) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1965) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1966) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1967) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1968) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1969) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1970) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1971) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1972) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1973) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1974) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1975) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1976) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1977) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1978) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1979) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1980) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1981) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1982) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1983) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1984) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1985) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1986) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1987) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1988) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1989) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1990) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1991) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1992) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1993) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1994) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1995) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1996) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1997) | NFT_NG_RANDOM = 0x1
type RTCTime (line 2000) | type RTCTime struct
type RTCWkAlrm (line 2012) | type RTCWkAlrm struct
type RTCPLLInfo (line 2018) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2028) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2035) | type BlkpgPartition struct
constant BLKPG (line 2045) | BLKPG = 0x20001269
constant BLKPG_ADD_PARTITION (line 2046) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2047) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2048) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2052) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2053) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2054) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2055) | NETNSA_FD = 0x3
type XDPRingOffset (line 2058) | type XDPRingOffset struct
type XDPMmapOffsets (line 2064) | type XDPMmapOffsets struct
type XDPUmemReg (line 2071) | type XDPUmemReg struct
type XDPStatistics (line 2078) | type XDPStatistics struct
type XDPDesc (line 2084) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2091) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2092) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2093) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2094) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2095) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2096) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2097) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2098) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2099) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2100) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2101) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2102) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2103) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2104) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2105) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2106) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2107) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2108) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2109) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2110) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2111) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2112) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2113) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2114) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2115) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2118) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2123) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2124) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2125) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2126) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2127) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2128) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2129) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2130) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2131) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2132) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2133) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2134) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2135) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2136) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2137) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2139) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2140) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2142) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2143) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2144) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2147) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2157) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2167) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2173) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2174) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2175) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2176) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2177) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2178) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2179) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2183) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2184) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2185) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2186) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2187) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2188) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2189) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2190) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2191) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2192) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2193) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2194) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2195) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2196) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2197) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2198) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2199) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2200) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2201) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2202) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2203) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2204) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2207) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2217) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2226) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2237) | type CryptoStatCipher struct
type CryptoStatCompress (line 2246) | type CryptoStatCompress struct
type CryptoStatHash (line 2255) | type CryptoStatHash struct
type CryptoStatKPP (line 2262) | type CryptoStatKPP struct
type CryptoStatRNG (line 2270) | type CryptoStatRNG struct
type CryptoStatLarval (line 2278) | type CryptoStatLarval struct
type CryptoReportLarval (line 2282) | type CryptoReportLarval struct
type CryptoReportHash (line 2286) | type CryptoReportHash struct
type CryptoReportCipher (line 2292) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2299) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2308) | type CryptoReportAEAD struct
type CryptoReportComp (line 2316) | type CryptoReportComp struct
type CryptoReportRNG (line 2320) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2325) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2329) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2333) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2338) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2339) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2340) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2341) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2342) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2343) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2344) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2345) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2346) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2347) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2348) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2349) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2350) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2351) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2352) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2353) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2354) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2355) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2356) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2357) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2358) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2359) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2360) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2361) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2362) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2363) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2364) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2365) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2366) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2367) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2368) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2369) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2370) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2371) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2372) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2373) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2374) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2375) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2376) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2377) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2378) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2379) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2380) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2381) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2382) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2383) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2384) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2385) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2386) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2387) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2388) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2389) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2390) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2391) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2392) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2393) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2394) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2395) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2396) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2397) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2398) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2399) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2400) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2401) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2402) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2403) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2404) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2405) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2406) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2407) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2408) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2409) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2410) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2411) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2412) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2413) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2414) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2415) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2416) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2417) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2418) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2419) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2420) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2421) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2422) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2423) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2424) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2425) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2426) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2427) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2428) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2429) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2430) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2431) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2432) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2433) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2434) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2435) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2436) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2437) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2438) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2439) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2440) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2441) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2442) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2443) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2444) | BPF_OK = 0x0
constant BPF_DROP (line 2445) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2446) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2447) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2448) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2449) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2450) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2451) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2452) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2453) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2454) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2455) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2456) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2457) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2458) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2459) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2460) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2461) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2462) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2463) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2464) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2465) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2466) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2467) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2468) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2469) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2470) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2471) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2472) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2473) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2474) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2475) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2476) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2477) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2478) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2479) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2480) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2481) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2482) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2483) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2484) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2485) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2486) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2489) | type CapUserHeader struct
type CapUserData (line 2494) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2501) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2502) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2503) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2507) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2508) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2509) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2510) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2513) | type LoopInfo struct
type LoopInfo64 (line 2528) | type LoopInfo64 struct
type TIPCSocketAddr (line 2544) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2549) | type TIPCServiceRange struct
type TIPCServiceName (line 2555) | type TIPCServiceName struct
type TIPCSubscr (line 2561) | type TIPCSubscr struct
type TIPCEvent (line 2568) | type TIPCEvent struct
type TIPCGroupReq (line 2576) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2583) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2589) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2595) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2596) | TIPC_NODE_SCOPE = 0x3
FILE: vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.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 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 StatxTimestamp (line 117) | type StatxTimestamp struct
type Statx_t (line 123) | type Statx_t struct
type Dirent (line 147) | type Dirent struct
type Fsid (line 156) | type Fsid struct
type Flock_t (line 160) | type Flock_t struct
type FscryptPolicy (line 169) | type FscryptPolicy struct
type FscryptKey (line 177) | type FscryptKey struct
type KeyctlDHParams (line 183) | type KeyctlDHParams struct
constant FADV_NORMAL (line 190) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 191) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 192) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 193) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 194) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 195) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 198) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 205) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 213) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 218) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 228) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 235) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 241) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 250) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 257) | type RawSockaddrCAN struct
type RawSockaddrALG (line 263) | type RawSockaddrALG struct
type RawSockaddrVM (line 271) | type RawSockaddrVM struct
type RawSockaddrXDP (line 279) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 287) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 289) | type RawSockaddrTIPC struct
type RawSockaddr (line 296) | type RawSockaddr struct
type RawSockaddrAny (line 301) | type RawSockaddrAny struct
type _Socklen (line 306) | type _Socklen
type Linger (line 308) | type Linger struct
type Iovec (line 313) | type Iovec struct
type IPMreq (line 318) | type IPMreq struct
type IPMreqn (line 323) | type IPMreqn struct
type IPv6Mreq (line 329) | type IPv6Mreq struct
type PacketMreq (line 334) | type PacketMreq struct
type Msghdr (line 341) | type Msghdr struct
type Cmsghdr (line 352) | type Cmsghdr struct
type Inet4Pktinfo (line 358) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 364) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 369) | type IPv6MTUInfo struct
type ICMPv6Filter (line 374) | type ICMPv6Filter struct
type Ucred (line 378) | type Ucred struct
type TCPInfo (line 384) | type TCPInfo struct
type CanFilter (line 417) | type CanFilter struct
constant SizeofSockaddrInet4 (line 423) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 424) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 425) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 426) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 427) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 428) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 429) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 430) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 431) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 432) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 433) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 434) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 435) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 436) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 437) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 438) | SizeofLinger = 0x8
constant SizeofIovec (line 439) | SizeofIovec = 0x10
constant SizeofIPMreq (line 440) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 441) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 442) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 443) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 444) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 445) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 446) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 447) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 448) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 449) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 450) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 451) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 452) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 456) | NDA_UNSPEC = 0x0
constant NDA_DST (line 457) | NDA_DST = 0x1
constant NDA_LLADDR (line 458) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 459) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 460) | NDA_PROBES = 0x4
constant NDA_VLAN (line 461) | NDA_VLAN = 0x5
constant NDA_PORT (line 462) | NDA_PORT = 0x6
constant NDA_VNI (line 463) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 464) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 465) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 466) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 467) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 468) | NTF_USE = 0x1
constant NTF_SELF (line 469) | NTF_SELF = 0x2
constant NTF_MASTER (line 470) | NTF_MASTER = 0x4
constant NTF_PROXY (line 471) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 472) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 473) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 474) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 475) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 476) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 477) | NUD_STALE = 0x4
constant NUD_DELAY (line 478) | NUD_DELAY = 0x8
constant NUD_PROBE (line 479) | NUD_PROBE = 0x10
constant NUD_FAILED (line 480) | NUD_FAILED = 0x20
constant NUD_NOARP (line 481) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 482) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 483) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 484) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 485) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 486) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 487) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 488) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 489) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 490) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 491) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 492) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 493) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 494) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 495) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 496) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 497) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 498) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 499) | IFLA_MTU = 0x4
constant IFLA_LINK (line 500) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 501) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 502) | IFLA_STATS = 0x7
constant IFLA_COST (line 503) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 504) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 505) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 506) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 507) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 508) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 509) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 510) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 511) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 512) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 513) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 514) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 515) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 516) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 517) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 518) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 519) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 520) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 521) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 522) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 523) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 524) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 525) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 526) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 527) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 528) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 529) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 530) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 531) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 532) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 533) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 534) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 535) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 536) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 537) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 538) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 539) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 540) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 541) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 542) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 543) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 544) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 545) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 546) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 547) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 548) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 549) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 550) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 551) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 552) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 553) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 554) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 555) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 556) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 557) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 558) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 559) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 560) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 561) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 562) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 563) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 564) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 565) | RTA_UNSPEC = 0x0
constant RTA_DST (line 566) | RTA_DST = 0x1
constant RTA_SRC (line 567) | RTA_SRC = 0x2
constant RTA_IIF (line 568) | RTA_IIF = 0x3
constant RTA_OIF (line 569) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 570) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 571) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 572) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 573) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 574) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 575) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 576) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 577) | RTA_TABLE = 0xf
constant RTA_MARK (line 578) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 579) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 580) | RTA_VIA = 0x12
constant RTA_NEWDST (line 581) | RTA_NEWDST = 0x13
constant RTA_PREF (line 582) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 583) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 584) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 585) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 586) | RTA_PAD = 0x18
constant RTA_UID (line 587) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 588) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 589) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 590) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 591) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 592) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 593) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 594) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 595) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 596) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 597) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 598) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 599) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 600) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 601) | RTN_THROW = 0x9
constant RTN_NAT (line 602) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 603) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 604) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 605) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 606) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 607) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 608) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 609) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 610) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 611) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 612) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 613) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 614) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 615) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 616) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 617) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 618) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 619) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 620) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 621) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 622) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 623) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 624) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 625) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 626) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 627) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 628) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 629) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 630) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 631) | SizeofNdMsg = 0xc
type NlMsghdr (line 634) | type NlMsghdr struct
type NlMsgerr (line 642) | type NlMsgerr struct
type RtGenmsg (line 647) | type RtGenmsg struct
type NlAttr (line 651) | type NlAttr struct
type RtAttr (line 656) | type RtAttr struct
type IfInfomsg (line 661) | type IfInfomsg struct
type IfAddrmsg (line 670) | type IfAddrmsg struct
type IfaCacheinfo (line 678) | type IfaCacheinfo struct
type RtMsg (line 685) | type RtMsg struct
type RtNexthop (line 697) | type RtNexthop struct
type NdUseroptmsg (line 704) | type NdUseroptmsg struct
type NdMsg (line 715) | type NdMsg struct
constant SizeofSockFilter (line 726) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 727) | SizeofSockFprog = 0x10
type SockFilter (line 730) | type SockFilter struct
type SockFprog (line 737) | type SockFprog struct
type InotifyEvent (line 742) | type InotifyEvent struct
constant SizeofInotifyEvent (line 749) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 751) | type PtraceRegs struct
type FdSet (line 786) | type FdSet struct
type Sysinfo_t (line 790) | type Sysinfo_t struct
type Utsname (line 808) | type Utsname struct
type Ustat_t (line 817) | type Ustat_t struct
type EpollEvent (line 825) | type EpollEvent struct
constant AT_EMPTY_PATH (line 833) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 834) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 835) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 836) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 838) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 839) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 840) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 842) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 843) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 845) | AT_EACCESS = 0x200
type PollFd (line 848) | type PollFd struct
constant POLLIN (line 855) | POLLIN = 0x1
constant POLLPRI (line 856) | POLLPRI = 0x2
constant POLLOUT (line 857) | POLLOUT = 0x4
constant POLLRDHUP (line 858) | POLLRDHUP = 0x2000
constant POLLERR (line 859) | POLLERR = 0x8
constant POLLHUP (line 860) | POLLHUP = 0x10
constant POLLNVAL (line 861) | POLLNVAL = 0x20
type Sigset_t (line 864) | type Sigset_t struct
constant _C__NSIG (line 868) | _C__NSIG = 0x41
type SignalfdSiginfo (line 870) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 895) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 897) | type Termios struct
type Winsize (line 908) | type Winsize struct
type Taskstats (line 915) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 965) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 966) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 967) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 968) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 969) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 970) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 971) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 972) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 973) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 974) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 975) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 976) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 977) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 978) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 979) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 982) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 991) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 992) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 993) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 994) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 995) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 996) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 997) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 1000) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 1007) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 1008) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 1009) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 1010) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 1011) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 1012) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 1013) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 1014) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 1015) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 1016) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 1017) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 1018) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 1019) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 1020) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 1021) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 1022) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 1023) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1024) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1025) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1026) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1027) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1028) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1029) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1030) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1033) | type cpuMask
constant _CPU_SETSIZE (line 1036) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1037) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1041) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1042) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1043) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1046) | type PerfEventAttr struct
type PerfEventMmapPage (line 1068) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1095) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1096) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1097) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1098) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1099) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1100) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1101) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1102) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1103) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1104) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1105) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1106) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1107) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1108) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1109) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1110) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1111) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1112) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1113) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1114) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1115) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1116) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1117) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1118) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1119) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1120) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1121) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1125) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1126) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1127) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1128) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1129) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1130) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1132) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1133) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1134) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1135) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1136) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1137) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1138) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1139) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1140) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1141) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1143) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1144) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1145) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1146) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1147) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1148) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1149) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1151) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1152) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1153) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1155) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1156) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1158) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1159) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1160) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1161) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1162) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1163) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1164) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1165) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1166) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1167) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1168) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1170) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1171) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1172) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1173) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1174) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1175) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1176) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1177) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1178) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1179) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1180) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1181) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1183) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1184) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1185) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1186) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1187) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1188) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1189) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1190) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1191) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1192) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1193) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1194) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1195) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1196) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1197) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1198) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1199) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1201) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1202) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1203) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1204) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1206) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1207) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1208) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1209) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1210) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1211) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1212) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1213) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1214) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1215) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1216) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1217) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1218) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1219) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1220) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1221) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1223) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1224) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1225) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1227) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1228) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1229) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1231) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1232) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1233) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1234) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1238) | CBitFieldMaskBit0 = 0x1
constant CBitFieldMaskBit1 (line 1239) | CBitFieldMaskBit1 = 0x2
constant CBitFieldMaskBit2 (line 1240) | CBitFieldMaskBit2 = 0x4
constant CBitFieldMaskBit3 (line 1241) | CBitFieldMaskBit3 = 0x8
constant CBitFieldMaskBit4 (line 1242) | CBitFieldMaskBit4 = 0x10
constant CBitFieldMaskBit5 (line 1243) | CBitFieldMaskBit5 = 0x20
constant CBitFieldMaskBit6 (line 1244) | CBitFieldMaskBit6 = 0x40
constant CBitFieldMaskBit7 (line 1245) | CBitFieldMaskBit7 = 0x80
constant CBitFieldMaskBit8 (line 1246) | CBitFieldMaskBit8 = 0x100
constant CBitFieldMaskBit9 (line 1247) | CBitFieldMaskBit9 = 0x200
constant CBitFieldMaskBit10 (line 1248) | CBitFieldMaskBit10 = 0x400
constant CBitFieldMaskBit11 (line 1249) | CBitFieldMaskBit11 = 0x800
constant CBitFieldMaskBit12 (line 1250) | CBitFieldMaskBit12 = 0x1000
constant CBitFieldMaskBit13 (line 1251) | CBitFieldMaskBit13 = 0x2000
constant CBitFieldMaskBit14 (line 1252) | CBitFieldMaskBit14 = 0x4000
constant CBitFieldMaskBit15 (line 1253) | CBitFieldMaskBit15 = 0x8000
constant CBitFieldMaskBit16 (line 1254) | CBitFieldMaskBit16 = 0x10000
constant CBitFieldMaskBit17 (line 1255) | CBitFieldMaskBit17 = 0x20000
constant CBitFieldMaskBit18 (line 1256) | CBitFieldMaskBit18 = 0x40000
constant CBitFieldMaskBit19 (line 1257) | CBitFieldMaskBit19 = 0x80000
constant CBitFieldMaskBit20 (line 1258) | CBitFieldMaskBit20 = 0x100000
constant CBitFieldMaskBit21 (line 1259) | CBitFieldMaskBit21 = 0x200000
constant CBitFieldMaskBit22 (line 1260) | CBitFieldMaskBit22 = 0x400000
constant CBitFieldMaskBit23 (line 1261) | CBitFieldMaskBit23 = 0x800000
constant CBitFieldMaskBit24 (line 1262) | CBitFieldMaskBit24 = 0x1000000
constant CBitFieldMaskBit25 (line 1263) | CBitFieldMaskBit25 = 0x2000000
constant CBitFieldMaskBit26 (line 1264) | CBitFieldMaskBit26 = 0x4000000
constant CBitFieldMaskBit27 (line 1265) | CBitFieldMaskBit27 = 0x8000000
constant CBitFieldMaskBit28 (line 1266) | CBitFieldMaskBit28 = 0x10000000
constant CBitFieldMaskBit29 (line 1267) | CBitFieldMaskBit29 = 0x20000000
constant CBitFieldMaskBit30 (line 1268) | CBitFieldMaskBit30 = 0x40000000
constant CBitFieldMaskBit31 (line 1269) | CBitFieldMaskBit31 = 0x80000000
constant CBitFieldMaskBit32 (line 1270) | CBitFieldMaskBit32 = 0x100000000
constant CBitFieldMaskBit33 (line 1271) | CBitFieldMaskBit33 = 0x200000000
constant CBitFieldMaskBit34 (line 1272) | CBitFieldMaskBit34 = 0x400000000
constant CBitFieldMaskBit35 (line 1273) | CBitFieldMaskBit35 = 0x800000000
constant CBitFieldMaskBit36 (line 1274) | CBitFieldMaskBit36 = 0x1000000000
constant CBitFieldMaskBit37 (line 1275) | CBitFieldMaskBit37 = 0x2000000000
constant CBitFieldMaskBit38 (line 1276) | CBitFieldMaskBit38 = 0x4000000000
constant CBitFieldMaskBit39 (line 1277) | CBitFieldMaskBit39 = 0x8000000000
constant CBitFieldMaskBit40 (line 1278) | CBitFieldMaskBit40 = 0x10000000000
constant CBitFieldMaskBit41 (line 1279) | CBitFieldMaskBit41 = 0x20000000000
constant CBitFieldMaskBit42 (line 1280) | CBitFieldMaskBit42 = 0x40000000000
constant CBitFieldMaskBit43 (line 1281) | CBitFieldMaskBit43 = 0x80000000000
constant CBitFieldMaskBit44 (line 1282) | CBitFieldMaskBit44 = 0x100000000000
constant CBitFieldMaskBit45 (line 1283) | CBitFieldMaskBit45 = 0x200000000000
constant CBitFieldMaskBit46 (line 1284) | CBitFieldMaskBit46 = 0x400000000000
constant CBitFieldMaskBit47 (line 1285) | CBitFieldMaskBit47 = 0x800000000000
constant CBitFieldMaskBit48 (line 1286) | CBitFieldMaskBit48 = 0x1000000000000
constant CBitFieldMaskBit49 (line 1287) | CBitFieldMaskBit49 = 0x2000000000000
constant CBitFieldMaskBit50 (line 1288) | CBitFieldMaskBit50 = 0x4000000000000
constant CBitFieldMaskBit51 (line 1289) | CBitFieldMaskBit51 = 0x8000000000000
constant CBitFieldMaskBit52 (line 1290) | CBitFieldMaskBit52 = 0x10000000000000
constant CBitFieldMaskBit53 (line 1291) | CBitFieldMaskBit53 = 0x20000000000000
constant CBitFieldMaskBit54 (line 1292) | CBitFieldMaskBit54 = 0x40000000000000
constant CBitFieldMaskBit55 (line 1293) | CBitFieldMaskBit55 = 0x80000000000000
constant CBitFieldMaskBit56 (line 1294) | CBitFieldMaskBit56 = 0x100000000000000
constant CBitFieldMaskBit57 (line 1295) | CBitFieldMaskBit57 = 0x200000000000000
constant CBitFieldMaskBit58 (line 1296) | CBitFieldMaskBit58 = 0x400000000000000
constant CBitFieldMaskBit59 (line 1297) | CBitFieldMaskBit59 = 0x800000000000000
constant CBitFieldMaskBit60 (line 1298) | CBitFieldMaskBit60 = 0x1000000000000000
constant CBitFieldMaskBit61 (line 1299) | CBitFieldMaskBit61 = 0x2000000000000000
constant CBitFieldMaskBit62 (line 1300) | CBitFieldMaskBit62 = 0x4000000000000000
constant CBitFieldMaskBit63 (line 1301) | CBitFieldMaskBit63 = 0x8000000000000000
type SockaddrStorage (line 1304) | type SockaddrStorage struct
type TCPMD5Sig (line 1310) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1319) | type HDDriveCmdHdr struct
type HDGeometry (line 1326) | type HDGeometry struct
type HDDriveID (line 1333) | type HDDriveID struct
type Statfs_t (line 1415) | type Statfs_t struct
constant ST_MANDLOCK (line 1431) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1432) | ST_NOATIME = 0x400
constant ST_NODEV (line 1433) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1434) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1435) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1436) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1437) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1438) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1439) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1442) | type TpacketHdr struct
type Tpacket2Hdr (line 1453) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1466) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1479) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1486) | type TpacketBlockDesc struct
type TpacketBDTS (line 1492) | type TpacketBDTS struct
type TpacketHdrV1 (line 1497) | type TpacketHdrV1 struct
type TpacketReq (line 1507) | type TpacketReq struct
type TpacketReq3 (line 1514) | type TpacketReq3 struct
type TpacketStats (line 1524) | type TpacketStats struct
type TpacketStatsV3 (line 1529) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1535) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1546) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1547) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1548) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1552) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1553) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1554) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1556) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1557) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1561) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1562) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1563) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1564) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1565) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1566) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1570) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1571) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1575) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1576) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1577) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1578) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1579) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1580) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1581) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1582) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1583) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1586) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1593) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1594) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1598) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1599) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1600) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1601) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1602) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1603) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1604) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1605) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1606) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1607) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1608) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1609) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1610) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1611) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1612) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1613) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1614) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1615) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1616) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1617) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1618) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1619) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1620) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1621) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1622) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1623) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1624) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1625) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1626) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1627) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1628) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1629) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1630) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1631) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1632) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1633) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1634) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1635) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1636) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1637) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1638) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1639) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1640) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1641) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1642) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1643) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1644) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1645) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1646) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1647) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1648) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1649) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1650) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1651) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1652) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1653) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1654) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1655) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1656) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1657) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1658) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1659) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1660) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1661) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1662) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1663) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1664) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1665) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1666) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1667) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1668) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1669) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1670) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1671) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1672) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1673) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1674) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1675) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1676) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1677) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1678) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1679) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1680) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1681) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1682) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1683) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1684) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1685) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1686) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1687) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1688) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1689) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1690) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1691) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1692) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1693) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1694) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1695) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1696) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1697) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1698) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1699) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1700) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1701) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1702) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1703) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1704) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1705) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1706) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1707) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1708) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1709) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1710) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1711) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1712) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1713) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1714) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1715) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1716) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1717) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1718) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1719) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1720) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1721) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1722) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1723) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1724) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1725) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1726) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1727) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1728) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1729) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1730) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1731) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1732) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1733) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1734) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1735) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1736) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1737) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1738) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1739) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1740) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1741) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1742) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1743) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1744) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1745) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1746) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1747) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1748) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1749) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1750) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1751) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1752) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1753) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1754) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1755) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1756) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1757) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1758) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1759) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1760) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1761) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1762) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1763) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1764) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1765) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1766) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1767) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1768) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1769) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1770) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1771) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1772) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1773) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1774) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1775) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1776) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1777) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1778) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1779) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1780) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1781) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1782) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1783) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1784) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1785) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1786) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1787) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1788) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1789) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1790) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1791) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1792) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1793) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1794) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1795) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1796) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1797) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1798) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1799) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1800) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1801) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1802) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1803) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1804) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1805) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1806) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1807) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1808) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1809) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1810) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1811) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1812) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1813) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1814) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1815) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1816) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1817) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1818) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1819) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1820) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1821) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1822) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1823) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1824) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1825) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1826) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1827) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1828) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1829) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1830) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1831) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1832) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1833) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1834) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1835) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1836) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1837) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1838) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1839) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1840) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1841) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1842) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1843) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1844) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1845) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1846) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1847) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1848) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1849) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1850) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1851) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1852) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1853) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1854) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1855) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1856) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1857) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1858) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1859) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1860) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1861) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1862) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1863) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1864) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1865) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1866) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1867) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1868) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1869) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1870) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1871) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1872) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1873) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1874) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1875) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1876) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1877) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1878) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1879) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1880) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1881) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1882) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1883) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1884) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1885) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1886) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1887) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1888) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1889) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1890) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1891) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1892) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1893) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1894) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1895) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1896) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1897) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1898) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1899) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1900) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1901) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1902) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1903) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1904) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1905) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1906) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1907) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1908) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1909) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1910) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1911) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1912) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1913) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1914) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1915) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1916) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1917) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1918) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1919) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1920) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1921) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1922) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1923) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1924) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1925) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1926) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1927) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1928) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1929) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1930) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1931) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1932) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1933) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1934) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1935) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1936) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1937) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1938) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1939) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1940) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1941) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1942) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1943) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1944) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1945) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1946) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1947) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1948) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1949) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1950) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1951) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1952) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1953) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1954) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1955) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1956) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1957) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1958) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1959) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1960) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1961) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1962) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1963) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1964) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1965) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1966) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1967) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1968) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1969) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1970) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1971) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1972) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1973) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1974) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1975) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1976) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1977) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1978) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1979) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1980) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1981) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1982) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1983) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1984) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1985) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1986) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1987) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1988) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1989) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1990) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1991) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1992) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1993) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1994) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1995) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1996) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1997) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1998) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1999) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 2000) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 2001) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 2002) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 2003) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 2004) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 2005) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 2006) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 2007) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 2008) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 2009) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 2010) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 2011) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 2012) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 2013) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 2014) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 2015) | NFT_NG_RANDOM = 0x1
type RTCTime (line 2018) | type RTCTime struct
type RTCWkAlrm (line 2030) | type RTCWkAlrm struct
type RTCPLLInfo (line 2036) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2046) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2053) | type BlkpgPartition struct
constant BLKPG (line 2063) | BLKPG = 0x1269
constant BLKPG_ADD_PARTITION (line 2064) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2065) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2066) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2070) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2071) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2072) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2073) | NETNSA_FD = 0x3
type XDPRingOffset (line 2076) | type XDPRingOffset struct
type XDPMmapOffsets (line 2082) | type XDPMmapOffsets struct
type XDPUmemReg (line 2089) | type XDPUmemReg struct
type XDPStatistics (line 2096) | type XDPStatistics struct
type XDPDesc (line 2102) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2109) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2110) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2111) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2112) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2113) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2114) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2115) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2116) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2117) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2118) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2119) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2120) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2121) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2122) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2123) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2124) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2125) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2126) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2127) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2128) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2129) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2130) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2131) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2132) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2133) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2136) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2141) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2142) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2143) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2144) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2145) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2146) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2147) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2148) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2149) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2150) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2151) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2152) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2153) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2154) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2155) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2157) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2158) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2160) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2161) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2162) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2165) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2175) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2185) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2191) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2192) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2193) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2194) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2195) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2196) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2197) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2201) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2202) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2203) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2204) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2205) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2206) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2207) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2208) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2209) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2210) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2211) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2212) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2213) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2214) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2215) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2216) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2217) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2218) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2219) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2220) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2221) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2222) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2225) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2235) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2244) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2255) | type CryptoStatCipher struct
type CryptoStatCompress (line 2264) | type CryptoStatCompress struct
type CryptoStatHash (line 2273) | type CryptoStatHash struct
type CryptoStatKPP (line 2280) | type CryptoStatKPP struct
type CryptoStatRNG (line 2288) | type CryptoStatRNG struct
type CryptoStatLarval (line 2296) | type CryptoStatLarval struct
type CryptoReportLarval (line 2300) | type CryptoReportLarval struct
type CryptoReportHash (line 2304) | type CryptoReportHash struct
type CryptoReportCipher (line 2310) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2317) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2326) | type CryptoReportAEAD struct
type CryptoReportComp (line 2334) | type CryptoReportComp struct
type CryptoReportRNG (line 2338) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2343) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2347) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2351) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2356) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2357) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2358) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2359) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2360) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2361) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2362) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2363) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2364) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2365) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2366) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2367) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2368) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2369) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2370) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2371) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2372) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2373) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2374) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2375) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2376) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2377) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2378) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2379) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2380) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2381) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2382) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2383) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2384) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2385) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2386) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2387) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2388) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2389) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2390) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2391) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2392) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2393) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2394) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2395) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2396) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2397) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2398) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2399) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2400) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2401) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2402) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2403) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2404) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2405) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2406) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2407) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2408) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2409) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2410) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2411) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2412) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2413) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2414) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2415) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2416) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2417) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2418) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2419) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2420) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2421) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2422) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2423) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2424) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2425) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2426) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2427) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2428) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2429) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2430) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2431) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2432) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2433) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2434) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2435) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2436) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2437) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2438) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2439) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2440) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2441) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2442) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2443) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2444) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2445) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2446) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2447) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2448) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2449) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2450) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2451) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2452) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2453) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2454) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2455) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2456) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2457) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2458) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2459) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2460) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2461) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2462) | BPF_OK = 0x0
constant BPF_DROP (line 2463) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2464) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2465) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2466) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2467) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2468) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2469) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2470) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2471) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2472) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2473) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2474) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2475) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2476) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2477) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2478) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2479) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2480) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2481) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2482) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2483) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2484) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2485) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2486) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2487) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2488) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2489) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2490) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2491) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2492) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2493) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2494) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2495) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2496) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2497) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2498) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2499) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2500) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2501) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2502) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2503) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2504) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2507) | type CapUserHeader struct
type CapUserData (line 2512) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2519) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2520) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2521) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2525) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2526) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2527) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2528) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2531) | type LoopInfo struct
type LoopInfo64 (line 2546) | type LoopInfo64 struct
type TIPCSocketAddr (line 2562) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2567) | type TIPCServiceRange struct
type TIPCServiceName (line 2573) | type TIPCServiceName struct
type TIPCSubscr (line 2579) | type TIPCSubscr struct
type TIPCEvent (line 2586) | type TIPCEvent struct
type TIPCGroupReq (line 2594) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2601) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2607) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2613) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2614) | TIPC_NODE_SCOPE = 0x3
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 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 StatxTimestamp (line 116) | type StatxTimestamp struct
type Statx_t (line 122) | type Statx_t struct
type Dirent (line 146) | type Dirent struct
type Fsid (line 155) | type Fsid struct
type Flock_t (line 159) | type Flock_t struct
type FscryptPolicy (line 168) | type FscryptPolicy struct
type FscryptKey (line 176) | type FscryptKey struct
type KeyctlDHParams (line 182) | type KeyctlDHParams struct
constant FADV_NORMAL (line 189) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 190) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 191) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 192) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 193) | FADV_DONTNEED = 0x6
constant FADV_NOREUSE (line 194) | FADV_NOREUSE = 0x7
type RawSockaddrInet4 (line 197) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 204) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 212) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 217) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 227) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 234) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 240) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 249) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 256) | type RawSockaddrCAN struct
type RawSockaddrALG (line 262) | type RawSockaddrALG struct
type RawSockaddrVM (line 270) | type RawSockaddrVM struct
type RawSockaddrXDP (line 278) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 286) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 288) | type RawSockaddrTIPC struct
type RawSockaddr (line 295) | type RawSockaddr struct
type RawSockaddrAny (line 300) | type RawSockaddrAny struct
type _Socklen (line 305) | type _Socklen
type Linger (line 307) | type Linger struct
type Iovec (line 312) | type Iovec struct
type IPMreq (line 317) | type IPMreq struct
type IPMreqn (line 322) | type IPMreqn struct
type IPv6Mreq (line 328) | type IPv6Mreq struct
type PacketMreq (line 333) | type PacketMreq struct
type Msghdr (line 340) | type Msghdr struct
type Cmsghdr (line 351) | type Cmsghdr struct
type Inet4Pktinfo (line 357) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 363) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 368) | type IPv6MTUInfo struct
type ICMPv6Filter (line 373) | type ICMPv6Filter struct
type Ucred (line 377) | type Ucred struct
type TCPInfo (line 383) | type TCPInfo struct
type CanFilter (line 416) | type CanFilter struct
constant SizeofSockaddrInet4 (line 422) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 423) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 424) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 425) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 426) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 427) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 428) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 429) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 430) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 431) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 432) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 433) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 434) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 435) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 436) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 437) | SizeofLinger = 0x8
constant SizeofIovec (line 438) | SizeofIovec = 0x10
constant SizeofIPMreq (line 439) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 440) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 441) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 442) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 443) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 444) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 445) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 446) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 447) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 448) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 449) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 450) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 451) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 455) | NDA_UNSPEC = 0x0
constant NDA_DST (line 456) | NDA_DST = 0x1
constant NDA_LLADDR (line 457) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 458) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 459) | NDA_PROBES = 0x4
constant NDA_VLAN (line 460) | NDA_VLAN = 0x5
constant NDA_PORT (line 461) | NDA_PORT = 0x6
constant NDA_VNI (line 462) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 463) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 464) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 465) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 466) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 467) | NTF_USE = 0x1
constant NTF_SELF (line 468) | NTF_SELF = 0x2
constant NTF_MASTER (line 469) | NTF_MASTER = 0x4
constant NTF_PROXY (line 470) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 471) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 472) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 473) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 474) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 475) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 476) | NUD_STALE = 0x4
constant NUD_DELAY (line 477) | NUD_DELAY = 0x8
constant NUD_PROBE (line 478) | NUD_PROBE = 0x10
constant NUD_FAILED (line 479) | NUD_FAILED = 0x20
constant NUD_NOARP (line 480) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 481) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 482) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 483) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 484) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 485) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 486) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 487) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 488) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 489) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 490) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 491) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 492) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 493) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 494) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 495) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 496) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 497) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 498) | IFLA_MTU = 0x4
constant IFLA_LINK (line 499) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 500) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 501) | IFLA_STATS = 0x7
constant IFLA_COST (line 502) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 503) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 504) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 505) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 506) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 507) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 508) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 509) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 510) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 511) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 512) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 513) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 514) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 515) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 516) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 517) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 518) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 519) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 520) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 521) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 522) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 523) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 524) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 525) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 526) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 527) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 528) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 529) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 530) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 531) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 532) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 533) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 534) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 535) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 536) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 537) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 538) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 539) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 540) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 541) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 542) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 543) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 544) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 545) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 546) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 547) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 548) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 549) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 550) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 551) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 552) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 553) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 554) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 555) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 556) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 557) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 558) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 559) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 560) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 561) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 562) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 563) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 564) | RTA_UNSPEC = 0x0
constant RTA_DST (line 565) | RTA_DST = 0x1
constant RTA_SRC (line 566) | RTA_SRC = 0x2
constant RTA_IIF (line 567) | RTA_IIF = 0x3
constant RTA_OIF (line 568) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 569) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 570) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 571) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 572) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 573) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 574) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 575) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 576) | RTA_TABLE = 0xf
constant RTA_MARK (line 577) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 578) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 579) | RTA_VIA = 0x12
constant RTA_NEWDST (line 580) | RTA_NEWDST = 0x13
constant RTA_PREF (line 581) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 582) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 583) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 584) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 585) | RTA_PAD = 0x18
constant RTA_UID (line 586) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 587) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 588) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 589) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 590) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 591) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 592) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 593) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 594) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 595) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 596) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 597) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 598) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 599) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 600) | RTN_THROW = 0x9
constant RTN_NAT (line 601) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 602) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 603) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 604) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 605) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 606) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 607) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 608) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 609) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 610) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 611) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 612) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 613) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 614) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 615) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 616) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 617) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 618) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 619) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 620) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 621) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 622) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 623) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 624) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 625) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 626) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 627) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 628) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 629) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 630) | SizeofNdMsg = 0xc
type NlMsghdr (line 633) | type NlMsghdr struct
type NlMsgerr (line 641) | type NlMsgerr struct
type RtGenmsg (line 646) | type RtGenmsg struct
type NlAttr (line 650) | type NlAttr struct
type RtAttr (line 655) | type RtAttr struct
type IfInfomsg (line 660) | type IfInfomsg struct
type IfAddrmsg (line 669) | type IfAddrmsg struct
type IfaCacheinfo (line 677) | type IfaCacheinfo struct
type RtMsg (line 684) | type RtMsg struct
type RtNexthop (line 696) | type RtNexthop struct
type NdUseroptmsg (line 703) | type NdUseroptmsg struct
type NdMsg (line 714) | type NdMsg struct
constant SizeofSockFilter (line 725) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 726) | SizeofSockFprog = 0x10
type SockFilter (line 729) | type SockFilter struct
type SockFprog (line 736) | type SockFprog struct
type InotifyEvent (line 741) | type InotifyEvent struct
constant SizeofInotifyEvent (line 748) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 750) | type PtraceRegs struct
type PtracePsw (line 760) | type PtracePsw struct
type PtraceFpregs (line 765) | type PtraceFpregs struct
type PtracePer (line 770) | type PtracePer struct
type FdSet (line 781) | type FdSet struct
type Sysinfo_t (line 785) | type Sysinfo_t struct
type Utsname (line 803) | type Utsname struct
type Ustat_t (line 812) | type Ustat_t struct
type EpollEvent (line 820) | type EpollEvent struct
constant AT_EMPTY_PATH (line 828) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 829) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 830) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 831) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 833) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 834) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 835) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 837) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 838) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 840) | AT_EACCESS = 0x200
type PollFd (line 843) | type PollFd struct
constant POLLIN (line 850) | POLLIN = 0x1
constant POLLPRI (line 851) | POLLPRI = 0x2
constant POLLOUT (line 852) | POLLOUT = 0x4
constant POLLRDHUP (line 853) | POLLRDHUP = 0x2000
constant POLLERR (line 854) | POLLERR = 0x8
constant POLLHUP (line 855) | POLLHUP = 0x10
constant POLLNVAL (line 856) | POLLNVAL = 0x20
type Sigset_t (line 859) | type Sigset_t struct
constant _C__NSIG (line 863) | _C__NSIG = 0x41
type SignalfdSiginfo (line 865) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 890) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 892) | type Termios struct
type Winsize (line 903) | type Winsize struct
type Taskstats (line 910) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 960) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 961) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 962) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 963) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 964) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 965) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 966) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 967) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 968) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 969) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 970) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 971) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 972) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 973) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 974) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 977) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 986) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 987) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 988) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 989) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 990) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 991) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 992) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 995) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 1002) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 1003) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 1004) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 1005) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 1006) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 1007) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 1008) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 1009) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 1010) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 1011) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 1012) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 1013) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 1014) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 1015) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 1016) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 1017) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 1018) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1019) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1020) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1021) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1022) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1023) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1024) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1025) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1028) | type cpuMask
constant _CPU_SETSIZE (line 1031) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1032) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1036) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1037) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1038) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1041) | type PerfEventAttr struct
type PerfEventMmapPage (line 1063) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1090) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1091) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1092) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1093) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1094) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1095) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1096) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1097) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1098) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1099) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1100) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1101) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1102) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1103) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1104) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1105) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1106) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1107) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1108) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1109) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1110) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1111) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1112) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1113) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1114) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1115) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1116) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1120) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1121) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1122) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1123) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1124) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1125) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1127) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1128) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1129) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1130) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1131) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1132) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1133) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1134) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1135) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1136) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1138) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1139) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1140) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1141) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1142) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1143) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1144) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1146) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1147) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1148) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1150) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1151) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1153) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1154) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1155) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1156) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1157) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1158) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1159) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1160) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1161) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1162) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1163) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1165) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1166) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1167) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1168) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1169) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1170) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1171) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1172) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1173) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1174) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1175) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1176) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1178) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1179) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1180) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1181) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1182) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1183) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1184) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1185) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1186) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1187) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1188) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1189) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1190) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1191) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1192) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1193) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1194) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1196) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1197) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1198) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1199) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1201) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1202) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1203) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1204) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1205) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1206) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1207) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1208) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1209) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1210) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1211) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1212) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1213) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1214) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1215) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1216) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1218) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1219) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1220) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1222) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1223) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1224) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1226) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1227) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1228) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1229) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1233) | CBitFieldMaskBit0 = 0x8000000000000000
constant CBitFieldMaskBit1 (line 1234) | CBitFieldMaskBit1 = 0x4000000000000000
constant CBitFieldMaskBit2 (line 1235) | CBitFieldMaskBit2 = 0x2000000000000000
constant CBitFieldMaskBit3 (line 1236) | CBitFieldMaskBit3 = 0x1000000000000000
constant CBitFieldMaskBit4 (line 1237) | CBitFieldMaskBit4 = 0x800000000000000
constant CBitFieldMaskBit5 (line 1238) | CBitFieldMaskBit5 = 0x400000000000000
constant CBitFieldMaskBit6 (line 1239) | CBitFieldMaskBit6 = 0x200000000000000
constant CBitFieldMaskBit7 (line 1240) | CBitFieldMaskBit7 = 0x100000000000000
constant CBitFieldMaskBit8 (line 1241) | CBitFieldMaskBit8 = 0x80000000000000
constant CBitFieldMaskBit9 (line 1242) | CBitFieldMaskBit9 = 0x40000000000000
constant CBitFieldMaskBit10 (line 1243) | CBitFieldMaskBit10 = 0x20000000000000
constant CBitFieldMaskBit11 (line 1244) | CBitFieldMaskBit11 = 0x10000000000000
constant CBitFieldMaskBit12 (line 1245) | CBitFieldMaskBit12 = 0x8000000000000
constant CBitFieldMaskBit13 (line 1246) | CBitFieldMaskBit13 = 0x4000000000000
constant CBitFieldMaskBit14 (line 1247) | CBitFieldMaskBit14 = 0x2000000000000
constant CBitFieldMaskBit15 (line 1248) | CBitFieldMaskBit15 = 0x1000000000000
constant CBitFieldMaskBit16 (line 1249) | CBitFieldMaskBit16 = 0x800000000000
constant CBitFieldMaskBit17 (line 1250) | CBitFieldMaskBit17 = 0x400000000000
constant CBitFieldMaskBit18 (line 1251) | CBitFieldMaskBit18 = 0x200000000000
constant CBitFieldMaskBit19 (line 1252) | CBitFieldMaskBit19 = 0x100000000000
constant CBitFieldMaskBit20 (line 1253) | CBitFieldMaskBit20 = 0x80000000000
constant CBitFieldMaskBit21 (line 1254) | CBitFieldMaskBit21 = 0x40000000000
constant CBitFieldMaskBit22 (line 1255) | CBitFieldMaskBit22 = 0x20000000000
constant CBitFieldMaskBit23 (line 1256) | CBitFieldMaskBit23 = 0x10000000000
constant CBitFieldMaskBit24 (line 1257) | CBitFieldMaskBit24 = 0x8000000000
constant CBitFieldMaskBit25 (line 1258) | CBitFieldMaskBit25 = 0x4000000000
constant CBitFieldMaskBit26 (line 1259) | CBitFieldMaskBit26 = 0x2000000000
constant CBitFieldMaskBit27 (line 1260) | CBitFieldMaskBit27 = 0x1000000000
constant CBitFieldMaskBit28 (line 1261) | CBitFieldMaskBit28 = 0x800000000
constant CBitFieldMaskBit29 (line 1262) | CBitFieldMaskBit29 = 0x400000000
constant CBitFieldMaskBit30 (line 1263) | CBitFieldMaskBit30 = 0x200000000
constant CBitFieldMaskBit31 (line 1264) | CBitFieldMaskBit31 = 0x100000000
constant CBitFieldMaskBit32 (line 1265) | CBitFieldMaskBit32 = 0x80000000
constant CBitFieldMaskBit33 (line 1266) | CBitFieldMaskBit33 = 0x40000000
constant CBitFieldMaskBit34 (line 1267) | CBitFieldMaskBit34 = 0x20000000
constant CBitFieldMaskBit35 (line 1268) | CBitFieldMaskBit35 = 0x10000000
constant CBitFieldMaskBit36 (line 1269) | CBitFieldMaskBit36 = 0x8000000
constant CBitFieldMaskBit37 (line 1270) | CBitFieldMaskBit37 = 0x4000000
constant CBitFieldMaskBit38 (line 1271) | CBitFieldMaskBit38 = 0x2000000
constant CBitFieldMaskBit39 (line 1272) | CBitFieldMaskBit39 = 0x1000000
constant CBitFieldMaskBit40 (line 1273) | CBitFieldMaskBit40 = 0x800000
constant CBitFieldMaskBit41 (line 1274) | CBitFieldMaskBit41 = 0x400000
constant CBitFieldMaskBit42 (line 1275) | CBitFieldMaskBit42 = 0x200000
constant CBitFieldMaskBit43 (line 1276) | CBitFieldMaskBit43 = 0x100000
constant CBitFieldMaskBit44 (line 1277) | CBitFieldMaskBit44 = 0x80000
constant CBitFieldMaskBit45 (line 1278) | CBitFieldMaskBit45 = 0x40000
constant CBitFieldMaskBit46 (line 1279) | CBitFieldMaskBit46 = 0x20000
constant CBitFieldMaskBit47 (line 1280) | CBitFieldMaskBit47 = 0x10000
constant CBitFieldMaskBit48 (line 1281) | CBitFieldMaskBit48 = 0x8000
constant CBitFieldMaskBit49 (line 1282) | CBitFieldMaskBit49 = 0x4000
constant CBitFieldMaskBit50 (line 1283) | CBitFieldMaskBit50 = 0x2000
constant CBitFieldMaskBit51 (line 1284) | CBitFieldMaskBit51 = 0x1000
constant CBitFieldMaskBit52 (line 1285) | CBitFieldMaskBit52 = 0x800
constant CBitFieldMaskBit53 (line 1286) | CBitFieldMaskBit53 = 0x400
constant CBitFieldMaskBit54 (line 1287) | CBitFieldMaskBit54 = 0x200
constant CBitFieldMaskBit55 (line 1288) | CBitFieldMaskBit55 = 0x100
constant CBitFieldMaskBit56 (line 1289) | CBitFieldMaskBit56 = 0x80
constant CBitFieldMaskBit57 (line 1290) | CBitFieldMaskBit57 = 0x40
constant CBitFieldMaskBit58 (line 1291) | CBitFieldMaskBit58 = 0x20
constant CBitFieldMaskBit59 (line 1292) | CBitFieldMaskBit59 = 0x10
constant CBitFieldMaskBit60 (line 1293) | CBitFieldMaskBit60 = 0x8
constant CBitFieldMaskBit61 (line 1294) | CBitFieldMaskBit61 = 0x4
constant CBitFieldMaskBit62 (line 1295) | CBitFieldMaskBit62 = 0x2
constant CBitFieldMaskBit63 (line 1296) | CBitFieldMaskBit63 = 0x1
type SockaddrStorage (line 1299) | type SockaddrStorage struct
type TCPMD5Sig (line 1305) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1314) | type HDDriveCmdHdr struct
type HDGeometry (line 1321) | type HDGeometry struct
type HDDriveID (line 1328) | type HDDriveID struct
type Statfs_t (line 1410) | type Statfs_t struct
constant ST_MANDLOCK (line 1427) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1428) | ST_NOATIME = 0x400
constant ST_NODEV (line 1429) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1430) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1431) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1432) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1433) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1434) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1435) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1438) | type TpacketHdr struct
type Tpacket2Hdr (line 1449) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1462) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1475) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1482) | type TpacketBlockDesc struct
type TpacketBDTS (line 1488) | type TpacketBDTS struct
type TpacketHdrV1 (line 1493) | type TpacketHdrV1 struct
type TpacketReq (line 1503) | type TpacketReq struct
type TpacketReq3 (line 1510) | type TpacketReq3 struct
type TpacketStats (line 1520) | type TpacketStats struct
type TpacketStatsV3 (line 1525) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1531) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1542) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1543) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1544) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1548) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1549) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1550) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1552) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1553) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1557) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1558) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1559) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1560) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1561) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1562) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1566) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1567) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1571) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1572) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1573) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1574) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1575) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1576) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1577) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1578) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1579) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1582) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1589) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1590) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1594) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1595) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1596) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1597) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1598) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1599) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1600) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1601) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1602) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1603) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1604) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1605) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1606) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1607) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1608) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1609) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1610) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1611) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1612) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1613) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1614) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1615) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1616) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1617) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1618) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1619) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1620) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1621) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1622) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1623) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1624) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1625) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1626) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1627) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1628) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1629) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1630) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1631) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1632) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1633) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1634) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1635) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1636) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1637) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1638) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1639) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1640) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1641) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1642) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1643) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1644) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1645) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1646) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1647) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1648) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1649) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1650) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1651) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1652) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1653) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1654) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1655) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1656) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1657) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1658) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1659) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1660) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1661) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1662) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1663) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1664) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1665) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1666) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1667) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1668) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1669) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1670) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1671) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1672) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1673) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1674) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1675) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1676) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1677) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1678) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1679) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1680) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1681) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1682) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1683) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1684) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1685) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1686) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1687) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1688) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1689) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1690) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1691) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1692) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1693) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1694) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1695) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1696) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1697) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1698) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1699) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1700) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1701) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1702) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1703) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1704) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1705) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1706) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1707) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1708) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1709) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1710) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1711) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1712) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1713) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1714) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1715) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1716) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1717) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1718) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1719) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1720) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1721) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1722) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1723) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1724) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1725) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1726) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1727) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1728) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1729) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1730) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1731) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1732) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1733) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1734) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1735) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1736) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1737) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1738) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1739) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1740) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1741) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1742) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1743) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1744) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1745) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1746) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1747) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1748) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1749) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1750) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1751) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1752) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1753) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1754) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1755) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1756) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1757) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1758) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1759) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1760) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1761) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1762) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1763) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1764) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1765) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1766) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1767) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1768) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1769) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1770) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1771) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1772) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1773) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1774) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1775) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1776) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1777) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1778) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1779) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1780) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1781) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1782) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1783) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1784) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1785) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1786) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1787) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1788) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1789) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1790) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1791) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1792) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1793) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1794) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1795) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1796) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1797) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1798) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1799) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1800) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1801) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1802) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1803) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1804) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1805) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1806) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1807) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1808) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1809) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1810) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1811) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1812) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1813) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1814) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1815) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1816) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1817) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1818) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1819) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1820) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1821) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1822) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1823) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1824) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1825) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1826) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1827) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1828) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1829) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1830) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1831) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1832) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1833) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1834) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1835) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1836) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1837) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1838) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1839) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1840) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1841) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1842) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1843) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1844) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1845) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1846) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1847) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1848) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1849) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1850) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1851) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1852) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1853) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1854) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1855) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1856) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1857) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1858) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1859) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1860) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1861) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1862) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1863) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1864) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1865) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1866) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1867) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1868) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1869) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1870) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1871) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1872) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1873) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1874) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1875) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1876) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1877) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1878) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1879) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1880) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1881) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1882) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1883) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1884) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1885) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1886) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1887) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1888) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1889) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1890) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1891) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1892) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1893) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1894) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1895) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1896) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1897) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1898) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1899) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1900) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1901) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1902) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1903) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1904) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1905) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1906) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1907) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1908) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1909) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1910) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1911) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1912) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1913) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1914) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1915) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1916) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1917) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1918) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1919) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1920) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1921) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1922) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1923) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1924) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1925) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1926) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1927) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1928) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1929) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1930) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1931) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1932) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1933) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1934) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1935) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1936) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1937) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1938) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1939) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1940) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1941) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1942) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1943) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1944) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1945) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1946) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1947) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1948) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1949) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1950) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1951) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1952) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1953) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1954) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1955) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1956) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1957) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1958) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1959) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1960) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1961) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1962) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1963) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1964) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1965) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1966) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1967) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1968) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1969) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1970) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1971) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1972) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1973) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1974) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1975) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1976) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1977) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1978) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1979) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1980) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1981) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1982) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1983) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1984) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1985) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1986) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1987) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1988) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1989) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1990) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1991) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1992) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1993) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1994) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1995) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1996) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1997) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1998) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1999) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 2000) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 2001) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 2002) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 2003) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 2004) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 2005) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 2006) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 2007) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 2008) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 2009) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 2010) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 2011) | NFT_NG_RANDOM = 0x1
type RTCTime (line 2014) | type RTCTime struct
type RTCWkAlrm (line 2026) | type RTCWkAlrm struct
type RTCPLLInfo (line 2032) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2042) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2049) | type BlkpgPartition struct
constant BLKPG (line 2059) | BLKPG = 0x1269
constant BLKPG_ADD_PARTITION (line 2060) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2061) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2062) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2066) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2067) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2068) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2069) | NETNSA_FD = 0x3
type XDPRingOffset (line 2072) | type XDPRingOffset struct
type XDPMmapOffsets (line 2078) | type XDPMmapOffsets struct
type XDPUmemReg (line 2085) | type XDPUmemReg struct
type XDPStatistics (line 2092) | type XDPStatistics struct
type XDPDesc (line 2098) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2105) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2106) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2107) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2108) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2109) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2110) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2111) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2112) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2113) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2114) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2115) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2116) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2117) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2118) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2119) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2120) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2121) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2122) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2123) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2124) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2125) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2126) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2127) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2128) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2129) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2132) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2137) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2138) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2139) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2140) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2141) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2142) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2143) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2144) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2145) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2146) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2147) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2148) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2149) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2150) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2151) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2153) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2154) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2156) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2157) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2158) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2161) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2171) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2181) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2187) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2188) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2189) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2190) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2191) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2192) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2193) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2197) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2198) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2199) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2200) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2201) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2202) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2203) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2204) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2205) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2206) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2207) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2208) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2209) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2210) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2211) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2212) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2213) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2214) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2215) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2216) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2217) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2218) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2221) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2231) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2240) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2251) | type CryptoStatCipher struct
type CryptoStatCompress (line 2260) | type CryptoStatCompress struct
type CryptoStatHash (line 2269) | type CryptoStatHash struct
type CryptoStatKPP (line 2276) | type CryptoStatKPP struct
type CryptoStatRNG (line 2284) | type CryptoStatRNG struct
type CryptoStatLarval (line 2292) | type CryptoStatLarval struct
type CryptoReportLarval (line 2296) | type CryptoReportLarval struct
type CryptoReportHash (line 2300) | type CryptoReportHash struct
type CryptoReportCipher (line 2306) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2313) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2322) | type CryptoReportAEAD struct
type CryptoReportComp (line 2330) | type CryptoReportComp struct
type CryptoReportRNG (line 2334) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2339) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2343) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2347) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2352) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2353) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2354) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2355) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2356) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2357) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2358) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2359) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2360) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2361) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2362) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2363) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2364) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2365) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2366) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2367) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2368) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2369) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2370) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2371) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2372) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2373) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2374) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2375) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2376) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2377) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2378) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2379) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2380) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2381) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2382) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2383) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2384) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2385) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2386) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2387) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2388) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2389) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2390) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2391) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2392) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2393) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2394) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2395) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2396) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2397) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2398) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2399) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2400) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2401) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2402) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2403) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2404) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2405) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2406) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2407) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2408) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2409) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2410) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2411) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2412) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2413) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2414) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2415) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2416) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2417) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2418) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2419) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2420) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2421) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2422) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2423) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2424) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2425) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2426) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2427) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2428) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2429) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2430) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2431) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2432) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2433) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2434) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2435) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2436) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2437) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2438) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2439) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2440) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2441) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2442) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2443) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2444) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2445) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2446) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2447) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2448) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2449) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2450) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2451) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2452) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2453) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2454) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2455) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2456) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2457) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2458) | BPF_OK = 0x0
constant BPF_DROP (line 2459) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2460) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2461) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2462) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2463) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2464) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2465) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2466) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2467) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2468) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2469) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2470) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2471) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2472) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2473) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2474) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2475) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2476) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2477) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2478) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2479) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2480) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2481) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2482) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2483) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2484) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2485) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2486) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2487) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2488) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2489) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2490) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2491) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2492) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2493) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2494) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2495) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2496) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2497) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2498) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2499) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2500) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2503) | type CapUserHeader struct
type CapUserData (line 2508) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2515) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2516) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2517) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2521) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2522) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2523) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2524) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2527) | type LoopInfo struct
type LoopInfo64 (line 2542) | type LoopInfo64 struct
type TIPCSocketAddr (line 2558) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2563) | type TIPCServiceRange struct
type TIPCServiceName (line 2569) | type TIPCServiceName struct
type TIPCSubscr (line 2575) | type TIPCSubscr struct
type TIPCEvent (line 2582) | type TIPCEvent struct
type TIPCGroupReq (line 2590) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2597) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2603) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2609) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2610) | TIPC_NODE_SCOPE = 0x3
FILE: vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.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 35) | type Timex struct
type Time_t (line 59) | type Time_t
type Tms (line 61) | type Tms struct
type Utimbuf (line 68) | type Utimbuf struct
type Rusage (line 73) | type Rusage struct
type Rlimit (line 92) | type Rlimit struct
type _Gid_t (line 97) | type _Gid_t
type Stat_t (line 99) | type Stat_t struct
type StatxTimestamp (line 119) | type StatxTimestamp struct
type Statx_t (line 125) | type Statx_t struct
type Dirent (line 149) | type Dirent struct
type Fsid (line 158) | type Fsid struct
type Flock_t (line 162) | type Flock_t struct
type FscryptPolicy (line 172) | type FscryptPolicy struct
type FscryptKey (line 180) | type FscryptKey struct
type KeyctlDHParams (line 186) | type KeyctlDHParams struct
constant FADV_NORMAL (line 193) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 194) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 195) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 196) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 197) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 198) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 201) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 208) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 216) | type RawSockaddrUnix struct
type RawSockaddrLinklayer (line 221) | type RawSockaddrLinklayer struct
type RawSockaddrNetlink (line 231) | type RawSockaddrNetlink struct
type RawSockaddrHCI (line 238) | type RawSockaddrHCI struct
type RawSockaddrL2 (line 244) | type RawSockaddrL2 struct
type RawSockaddrRFCOMM (line 253) | type RawSockaddrRFCOMM struct
type RawSockaddrCAN (line 260) | type RawSockaddrCAN struct
type RawSockaddrALG (line 266) | type RawSockaddrALG struct
type RawSockaddrVM (line 274) | type RawSockaddrVM struct
type RawSockaddrXDP (line 282) | type RawSockaddrXDP struct
type RawSockaddrPPPoX (line 290) | type RawSockaddrPPPoX
type RawSockaddrTIPC (line 292) | type RawSockaddrTIPC struct
type RawSockaddr (line 299) | type RawSockaddr struct
type RawSockaddrAny (line 304) | type RawSockaddrAny struct
type _Socklen (line 309) | type _Socklen
type Linger (line 311) | type Linger struct
type Iovec (line 316) | type Iovec struct
type IPMreq (line 321) | type IPMreq struct
type IPMreqn (line 326) | type IPMreqn struct
type IPv6Mreq (line 332) | type IPv6Mreq struct
type PacketMreq (line 337) | type PacketMreq struct
type Msghdr (line 344) | type Msghdr struct
type Cmsghdr (line 355) | type Cmsghdr struct
type Inet4Pktinfo (line 361) | type Inet4Pktinfo struct
type Inet6Pktinfo (line 367) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 372) | type IPv6MTUInfo struct
type ICMPv6Filter (line 377) | type ICMPv6Filter struct
type Ucred (line 381) | type Ucred struct
type TCPInfo (line 387) | type TCPInfo struct
type CanFilter (line 420) | type CanFilter struct
constant SizeofSockaddrInet4 (line 426) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 427) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 428) | SizeofSockaddrAny = 0x70
constant SizeofSockaddrUnix (line 429) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrLinklayer (line 430) | SizeofSockaddrLinklayer = 0x14
constant SizeofSockaddrNetlink (line 431) | SizeofSockaddrNetlink = 0xc
constant SizeofSockaddrHCI (line 432) | SizeofSockaddrHCI = 0x6
constant SizeofSockaddrL2 (line 433) | SizeofSockaddrL2 = 0xe
constant SizeofSockaddrRFCOMM (line 434) | SizeofSockaddrRFCOMM = 0xa
constant SizeofSockaddrCAN (line 435) | SizeofSockaddrCAN = 0x10
constant SizeofSockaddrALG (line 436) | SizeofSockaddrALG = 0x58
constant SizeofSockaddrVM (line 437) | SizeofSockaddrVM = 0x10
constant SizeofSockaddrXDP (line 438) | SizeofSockaddrXDP = 0x10
constant SizeofSockaddrPPPoX (line 439) | SizeofSockaddrPPPoX = 0x1e
constant SizeofSockaddrTIPC (line 440) | SizeofSockaddrTIPC = 0x10
constant SizeofLinger (line 441) | SizeofLinger = 0x8
constant SizeofIovec (line 442) | SizeofIovec = 0x10
constant SizeofIPMreq (line 443) | SizeofIPMreq = 0x8
constant SizeofIPMreqn (line 444) | SizeofIPMreqn = 0xc
constant SizeofIPv6Mreq (line 445) | SizeofIPv6Mreq = 0x14
constant SizeofPacketMreq (line 446) | SizeofPacketMreq = 0x10
constant SizeofMsghdr (line 447) | SizeofMsghdr = 0x38
constant SizeofCmsghdr (line 448) | SizeofCmsghdr = 0x10
constant SizeofInet4Pktinfo (line 449) | SizeofInet4Pktinfo = 0xc
constant SizeofInet6Pktinfo (line 450) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 451) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 452) | SizeofICMPv6Filter = 0x20
constant SizeofUcred (line 453) | SizeofUcred = 0xc
constant SizeofTCPInfo (line 454) | SizeofTCPInfo = 0x68
constant SizeofCanFilter (line 455) | SizeofCanFilter = 0x8
constant NDA_UNSPEC (line 459) | NDA_UNSPEC = 0x0
constant NDA_DST (line 460) | NDA_DST = 0x1
constant NDA_LLADDR (line 461) | NDA_LLADDR = 0x2
constant NDA_CACHEINFO (line 462) | NDA_CACHEINFO = 0x3
constant NDA_PROBES (line 463) | NDA_PROBES = 0x4
constant NDA_VLAN (line 464) | NDA_VLAN = 0x5
constant NDA_PORT (line 465) | NDA_PORT = 0x6
constant NDA_VNI (line 466) | NDA_VNI = 0x7
constant NDA_IFINDEX (line 467) | NDA_IFINDEX = 0x8
constant NDA_MASTER (line 468) | NDA_MASTER = 0x9
constant NDA_LINK_NETNSID (line 469) | NDA_LINK_NETNSID = 0xa
constant NDA_SRC_VNI (line 470) | NDA_SRC_VNI = 0xb
constant NTF_USE (line 471) | NTF_USE = 0x1
constant NTF_SELF (line 472) | NTF_SELF = 0x2
constant NTF_MASTER (line 473) | NTF_MASTER = 0x4
constant NTF_PROXY (line 474) | NTF_PROXY = 0x8
constant NTF_EXT_LEARNED (line 475) | NTF_EXT_LEARNED = 0x10
constant NTF_OFFLOADED (line 476) | NTF_OFFLOADED = 0x20
constant NTF_ROUTER (line 477) | NTF_ROUTER = 0x80
constant NUD_INCOMPLETE (line 478) | NUD_INCOMPLETE = 0x1
constant NUD_REACHABLE (line 479) | NUD_REACHABLE = 0x2
constant NUD_STALE (line 480) | NUD_STALE = 0x4
constant NUD_DELAY (line 481) | NUD_DELAY = 0x8
constant NUD_PROBE (line 482) | NUD_PROBE = 0x10
constant NUD_FAILED (line 483) | NUD_FAILED = 0x20
constant NUD_NOARP (line 484) | NUD_NOARP = 0x40
constant NUD_PERMANENT (line 485) | NUD_PERMANENT = 0x80
constant NUD_NONE (line 486) | NUD_NONE = 0x0
constant IFA_UNSPEC (line 487) | IFA_UNSPEC = 0x0
constant IFA_ADDRESS (line 488) | IFA_ADDRESS = 0x1
constant IFA_LOCAL (line 489) | IFA_LOCAL = 0x2
constant IFA_LABEL (line 490) | IFA_LABEL = 0x3
constant IFA_BROADCAST (line 491) | IFA_BROADCAST = 0x4
constant IFA_ANYCAST (line 492) | IFA_ANYCAST = 0x5
constant IFA_CACHEINFO (line 493) | IFA_CACHEINFO = 0x6
constant IFA_MULTICAST (line 494) | IFA_MULTICAST = 0x7
constant IFA_FLAGS (line 495) | IFA_FLAGS = 0x8
constant IFA_RT_PRIORITY (line 496) | IFA_RT_PRIORITY = 0x9
constant IFA_TARGET_NETNSID (line 497) | IFA_TARGET_NETNSID = 0xa
constant IFLA_UNSPEC (line 498) | IFLA_UNSPEC = 0x0
constant IFLA_ADDRESS (line 499) | IFLA_ADDRESS = 0x1
constant IFLA_BROADCAST (line 500) | IFLA_BROADCAST = 0x2
constant IFLA_IFNAME (line 501) | IFLA_IFNAME = 0x3
constant IFLA_MTU (line 502) | IFLA_MTU = 0x4
constant IFLA_LINK (line 503) | IFLA_LINK = 0x5
constant IFLA_QDISC (line 504) | IFLA_QDISC = 0x6
constant IFLA_STATS (line 505) | IFLA_STATS = 0x7
constant IFLA_COST (line 506) | IFLA_COST = 0x8
constant IFLA_PRIORITY (line 507) | IFLA_PRIORITY = 0x9
constant IFLA_MASTER (line 508) | IFLA_MASTER = 0xa
constant IFLA_WIRELESS (line 509) | IFLA_WIRELESS = 0xb
constant IFLA_PROTINFO (line 510) | IFLA_PROTINFO = 0xc
constant IFLA_TXQLEN (line 511) | IFLA_TXQLEN = 0xd
constant IFLA_MAP (line 512) | IFLA_MAP = 0xe
constant IFLA_WEIGHT (line 513) | IFLA_WEIGHT = 0xf
constant IFLA_OPERSTATE (line 514) | IFLA_OPERSTATE = 0x10
constant IFLA_LINKMODE (line 515) | IFLA_LINKMODE = 0x11
constant IFLA_LINKINFO (line 516) | IFLA_LINKINFO = 0x12
constant IFLA_NET_NS_PID (line 517) | IFLA_NET_NS_PID = 0x13
constant IFLA_IFALIAS (line 518) | IFLA_IFALIAS = 0x14
constant IFLA_NUM_VF (line 519) | IFLA_NUM_VF = 0x15
constant IFLA_VFINFO_LIST (line 520) | IFLA_VFINFO_LIST = 0x16
constant IFLA_STATS64 (line 521) | IFLA_STATS64 = 0x17
constant IFLA_VF_PORTS (line 522) | IFLA_VF_PORTS = 0x18
constant IFLA_PORT_SELF (line 523) | IFLA_PORT_SELF = 0x19
constant IFLA_AF_SPEC (line 524) | IFLA_AF_SPEC = 0x1a
constant IFLA_GROUP (line 525) | IFLA_GROUP = 0x1b
constant IFLA_NET_NS_FD (line 526) | IFLA_NET_NS_FD = 0x1c
constant IFLA_EXT_MASK (line 527) | IFLA_EXT_MASK = 0x1d
constant IFLA_PROMISCUITY (line 528) | IFLA_PROMISCUITY = 0x1e
constant IFLA_NUM_TX_QUEUES (line 529) | IFLA_NUM_TX_QUEUES = 0x1f
constant IFLA_NUM_RX_QUEUES (line 530) | IFLA_NUM_RX_QUEUES = 0x20
constant IFLA_CARRIER (line 531) | IFLA_CARRIER = 0x21
constant IFLA_PHYS_PORT_ID (line 532) | IFLA_PHYS_PORT_ID = 0x22
constant IFLA_CARRIER_CHANGES (line 533) | IFLA_CARRIER_CHANGES = 0x23
constant IFLA_PHYS_SWITCH_ID (line 534) | IFLA_PHYS_SWITCH_ID = 0x24
constant IFLA_LINK_NETNSID (line 535) | IFLA_LINK_NETNSID = 0x25
constant IFLA_PHYS_PORT_NAME (line 536) | IFLA_PHYS_PORT_NAME = 0x26
constant IFLA_PROTO_DOWN (line 537) | IFLA_PROTO_DOWN = 0x27
constant IFLA_GSO_MAX_SEGS (line 538) | IFLA_GSO_MAX_SEGS = 0x28
constant IFLA_GSO_MAX_SIZE (line 539) | IFLA_GSO_MAX_SIZE = 0x29
constant IFLA_PAD (line 540) | IFLA_PAD = 0x2a
constant IFLA_XDP (line 541) | IFLA_XDP = 0x2b
constant IFLA_EVENT (line 542) | IFLA_EVENT = 0x2c
constant IFLA_NEW_NETNSID (line 543) | IFLA_NEW_NETNSID = 0x2d
constant IFLA_IF_NETNSID (line 544) | IFLA_IF_NETNSID = 0x2e
constant IFLA_TARGET_NETNSID (line 545) | IFLA_TARGET_NETNSID = 0x2e
constant IFLA_CARRIER_UP_COUNT (line 546) | IFLA_CARRIER_UP_COUNT = 0x2f
constant IFLA_CARRIER_DOWN_COUNT (line 547) | IFLA_CARRIER_DOWN_COUNT = 0x30
constant IFLA_NEW_IFINDEX (line 548) | IFLA_NEW_IFINDEX = 0x31
constant IFLA_MIN_MTU (line 549) | IFLA_MIN_MTU = 0x32
constant IFLA_MAX_MTU (line 550) | IFLA_MAX_MTU = 0x33
constant IFLA_MAX (line 551) | IFLA_MAX = 0x33
constant IFLA_INFO_KIND (line 552) | IFLA_INFO_KIND = 0x1
constant IFLA_INFO_DATA (line 553) | IFLA_INFO_DATA = 0x2
constant IFLA_INFO_XSTATS (line 554) | IFLA_INFO_XSTATS = 0x3
constant IFLA_INFO_SLAVE_KIND (line 555) | IFLA_INFO_SLAVE_KIND = 0x4
constant IFLA_INFO_SLAVE_DATA (line 556) | IFLA_INFO_SLAVE_DATA = 0x5
constant RT_SCOPE_UNIVERSE (line 557) | RT_SCOPE_UNIVERSE = 0x0
constant RT_SCOPE_SITE (line 558) | RT_SCOPE_SITE = 0xc8
constant RT_SCOPE_LINK (line 559) | RT_SCOPE_LINK = 0xfd
constant RT_SCOPE_HOST (line 560) | RT_SCOPE_HOST = 0xfe
constant RT_SCOPE_NOWHERE (line 561) | RT_SCOPE_NOWHERE = 0xff
constant RT_TABLE_UNSPEC (line 562) | RT_TABLE_UNSPEC = 0x0
constant RT_TABLE_COMPAT (line 563) | RT_TABLE_COMPAT = 0xfc
constant RT_TABLE_DEFAULT (line 564) | RT_TABLE_DEFAULT = 0xfd
constant RT_TABLE_MAIN (line 565) | RT_TABLE_MAIN = 0xfe
constant RT_TABLE_LOCAL (line 566) | RT_TABLE_LOCAL = 0xff
constant RT_TABLE_MAX (line 567) | RT_TABLE_MAX = 0xffffffff
constant RTA_UNSPEC (line 568) | RTA_UNSPEC = 0x0
constant RTA_DST (line 569) | RTA_DST = 0x1
constant RTA_SRC (line 570) | RTA_SRC = 0x2
constant RTA_IIF (line 571) | RTA_IIF = 0x3
constant RTA_OIF (line 572) | RTA_OIF = 0x4
constant RTA_GATEWAY (line 573) | RTA_GATEWAY = 0x5
constant RTA_PRIORITY (line 574) | RTA_PRIORITY = 0x6
constant RTA_PREFSRC (line 575) | RTA_PREFSRC = 0x7
constant RTA_METRICS (line 576) | RTA_METRICS = 0x8
constant RTA_MULTIPATH (line 577) | RTA_MULTIPATH = 0x9
constant RTA_FLOW (line 578) | RTA_FLOW = 0xb
constant RTA_CACHEINFO (line 579) | RTA_CACHEINFO = 0xc
constant RTA_TABLE (line 580) | RTA_TABLE = 0xf
constant RTA_MARK (line 581) | RTA_MARK = 0x10
constant RTA_MFC_STATS (line 582) | RTA_MFC_STATS = 0x11
constant RTA_VIA (line 583) | RTA_VIA = 0x12
constant RTA_NEWDST (line 584) | RTA_NEWDST = 0x13
constant RTA_PREF (line 585) | RTA_PREF = 0x14
constant RTA_ENCAP_TYPE (line 586) | RTA_ENCAP_TYPE = 0x15
constant RTA_ENCAP (line 587) | RTA_ENCAP = 0x16
constant RTA_EXPIRES (line 588) | RTA_EXPIRES = 0x17
constant RTA_PAD (line 589) | RTA_PAD = 0x18
constant RTA_UID (line 590) | RTA_UID = 0x19
constant RTA_TTL_PROPAGATE (line 591) | RTA_TTL_PROPAGATE = 0x1a
constant RTA_IP_PROTO (line 592) | RTA_IP_PROTO = 0x1b
constant RTA_SPORT (line 593) | RTA_SPORT = 0x1c
constant RTA_DPORT (line 594) | RTA_DPORT = 0x1d
constant RTN_UNSPEC (line 595) | RTN_UNSPEC = 0x0
constant RTN_UNICAST (line 596) | RTN_UNICAST = 0x1
constant RTN_LOCAL (line 597) | RTN_LOCAL = 0x2
constant RTN_BROADCAST (line 598) | RTN_BROADCAST = 0x3
constant RTN_ANYCAST (line 599) | RTN_ANYCAST = 0x4
constant RTN_MULTICAST (line 600) | RTN_MULTICAST = 0x5
constant RTN_BLACKHOLE (line 601) | RTN_BLACKHOLE = 0x6
constant RTN_UNREACHABLE (line 602) | RTN_UNREACHABLE = 0x7
constant RTN_PROHIBIT (line 603) | RTN_PROHIBIT = 0x8
constant RTN_THROW (line 604) | RTN_THROW = 0x9
constant RTN_NAT (line 605) | RTN_NAT = 0xa
constant RTN_XRESOLVE (line 606) | RTN_XRESOLVE = 0xb
constant RTNLGRP_NONE (line 607) | RTNLGRP_NONE = 0x0
constant RTNLGRP_LINK (line 608) | RTNLGRP_LINK = 0x1
constant RTNLGRP_NOTIFY (line 609) | RTNLGRP_NOTIFY = 0x2
constant RTNLGRP_NEIGH (line 610) | RTNLGRP_NEIGH = 0x3
constant RTNLGRP_TC (line 611) | RTNLGRP_TC = 0x4
constant RTNLGRP_IPV4_IFADDR (line 612) | RTNLGRP_IPV4_IFADDR = 0x5
constant RTNLGRP_IPV4_MROUTE (line 613) | RTNLGRP_IPV4_MROUTE = 0x6
constant RTNLGRP_IPV4_ROUTE (line 614) | RTNLGRP_IPV4_ROUTE = 0x7
constant RTNLGRP_IPV4_RULE (line 615) | RTNLGRP_IPV4_RULE = 0x8
constant RTNLGRP_IPV6_IFADDR (line 616) | RTNLGRP_IPV6_IFADDR = 0x9
constant RTNLGRP_IPV6_MROUTE (line 617) | RTNLGRP_IPV6_MROUTE = 0xa
constant RTNLGRP_IPV6_ROUTE (line 618) | RTNLGRP_IPV6_ROUTE = 0xb
constant RTNLGRP_IPV6_IFINFO (line 619) | RTNLGRP_IPV6_IFINFO = 0xc
constant RTNLGRP_IPV6_PREFIX (line 620) | RTNLGRP_IPV6_PREFIX = 0x12
constant RTNLGRP_IPV6_RULE (line 621) | RTNLGRP_IPV6_RULE = 0x13
constant RTNLGRP_ND_USEROPT (line 622) | RTNLGRP_ND_USEROPT = 0x14
constant SizeofNlMsghdr (line 623) | SizeofNlMsghdr = 0x10
constant SizeofNlMsgerr (line 624) | SizeofNlMsgerr = 0x14
constant SizeofRtGenmsg (line 625) | SizeofRtGenmsg = 0x1
constant SizeofNlAttr (line 626) | SizeofNlAttr = 0x4
constant SizeofRtAttr (line 627) | SizeofRtAttr = 0x4
constant SizeofIfInfomsg (line 628) | SizeofIfInfomsg = 0x10
constant SizeofIfAddrmsg (line 629) | SizeofIfAddrmsg = 0x8
constant SizeofIfaCacheinfo (line 630) | SizeofIfaCacheinfo = 0x10
constant SizeofRtMsg (line 631) | SizeofRtMsg = 0xc
constant SizeofRtNexthop (line 632) | SizeofRtNexthop = 0x8
constant SizeofNdUseroptmsg (line 633) | SizeofNdUseroptmsg = 0x10
constant SizeofNdMsg (line 634) | SizeofNdMsg = 0xc
type NlMsghdr (line 637) | type NlMsghdr struct
type NlMsgerr (line 645) | type NlMsgerr struct
type RtGenmsg (line 650) | type RtGenmsg struct
type NlAttr (line 654) | type NlAttr struct
type RtAttr (line 659) | type RtAttr struct
type IfInfomsg (line 664) | type IfInfomsg struct
type IfAddrmsg (line 673) | type IfAddrmsg struct
type IfaCacheinfo (line 681) | type IfaCacheinfo struct
type RtMsg (line 688) | type RtMsg struct
type RtNexthop (line 700) | type RtNexthop struct
type NdUseroptmsg (line 707) | type NdUseroptmsg struct
type NdMsg (line 718) | type NdMsg struct
constant SizeofSockFilter (line 729) | SizeofSockFilter = 0x8
constant SizeofSockFprog (line 730) | SizeofSockFprog = 0x10
type SockFilter (line 733) | type SockFilter struct
type SockFprog (line 740) | type SockFprog struct
type InotifyEvent (line 745) | type InotifyEvent struct
constant SizeofInotifyEvent (line 752) | SizeofInotifyEvent = 0x10
type PtraceRegs (line 754) | type PtraceRegs struct
type FdSet (line 763) | type FdSet struct
type Sysinfo_t (line 767) | type Sysinfo_t struct
type Utsname (line 785) | type Utsname struct
type Ustat_t (line 794) | type Ustat_t struct
type EpollEvent (line 802) | type EpollEvent struct
constant AT_EMPTY_PATH (line 810) | AT_EMPTY_PATH = 0x1000
constant AT_FDCWD (line 811) | AT_FDCWD = -0x64
constant AT_NO_AUTOMOUNT (line 812) | AT_NO_AUTOMOUNT = 0x800
constant AT_REMOVEDIR (line 813) | AT_REMOVEDIR = 0x200
constant AT_STATX_SYNC_AS_STAT (line 815) | AT_STATX_SYNC_AS_STAT = 0x0
constant AT_STATX_FORCE_SYNC (line 816) | AT_STATX_FORCE_SYNC = 0x2000
constant AT_STATX_DONT_SYNC (line 817) | AT_STATX_DONT_SYNC = 0x4000
constant AT_SYMLINK_FOLLOW (line 819) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 820) | AT_SYMLINK_NOFOLLOW = 0x100
constant AT_EACCESS (line 822) | AT_EACCESS = 0x200
type PollFd (line 825) | type PollFd struct
constant POLLIN (line 832) | POLLIN = 0x1
constant POLLPRI (line 833) | POLLPRI = 0x2
constant POLLOUT (line 834) | POLLOUT = 0x4
constant POLLRDHUP (line 835) | POLLRDHUP = 0x800
constant POLLERR (line 836) | POLLERR = 0x8
constant POLLHUP (line 837) | POLLHUP = 0x10
constant POLLNVAL (line 838) | POLLNVAL = 0x20
type Sigset_t (line 841) | type Sigset_t struct
constant _C__NSIG (line 845) | _C__NSIG = 0x41
type SignalfdSiginfo (line 847) | type SignalfdSiginfo struct
constant PERF_IOC_FLAG_GROUP (line 872) | PERF_IOC_FLAG_GROUP = 0x1
type Termios (line 874) | type Termios struct
type Winsize (line 885) | type Winsize struct
type Taskstats (line 892) | type Taskstats struct
constant TASKSTATS_CMD_UNSPEC (line 942) | TASKSTATS_CMD_UNSPEC = 0x0
constant TASKSTATS_CMD_GET (line 943) | TASKSTATS_CMD_GET = 0x1
constant TASKSTATS_CMD_NEW (line 944) | TASKSTATS_CMD_NEW = 0x2
constant TASKSTATS_TYPE_UNSPEC (line 945) | TASKSTATS_TYPE_UNSPEC = 0x0
constant TASKSTATS_TYPE_PID (line 946) | TASKSTATS_TYPE_PID = 0x1
constant TASKSTATS_TYPE_TGID (line 947) | TASKSTATS_TYPE_TGID = 0x2
constant TASKSTATS_TYPE_STATS (line 948) | TASKSTATS_TYPE_STATS = 0x3
constant TASKSTATS_TYPE_AGGR_PID (line 949) | TASKSTATS_TYPE_AGGR_PID = 0x4
constant TASKSTATS_TYPE_AGGR_TGID (line 950) | TASKSTATS_TYPE_AGGR_TGID = 0x5
constant TASKSTATS_TYPE_NULL (line 951) | TASKSTATS_TYPE_NULL = 0x6
constant TASKSTATS_CMD_ATTR_UNSPEC (line 952) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0
constant TASKSTATS_CMD_ATTR_PID (line 953) | TASKSTATS_CMD_ATTR_PID = 0x1
constant TASKSTATS_CMD_ATTR_TGID (line 954) | TASKSTATS_CMD_ATTR_TGID = 0x2
constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 955) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3
constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 956) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4
type CGroupStats (line 959) | type CGroupStats struct
constant CGROUPSTATS_CMD_UNSPEC (line 968) | CGROUPSTATS_CMD_UNSPEC = 0x3
constant CGROUPSTATS_CMD_GET (line 969) | CGROUPSTATS_CMD_GET = 0x4
constant CGROUPSTATS_CMD_NEW (line 970) | CGROUPSTATS_CMD_NEW = 0x5
constant CGROUPSTATS_TYPE_UNSPEC (line 971) | CGROUPSTATS_TYPE_UNSPEC = 0x0
constant CGROUPSTATS_TYPE_CGROUP_STATS (line 972) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1
constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 973) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0
constant CGROUPSTATS_CMD_ATTR_FD (line 974) | CGROUPSTATS_CMD_ATTR_FD = 0x1
type Genlmsghdr (line 977) | type Genlmsghdr struct
constant CTRL_CMD_UNSPEC (line 984) | CTRL_CMD_UNSPEC = 0x0
constant CTRL_CMD_NEWFAMILY (line 985) | CTRL_CMD_NEWFAMILY = 0x1
constant CTRL_CMD_DELFAMILY (line 986) | CTRL_CMD_DELFAMILY = 0x2
constant CTRL_CMD_GETFAMILY (line 987) | CTRL_CMD_GETFAMILY = 0x3
constant CTRL_CMD_NEWOPS (line 988) | CTRL_CMD_NEWOPS = 0x4
constant CTRL_CMD_DELOPS (line 989) | CTRL_CMD_DELOPS = 0x5
constant CTRL_CMD_GETOPS (line 990) | CTRL_CMD_GETOPS = 0x6
constant CTRL_CMD_NEWMCAST_GRP (line 991) | CTRL_CMD_NEWMCAST_GRP = 0x7
constant CTRL_CMD_DELMCAST_GRP (line 992) | CTRL_CMD_DELMCAST_GRP = 0x8
constant CTRL_CMD_GETMCAST_GRP (line 993) | CTRL_CMD_GETMCAST_GRP = 0x9
constant CTRL_ATTR_UNSPEC (line 994) | CTRL_ATTR_UNSPEC = 0x0
constant CTRL_ATTR_FAMILY_ID (line 995) | CTRL_ATTR_FAMILY_ID = 0x1
constant CTRL_ATTR_FAMILY_NAME (line 996) | CTRL_ATTR_FAMILY_NAME = 0x2
constant CTRL_ATTR_VERSION (line 997) | CTRL_ATTR_VERSION = 0x3
constant CTRL_ATTR_HDRSIZE (line 998) | CTRL_ATTR_HDRSIZE = 0x4
constant CTRL_ATTR_MAXATTR (line 999) | CTRL_ATTR_MAXATTR = 0x5
constant CTRL_ATTR_OPS (line 1000) | CTRL_ATTR_OPS = 0x6
constant CTRL_ATTR_MCAST_GROUPS (line 1001) | CTRL_ATTR_MCAST_GROUPS = 0x7
constant CTRL_ATTR_OP_UNSPEC (line 1002) | CTRL_ATTR_OP_UNSPEC = 0x0
constant CTRL_ATTR_OP_ID (line 1003) | CTRL_ATTR_OP_ID = 0x1
constant CTRL_ATTR_OP_FLAGS (line 1004) | CTRL_ATTR_OP_FLAGS = 0x2
constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 1005) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0
constant CTRL_ATTR_MCAST_GRP_NAME (line 1006) | CTRL_ATTR_MCAST_GRP_NAME = 0x1
constant CTRL_ATTR_MCAST_GRP_ID (line 1007) | CTRL_ATTR_MCAST_GRP_ID = 0x2
type cpuMask (line 1010) | type cpuMask
constant _CPU_SETSIZE (line 1013) | _CPU_SETSIZE = 0x400
constant _NCPUBITS (line 1014) | _NCPUBITS = 0x40
constant BDADDR_BREDR (line 1018) | BDADDR_BREDR = 0x0
constant BDADDR_LE_PUBLIC (line 1019) | BDADDR_LE_PUBLIC = 0x1
constant BDADDR_LE_RANDOM (line 1020) | BDADDR_LE_RANDOM = 0x2
type PerfEventAttr (line 1023) | type PerfEventAttr struct
type PerfEventMmapPage (line 1045) | type PerfEventMmapPage struct
constant PerfBitDisabled (line 1072) | PerfBitDisabled uint64 = CBitFieldMaskBit0
constant PerfBitInherit (line 1073) | PerfBitInherit = CBitFieldMaskBit1
constant PerfBitPinned (line 1074) | PerfBitPinned = CBitFieldMaskBit2
constant PerfBitExclusive (line 1075) | PerfBitExclusive = CBitFieldMaskBit3
constant PerfBitExcludeUser (line 1076) | PerfBitExcludeUser = CBitFieldMaskBit4
constant PerfBitExcludeKernel (line 1077) | PerfBitExcludeKernel = CBitFieldMaskBit5
constant PerfBitExcludeHv (line 1078) | PerfBitExcludeHv = CBitFieldMaskBit6
constant PerfBitExcludeIdle (line 1079) | PerfBitExcludeIdle = CBitFieldMaskBit7
constant PerfBitMmap (line 1080) | PerfBitMmap = CBitFieldMaskBit8
constant PerfBitComm (line 1081) | PerfBitComm = CBitFieldMaskBit9
constant PerfBitFreq (line 1082) | PerfBitFreq = CBitFieldMaskBit10
constant PerfBitInheritStat (line 1083) | PerfBitInheritStat = CBitFieldMaskBit11
constant PerfBitEnableOnExec (line 1084) | PerfBitEnableOnExec = CBitFieldMaskBit12
constant PerfBitTask (line 1085) | PerfBitTask = CBitFieldMaskBit13
constant PerfBitWatermark (line 1086) | PerfBitWatermark = CBitFieldMaskBit14
constant PerfBitPreciseIPBit1 (line 1087) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15
constant PerfBitPreciseIPBit2 (line 1088) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16
constant PerfBitMmapData (line 1089) | PerfBitMmapData = CBitFieldMaskBit17
constant PerfBitSampleIDAll (line 1090) | PerfBitSampleIDAll = CBitFieldMaskBit18
constant PerfBitExcludeHost (line 1091) | PerfBitExcludeHost = CBitFieldMaskBit19
constant PerfBitExcludeGuest (line 1092) | PerfBitExcludeGuest = CBitFieldMaskBit20
constant PerfBitExcludeCallchainKernel (line 1093) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21
constant PerfBitExcludeCallchainUser (line 1094) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22
constant PerfBitMmap2 (line 1095) | PerfBitMmap2 = CBitFieldMaskBit23
constant PerfBitCommExec (line 1096) | PerfBitCommExec = CBitFieldMaskBit24
constant PerfBitUseClockID (line 1097) | PerfBitUseClockID = CBitFieldMaskBit25
constant PerfBitContextSwitch (line 1098) | PerfBitContextSwitch = CBitFieldMaskBit26
constant PERF_TYPE_HARDWARE (line 1102) | PERF_TYPE_HARDWARE = 0x0
constant PERF_TYPE_SOFTWARE (line 1103) | PERF_TYPE_SOFTWARE = 0x1
constant PERF_TYPE_TRACEPOINT (line 1104) | PERF_TYPE_TRACEPOINT = 0x2
constant PERF_TYPE_HW_CACHE (line 1105) | PERF_TYPE_HW_CACHE = 0x3
constant PERF_TYPE_RAW (line 1106) | PERF_TYPE_RAW = 0x4
constant PERF_TYPE_BREAKPOINT (line 1107) | PERF_TYPE_BREAKPOINT = 0x5
constant PERF_COUNT_HW_CPU_CYCLES (line 1109) | PERF_COUNT_HW_CPU_CYCLES = 0x0
constant PERF_COUNT_HW_INSTRUCTIONS (line 1110) | PERF_COUNT_HW_INSTRUCTIONS = 0x1
constant PERF_COUNT_HW_CACHE_REFERENCES (line 1111) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2
constant PERF_COUNT_HW_CACHE_MISSES (line 1112) | PERF_COUNT_HW_CACHE_MISSES = 0x3
constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 1113) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4
constant PERF_COUNT_HW_BRANCH_MISSES (line 1114) | PERF_COUNT_HW_BRANCH_MISSES = 0x5
constant PERF_COUNT_HW_BUS_CYCLES (line 1115) | PERF_COUNT_HW_BUS_CYCLES = 0x6
constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 1116) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7
constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 1117) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8
constant PERF_COUNT_HW_REF_CPU_CYCLES (line 1118) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9
constant PERF_COUNT_HW_CACHE_L1D (line 1120) | PERF_COUNT_HW_CACHE_L1D = 0x0
constant PERF_COUNT_HW_CACHE_L1I (line 1121) | PERF_COUNT_HW_CACHE_L1I = 0x1
constant PERF_COUNT_HW_CACHE_LL (line 1122) | PERF_COUNT_HW_CACHE_LL = 0x2
constant PERF_COUNT_HW_CACHE_DTLB (line 1123) | PERF_COUNT_HW_CACHE_DTLB = 0x3
constant PERF_COUNT_HW_CACHE_ITLB (line 1124) | PERF_COUNT_HW_CACHE_ITLB = 0x4
constant PERF_COUNT_HW_CACHE_BPU (line 1125) | PERF_COUNT_HW_CACHE_BPU = 0x5
constant PERF_COUNT_HW_CACHE_NODE (line 1126) | PERF_COUNT_HW_CACHE_NODE = 0x6
constant PERF_COUNT_HW_CACHE_OP_READ (line 1128) | PERF_COUNT_HW_CACHE_OP_READ = 0x0
constant PERF_COUNT_HW_CACHE_OP_WRITE (line 1129) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1
constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 1130) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2
constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 1132) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0
constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 1133) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1
constant PERF_COUNT_SW_CPU_CLOCK (line 1135) | PERF_COUNT_SW_CPU_CLOCK = 0x0
constant PERF_COUNT_SW_TASK_CLOCK (line 1136) | PERF_COUNT_SW_TASK_CLOCK = 0x1
constant PERF_COUNT_SW_PAGE_FAULTS (line 1137) | PERF_COUNT_SW_PAGE_FAULTS = 0x2
constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 1138) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3
constant PERF_COUNT_SW_CPU_MIGRATIONS (line 1139) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4
constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 1140) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5
constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 1141) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6
constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1142) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7
constant PERF_COUNT_SW_EMULATION_FAULTS (line 1143) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8
constant PERF_COUNT_SW_DUMMY (line 1144) | PERF_COUNT_SW_DUMMY = 0x9
constant PERF_COUNT_SW_BPF_OUTPUT (line 1145) | PERF_COUNT_SW_BPF_OUTPUT = 0xa
constant PERF_SAMPLE_IP (line 1147) | PERF_SAMPLE_IP = 0x1
constant PERF_SAMPLE_TID (line 1148) | PERF_SAMPLE_TID = 0x2
constant PERF_SAMPLE_TIME (line 1149) | PERF_SAMPLE_TIME = 0x4
constant PERF_SAMPLE_ADDR (line 1150) | PERF_SAMPLE_ADDR = 0x8
constant PERF_SAMPLE_READ (line 1151) | PERF_SAMPLE_READ = 0x10
constant PERF_SAMPLE_CALLCHAIN (line 1152) | PERF_SAMPLE_CALLCHAIN = 0x20
constant PERF_SAMPLE_ID (line 1153) | PERF_SAMPLE_ID = 0x40
constant PERF_SAMPLE_CPU (line 1154) | PERF_SAMPLE_CPU = 0x80
constant PERF_SAMPLE_PERIOD (line 1155) | PERF_SAMPLE_PERIOD = 0x100
constant PERF_SAMPLE_STREAM_ID (line 1156) | PERF_SAMPLE_STREAM_ID = 0x200
constant PERF_SAMPLE_RAW (line 1157) | PERF_SAMPLE_RAW = 0x400
constant PERF_SAMPLE_BRANCH_STACK (line 1158) | PERF_SAMPLE_BRANCH_STACK = 0x800
constant PERF_SAMPLE_BRANCH_USER (line 1160) | PERF_SAMPLE_BRANCH_USER = 0x1
constant PERF_SAMPLE_BRANCH_KERNEL (line 1161) | PERF_SAMPLE_BRANCH_KERNEL = 0x2
constant PERF_SAMPLE_BRANCH_HV (line 1162) | PERF_SAMPLE_BRANCH_HV = 0x4
constant PERF_SAMPLE_BRANCH_ANY (line 1163) | PERF_SAMPLE_BRANCH_ANY = 0x8
constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1164) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10
constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1165) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20
constant PERF_SAMPLE_BRANCH_IND_CALL (line 1166) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40
constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1167) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80
constant PERF_SAMPLE_BRANCH_IN_TX (line 1168) | PERF_SAMPLE_BRANCH_IN_TX = 0x100
constant PERF_SAMPLE_BRANCH_NO_TX (line 1169) | PERF_SAMPLE_BRANCH_NO_TX = 0x200
constant PERF_SAMPLE_BRANCH_COND (line 1170) | PERF_SAMPLE_BRANCH_COND = 0x400
constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1171) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800
constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1172) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000
constant PERF_SAMPLE_BRANCH_CALL (line 1173) | PERF_SAMPLE_BRANCH_CALL = 0x2000
constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1174) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000
constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1175) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000
constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1176) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000
constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1178) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1
constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1179) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2
constant PERF_FORMAT_ID (line 1180) | PERF_FORMAT_ID = 0x4
constant PERF_FORMAT_GROUP (line 1181) | PERF_FORMAT_GROUP = 0x8
constant PERF_RECORD_MMAP (line 1183) | PERF_RECORD_MMAP = 0x1
constant PERF_RECORD_LOST (line 1184) | PERF_RECORD_LOST = 0x2
constant PERF_RECORD_COMM (line 1185) | PERF_RECORD_COMM = 0x3
constant PERF_RECORD_EXIT (line 1186) | PERF_RECORD_EXIT = 0x4
constant PERF_RECORD_THROTTLE (line 1187) | PERF_RECORD_THROTTLE = 0x5
constant PERF_RECORD_UNTHROTTLE (line 1188) | PERF_RECORD_UNTHROTTLE = 0x6
constant PERF_RECORD_FORK (line 1189) | PERF_RECORD_FORK = 0x7
constant PERF_RECORD_READ (line 1190) | PERF_RECORD_READ = 0x8
constant PERF_RECORD_SAMPLE (line 1191) | PERF_RECORD_SAMPLE = 0x9
constant PERF_RECORD_MMAP2 (line 1192) | PERF_RECORD_MMAP2 = 0xa
constant PERF_RECORD_AUX (line 1193) | PERF_RECORD_AUX = 0xb
constant PERF_RECORD_ITRACE_START (line 1194) | PERF_RECORD_ITRACE_START = 0xc
constant PERF_RECORD_LOST_SAMPLES (line 1195) | PERF_RECORD_LOST_SAMPLES = 0xd
constant PERF_RECORD_SWITCH (line 1196) | PERF_RECORD_SWITCH = 0xe
constant PERF_RECORD_SWITCH_CPU_WIDE (line 1197) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf
constant PERF_RECORD_NAMESPACES (line 1198) | PERF_RECORD_NAMESPACES = 0x10
constant PERF_CONTEXT_HV (line 1200) | PERF_CONTEXT_HV = -0x20
constant PERF_CONTEXT_KERNEL (line 1201) | PERF_CONTEXT_KERNEL = -0x80
constant PERF_CONTEXT_USER (line 1202) | PERF_CONTEXT_USER = -0x200
constant PERF_CONTEXT_GUEST (line 1204) | PERF_CONTEXT_GUEST = -0x800
constant PERF_CONTEXT_GUEST_KERNEL (line 1205) | PERF_CONTEXT_GUEST_KERNEL = -0x880
constant PERF_CONTEXT_GUEST_USER (line 1206) | PERF_CONTEXT_GUEST_USER = -0xa00
constant PERF_FLAG_FD_NO_GROUP (line 1208) | PERF_FLAG_FD_NO_GROUP = 0x1
constant PERF_FLAG_FD_OUTPUT (line 1209) | PERF_FLAG_FD_OUTPUT = 0x2
constant PERF_FLAG_PID_CGROUP (line 1210) | PERF_FLAG_PID_CGROUP = 0x4
constant PERF_FLAG_FD_CLOEXEC (line 1211) | PERF_FLAG_FD_CLOEXEC = 0x8
constant CBitFieldMaskBit0 (line 1215) | CBitFieldMaskBit0 = 0x8000000000000000
constant CBitFieldMaskBit1 (line 1216) | CBitFieldMaskBit1 = 0x4000000000000000
constant CBitFieldMaskBit2 (line 1217) | CBitFieldMaskBit2 = 0x2000000000000000
constant CBitFieldMaskBit3 (line 1218) | CBitFieldMaskBit3 = 0x1000000000000000
constant CBitFieldMaskBit4 (line 1219) | CBitFieldMaskBit4 = 0x800000000000000
constant CBitFieldMaskBit5 (line 1220) | CBitFieldMaskBit5 = 0x400000000000000
constant CBitFieldMaskBit6 (line 1221) | CBitFieldMaskBit6 = 0x200000000000000
constant CBitFieldMaskBit7 (line 1222) | CBitFieldMaskBit7 = 0x100000000000000
constant CBitFieldMaskBit8 (line 1223) | CBitFieldMaskBit8 = 0x80000000000000
constant CBitFieldMaskBit9 (line 1224) | CBitFieldMaskBit9 = 0x40000000000000
constant CBitFieldMaskBit10 (line 1225) | CBitFieldMaskBit10 = 0x20000000000000
constant CBitFieldMaskBit11 (line 1226) | CBitFieldMaskBit11 = 0x10000000000000
constant CBitFieldMaskBit12 (line 1227) | CBitFieldMaskBit12 = 0x8000000000000
constant CBitFieldMaskBit13 (line 1228) | CBitFieldMaskBit13 = 0x4000000000000
constant CBitFieldMaskBit14 (line 1229) | CBitFieldMaskBit14 = 0x2000000000000
constant CBitFieldMaskBit15 (line 1230) | CBitFieldMaskBit15 = 0x1000000000000
constant CBitFieldMaskBit16 (line 1231) | CBitFieldMaskBit16 = 0x800000000000
constant CBitFieldMaskBit17 (line 1232) | CBitFieldMaskBit17 = 0x400000000000
constant CBitFieldMaskBit18 (line 1233) | CBitFieldMaskBit18 = 0x200000000000
constant CBitFieldMaskBit19 (line 1234) | CBitFieldMaskBit19 = 0x100000000000
constant CBitFieldMaskBit20 (line 1235) | CBitFieldMaskBit20 = 0x80000000000
constant CBitFieldMaskBit21 (line 1236) | CBitFieldMaskBit21 = 0x40000000000
constant CBitFieldMaskBit22 (line 1237) | CBitFieldMaskBit22 = 0x20000000000
constant CBitFieldMaskBit23 (line 1238) | CBitFieldMaskBit23 = 0x10000000000
constant CBitFieldMaskBit24 (line 1239) | CBitFieldMaskBit24 = 0x8000000000
constant CBitFieldMaskBit25 (line 1240) | CBitFieldMaskBit25 = 0x4000000000
constant CBitFieldMaskBit26 (line 1241) | CBitFieldMaskBit26 = 0x2000000000
constant CBitFieldMaskBit27 (line 1242) | CBitFieldMaskBit27 = 0x1000000000
constant CBitFieldMaskBit28 (line 1243) | CBitFieldMaskBit28 = 0x800000000
constant CBitFieldMaskBit29 (line 1244) | CBitFieldMaskBit29 = 0x400000000
constant CBitFieldMaskBit30 (line 1245) | CBitFieldMaskBit30 = 0x200000000
constant CBitFieldMaskBit31 (line 1246) | CBitFieldMaskBit31 = 0x100000000
constant CBitFieldMaskBit32 (line 1247) | CBitFieldMaskBit32 = 0x80000000
constant CBitFieldMaskBit33 (line 1248) | CBitFieldMaskBit33 = 0x40000000
constant CBitFieldMaskBit34 (line 1249) | CBitFieldMaskBit34 = 0x20000000
constant CBitFieldMaskBit35 (line 1250) | CBitFieldMaskBit35 = 0x10000000
constant CBitFieldMaskBit36 (line 1251) | CBitFieldMaskBit36 = 0x8000000
constant CBitFieldMaskBit37 (line 1252) | CBitFieldMaskBit37 = 0x4000000
constant CBitFieldMaskBit38 (line 1253) | CBitFieldMaskBit38 = 0x2000000
constant CBitFieldMaskBit39 (line 1254) | CBitFieldMaskBit39 = 0x1000000
constant CBitFieldMaskBit40 (line 1255) | CBitFieldMaskBit40 = 0x800000
constant CBitFieldMaskBit41 (line 1256) | CBitFieldMaskBit41 = 0x400000
constant CBitFieldMaskBit42 (line 1257) | CBitFieldMaskBit42 = 0x200000
constant CBitFieldMaskBit43 (line 1258) | CBitFieldMaskBit43 = 0x100000
constant CBitFieldMaskBit44 (line 1259) | CBitFieldMaskBit44 = 0x80000
constant CBitFieldMaskBit45 (line 1260) | CBitFieldMaskBit45 = 0x40000
constant CBitFieldMaskBit46 (line 1261) | CBitFieldMaskBit46 = 0x20000
constant CBitFieldMaskBit47 (line 1262) | CBitFieldMaskBit47 = 0x10000
constant CBitFieldMaskBit48 (line 1263) | CBitFieldMaskBit48 = 0x8000
constant CBitFieldMaskBit49 (line 1264) | CBitFieldMaskBit49 = 0x4000
constant CBitFieldMaskBit50 (line 1265) | CBitFieldMaskBit50 = 0x2000
constant CBitFieldMaskBit51 (line 1266) | CBitFieldMaskBit51 = 0x1000
constant CBitFieldMaskBit52 (line 1267) | CBitFieldMaskBit52 = 0x800
constant CBitFieldMaskBit53 (line 1268) | CBitFieldMaskBit53 = 0x400
constant CBitFieldMaskBit54 (line 1269) | CBitFieldMaskBit54 = 0x200
constant CBitFieldMaskBit55 (line 1270) | CBitFieldMaskBit55 = 0x100
constant CBitFieldMaskBit56 (line 1271) | CBitFieldMaskBit56 = 0x80
constant CBitFieldMaskBit57 (line 1272) | CBitFieldMaskBit57 = 0x40
constant CBitFieldMaskBit58 (line 1273) | CBitFieldMaskBit58 = 0x20
constant CBitFieldMaskBit59 (line 1274) | CBitFieldMaskBit59 = 0x10
constant CBitFieldMaskBit60 (line 1275) | CBitFieldMaskBit60 = 0x8
constant CBitFieldMaskBit61 (line 1276) | CBitFieldMaskBit61 = 0x4
constant CBitFieldMaskBit62 (line 1277) | CBitFieldMaskBit62 = 0x2
constant CBitFieldMaskBit63 (line 1278) | CBitFieldMaskBit63 = 0x1
type SockaddrStorage (line 1281) | type SockaddrStorage struct
type TCPMD5Sig (line 1287) | type TCPMD5Sig struct
type HDDriveCmdHdr (line 1296) | type HDDriveCmdHdr struct
type HDGeometry (line 1303) | type HDGeometry struct
type HDDriveID (line 1310) | type HDDriveID struct
type Statfs_t (line 1392) | type Statfs_t struct
constant ST_MANDLOCK (line 1408) | ST_MANDLOCK = 0x40
constant ST_NOATIME (line 1409) | ST_NOATIME = 0x400
constant ST_NODEV (line 1410) | ST_NODEV = 0x4
constant ST_NODIRATIME (line 1411) | ST_NODIRATIME = 0x800
constant ST_NOEXEC (line 1412) | ST_NOEXEC = 0x8
constant ST_NOSUID (line 1413) | ST_NOSUID = 0x2
constant ST_RDONLY (line 1414) | ST_RDONLY = 0x1
constant ST_RELATIME (line 1415) | ST_RELATIME = 0x1000
constant ST_SYNCHRONOUS (line 1416) | ST_SYNCHRONOUS = 0x10
type TpacketHdr (line 1419) | type TpacketHdr struct
type Tpacket2Hdr (line 1430) | type Tpacket2Hdr struct
type Tpacket3Hdr (line 1443) | type Tpacket3Hdr struct
type TpacketHdrVariant1 (line 1456) | type TpacketHdrVariant1 struct
type TpacketBlockDesc (line 1463) | type TpacketBlockDesc struct
type TpacketBDTS (line 1469) | type TpacketBDTS struct
type TpacketHdrV1 (line 1474) | type TpacketHdrV1 struct
type TpacketReq (line 1484) | type TpacketReq struct
type TpacketReq3 (line 1491) | type TpacketReq3 struct
type TpacketStats (line 1501) | type TpacketStats struct
type TpacketStatsV3 (line 1506) | type TpacketStatsV3 struct
type TpacketAuxdata (line 1512) | type TpacketAuxdata struct
constant TPACKET_V1 (line 1523) | TPACKET_V1 = 0x0
constant TPACKET_V2 (line 1524) | TPACKET_V2 = 0x1
constant TPACKET_V3 (line 1525) | TPACKET_V3 = 0x2
constant SizeofTpacketHdr (line 1529) | SizeofTpacketHdr = 0x20
constant SizeofTpacket2Hdr (line 1530) | SizeofTpacket2Hdr = 0x20
constant SizeofTpacket3Hdr (line 1531) | SizeofTpacket3Hdr = 0x30
constant SizeofTpacketStats (line 1533) | SizeofTpacketStats = 0x8
constant SizeofTpacketStatsV3 (line 1534) | SizeofTpacketStatsV3 = 0xc
constant NF_INET_PRE_ROUTING (line 1538) | NF_INET_PRE_ROUTING = 0x0
constant NF_INET_LOCAL_IN (line 1539) | NF_INET_LOCAL_IN = 0x1
constant NF_INET_FORWARD (line 1540) | NF_INET_FORWARD = 0x2
constant NF_INET_LOCAL_OUT (line 1541) | NF_INET_LOCAL_OUT = 0x3
constant NF_INET_POST_ROUTING (line 1542) | NF_INET_POST_ROUTING = 0x4
constant NF_INET_NUMHOOKS (line 1543) | NF_INET_NUMHOOKS = 0x5
constant NF_NETDEV_INGRESS (line 1547) | NF_NETDEV_INGRESS = 0x0
constant NF_NETDEV_NUMHOOKS (line 1548) | NF_NETDEV_NUMHOOKS = 0x1
constant NFPROTO_UNSPEC (line 1552) | NFPROTO_UNSPEC = 0x0
constant NFPROTO_INET (line 1553) | NFPROTO_INET = 0x1
constant NFPROTO_IPV4 (line 1554) | NFPROTO_IPV4 = 0x2
constant NFPROTO_ARP (line 1555) | NFPROTO_ARP = 0x3
constant NFPROTO_NETDEV (line 1556) | NFPROTO_NETDEV = 0x5
constant NFPROTO_BRIDGE (line 1557) | NFPROTO_BRIDGE = 0x7
constant NFPROTO_IPV6 (line 1558) | NFPROTO_IPV6 = 0xa
constant NFPROTO_DECNET (line 1559) | NFPROTO_DECNET = 0xc
constant NFPROTO_NUMPROTO (line 1560) | NFPROTO_NUMPROTO = 0xd
type Nfgenmsg (line 1563) | type Nfgenmsg struct
constant NFNL_BATCH_UNSPEC (line 1570) | NFNL_BATCH_UNSPEC = 0x0
constant NFNL_BATCH_GENID (line 1571) | NFNL_BATCH_GENID = 0x1
constant NFT_REG_VERDICT (line 1575) | NFT_REG_VERDICT = 0x0
constant NFT_REG_1 (line 1576) | NFT_REG_1 = 0x1
constant NFT_REG_2 (line 1577) | NFT_REG_2 = 0x2
constant NFT_REG_3 (line 1578) | NFT_REG_3 = 0x3
constant NFT_REG_4 (line 1579) | NFT_REG_4 = 0x4
constant NFT_REG32_00 (line 1580) | NFT_REG32_00 = 0x8
constant NFT_REG32_01 (line 1581) | NFT_REG32_01 = 0x9
constant NFT_REG32_02 (line 1582) | NFT_REG32_02 = 0xa
constant NFT_REG32_03 (line 1583) | NFT_REG32_03 = 0xb
constant NFT_REG32_04 (line 1584) | NFT_REG32_04 = 0xc
constant NFT_REG32_05 (line 1585) | NFT_REG32_05 = 0xd
constant NFT_REG32_06 (line 1586) | NFT_REG32_06 = 0xe
constant NFT_REG32_07 (line 1587) | NFT_REG32_07 = 0xf
constant NFT_REG32_08 (line 1588) | NFT_REG32_08 = 0x10
constant NFT_REG32_09 (line 1589) | NFT_REG32_09 = 0x11
constant NFT_REG32_10 (line 1590) | NFT_REG32_10 = 0x12
constant NFT_REG32_11 (line 1591) | NFT_REG32_11 = 0x13
constant NFT_REG32_12 (line 1592) | NFT_REG32_12 = 0x14
constant NFT_REG32_13 (line 1593) | NFT_REG32_13 = 0x15
constant NFT_REG32_14 (line 1594) | NFT_REG32_14 = 0x16
constant NFT_REG32_15 (line 1595) | NFT_REG32_15 = 0x17
constant NFT_CONTINUE (line 1596) | NFT_CONTINUE = -0x1
constant NFT_BREAK (line 1597) | NFT_BREAK = -0x2
constant NFT_JUMP (line 1598) | NFT_JUMP = -0x3
constant NFT_GOTO (line 1599) | NFT_GOTO = -0x4
constant NFT_RETURN (line 1600) | NFT_RETURN = -0x5
constant NFT_MSG_NEWTABLE (line 1601) | NFT_MSG_NEWTABLE = 0x0
constant NFT_MSG_GETTABLE (line 1602) | NFT_MSG_GETTABLE = 0x1
constant NFT_MSG_DELTABLE (line 1603) | NFT_MSG_DELTABLE = 0x2
constant NFT_MSG_NEWCHAIN (line 1604) | NFT_MSG_NEWCHAIN = 0x3
constant NFT_MSG_GETCHAIN (line 1605) | NFT_MSG_GETCHAIN = 0x4
constant NFT_MSG_DELCHAIN (line 1606) | NFT_MSG_DELCHAIN = 0x5
constant NFT_MSG_NEWRULE (line 1607) | NFT_MSG_NEWRULE = 0x6
constant NFT_MSG_GETRULE (line 1608) | NFT_MSG_GETRULE = 0x7
constant NFT_MSG_DELRULE (line 1609) | NFT_MSG_DELRULE = 0x8
constant NFT_MSG_NEWSET (line 1610) | NFT_MSG_NEWSET = 0x9
constant NFT_MSG_GETSET (line 1611) | NFT_MSG_GETSET = 0xa
constant NFT_MSG_DELSET (line 1612) | NFT_MSG_DELSET = 0xb
constant NFT_MSG_NEWSETELEM (line 1613) | NFT_MSG_NEWSETELEM = 0xc
constant NFT_MSG_GETSETELEM (line 1614) | NFT_MSG_GETSETELEM = 0xd
constant NFT_MSG_DELSETELEM (line 1615) | NFT_MSG_DELSETELEM = 0xe
constant NFT_MSG_NEWGEN (line 1616) | NFT_MSG_NEWGEN = 0xf
constant NFT_MSG_GETGEN (line 1617) | NFT_MSG_GETGEN = 0x10
constant NFT_MSG_TRACE (line 1618) | NFT_MSG_TRACE = 0x11
constant NFT_MSG_NEWOBJ (line 1619) | NFT_MSG_NEWOBJ = 0x12
constant NFT_MSG_GETOBJ (line 1620) | NFT_MSG_GETOBJ = 0x13
constant NFT_MSG_DELOBJ (line 1621) | NFT_MSG_DELOBJ = 0x14
constant NFT_MSG_GETOBJ_RESET (line 1622) | NFT_MSG_GETOBJ_RESET = 0x15
constant NFT_MSG_MAX (line 1623) | NFT_MSG_MAX = 0x19
constant NFTA_LIST_UNPEC (line 1624) | NFTA_LIST_UNPEC = 0x0
constant NFTA_LIST_ELEM (line 1625) | NFTA_LIST_ELEM = 0x1
constant NFTA_HOOK_UNSPEC (line 1626) | NFTA_HOOK_UNSPEC = 0x0
constant NFTA_HOOK_HOOKNUM (line 1627) | NFTA_HOOK_HOOKNUM = 0x1
constant NFTA_HOOK_PRIORITY (line 1628) | NFTA_HOOK_PRIORITY = 0x2
constant NFTA_HOOK_DEV (line 1629) | NFTA_HOOK_DEV = 0x3
constant NFT_TABLE_F_DORMANT (line 1630) | NFT_TABLE_F_DORMANT = 0x1
constant NFTA_TABLE_UNSPEC (line 1631) | NFTA_TABLE_UNSPEC = 0x0
constant NFTA_TABLE_NAME (line 1632) | NFTA_TABLE_NAME = 0x1
constant NFTA_TABLE_FLAGS (line 1633) | NFTA_TABLE_FLAGS = 0x2
constant NFTA_TABLE_USE (line 1634) | NFTA_TABLE_USE = 0x3
constant NFTA_CHAIN_UNSPEC (line 1635) | NFTA_CHAIN_UNSPEC = 0x0
constant NFTA_CHAIN_TABLE (line 1636) | NFTA_CHAIN_TABLE = 0x1
constant NFTA_CHAIN_HANDLE (line 1637) | NFTA_CHAIN_HANDLE = 0x2
constant NFTA_CHAIN_NAME (line 1638) | NFTA_CHAIN_NAME = 0x3
constant NFTA_CHAIN_HOOK (line 1639) | NFTA_CHAIN_HOOK = 0x4
constant NFTA_CHAIN_POLICY (line 1640) | NFTA_CHAIN_POLICY = 0x5
constant NFTA_CHAIN_USE (line 1641) | NFTA_CHAIN_USE = 0x6
constant NFTA_CHAIN_TYPE (line 1642) | NFTA_CHAIN_TYPE = 0x7
constant NFTA_CHAIN_COUNTERS (line 1643) | NFTA_CHAIN_COUNTERS = 0x8
constant NFTA_CHAIN_PAD (line 1644) | NFTA_CHAIN_PAD = 0x9
constant NFTA_RULE_UNSPEC (line 1645) | NFTA_RULE_UNSPEC = 0x0
constant NFTA_RULE_TABLE (line 1646) | NFTA_RULE_TABLE = 0x1
constant NFTA_RULE_CHAIN (line 1647) | NFTA_RULE_CHAIN = 0x2
constant NFTA_RULE_HANDLE (line 1648) | NFTA_RULE_HANDLE = 0x3
constant NFTA_RULE_EXPRESSIONS (line 1649) | NFTA_RULE_EXPRESSIONS = 0x4
constant NFTA_RULE_COMPAT (line 1650) | NFTA_RULE_COMPAT = 0x5
constant NFTA_RULE_POSITION (line 1651) | NFTA_RULE_POSITION = 0x6
constant NFTA_RULE_USERDATA (line 1652) | NFTA_RULE_USERDATA = 0x7
constant NFTA_RULE_PAD (line 1653) | NFTA_RULE_PAD = 0x8
constant NFTA_RULE_ID (line 1654) | NFTA_RULE_ID = 0x9
constant NFT_RULE_COMPAT_F_INV (line 1655) | NFT_RULE_COMPAT_F_INV = 0x2
constant NFT_RULE_COMPAT_F_MASK (line 1656) | NFT_RULE_COMPAT_F_MASK = 0x2
constant NFTA_RULE_COMPAT_UNSPEC (line 1657) | NFTA_RULE_COMPAT_UNSPEC = 0x0
constant NFTA_RULE_COMPAT_PROTO (line 1658) | NFTA_RULE_COMPAT_PROTO = 0x1
constant NFTA_RULE_COMPAT_FLAGS (line 1659) | NFTA_RULE_COMPAT_FLAGS = 0x2
constant NFT_SET_ANONYMOUS (line 1660) | NFT_SET_ANONYMOUS = 0x1
constant NFT_SET_CONSTANT (line 1661) | NFT_SET_CONSTANT = 0x2
constant NFT_SET_INTERVAL (line 1662) | NFT_SET_INTERVAL = 0x4
constant NFT_SET_MAP (line 1663) | NFT_SET_MAP = 0x8
constant NFT_SET_TIMEOUT (line 1664) | NFT_SET_TIMEOUT = 0x10
constant NFT_SET_EVAL (line 1665) | NFT_SET_EVAL = 0x20
constant NFT_SET_OBJECT (line 1666) | NFT_SET_OBJECT = 0x40
constant NFT_SET_POL_PERFORMANCE (line 1667) | NFT_SET_POL_PERFORMANCE = 0x0
constant NFT_SET_POL_MEMORY (line 1668) | NFT_SET_POL_MEMORY = 0x1
constant NFTA_SET_DESC_UNSPEC (line 1669) | NFTA_SET_DESC_UNSPEC = 0x0
constant NFTA_SET_DESC_SIZE (line 1670) | NFTA_SET_DESC_SIZE = 0x1
constant NFTA_SET_UNSPEC (line 1671) | NFTA_SET_UNSPEC = 0x0
constant NFTA_SET_TABLE (line 1672) | NFTA_SET_TABLE = 0x1
constant NFTA_SET_NAME (line 1673) | NFTA_SET_NAME = 0x2
constant NFTA_SET_FLAGS (line 1674) | NFTA_SET_FLAGS = 0x3
constant NFTA_SET_KEY_TYPE (line 1675) | NFTA_SET_KEY_TYPE = 0x4
constant NFTA_SET_KEY_LEN (line 1676) | NFTA_SET_KEY_LEN = 0x5
constant NFTA_SET_DATA_TYPE (line 1677) | NFTA_SET_DATA_TYPE = 0x6
constant NFTA_SET_DATA_LEN (line 1678) | NFTA_SET_DATA_LEN = 0x7
constant NFTA_SET_POLICY (line 1679) | NFTA_SET_POLICY = 0x8
constant NFTA_SET_DESC (line 1680) | NFTA_SET_DESC = 0x9
constant NFTA_SET_ID (line 1681) | NFTA_SET_ID = 0xa
constant NFTA_SET_TIMEOUT (line 1682) | NFTA_SET_TIMEOUT = 0xb
constant NFTA_SET_GC_INTERVAL (line 1683) | NFTA_SET_GC_INTERVAL = 0xc
constant NFTA_SET_USERDATA (line 1684) | NFTA_SET_USERDATA = 0xd
constant NFTA_SET_PAD (line 1685) | NFTA_SET_PAD = 0xe
constant NFTA_SET_OBJ_TYPE (line 1686) | NFTA_SET_OBJ_TYPE = 0xf
constant NFT_SET_ELEM_INTERVAL_END (line 1687) | NFT_SET_ELEM_INTERVAL_END = 0x1
constant NFTA_SET_ELEM_UNSPEC (line 1688) | NFTA_SET_ELEM_UNSPEC = 0x0
constant NFTA_SET_ELEM_KEY (line 1689) | NFTA_SET_ELEM_KEY = 0x1
constant NFTA_SET_ELEM_DATA (line 1690) | NFTA_SET_ELEM_DATA = 0x2
constant NFTA_SET_ELEM_FLAGS (line 1691) | NFTA_SET_ELEM_FLAGS = 0x3
constant NFTA_SET_ELEM_TIMEOUT (line 1692) | NFTA_SET_ELEM_TIMEOUT = 0x4
constant NFTA_SET_ELEM_EXPIRATION (line 1693) | NFTA_SET_ELEM_EXPIRATION = 0x5
constant NFTA_SET_ELEM_USERDATA (line 1694) | NFTA_SET_ELEM_USERDATA = 0x6
constant NFTA_SET_ELEM_EXPR (line 1695) | NFTA_SET_ELEM_EXPR = 0x7
constant NFTA_SET_ELEM_PAD (line 1696) | NFTA_SET_ELEM_PAD = 0x8
constant NFTA_SET_ELEM_OBJREF (line 1697) | NFTA_SET_ELEM_OBJREF = 0x9
constant NFTA_SET_ELEM_LIST_UNSPEC (line 1698) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0
constant NFTA_SET_ELEM_LIST_TABLE (line 1699) | NFTA_SET_ELEM_LIST_TABLE = 0x1
constant NFTA_SET_ELEM_LIST_SET (line 1700) | NFTA_SET_ELEM_LIST_SET = 0x2
constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1701) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3
constant NFTA_SET_ELEM_LIST_SET_ID (line 1702) | NFTA_SET_ELEM_LIST_SET_ID = 0x4
constant NFT_DATA_VALUE (line 1703) | NFT_DATA_VALUE = 0x0
constant NFT_DATA_VERDICT (line 1704) | NFT_DATA_VERDICT = 0xffffff00
constant NFTA_DATA_UNSPEC (line 1705) | NFTA_DATA_UNSPEC = 0x0
constant NFTA_DATA_VALUE (line 1706) | NFTA_DATA_VALUE = 0x1
constant NFTA_DATA_VERDICT (line 1707) | NFTA_DATA_VERDICT = 0x2
constant NFTA_VERDICT_UNSPEC (line 1708) | NFTA_VERDICT_UNSPEC = 0x0
constant NFTA_VERDICT_CODE (line 1709) | NFTA_VERDICT_CODE = 0x1
constant NFTA_VERDICT_CHAIN (line 1710) | NFTA_VERDICT_CHAIN = 0x2
constant NFTA_EXPR_UNSPEC (line 1711) | NFTA_EXPR_UNSPEC = 0x0
constant NFTA_EXPR_NAME (line 1712) | NFTA_EXPR_NAME = 0x1
constant NFTA_EXPR_DATA (line 1713) | NFTA_EXPR_DATA = 0x2
constant NFTA_IMMEDIATE_UNSPEC (line 1714) | NFTA_IMMEDIATE_UNSPEC = 0x0
constant NFTA_IMMEDIATE_DREG (line 1715) | NFTA_IMMEDIATE_DREG = 0x1
constant NFTA_IMMEDIATE_DATA (line 1716) | NFTA_IMMEDIATE_DATA = 0x2
constant NFTA_BITWISE_UNSPEC (line 1717) | NFTA_BITWISE_UNSPEC = 0x0
constant NFTA_BITWISE_SREG (line 1718) | NFTA_BITWISE_SREG = 0x1
constant NFTA_BITWISE_DREG (line 1719) | NFTA_BITWISE_DREG = 0x2
constant NFTA_BITWISE_LEN (line 1720) | NFTA_BITWISE_LEN = 0x3
constant NFTA_BITWISE_MASK (line 1721) | NFTA_BITWISE_MASK = 0x4
constant NFTA_BITWISE_XOR (line 1722) | NFTA_BITWISE_XOR = 0x5
constant NFT_BYTEORDER_NTOH (line 1723) | NFT_BYTEORDER_NTOH = 0x0
constant NFT_BYTEORDER_HTON (line 1724) | NFT_BYTEORDER_HTON = 0x1
constant NFTA_BYTEORDER_UNSPEC (line 1725) | NFTA_BYTEORDER_UNSPEC = 0x0
constant NFTA_BYTEORDER_SREG (line 1726) | NFTA_BYTEORDER_SREG = 0x1
constant NFTA_BYTEORDER_DREG (line 1727) | NFTA_BYTEORDER_DREG = 0x2
constant NFTA_BYTEORDER_OP (line 1728) | NFTA_BYTEORDER_OP = 0x3
constant NFTA_BYTEORDER_LEN (line 1729) | NFTA_BYTEORDER_LEN = 0x4
constant NFTA_BYTEORDER_SIZE (line 1730) | NFTA_BYTEORDER_SIZE = 0x5
constant NFT_CMP_EQ (line 1731) | NFT_CMP_EQ = 0x0
constant NFT_CMP_NEQ (line 1732) | NFT_CMP_NEQ = 0x1
constant NFT_CMP_LT (line 1733) | NFT_CMP_LT = 0x2
constant NFT_CMP_LTE (line 1734) | NFT_CMP_LTE = 0x3
constant NFT_CMP_GT (line 1735) | NFT_CMP_GT = 0x4
constant NFT_CMP_GTE (line 1736) | NFT_CMP_GTE = 0x5
constant NFTA_CMP_UNSPEC (line 1737) | NFTA_CMP_UNSPEC = 0x0
constant NFTA_CMP_SREG (line 1738) | NFTA_CMP_SREG = 0x1
constant NFTA_CMP_OP (line 1739) | NFTA_CMP_OP = 0x2
constant NFTA_CMP_DATA (line 1740) | NFTA_CMP_DATA = 0x3
constant NFT_RANGE_EQ (line 1741) | NFT_RANGE_EQ = 0x0
constant NFT_RANGE_NEQ (line 1742) | NFT_RANGE_NEQ = 0x1
constant NFTA_RANGE_UNSPEC (line 1743) | NFTA_RANGE_UNSPEC = 0x0
constant NFTA_RANGE_SREG (line 1744) | NFTA_RANGE_SREG = 0x1
constant NFTA_RANGE_OP (line 1745) | NFTA_RANGE_OP = 0x2
constant NFTA_RANGE_FROM_DATA (line 1746) | NFTA_RANGE_FROM_DATA = 0x3
constant NFTA_RANGE_TO_DATA (line 1747) | NFTA_RANGE_TO_DATA = 0x4
constant NFT_LOOKUP_F_INV (line 1748) | NFT_LOOKUP_F_INV = 0x1
constant NFTA_LOOKUP_UNSPEC (line 1749) | NFTA_LOOKUP_UNSPEC = 0x0
constant NFTA_LOOKUP_SET (line 1750) | NFTA_LOOKUP_SET = 0x1
constant NFTA_LOOKUP_SREG (line 1751) | NFTA_LOOKUP_SREG = 0x2
constant NFTA_LOOKUP_DREG (line 1752) | NFTA_LOOKUP_DREG = 0x3
constant NFTA_LOOKUP_SET_ID (line 1753) | NFTA_LOOKUP_SET_ID = 0x4
constant NFTA_LOOKUP_FLAGS (line 1754) | NFTA_LOOKUP_FLAGS = 0x5
constant NFT_DYNSET_OP_ADD (line 1755) | NFT_DYNSET_OP_ADD = 0x0
constant NFT_DYNSET_OP_UPDATE (line 1756) | NFT_DYNSET_OP_UPDATE = 0x1
constant NFT_DYNSET_F_INV (line 1757) | NFT_DYNSET_F_INV = 0x1
constant NFTA_DYNSET_UNSPEC (line 1758) | NFTA_DYNSET_UNSPEC = 0x0
constant NFTA_DYNSET_SET_NAME (line 1759) | NFTA_DYNSET_SET_NAME = 0x1
constant NFTA_DYNSET_SET_ID (line 1760) | NFTA_DYNSET_SET_ID = 0x2
constant NFTA_DYNSET_OP (line 1761) | NFTA_DYNSET_OP = 0x3
constant NFTA_DYNSET_SREG_KEY (line 1762) | NFTA_DYNSET_SREG_KEY = 0x4
constant NFTA_DYNSET_SREG_DATA (line 1763) | NFTA_DYNSET_SREG_DATA = 0x5
constant NFTA_DYNSET_TIMEOUT (line 1764) | NFTA_DYNSET_TIMEOUT = 0x6
constant NFTA_DYNSET_EXPR (line 1765) | NFTA_DYNSET_EXPR = 0x7
constant NFTA_DYNSET_PAD (line 1766) | NFTA_DYNSET_PAD = 0x8
constant NFTA_DYNSET_FLAGS (line 1767) | NFTA_DYNSET_FLAGS = 0x9
constant NFT_PAYLOAD_LL_HEADER (line 1768) | NFT_PAYLOAD_LL_HEADER = 0x0
constant NFT_PAYLOAD_NETWORK_HEADER (line 1769) | NFT_PAYLOAD_NETWORK_HEADER = 0x1
constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1770) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2
constant NFT_PAYLOAD_CSUM_NONE (line 1771) | NFT_PAYLOAD_CSUM_NONE = 0x0
constant NFT_PAYLOAD_CSUM_INET (line 1772) | NFT_PAYLOAD_CSUM_INET = 0x1
constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1773) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1
constant NFTA_PAYLOAD_UNSPEC (line 1774) | NFTA_PAYLOAD_UNSPEC = 0x0
constant NFTA_PAYLOAD_DREG (line 1775) | NFTA_PAYLOAD_DREG = 0x1
constant NFTA_PAYLOAD_BASE (line 1776) | NFTA_PAYLOAD_BASE = 0x2
constant NFTA_PAYLOAD_OFFSET (line 1777) | NFTA_PAYLOAD_OFFSET = 0x3
constant NFTA_PAYLOAD_LEN (line 1778) | NFTA_PAYLOAD_LEN = 0x4
constant NFTA_PAYLOAD_SREG (line 1779) | NFTA_PAYLOAD_SREG = 0x5
constant NFTA_PAYLOAD_CSUM_TYPE (line 1780) | NFTA_PAYLOAD_CSUM_TYPE = 0x6
constant NFTA_PAYLOAD_CSUM_OFFSET (line 1781) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7
constant NFTA_PAYLOAD_CSUM_FLAGS (line 1782) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8
constant NFT_EXTHDR_F_PRESENT (line 1783) | NFT_EXTHDR_F_PRESENT = 0x1
constant NFT_EXTHDR_OP_IPV6 (line 1784) | NFT_EXTHDR_OP_IPV6 = 0x0
constant NFT_EXTHDR_OP_TCPOPT (line 1785) | NFT_EXTHDR_OP_TCPOPT = 0x1
constant NFTA_EXTHDR_UNSPEC (line 1786) | NFTA_EXTHDR_UNSPEC = 0x0
constant NFTA_EXTHDR_DREG (line 1787) | NFTA_EXTHDR_DREG = 0x1
constant NFTA_EXTHDR_TYPE (line 1788) | NFTA_EXTHDR_TYPE = 0x2
constant NFTA_EXTHDR_OFFSET (line 1789) | NFTA_EXTHDR_OFFSET = 0x3
constant NFTA_EXTHDR_LEN (line 1790) | NFTA_EXTHDR_LEN = 0x4
constant NFTA_EXTHDR_FLAGS (line 1791) | NFTA_EXTHDR_FLAGS = 0x5
constant NFTA_EXTHDR_OP (line 1792) | NFTA_EXTHDR_OP = 0x6
constant NFTA_EXTHDR_SREG (line 1793) | NFTA_EXTHDR_SREG = 0x7
constant NFT_META_LEN (line 1794) | NFT_META_LEN = 0x0
constant NFT_META_PROTOCOL (line 1795) | NFT_META_PROTOCOL = 0x1
constant NFT_META_PRIORITY (line 1796) | NFT_META_PRIORITY = 0x2
constant NFT_META_MARK (line 1797) | NFT_META_MARK = 0x3
constant NFT_META_IIF (line 1798) | NFT_META_IIF = 0x4
constant NFT_META_OIF (line 1799) | NFT_META_OIF = 0x5
constant NFT_META_IIFNAME (line 1800) | NFT_META_IIFNAME = 0x6
constant NFT_META_OIFNAME (line 1801) | NFT_META_OIFNAME = 0x7
constant NFT_META_IIFTYPE (line 1802) | NFT_META_IIFTYPE = 0x8
constant NFT_META_OIFTYPE (line 1803) | NFT_META_OIFTYPE = 0x9
constant NFT_META_SKUID (line 1804) | NFT_META_SKUID = 0xa
constant NFT_META_SKGID (line 1805) | NFT_META_SKGID = 0xb
constant NFT_META_NFTRACE (line 1806) | NFT_META_NFTRACE = 0xc
constant NFT_META_RTCLASSID (line 1807) | NFT_META_RTCLASSID = 0xd
constant NFT_META_SECMARK (line 1808) | NFT_META_SECMARK = 0xe
constant NFT_META_NFPROTO (line 1809) | NFT_META_NFPROTO = 0xf
constant NFT_META_L4PROTO (line 1810) | NFT_META_L4PROTO = 0x10
constant NFT_META_BRI_IIFNAME (line 1811) | NFT_META_BRI_IIFNAME = 0x11
constant NFT_META_BRI_OIFNAME (line 1812) | NFT_META_BRI_OIFNAME = 0x12
constant NFT_META_PKTTYPE (line 1813) | NFT_META_PKTTYPE = 0x13
constant NFT_META_CPU (line 1814) | NFT_META_CPU = 0x14
constant NFT_META_IIFGROUP (line 1815) | NFT_META_IIFGROUP = 0x15
constant NFT_META_OIFGROUP (line 1816) | NFT_META_OIFGROUP = 0x16
constant NFT_META_CGROUP (line 1817) | NFT_META_CGROUP = 0x17
constant NFT_META_PRANDOM (line 1818) | NFT_META_PRANDOM = 0x18
constant NFT_RT_CLASSID (line 1819) | NFT_RT_CLASSID = 0x0
constant NFT_RT_NEXTHOP4 (line 1820) | NFT_RT_NEXTHOP4 = 0x1
constant NFT_RT_NEXTHOP6 (line 1821) | NFT_RT_NEXTHOP6 = 0x2
constant NFT_RT_TCPMSS (line 1822) | NFT_RT_TCPMSS = 0x3
constant NFT_HASH_JENKINS (line 1823) | NFT_HASH_JENKINS = 0x0
constant NFT_HASH_SYM (line 1824) | NFT_HASH_SYM = 0x1
constant NFTA_HASH_UNSPEC (line 1825) | NFTA_HASH_UNSPEC = 0x0
constant NFTA_HASH_SREG (line 1826) | NFTA_HASH_SREG = 0x1
constant NFTA_HASH_DREG (line 1827) | NFTA_HASH_DREG = 0x2
constant NFTA_HASH_LEN (line 1828) | NFTA_HASH_LEN = 0x3
constant NFTA_HASH_MODULUS (line 1829) | NFTA_HASH_MODULUS = 0x4
constant NFTA_HASH_SEED (line 1830) | NFTA_HASH_SEED = 0x5
constant NFTA_HASH_OFFSET (line 1831) | NFTA_HASH_OFFSET = 0x6
constant NFTA_HASH_TYPE (line 1832) | NFTA_HASH_TYPE = 0x7
constant NFTA_META_UNSPEC (line 1833) | NFTA_META_UNSPEC = 0x0
constant NFTA_META_DREG (line 1834) | NFTA_META_DREG = 0x1
constant NFTA_META_KEY (line 1835) | NFTA_META_KEY = 0x2
constant NFTA_META_SREG (line 1836) | NFTA_META_SREG = 0x3
constant NFTA_RT_UNSPEC (line 1837) | NFTA_RT_UNSPEC = 0x0
constant NFTA_RT_DREG (line 1838) | NFTA_RT_DREG = 0x1
constant NFTA_RT_KEY (line 1839) | NFTA_RT_KEY = 0x2
constant NFT_CT_STATE (line 1840) | NFT_CT_STATE = 0x0
constant NFT_CT_DIRECTION (line 1841) | NFT_CT_DIRECTION = 0x1
constant NFT_CT_STATUS (line 1842) | NFT_CT_STATUS = 0x2
constant NFT_CT_MARK (line 1843) | NFT_CT_MARK = 0x3
constant NFT_CT_SECMARK (line 1844) | NFT_CT_SECMARK = 0x4
constant NFT_CT_EXPIRATION (line 1845) | NFT_CT_EXPIRATION = 0x5
constant NFT_CT_HELPER (line 1846) | NFT_CT_HELPER = 0x6
constant NFT_CT_L3PROTOCOL (line 1847) | NFT_CT_L3PROTOCOL = 0x7
constant NFT_CT_SRC (line 1848) | NFT_CT_SRC = 0x8
constant NFT_CT_DST (line 1849) | NFT_CT_DST = 0x9
constant NFT_CT_PROTOCOL (line 1850) | NFT_CT_PROTOCOL = 0xa
constant NFT_CT_PROTO_SRC (line 1851) | NFT_CT_PROTO_SRC = 0xb
constant NFT_CT_PROTO_DST (line 1852) | NFT_CT_PROTO_DST = 0xc
constant NFT_CT_LABELS (line 1853) | NFT_CT_LABELS = 0xd
constant NFT_CT_PKTS (line 1854) | NFT_CT_PKTS = 0xe
constant NFT_CT_BYTES (line 1855) | NFT_CT_BYTES = 0xf
constant NFT_CT_AVGPKT (line 1856) | NFT_CT_AVGPKT = 0x10
constant NFT_CT_ZONE (line 1857) | NFT_CT_ZONE = 0x11
constant NFT_CT_EVENTMASK (line 1858) | NFT_CT_EVENTMASK = 0x12
constant NFTA_CT_UNSPEC (line 1859) | NFTA_CT_UNSPEC = 0x0
constant NFTA_CT_DREG (line 1860) | NFTA_CT_DREG = 0x1
constant NFTA_CT_KEY (line 1861) | NFTA_CT_KEY = 0x2
constant NFTA_CT_DIRECTION (line 1862) | NFTA_CT_DIRECTION = 0x3
constant NFTA_CT_SREG (line 1863) | NFTA_CT_SREG = 0x4
constant NFT_LIMIT_PKTS (line 1864) | NFT_LIMIT_PKTS = 0x0
constant NFT_LIMIT_PKT_BYTES (line 1865) | NFT_LIMIT_PKT_BYTES = 0x1
constant NFT_LIMIT_F_INV (line 1866) | NFT_LIMIT_F_INV = 0x1
constant NFTA_LIMIT_UNSPEC (line 1867) | NFTA_LIMIT_UNSPEC = 0x0
constant NFTA_LIMIT_RATE (line 1868) | NFTA_LIMIT_RATE = 0x1
constant NFTA_LIMIT_UNIT (line 1869) | NFTA_LIMIT_UNIT = 0x2
constant NFTA_LIMIT_BURST (line 1870) | NFTA_LIMIT_BURST = 0x3
constant NFTA_LIMIT_TYPE (line 1871) | NFTA_LIMIT_TYPE = 0x4
constant NFTA_LIMIT_FLAGS (line 1872) | NFTA_LIMIT_FLAGS = 0x5
constant NFTA_LIMIT_PAD (line 1873) | NFTA_LIMIT_PAD = 0x6
constant NFTA_COUNTER_UNSPEC (line 1874) | NFTA_COUNTER_UNSPEC = 0x0
constant NFTA_COUNTER_BYTES (line 1875) | NFTA_COUNTER_BYTES = 0x1
constant NFTA_COUNTER_PACKETS (line 1876) | NFTA_COUNTER_PACKETS = 0x2
constant NFTA_COUNTER_PAD (line 1877) | NFTA_COUNTER_PAD = 0x3
constant NFTA_LOG_UNSPEC (line 1878) | NFTA_LOG_UNSPEC = 0x0
constant NFTA_LOG_GROUP (line 1879) | NFTA_LOG_GROUP = 0x1
constant NFTA_LOG_PREFIX (line 1880) | NFTA_LOG_PREFIX = 0x2
constant NFTA_LOG_SNAPLEN (line 1881) | NFTA_LOG_SNAPLEN = 0x3
constant NFTA_LOG_QTHRESHOLD (line 1882) | NFTA_LOG_QTHRESHOLD = 0x4
constant NFTA_LOG_LEVEL (line 1883) | NFTA_LOG_LEVEL = 0x5
constant NFTA_LOG_FLAGS (line 1884) | NFTA_LOG_FLAGS = 0x6
constant NFTA_QUEUE_UNSPEC (line 1885) | NFTA_QUEUE_UNSPEC = 0x0
constant NFTA_QUEUE_NUM (line 1886) | NFTA_QUEUE_NUM = 0x1
constant NFTA_QUEUE_TOTAL (line 1887) | NFTA_QUEUE_TOTAL = 0x2
constant NFTA_QUEUE_FLAGS (line 1888) | NFTA_QUEUE_FLAGS = 0x3
constant NFTA_QUEUE_SREG_QNUM (line 1889) | NFTA_QUEUE_SREG_QNUM = 0x4
constant NFT_QUOTA_F_INV (line 1890) | NFT_QUOTA_F_INV = 0x1
constant NFT_QUOTA_F_DEPLETED (line 1891) | NFT_QUOTA_F_DEPLETED = 0x2
constant NFTA_QUOTA_UNSPEC (line 1892) | NFTA_QUOTA_UNSPEC = 0x0
constant NFTA_QUOTA_BYTES (line 1893) | NFTA_QUOTA_BYTES = 0x1
constant NFTA_QUOTA_FLAGS (line 1894) | NFTA_QUOTA_FLAGS = 0x2
constant NFTA_QUOTA_PAD (line 1895) | NFTA_QUOTA_PAD = 0x3
constant NFTA_QUOTA_CONSUMED (line 1896) | NFTA_QUOTA_CONSUMED = 0x4
constant NFT_REJECT_ICMP_UNREACH (line 1897) | NFT_REJECT_ICMP_UNREACH = 0x0
constant NFT_REJECT_TCP_RST (line 1898) | NFT_REJECT_TCP_RST = 0x1
constant NFT_REJECT_ICMPX_UNREACH (line 1899) | NFT_REJECT_ICMPX_UNREACH = 0x2
constant NFT_REJECT_ICMPX_NO_ROUTE (line 1900) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0
constant NFT_REJECT_ICMPX_PORT_UNREACH (line 1901) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1
constant NFT_REJECT_ICMPX_HOST_UNREACH (line 1902) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2
constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 1903) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3
constant NFTA_REJECT_UNSPEC (line 1904) | NFTA_REJECT_UNSPEC = 0x0
constant NFTA_REJECT_TYPE (line 1905) | NFTA_REJECT_TYPE = 0x1
constant NFTA_REJECT_ICMP_CODE (line 1906) | NFTA_REJECT_ICMP_CODE = 0x2
constant NFT_NAT_SNAT (line 1907) | NFT_NAT_SNAT = 0x0
constant NFT_NAT_DNAT (line 1908) | NFT_NAT_DNAT = 0x1
constant NFTA_NAT_UNSPEC (line 1909) | NFTA_NAT_UNSPEC = 0x0
constant NFTA_NAT_TYPE (line 1910) | NFTA_NAT_TYPE = 0x1
constant NFTA_NAT_FAMILY (line 1911) | NFTA_NAT_FAMILY = 0x2
constant NFTA_NAT_REG_ADDR_MIN (line 1912) | NFTA_NAT_REG_ADDR_MIN = 0x3
constant NFTA_NAT_REG_ADDR_MAX (line 1913) | NFTA_NAT_REG_ADDR_MAX = 0x4
constant NFTA_NAT_REG_PROTO_MIN (line 1914) | NFTA_NAT_REG_PROTO_MIN = 0x5
constant NFTA_NAT_REG_PROTO_MAX (line 1915) | NFTA_NAT_REG_PROTO_MAX = 0x6
constant NFTA_NAT_FLAGS (line 1916) | NFTA_NAT_FLAGS = 0x7
constant NFTA_MASQ_UNSPEC (line 1917) | NFTA_MASQ_UNSPEC = 0x0
constant NFTA_MASQ_FLAGS (line 1918) | NFTA_MASQ_FLAGS = 0x1
constant NFTA_MASQ_REG_PROTO_MIN (line 1919) | NFTA_MASQ_REG_PROTO_MIN = 0x2
constant NFTA_MASQ_REG_PROTO_MAX (line 1920) | NFTA_MASQ_REG_PROTO_MAX = 0x3
constant NFTA_REDIR_UNSPEC (line 1921) | NFTA_REDIR_UNSPEC = 0x0
constant NFTA_REDIR_REG_PROTO_MIN (line 1922) | NFTA_REDIR_REG_PROTO_MIN = 0x1
constant NFTA_REDIR_REG_PROTO_MAX (line 1923) | NFTA_REDIR_REG_PROTO_MAX = 0x2
constant NFTA_REDIR_FLAGS (line 1924) | NFTA_REDIR_FLAGS = 0x3
constant NFTA_DUP_UNSPEC (line 1925) | NFTA_DUP_UNSPEC = 0x0
constant NFTA_DUP_SREG_ADDR (line 1926) | NFTA_DUP_SREG_ADDR = 0x1
constant NFTA_DUP_SREG_DEV (line 1927) | NFTA_DUP_SREG_DEV = 0x2
constant NFTA_FWD_UNSPEC (line 1928) | NFTA_FWD_UNSPEC = 0x0
constant NFTA_FWD_SREG_DEV (line 1929) | NFTA_FWD_SREG_DEV = 0x1
constant NFTA_OBJREF_UNSPEC (line 1930) | NFTA_OBJREF_UNSPEC = 0x0
constant NFTA_OBJREF_IMM_TYPE (line 1931) | NFTA_OBJREF_IMM_TYPE = 0x1
constant NFTA_OBJREF_IMM_NAME (line 1932) | NFTA_OBJREF_IMM_NAME = 0x2
constant NFTA_OBJREF_SET_SREG (line 1933) | NFTA_OBJREF_SET_SREG = 0x3
constant NFTA_OBJREF_SET_NAME (line 1934) | NFTA_OBJREF_SET_NAME = 0x4
constant NFTA_OBJREF_SET_ID (line 1935) | NFTA_OBJREF_SET_ID = 0x5
constant NFTA_GEN_UNSPEC (line 1936) | NFTA_GEN_UNSPEC = 0x0
constant NFTA_GEN_ID (line 1937) | NFTA_GEN_ID = 0x1
constant NFTA_GEN_PROC_PID (line 1938) | NFTA_GEN_PROC_PID = 0x2
constant NFTA_GEN_PROC_NAME (line 1939) | NFTA_GEN_PROC_NAME = 0x3
constant NFTA_FIB_UNSPEC (line 1940) | NFTA_FIB_UNSPEC = 0x0
constant NFTA_FIB_DREG (line 1941) | NFTA_FIB_DREG = 0x1
constant NFTA_FIB_RESULT (line 1942) | NFTA_FIB_RESULT = 0x2
constant NFTA_FIB_FLAGS (line 1943) | NFTA_FIB_FLAGS = 0x3
constant NFT_FIB_RESULT_UNSPEC (line 1944) | NFT_FIB_RESULT_UNSPEC = 0x0
constant NFT_FIB_RESULT_OIF (line 1945) | NFT_FIB_RESULT_OIF = 0x1
constant NFT_FIB_RESULT_OIFNAME (line 1946) | NFT_FIB_RESULT_OIFNAME = 0x2
constant NFT_FIB_RESULT_ADDRTYPE (line 1947) | NFT_FIB_RESULT_ADDRTYPE = 0x3
constant NFTA_FIB_F_SADDR (line 1948) | NFTA_FIB_F_SADDR = 0x1
constant NFTA_FIB_F_DADDR (line 1949) | NFTA_FIB_F_DADDR = 0x2
constant NFTA_FIB_F_MARK (line 1950) | NFTA_FIB_F_MARK = 0x4
constant NFTA_FIB_F_IIF (line 1951) | NFTA_FIB_F_IIF = 0x8
constant NFTA_FIB_F_OIF (line 1952) | NFTA_FIB_F_OIF = 0x10
constant NFTA_FIB_F_PRESENT (line 1953) | NFTA_FIB_F_PRESENT = 0x20
constant NFTA_CT_HELPER_UNSPEC (line 1954) | NFTA_CT_HELPER_UNSPEC = 0x0
constant NFTA_CT_HELPER_NAME (line 1955) | NFTA_CT_HELPER_NAME = 0x1
constant NFTA_CT_HELPER_L3PROTO (line 1956) | NFTA_CT_HELPER_L3PROTO = 0x2
constant NFTA_CT_HELPER_L4PROTO (line 1957) | NFTA_CT_HELPER_L4PROTO = 0x3
constant NFTA_OBJ_UNSPEC (line 1958) | NFTA_OBJ_UNSPEC = 0x0
constant NFTA_OBJ_TABLE (line 1959) | NFTA_OBJ_TABLE = 0x1
constant NFTA_OBJ_NAME (line 1960) | NFTA_OBJ_NAME = 0x2
constant NFTA_OBJ_TYPE (line 1961) | NFTA_OBJ_TYPE = 0x3
constant NFTA_OBJ_DATA (line 1962) | NFTA_OBJ_DATA = 0x4
constant NFTA_OBJ_USE (line 1963) | NFTA_OBJ_USE = 0x5
constant NFTA_TRACE_UNSPEC (line 1964) | NFTA_TRACE_UNSPEC = 0x0
constant NFTA_TRACE_TABLE (line 1965) | NFTA_TRACE_TABLE = 0x1
constant NFTA_TRACE_CHAIN (line 1966) | NFTA_TRACE_CHAIN = 0x2
constant NFTA_TRACE_RULE_HANDLE (line 1967) | NFTA_TRACE_RULE_HANDLE = 0x3
constant NFTA_TRACE_TYPE (line 1968) | NFTA_TRACE_TYPE = 0x4
constant NFTA_TRACE_VERDICT (line 1969) | NFTA_TRACE_VERDICT = 0x5
constant NFTA_TRACE_ID (line 1970) | NFTA_TRACE_ID = 0x6
constant NFTA_TRACE_LL_HEADER (line 1971) | NFTA_TRACE_LL_HEADER = 0x7
constant NFTA_TRACE_NETWORK_HEADER (line 1972) | NFTA_TRACE_NETWORK_HEADER = 0x8
constant NFTA_TRACE_TRANSPORT_HEADER (line 1973) | NFTA_TRACE_TRANSPORT_HEADER = 0x9
constant NFTA_TRACE_IIF (line 1974) | NFTA_TRACE_IIF = 0xa
constant NFTA_TRACE_IIFTYPE (line 1975) | NFTA_TRACE_IIFTYPE = 0xb
constant NFTA_TRACE_OIF (line 1976) | NFTA_TRACE_OIF = 0xc
constant NFTA_TRACE_OIFTYPE (line 1977) | NFTA_TRACE_OIFTYPE = 0xd
constant NFTA_TRACE_MARK (line 1978) | NFTA_TRACE_MARK = 0xe
constant NFTA_TRACE_NFPROTO (line 1979) | NFTA_TRACE_NFPROTO = 0xf
constant NFTA_TRACE_POLICY (line 1980) | NFTA_TRACE_POLICY = 0x10
constant NFTA_TRACE_PAD (line 1981) | NFTA_TRACE_PAD = 0x11
constant NFT_TRACETYPE_UNSPEC (line 1982) | NFT_TRACETYPE_UNSPEC = 0x0
constant NFT_TRACETYPE_POLICY (line 1983) | NFT_TRACETYPE_POLICY = 0x1
constant NFT_TRACETYPE_RETURN (line 1984) | NFT_TRACETYPE_RETURN = 0x2
constant NFT_TRACETYPE_RULE (line 1985) | NFT_TRACETYPE_RULE = 0x3
constant NFTA_NG_UNSPEC (line 1986) | NFTA_NG_UNSPEC = 0x0
constant NFTA_NG_DREG (line 1987) | NFTA_NG_DREG = 0x1
constant NFTA_NG_MODULUS (line 1988) | NFTA_NG_MODULUS = 0x2
constant NFTA_NG_TYPE (line 1989) | NFTA_NG_TYPE = 0x3
constant NFTA_NG_OFFSET (line 1990) | NFTA_NG_OFFSET = 0x4
constant NFT_NG_INCREMENTAL (line 1991) | NFT_NG_INCREMENTAL = 0x0
constant NFT_NG_RANDOM (line 1992) | NFT_NG_RANDOM = 0x1
type RTCTime (line 1995) | type RTCTime struct
type RTCWkAlrm (line 2007) | type RTCWkAlrm struct
type RTCPLLInfo (line 2013) | type RTCPLLInfo struct
type BlkpgIoctlArg (line 2023) | type BlkpgIoctlArg struct
type BlkpgPartition (line 2030) | type BlkpgPartition struct
constant BLKPG (line 2040) | BLKPG = 0x20001269
constant BLKPG_ADD_PARTITION (line 2041) | BLKPG_ADD_PARTITION = 0x1
constant BLKPG_DEL_PARTITION (line 2042) | BLKPG_DEL_PARTITION = 0x2
constant BLKPG_RESIZE_PARTITION (line 2043) | BLKPG_RESIZE_PARTITION = 0x3
constant NETNSA_NONE (line 2047) | NETNSA_NONE = 0x0
constant NETNSA_NSID (line 2048) | NETNSA_NSID = 0x1
constant NETNSA_PID (line 2049) | NETNSA_PID = 0x2
constant NETNSA_FD (line 2050) | NETNSA_FD = 0x3
type XDPRingOffset (line 2053) | type XDPRingOffset struct
type XDPMmapOffsets (line 2059) | type XDPMmapOffsets struct
type XDPUmemReg (line 2066) | type XDPUmemReg struct
type XDPStatistics (line 2073) | type XDPStatistics struct
type XDPDesc (line 2079) | type XDPDesc struct
constant NCSI_CMD_UNSPEC (line 2086) | NCSI_CMD_UNSPEC = 0x0
constant NCSI_CMD_PKG_INFO (line 2087) | NCSI_CMD_PKG_INFO = 0x1
constant NCSI_CMD_SET_INTERFACE (line 2088) | NCSI_CMD_SET_INTERFACE = 0x2
constant NCSI_CMD_CLEAR_INTERFACE (line 2089) | NCSI_CMD_CLEAR_INTERFACE = 0x3
constant NCSI_ATTR_UNSPEC (line 2090) | NCSI_ATTR_UNSPEC = 0x0
constant NCSI_ATTR_IFINDEX (line 2091) | NCSI_ATTR_IFINDEX = 0x1
constant NCSI_ATTR_PACKAGE_LIST (line 2092) | NCSI_ATTR_PACKAGE_LIST = 0x2
constant NCSI_ATTR_PACKAGE_ID (line 2093) | NCSI_ATTR_PACKAGE_ID = 0x3
constant NCSI_ATTR_CHANNEL_ID (line 2094) | NCSI_ATTR_CHANNEL_ID = 0x4
constant NCSI_PKG_ATTR_UNSPEC (line 2095) | NCSI_PKG_ATTR_UNSPEC = 0x0
constant NCSI_PKG_ATTR (line 2096) | NCSI_PKG_ATTR = 0x1
constant NCSI_PKG_ATTR_ID (line 2097) | NCSI_PKG_ATTR_ID = 0x2
constant NCSI_PKG_ATTR_FORCED (line 2098) | NCSI_PKG_ATTR_FORCED = 0x3
constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2099) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4
constant NCSI_CHANNEL_ATTR_UNSPEC (line 2100) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0
constant NCSI_CHANNEL_ATTR (line 2101) | NCSI_CHANNEL_ATTR = 0x1
constant NCSI_CHANNEL_ATTR_ID (line 2102) | NCSI_CHANNEL_ATTR_ID = 0x2
constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2103) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3
constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2104) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4
constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2105) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5
constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2106) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6
constant NCSI_CHANNEL_ATTR_ACTIVE (line 2107) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7
constant NCSI_CHANNEL_ATTR_FORCED (line 2108) | NCSI_CHANNEL_ATTR_FORCED = 0x8
constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2109) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9
constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2110) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa
type ScmTimestamping (line 2113) | type ScmTimestamping struct
constant SOF_TIMESTAMPING_TX_HARDWARE (line 2118) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1
constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2119) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2
constant SOF_TIMESTAMPING_RX_HARDWARE (line 2120) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4
constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2121) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8
constant SOF_TIMESTAMPING_SOFTWARE (line 2122) | SOF_TIMESTAMPING_SOFTWARE = 0x10
constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2123) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20
constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2124) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40
constant SOF_TIMESTAMPING_OPT_ID (line 2125) | SOF_TIMESTAMPING_OPT_ID = 0x80
constant SOF_TIMESTAMPING_TX_SCHED (line 2126) | SOF_TIMESTAMPING_TX_SCHED = 0x100
constant SOF_TIMESTAMPING_TX_ACK (line 2127) | SOF_TIMESTAMPING_TX_ACK = 0x200
constant SOF_TIMESTAMPING_OPT_CMSG (line 2128) | SOF_TIMESTAMPING_OPT_CMSG = 0x400
constant SOF_TIMESTAMPING_OPT_TSONLY (line 2129) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800
constant SOF_TIMESTAMPING_OPT_STATS (line 2130) | SOF_TIMESTAMPING_OPT_STATS = 0x1000
constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2131) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000
constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2132) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000
constant SOF_TIMESTAMPING_LAST (line 2134) | SOF_TIMESTAMPING_LAST = 0x4000
constant SOF_TIMESTAMPING_MASK (line 2135) | SOF_TIMESTAMPING_MASK = 0x7fff
constant SCM_TSTAMP_SND (line 2137) | SCM_TSTAMP_SND = 0x0
constant SCM_TSTAMP_SCHED (line 2138) | SCM_TSTAMP_SCHED = 0x1
constant SCM_TSTAMP_ACK (line 2139) | SCM_TSTAMP_ACK = 0x2
type SockExtendedErr (line 2142) | type SockExtendedErr struct
type FanotifyEventMetadata (line 2152) | type FanotifyEventMetadata struct
type FanotifyResponse (line 2162) | type FanotifyResponse struct
constant CRYPTO_MSG_BASE (line 2168) | CRYPTO_MSG_BASE = 0x10
constant CRYPTO_MSG_NEWALG (line 2169) | CRYPTO_MSG_NEWALG = 0x10
constant CRYPTO_MSG_DELALG (line 2170) | CRYPTO_MSG_DELALG = 0x11
constant CRYPTO_MSG_UPDATEALG (line 2171) | CRYPTO_MSG_UPDATEALG = 0x12
constant CRYPTO_MSG_GETALG (line 2172) | CRYPTO_MSG_GETALG = 0x13
constant CRYPTO_MSG_DELRNG (line 2173) | CRYPTO_MSG_DELRNG = 0x14
constant CRYPTO_MSG_GETSTAT (line 2174) | CRYPTO_MSG_GETSTAT = 0x15
constant CRYPTOCFGA_UNSPEC (line 2178) | CRYPTOCFGA_UNSPEC = 0x0
constant CRYPTOCFGA_PRIORITY_VAL (line 2179) | CRYPTOCFGA_PRIORITY_VAL = 0x1
constant CRYPTOCFGA_REPORT_LARVAL (line 2180) | CRYPTOCFGA_REPORT_LARVAL = 0x2
constant CRYPTOCFGA_REPORT_HASH (line 2181) | CRYPTOCFGA_REPORT_HASH = 0x3
constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2182) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4
constant CRYPTOCFGA_REPORT_AEAD (line 2183) | CRYPTOCFGA_REPORT_AEAD = 0x5
constant CRYPTOCFGA_REPORT_COMPRESS (line 2184) | CRYPTOCFGA_REPORT_COMPRESS = 0x6
constant CRYPTOCFGA_REPORT_RNG (line 2185) | CRYPTOCFGA_REPORT_RNG = 0x7
constant CRYPTOCFGA_REPORT_CIPHER (line 2186) | CRYPTOCFGA_REPORT_CIPHER = 0x8
constant CRYPTOCFGA_REPORT_AKCIPHER (line 2187) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9
constant CRYPTOCFGA_REPORT_KPP (line 2188) | CRYPTOCFGA_REPORT_KPP = 0xa
constant CRYPTOCFGA_REPORT_ACOMP (line 2189) | CRYPTOCFGA_REPORT_ACOMP = 0xb
constant CRYPTOCFGA_STAT_LARVAL (line 2190) | CRYPTOCFGA_STAT_LARVAL = 0xc
constant CRYPTOCFGA_STAT_HASH (line 2191) | CRYPTOCFGA_STAT_HASH = 0xd
constant CRYPTOCFGA_STAT_BLKCIPHER (line 2192) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe
constant CRYPTOCFGA_STAT_AEAD (line 2193) | CRYPTOCFGA_STAT_AEAD = 0xf
constant CRYPTOCFGA_STAT_COMPRESS (line 2194) | CRYPTOCFGA_STAT_COMPRESS = 0x10
constant CRYPTOCFGA_STAT_RNG (line 2195) | CRYPTOCFGA_STAT_RNG = 0x11
constant CRYPTOCFGA_STAT_CIPHER (line 2196) | CRYPTOCFGA_STAT_CIPHER = 0x12
constant CRYPTOCFGA_STAT_AKCIPHER (line 2197) | CRYPTOCFGA_STAT_AKCIPHER = 0x13
constant CRYPTOCFGA_STAT_KPP (line 2198) | CRYPTOCFGA_STAT_KPP = 0x14
constant CRYPTOCFGA_STAT_ACOMP (line 2199) | CRYPTOCFGA_STAT_ACOMP = 0x15
type CryptoUserAlg (line 2202) | type CryptoUserAlg struct
type CryptoStatAEAD (line 2212) | type CryptoStatAEAD struct
type CryptoStatAKCipher (line 2221) | type CryptoStatAKCipher struct
type CryptoStatCipher (line 2232) | type CryptoStatCipher struct
type CryptoStatCompress (line 2241) | type CryptoStatCompress struct
type CryptoStatHash (line 2250) | type CryptoStatHash struct
type CryptoStatKPP (line 2257) | type CryptoStatKPP struct
type CryptoStatRNG (line 2265) | type CryptoStatRNG struct
type CryptoStatLarval (line 2273) | type CryptoStatLarval struct
type CryptoReportLarval (line 2277) | type CryptoReportLarval struct
type CryptoReportHash (line 2281) | type CryptoReportHash struct
type CryptoReportCipher (line 2287) | type CryptoReportCipher struct
type CryptoReportBlkCipher (line 2294) | type CryptoReportBlkCipher struct
type CryptoReportAEAD (line 2303) | type CryptoReportAEAD struct
type CryptoReportComp (line 2311) | type CryptoReportComp struct
type CryptoReportRNG (line 2315) | type CryptoReportRNG struct
type CryptoReportAKCipher (line 2320) | type CryptoReportAKCipher struct
type CryptoReportKPP (line 2324) | type CryptoReportKPP struct
type CryptoReportAcomp (line 2328) | type CryptoReportAcomp struct
constant BPF_REG_0 (line 2333) | BPF_REG_0 = 0x0
constant BPF_REG_1 (line 2334) | BPF_REG_1 = 0x1
constant BPF_REG_2 (line 2335) | BPF_REG_2 = 0x2
constant BPF_REG_3 (line 2336) | BPF_REG_3 = 0x3
constant BPF_REG_4 (line 2337) | BPF_REG_4 = 0x4
constant BPF_REG_5 (line 2338) | BPF_REG_5 = 0x5
constant BPF_REG_6 (line 2339) | BPF_REG_6 = 0x6
constant BPF_REG_7 (line 2340) | BPF_REG_7 = 0x7
constant BPF_REG_8 (line 2341) | BPF_REG_8 = 0x8
constant BPF_REG_9 (line 2342) | BPF_REG_9 = 0x9
constant BPF_REG_10 (line 2343) | BPF_REG_10 = 0xa
constant BPF_MAP_CREATE (line 2344) | BPF_MAP_CREATE = 0x0
constant BPF_MAP_LOOKUP_ELEM (line 2345) | BPF_MAP_LOOKUP_ELEM = 0x1
constant BPF_MAP_UPDATE_ELEM (line 2346) | BPF_MAP_UPDATE_ELEM = 0x2
constant BPF_MAP_DELETE_ELEM (line 2347) | BPF_MAP_DELETE_ELEM = 0x3
constant BPF_MAP_GET_NEXT_KEY (line 2348) | BPF_MAP_GET_NEXT_KEY = 0x4
constant BPF_PROG_LOAD (line 2349) | BPF_PROG_LOAD = 0x5
constant BPF_OBJ_PIN (line 2350) | BPF_OBJ_PIN = 0x6
constant BPF_OBJ_GET (line 2351) | BPF_OBJ_GET = 0x7
constant BPF_PROG_ATTACH (line 2352) | BPF_PROG_ATTACH = 0x8
constant BPF_PROG_DETACH (line 2353) | BPF_PROG_DETACH = 0x9
constant BPF_PROG_TEST_RUN (line 2354) | BPF_PROG_TEST_RUN = 0xa
constant BPF_PROG_GET_NEXT_ID (line 2355) | BPF_PROG_GET_NEXT_ID = 0xb
constant BPF_MAP_GET_NEXT_ID (line 2356) | BPF_MAP_GET_NEXT_ID = 0xc
constant BPF_PROG_GET_FD_BY_ID (line 2357) | BPF_PROG_GET_FD_BY_ID = 0xd
constant BPF_MAP_GET_FD_BY_ID (line 2358) | BPF_MAP_GET_FD_BY_ID = 0xe
constant BPF_OBJ_GET_INFO_BY_FD (line 2359) | BPF_OBJ_GET_INFO_BY_FD = 0xf
constant BPF_PROG_QUERY (line 2360) | BPF_PROG_QUERY = 0x10
constant BPF_RAW_TRACEPOINT_OPEN (line 2361) | BPF_RAW_TRACEPOINT_OPEN = 0x11
constant BPF_BTF_LOAD (line 2362) | BPF_BTF_LOAD = 0x12
constant BPF_BTF_GET_FD_BY_ID (line 2363) | BPF_BTF_GET_FD_BY_ID = 0x13
constant BPF_TASK_FD_QUERY (line 2364) | BPF_TASK_FD_QUERY = 0x14
constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2365) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15
constant BPF_MAP_TYPE_UNSPEC (line 2366) | BPF_MAP_TYPE_UNSPEC = 0x0
constant BPF_MAP_TYPE_HASH (line 2367) | BPF_MAP_TYPE_HASH = 0x1
constant BPF_MAP_TYPE_ARRAY (line 2368) | BPF_MAP_TYPE_ARRAY = 0x2
constant BPF_MAP_TYPE_PROG_ARRAY (line 2369) | BPF_MAP_TYPE_PROG_ARRAY = 0x3
constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2370) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4
constant BPF_MAP_TYPE_PERCPU_HASH (line 2371) | BPF_MAP_TYPE_PERCPU_HASH = 0x5
constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2372) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6
constant BPF_MAP_TYPE_STACK_TRACE (line 2373) | BPF_MAP_TYPE_STACK_TRACE = 0x7
constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2374) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8
constant BPF_MAP_TYPE_LRU_HASH (line 2375) | BPF_MAP_TYPE_LRU_HASH = 0x9
constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2376) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa
constant BPF_MAP_TYPE_LPM_TRIE (line 2377) | BPF_MAP_TYPE_LPM_TRIE = 0xb
constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2378) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc
constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2379) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd
constant BPF_MAP_TYPE_DEVMAP (line 2380) | BPF_MAP_TYPE_DEVMAP = 0xe
constant BPF_MAP_TYPE_SOCKMAP (line 2381) | BPF_MAP_TYPE_SOCKMAP = 0xf
constant BPF_MAP_TYPE_CPUMAP (line 2382) | BPF_MAP_TYPE_CPUMAP = 0x10
constant BPF_MAP_TYPE_XSKMAP (line 2383) | BPF_MAP_TYPE_XSKMAP = 0x11
constant BPF_MAP_TYPE_SOCKHASH (line 2384) | BPF_MAP_TYPE_SOCKHASH = 0x12
constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2385) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13
constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2386) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14
constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2387) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15
constant BPF_MAP_TYPE_QUEUE (line 2388) | BPF_MAP_TYPE_QUEUE = 0x16
constant BPF_MAP_TYPE_STACK (line 2389) | BPF_MAP_TYPE_STACK = 0x17
constant BPF_PROG_TYPE_UNSPEC (line 2390) | BPF_PROG_TYPE_UNSPEC = 0x0
constant BPF_PROG_TYPE_SOCKET_FILTER (line 2391) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1
constant BPF_PROG_TYPE_KPROBE (line 2392) | BPF_PROG_TYPE_KPROBE = 0x2
constant BPF_PROG_TYPE_SCHED_CLS (line 2393) | BPF_PROG_TYPE_SCHED_CLS = 0x3
constant BPF_PROG_TYPE_SCHED_ACT (line 2394) | BPF_PROG_TYPE_SCHED_ACT = 0x4
constant BPF_PROG_TYPE_TRACEPOINT (line 2395) | BPF_PROG_TYPE_TRACEPOINT = 0x5
constant BPF_PROG_TYPE_XDP (line 2396) | BPF_PROG_TYPE_XDP = 0x6
constant BPF_PROG_TYPE_PERF_EVENT (line 2397) | BPF_PROG_TYPE_PERF_EVENT = 0x7
constant BPF_PROG_TYPE_CGROUP_SKB (line 2398) | BPF_PROG_TYPE_CGROUP_SKB = 0x8
constant BPF_PROG_TYPE_CGROUP_SOCK (line 2399) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9
constant BPF_PROG_TYPE_LWT_IN (line 2400) | BPF_PROG_TYPE_LWT_IN = 0xa
constant BPF_PROG_TYPE_LWT_OUT (line 2401) | BPF_PROG_TYPE_LWT_OUT = 0xb
constant BPF_PROG_TYPE_LWT_XMIT (line 2402) | BPF_PROG_TYPE_LWT_XMIT = 0xc
constant BPF_PROG_TYPE_SOCK_OPS (line 2403) | BPF_PROG_TYPE_SOCK_OPS = 0xd
constant BPF_PROG_TYPE_SK_SKB (line 2404) | BPF_PROG_TYPE_SK_SKB = 0xe
constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2405) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf
constant BPF_PROG_TYPE_SK_MSG (line 2406) | BPF_PROG_TYPE_SK_MSG = 0x10
constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2407) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11
constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2408) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12
constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2409) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13
constant BPF_PROG_TYPE_LIRC_MODE2 (line 2410) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14
constant BPF_PROG_TYPE_SK_REUSEPORT (line 2411) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15
constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2412) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16
constant BPF_CGROUP_INET_INGRESS (line 2413) | BPF_CGROUP_INET_INGRESS = 0x0
constant BPF_CGROUP_INET_EGRESS (line 2414) | BPF_CGROUP_INET_EGRESS = 0x1
constant BPF_CGROUP_INET_SOCK_CREATE (line 2415) | BPF_CGROUP_INET_SOCK_CREATE = 0x2
constant BPF_CGROUP_SOCK_OPS (line 2416) | BPF_CGROUP_SOCK_OPS = 0x3
constant BPF_SK_SKB_STREAM_PARSER (line 2417) | BPF_SK_SKB_STREAM_PARSER = 0x4
constant BPF_SK_SKB_STREAM_VERDICT (line 2418) | BPF_SK_SKB_STREAM_VERDICT = 0x5
constant BPF_CGROUP_DEVICE (line 2419) | BPF_CGROUP_DEVICE = 0x6
constant BPF_SK_MSG_VERDICT (line 2420) | BPF_SK_MSG_VERDICT = 0x7
constant BPF_CGROUP_INET4_BIND (line 2421) | BPF_CGROUP_INET4_BIND = 0x8
constant BPF_CGROUP_INET6_BIND (line 2422) | BPF_CGROUP_INET6_BIND = 0x9
constant BPF_CGROUP_INET4_CONNECT (line 2423) | BPF_CGROUP_INET4_CONNECT = 0xa
constant BPF_CGROUP_INET6_CONNECT (line 2424) | BPF_CGROUP_INET6_CONNECT = 0xb
constant BPF_CGROUP_INET4_POST_BIND (line 2425) | BPF_CGROUP_INET4_POST_BIND = 0xc
constant BPF_CGROUP_INET6_POST_BIND (line 2426) | BPF_CGROUP_INET6_POST_BIND = 0xd
constant BPF_CGROUP_UDP4_SENDMSG (line 2427) | BPF_CGROUP_UDP4_SENDMSG = 0xe
constant BPF_CGROUP_UDP6_SENDMSG (line 2428) | BPF_CGROUP_UDP6_SENDMSG = 0xf
constant BPF_LIRC_MODE2 (line 2429) | BPF_LIRC_MODE2 = 0x10
constant BPF_FLOW_DISSECTOR (line 2430) | BPF_FLOW_DISSECTOR = 0x11
constant BPF_STACK_BUILD_ID_EMPTY (line 2431) | BPF_STACK_BUILD_ID_EMPTY = 0x0
constant BPF_STACK_BUILD_ID_VALID (line 2432) | BPF_STACK_BUILD_ID_VALID = 0x1
constant BPF_STACK_BUILD_ID_IP (line 2433) | BPF_STACK_BUILD_ID_IP = 0x2
constant BPF_ADJ_ROOM_NET (line 2434) | BPF_ADJ_ROOM_NET = 0x0
constant BPF_HDR_START_MAC (line 2435) | BPF_HDR_START_MAC = 0x0
constant BPF_HDR_START_NET (line 2436) | BPF_HDR_START_NET = 0x1
constant BPF_LWT_ENCAP_SEG6 (line 2437) | BPF_LWT_ENCAP_SEG6 = 0x0
constant BPF_LWT_ENCAP_SEG6_INLINE (line 2438) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1
constant BPF_OK (line 2439) | BPF_OK = 0x0
constant BPF_DROP (line 2440) | BPF_DROP = 0x2
constant BPF_REDIRECT (line 2441) | BPF_REDIRECT = 0x7
constant BPF_SOCK_OPS_VOID (line 2442) | BPF_SOCK_OPS_VOID = 0x0
constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2443) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1
constant BPF_SOCK_OPS_RWND_INIT (line 2444) | BPF_SOCK_OPS_RWND_INIT = 0x2
constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2445) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3
constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2446) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4
constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2447) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5
constant BPF_SOCK_OPS_NEEDS_ECN (line 2448) | BPF_SOCK_OPS_NEEDS_ECN = 0x6
constant BPF_SOCK_OPS_BASE_RTT (line 2449) | BPF_SOCK_OPS_BASE_RTT = 0x7
constant BPF_SOCK_OPS_RTO_CB (line 2450) | BPF_SOCK_OPS_RTO_CB = 0x8
constant BPF_SOCK_OPS_RETRANS_CB (line 2451) | BPF_SOCK_OPS_RETRANS_CB = 0x9
constant BPF_SOCK_OPS_STATE_CB (line 2452) | BPF_SOCK_OPS_STATE_CB = 0xa
constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2453) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb
constant BPF_TCP_ESTABLISHED (line 2454) | BPF_TCP_ESTABLISHED = 0x1
constant BPF_TCP_SYN_SENT (line 2455) | BPF_TCP_SYN_SENT = 0x2
constant BPF_TCP_SYN_RECV (line 2456) | BPF_TCP_SYN_RECV = 0x3
constant BPF_TCP_FIN_WAIT1 (line 2457) | BPF_TCP_FIN_WAIT1 = 0x4
constant BPF_TCP_FIN_WAIT2 (line 2458) | BPF_TCP_FIN_WAIT2 = 0x5
constant BPF_TCP_TIME_WAIT (line 2459) | BPF_TCP_TIME_WAIT = 0x6
constant BPF_TCP_CLOSE (line 2460) | BPF_TCP_CLOSE = 0x7
constant BPF_TCP_CLOSE_WAIT (line 2461) | BPF_TCP_CLOSE_WAIT = 0x8
constant BPF_TCP_LAST_ACK (line 2462) | BPF_TCP_LAST_ACK = 0x9
constant BPF_TCP_LISTEN (line 2463) | BPF_TCP_LISTEN = 0xa
constant BPF_TCP_CLOSING (line 2464) | BPF_TCP_CLOSING = 0xb
constant BPF_TCP_NEW_SYN_RECV (line 2465) | BPF_TCP_NEW_SYN_RECV = 0xc
constant BPF_TCP_MAX_STATES (line 2466) | BPF_TCP_MAX_STATES = 0xd
constant BPF_FIB_LKUP_RET_SUCCESS (line 2467) | BPF_FIB_LKUP_RET_SUCCESS = 0x0
constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2468) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1
constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2469) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2
constant BPF_FIB_LKUP_RET_PROHIBIT (line 2470) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3
constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2471) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4
constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2472) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5
constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2473) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6
constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2474) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7
constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2475) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8
constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2476) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0
constant BPF_FD_TYPE_TRACEPOINT (line 2477) | BPF_FD_TYPE_TRACEPOINT = 0x1
constant BPF_FD_TYPE_KPROBE (line 2478) | BPF_FD_TYPE_KPROBE = 0x2
constant BPF_FD_TYPE_KRETPROBE (line 2479) | BPF_FD_TYPE_KRETPROBE = 0x3
constant BPF_FD_TYPE_UPROBE (line 2480) | BPF_FD_TYPE_UPROBE = 0x4
constant BPF_FD_TYPE_URETPROBE (line 2481) | BPF_FD_TYPE_URETPROBE = 0x5
type CapUserHeader (line 2484) | type CapUserHeader struct
type CapUserData (line 2489) | type CapUserData struct
constant LINUX_CAPABILITY_VERSION_1 (line 2496) | LINUX_CAPABILITY_VERSION_1 = 0x19980330
constant LINUX_CAPABILITY_VERSION_2 (line 2497) | LINUX_CAPABILITY_VERSION_2 = 0x20071026
constant LINUX_CAPABILITY_VERSION_3 (line 2498) | LINUX_CAPABILITY_VERSION_3 = 0x20080522
constant LO_FLAGS_READ_ONLY (line 2502) | LO_FLAGS_READ_ONLY = 0x1
constant LO_FLAGS_AUTOCLEAR (line 2503) | LO_FLAGS_AUTOCLEAR = 0x4
constant LO_FLAGS_PARTSCAN (line 2504) | LO_FLAGS_PARTSCAN = 0x8
constant LO_FLAGS_DIRECT_IO (line 2505) | LO_FLAGS_DIRECT_IO = 0x10
type LoopInfo (line 2508) | type LoopInfo struct
type LoopInfo64 (line 2523) | type LoopInfo64 struct
type TIPCSocketAddr (line 2539) | type TIPCSocketAddr struct
type TIPCServiceRange (line 2544) | type TIPCServiceRange struct
type TIPCServiceName (line 2550) | type TIPCServiceName struct
type TIPCSubscr (line 2556) | type TIPCSubscr struct
type TIPCEvent (line 2563) | type TIPCEvent struct
type TIPCGroupReq (line 2571) | type TIPCGroupReq struct
type TIPCSIOCLNReq (line 2578) | type TIPCSIOCLNReq struct
type TIPCSIOCNodeIDReq (line 2584) | type TIPCSIOCNodeIDReq struct
constant TIPC_CLUSTER_SCOPE (line 2590) | TIPC_CLUSTER_SCOPE = 0x2
constant TIPC_NODE_SCOPE (line 2591) | TIPC_NODE_SCOPE = 0x3
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
constant PathMax (line 103) | PathMax = 0x400
constant FADV_NORMAL (line 107) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 108) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 109) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 110) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 111) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 112) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 115) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 123) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 132) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 138) | type RawSockaddrDatalink struct
type RawSockaddr (line 149) | type RawSockaddr struct
type RawSockaddrAny (line 155) | type RawSockaddrAny struct
type _Socklen (line 160) | type _Socklen
type Linger (line 162) | type Linger struct
type Iovec (line 167) | type Iovec struct
type IPMreq (line 172) | type IPMreq struct
type IPv6Mreq (line 177) | type IPv6Mreq struct
type Msghdr (line 182) | type Msghdr struct
type Cmsghdr (line 192) | type Cmsghdr struct
type Inet6Pktinfo (line 198) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 203) | type IPv6MTUInfo struct
type ICMPv6Filter (line 208) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 213) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 214) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 215) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 216) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 217) | SizeofSockaddrDatalink = 0x14
constant SizeofLinger (line 218) | SizeofLinger = 0x8
constant SizeofIPMreq (line 219) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 220) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 221) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 222) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 223) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 224) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 225) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 229) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 230) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 231) | PTRACE_KILL = 0x8
type Kevent_t (line 234) | type Kevent_t struct
type FdSet (line 243) | type FdSet struct
constant SizeofIfMsghdr (line 248) | SizeofIfMsghdr = 0x98
constant SizeofIfData (line 249) | SizeofIfData = 0x84
constant SizeofIfaMsghdr (line 250) | SizeofIfaMsghdr = 0x18
constant SizeofIfAnnounceMsghdr (line 251) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 252) | SizeofRtMsghdr = 0x78
constant SizeofRtMetrics (line 253) | SizeofRtMetrics = 0x50
type IfMsghdr (line 256) | type IfMsghdr struct
type IfData (line 268) | type IfData struct
type IfaMsghdr (line 291) | type IfaMsghdr struct
type IfAnnounceMsghdr (line 302) | type IfAnnounceMsghdr struct
type RtMsghdr (line 311) | type RtMsghdr struct
type RtMetrics (line 328) | type RtMetrics struct
type Mclpool (line 341) | type Mclpool
constant SizeofBpfVersion (line 344) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 345) | SizeofBpfStat = 0x80
constant SizeofBpfProgram (line 346) | SizeofBpfProgram = 0x8
constant SizeofBpfInsn (line 347) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 348) | SizeofBpfHdr = 0x14
type BpfVersion (line 351) | type BpfVersion struct
type BpfStat (line 356) | type BpfStat struct
type BpfProgram (line 363) | type BpfProgram struct
type BpfInsn (line 368) | type BpfInsn struct
type BpfHdr (line 375) | type BpfHdr struct
type BpfTimeval (line 383) | type BpfTimeval struct
type Termios (line 388) | type Termios struct
type Winsize (line 398) | type Winsize struct
type Ptmget (line 405) | type Ptmget struct
constant AT_FDCWD (line 413) | AT_FDCWD = -0x64
constant AT_SYMLINK_FOLLOW (line 414) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 415) | AT_SYMLINK_NOFOLLOW = 0x200
type PollFd (line 418) | type PollFd struct
constant POLLERR (line 425) | POLLERR = 0x8
constant POLLHUP (line 426) | POLLHUP = 0x10
constant POLLIN (line 427) | POLLIN = 0x1
constant POLLNVAL (line 428) | POLLNVAL = 0x20
constant POLLOUT (line 429) | POLLOUT = 0x4
constant POLLPRI (line 430) | POLLPRI = 0x2
constant POLLRDBAND (line 431) | POLLRDBAND = 0x80
constant POLLRDNORM (line 432) | POLLRDNORM = 0x40
constant POLLWRBAND (line 433) | POLLWRBAND = 0x100
constant POLLWRNORM (line 434) | POLLWRNORM = 0x4
type Sysctlnode (line 437) | type Sysctlnode struct
type Utsname (line 450) | type Utsname struct
constant SizeofClockinfo (line 458) | SizeofClockinfo = 0x14
type Clockinfo (line 460) | type Clockinfo 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
constant PathMax (line 107) | PathMax = 0x400
constant FADV_NORMAL (line 111) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 112) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 113) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 114) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 115) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 116) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 119) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 127) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 136) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 142) | type RawSockaddrDatalink struct
type RawSockaddr (line 153) | type RawSockaddr struct
type RawSockaddrAny (line 159) | type RawSockaddrAny struct
type _Socklen (line 164) | type _Socklen
type Linger (line 166) | type Linger struct
type Iovec (line 171) | type Iovec struct
type IPMreq (line 176) | type IPMreq struct
type IPv6Mreq (line 181) | type IPv6Mreq struct
type Msghdr (line 186) | type Msghdr struct
type Cmsghdr (line 198) | type Cmsghdr struct
type Inet6Pktinfo (line 204) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 209) | type IPv6MTUInfo struct
type ICMPv6Filter (line 214) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 219) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 220) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 221) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 222) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 223) | SizeofSockaddrDatalink = 0x14
constant SizeofLinger (line 224) | SizeofLinger = 0x8
constant SizeofIPMreq (line 225) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 226) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 227) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 228) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 229) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 230) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 231) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 235) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 236) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 237) | PTRACE_KILL = 0x8
type Kevent_t (line 240) | type Kevent_t struct
type FdSet (line 250) | type FdSet struct
constant SizeofIfMsghdr (line 255) | SizeofIfMsghdr = 0x98
constant SizeofIfData (line 256) | SizeofIfData = 0x88
constant SizeofIfaMsghdr (line 257) | SizeofIfaMsghdr = 0x18
constant SizeofIfAnnounceMsghdr (line 258) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 259) | SizeofRtMsghdr = 0x78
constant SizeofRtMetrics (line 260) | SizeofRtMetrics = 0x50
type IfMsghdr (line 263) | type IfMsghdr struct
type IfData (line 274) | type IfData struct
type IfaMsghdr (line 297) | type IfaMsghdr struct
type IfAnnounceMsghdr (line 308) | type IfAnnounceMsghdr struct
type RtMsghdr (line 317) | type RtMsghdr struct
type RtMetrics (line 334) | type RtMetrics struct
type Mclpool (line 347) | type Mclpool
constant SizeofBpfVersion (line 350) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 351) | SizeofBpfStat = 0x80
constant SizeofBpfProgram (line 352) | SizeofBpfProgram = 0x10
constant SizeofBpfInsn (line 353) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 354) | SizeofBpfHdr = 0x20
type BpfVersion (line 357) | type BpfVersion struct
type BpfStat (line 362) | type BpfStat struct
type BpfProgram (line 369) | type BpfProgram struct
type BpfInsn (line 375) | type BpfInsn struct
type BpfHdr (line 382) | type BpfHdr struct
type BpfTimeval (line 390) | type BpfTimeval struct
type Termios (line 395) | type Termios struct
type Winsize (line 405) | type Winsize struct
type Ptmget (line 412) | type Ptmget struct
constant AT_FDCWD (line 420) | AT_FDCWD = -0x64
constant AT_SYMLINK_FOLLOW (line 421) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 422) | AT_SYMLINK_NOFOLLOW = 0x200
type PollFd (line 425) | type PollFd struct
constant POLLERR (line 432) | POLLERR = 0x8
constant POLLHUP (line 433) | POLLHUP = 0x10
constant POLLIN (line 434) | POLLIN = 0x1
constant POLLNVAL (line 435) | POLLNVAL = 0x20
constant POLLOUT (line 436) | POLLOUT = 0x4
constant POLLPRI (line 437) | POLLPRI = 0x2
constant POLLRDBAND (line 438) | POLLRDBAND = 0x80
constant POLLRDNORM (line 439) | POLLRDNORM = 0x40
constant POLLWRBAND (line 440) | POLLWRBAND = 0x100
constant POLLWRNORM (line 441) | POLLWRNORM = 0x4
type Sysctlnode (line 444) | type Sysctlnode struct
type Utsname (line 457) | type Utsname struct
constant SizeofClockinfo (line 465) | SizeofClockinfo = 0x14
type Clockinfo (line 467) | type Clockinfo 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
constant PathMax (line 108) | PathMax = 0x400
constant FADV_NORMAL (line 112) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 113) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 114) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 115) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 116) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 117) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 120) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 128) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 137) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 143) | type RawSockaddrDatalink struct
type RawSockaddr (line 154) | type RawSockaddr struct
type RawSockaddrAny (line 160) | type RawSockaddrAny struct
type _Socklen (line 165) | type _Socklen
type Linger (line 167) | type Linger struct
type Iovec (line 172) | type Iovec struct
type IPMreq (line 177) | type IPMreq struct
type IPv6Mreq (line 182) | type IPv6Mreq struct
type Msghdr (line 187) | type Msghdr struct
type Cmsghdr (line 197) | type Cmsghdr struct
type Inet6Pktinfo (line 203) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 208) | type IPv6MTUInfo struct
type ICMPv6Filter (line 213) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 218) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 219) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 220) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 221) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 222) | SizeofSockaddrDatalink = 0x14
constant SizeofLinger (line 223) | SizeofLinger = 0x8
constant SizeofIPMreq (line 224) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 225) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 226) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 227) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 228) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 229) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 230) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 234) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 235) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 236) | PTRACE_KILL = 0x8
type Kevent_t (line 239) | type Kevent_t struct
type FdSet (line 249) | type FdSet struct
constant SizeofIfMsghdr (line 254) | SizeofIfMsghdr = 0x98
constant SizeofIfData (line 255) | SizeofIfData = 0x88
constant SizeofIfaMsghdr (line 256) | SizeofIfaMsghdr = 0x18
constant SizeofIfAnnounceMsghdr (line 257) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 258) | SizeofRtMsghdr = 0x78
constant SizeofRtMetrics (line 259) | SizeofRtMetrics = 0x50
type IfMsghdr (line 262) | type IfMsghdr struct
type IfData (line 273) | type IfData struct
type IfaMsghdr (line 296) | type IfaMsghdr struct
type IfAnnounceMsghdr (line 307) | type IfAnnounceMsghdr struct
type RtMsghdr (line 316) | type RtMsghdr struct
type RtMetrics (line 333) | type RtMetrics struct
type Mclpool (line 346) | type Mclpool
constant SizeofBpfVersion (line 349) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 350) | SizeofBpfStat = 0x80
constant SizeofBpfProgram (line 351) | SizeofBpfProgram = 0x8
constant SizeofBpfInsn (line 352) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 353) | SizeofBpfHdr = 0x14
type BpfVersion (line 356) | type BpfVersion struct
type BpfStat (line 361) | type BpfStat struct
type BpfProgram (line 368) | type BpfProgram struct
type BpfInsn (line 373) | type BpfInsn struct
type BpfHdr (line 380) | type BpfHdr struct
type BpfTimeval (line 388) | type BpfTimeval struct
type Termios (line 393) | type Termios struct
type Winsize (line 403) | type Winsize struct
type Ptmget (line 410) | type Ptmget struct
constant AT_FDCWD (line 418) | AT_FDCWD = -0x64
constant AT_SYMLINK_FOLLOW (line 419) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 420) | AT_SYMLINK_NOFOLLOW = 0x200
type PollFd (line 423) | type PollFd struct
constant POLLERR (line 430) | POLLERR = 0x8
constant POLLHUP (line 431) | POLLHUP = 0x10
constant POLLIN (line 432) | POLLIN = 0x1
constant POLLNVAL (line 433) | POLLNVAL = 0x20
constant POLLOUT (line 434) | POLLOUT = 0x4
constant POLLPRI (line 435) | POLLPRI = 0x2
constant POLLRDBAND (line 436) | POLLRDBAND = 0x80
constant POLLRDNORM (line 437) | POLLRDNORM = 0x40
constant POLLWRBAND (line 438) | POLLWRBAND = 0x100
constant POLLWRNORM (line 439) | POLLWRNORM = 0x4
type Sysctlnode (line 442) | type Sysctlnode struct
type Utsname (line 455) | type Utsname struct
constant SizeofClockinfo (line 463) | SizeofClockinfo = 0x14
type Clockinfo (line 465) | type Clockinfo struct
FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_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
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
constant PathMax (line 107) | PathMax = 0x400
constant FADV_NORMAL (line 111) | FADV_NORMAL = 0x0
constant FADV_RANDOM (line 112) | FADV_RANDOM = 0x1
constant FADV_SEQUENTIAL (line 113) | FADV_SEQUENTIAL = 0x2
constant FADV_WILLNEED (line 114) | FADV_WILLNEED = 0x3
constant FADV_DONTNEED (line 115) | FADV_DONTNEED = 0x4
constant FADV_NOREUSE (line 116) | FADV_NOREUSE = 0x5
type RawSockaddrInet4 (line 119) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 127) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 136) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 142) | type RawSockaddrDatalink struct
type RawSockaddr (line 153) | type RawSockaddr struct
type RawSockaddrAny (line 159) | type RawSockaddrAny struct
type _Socklen (line 164) | type _Socklen
type Linger (line 166) | type Linger struct
type Iovec (line 171) | type Iovec struct
type IPMreq (line 176) | type IPMreq struct
type IPv6Mreq (line 181) | type IPv6Mreq struct
type Msghdr (line 186) | type Msghdr struct
type Cmsghdr (line 198) | type Cmsghdr struct
type Inet6Pktinfo (line 204) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 209) | type IPv6MTUInfo struct
type ICMPv6Filter (line 214) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 219) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 220) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 221) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 222) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 223) | SizeofSockaddrDatalink = 0x14
constant SizeofLinger (line 224) | SizeofLinger = 0x8
constant SizeofIPMreq (line 225) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 226) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 227) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 228) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 229) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 230) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 231) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 235) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 236) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 237) | PTRACE_KILL = 0x8
type Kevent_t (line 240) | type Kevent_t struct
type FdSet (line 250) | type FdSet struct
constant SizeofIfMsghdr (line 255) | SizeofIfMsghdr = 0x98
constant SizeofIfData (line 256) | SizeofIfData = 0x88
constant SizeofIfaMsghdr (line 257) | SizeofIfaMsghdr = 0x18
constant SizeofIfAnnounceMsghdr (line 258) | SizeofIfAnnounceMsghdr = 0x18
constant SizeofRtMsghdr (line 259) | SizeofRtMsghdr = 0x78
constant SizeofRtMetrics (line 260) | SizeofRtMetrics = 0x50
type IfMsghdr (line 263) | type IfMsghdr struct
type IfData (line 274) | type IfData struct
type IfaMsghdr (line 297) | type IfaMsghdr struct
type IfAnnounceMsghdr (line 308) | type IfAnnounceMsghdr struct
type RtMsghdr (line 317) | type RtMsghdr struct
type RtMetrics (line 334) | type RtMetrics struct
type Mclpool (line 347) | type Mclpool
constant SizeofBpfVersion (line 350) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 351) | SizeofBpfStat = 0x80
constant SizeofBpfProgram (line 352) | SizeofBpfProgram = 0x10
constant SizeofBpfInsn (line 353) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 354) | SizeofBpfHdr = 0x20
type BpfVersion (line 357) | type BpfVersion struct
type BpfStat (line 362) | type BpfStat struct
type BpfProgram (line 369) | type BpfProgram struct
type BpfInsn (line 375) | type BpfInsn struct
type BpfHdr (line 382) | type BpfHdr struct
type BpfTimeval (line 390) | type BpfTimeval struct
type Termios (line 395) | type Termios struct
type Winsize (line 405) | type Winsize struct
type Ptmget (line 412) | type Ptmget struct
constant AT_FDCWD (line 420) | AT_FDCWD = -0x64
constant AT_SYMLINK_FOLLOW (line 421) | AT_SYMLINK_FOLLOW = 0x400
constant AT_SYMLINK_NOFOLLOW (line 422) | AT_SYMLINK_NOFOLLOW = 0x200
type PollFd (line 425) | type PollFd struct
constant POLLERR (line 432) | POLLERR = 0x8
constant POLLHUP (line 433) | POLLHUP = 0x10
constant POLLIN (line 434) | POLLIN = 0x1
constant POLLNVAL (line 435) | POLLNVAL = 0x20
constant POLLOUT (line 436) | POLLOUT = 0x4
constant POLLPRI (line 437) | POLLPRI = 0x2
constant POLLRDBAND (line 438) | POLLRDBAND = 0x80
constant POLLRDNORM (line 439) | POLLRDNORM = 0x40
constant POLLWRBAND (line 440) | POLLWRBAND = 0x100
constant POLLWRNORM (line 441) | POLLWRNORM = 0x4
type Sysctlnode (line 444) | type Sysctlnode struct
type Utsname (line 457) | type Utsname struct
constant SizeofClockinfo (line 465) | SizeofClockinfo = 0x14
type Clockinfo (line 467) | type Clockinfo 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
type Stat_t (line 59) | type Stat_t struct
type Statfs_t (line 78) | type Statfs_t struct
type Flock_t (line 104) | type Flock_t struct
type Dirent (line 112) | type Dirent struct
type Fsid (line 122) | type Fsid struct
constant PathMax (line 127) | PathMax = 0x400
type RawSockaddrInet4 (line 130) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 138) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 147) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 153) | type RawSockaddrDatalink struct
type RawSockaddr (line 164) | type RawSockaddr struct
type RawSockaddrAny (line 170) | type RawSockaddrAny struct
type _Socklen (line 175) | type _Socklen
type Linger (line 177) | type Linger struct
type Iovec (line 182) | type Iovec struct
type IPMreq (line 187) | type IPMreq struct
type IPv6Mreq (line 192) | type IPv6Mreq struct
type Msghdr (line 197) | type Msghdr struct
type Cmsghdr (line 207) | type Cmsghdr struct
type Inet6Pktinfo (line 213) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 218) | type IPv6MTUInfo struct
type ICMPv6Filter (line 223) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 228) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 229) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 230) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 231) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 232) | SizeofSockaddrDatalink = 0x20
constant SizeofLinger (line 233) | SizeofLinger = 0x8
constant SizeofIPMreq (line 234) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 235) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 236) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 237) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 238) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 239) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 240) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 244) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 245) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 246) | PTRACE_KILL = 0x8
type Kevent_t (line 249) | type Kevent_t struct
type FdSet (line 258) | type FdSet struct
constant SizeofIfMsghdr (line 263) | SizeofIfMsghdr = 0xec
constant SizeofIfData (line 264) | SizeofIfData = 0xd4
constant SizeofIfaMsghdr (line 265) | SizeofIfaMsghdr = 0x18
constant SizeofIfAnnounceMsghdr (line 266) | SizeofIfAnnounceMsghdr = 0x1a
constant SizeofRtMsghdr (line 267) | SizeofRtMsghdr = 0x60
constant SizeofRtMetrics (line 268) | SizeofRtMetrics = 0x38
type IfMsghdr (line 271) | type IfMsghdr struct
type IfData (line 286) | type IfData struct
type IfaMsghdr (line 311) | type IfaMsghdr struct
type IfAnnounceMsghdr (line 325) | type IfAnnounceMsghdr struct
type RtMsghdr (line 335) | type RtMsghdr struct
type RtMetrics (line 354) | type RtMetrics struct
type Mclpool (line 369) | type Mclpool struct
constant SizeofBpfVersion (line 378) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 379) | SizeofBpfStat = 0x8
constant SizeofBpfProgram (line 380) | SizeofBpfProgram = 0x8
constant SizeofBpfInsn (line 381) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 382) | SizeofBpfHdr = 0x14
type BpfVersion (line 385) | type BpfVersion struct
type BpfStat (line 390) | type BpfStat struct
type BpfProgram (line 395) | type BpfProgram struct
type BpfInsn (line 400) | type BpfInsn struct
type BpfHdr (line 407) | type BpfHdr struct
type BpfTimeval (line 415) | type BpfTimeval struct
type Termios (line 420) | type Termios struct
type Winsize (line 430) | type Winsize struct
constant AT_FDCWD (line 438) | AT_FDCWD = -0x64
constant AT_SYMLINK_FOLLOW (line 439) | AT_SYMLINK_FOLLOW = 0x4
constant AT_SYMLINK_NOFOLLOW (line 440) | AT_SYMLINK_NOFOLLOW = 0x2
type PollFd (line 443) | type PollFd struct
constant POLLERR (line 450) | POLLERR = 0x8
constant POLLHUP (line 451) | POLLHUP = 0x10
constant POLLIN (line 452) | POLLIN = 0x1
constant POLLNVAL (line 453) | POLLNVAL = 0x20
constant POLLOUT (line 454) | POLLOUT = 0x4
constant POLLPRI (line 455) | POLLPRI = 0x2
constant POLLRDBAND (line 456) | POLLRDBAND = 0x80
constant POLLRDNORM (line 457) | POLLRDNORM = 0x40
constant POLLWRBAND (line 458) | POLLWRBAND = 0x100
constant POLLWRNORM (line 459) | POLLWRNORM = 0x4
type Sigset_t (line 462) | type Sigset_t
type Utsname (line 464) | type Utsname struct
constant SizeofUvmexp (line 472) | SizeofUvmexp = 0x158
type Uvmexp (line 474) | type Uvmexp struct
constant SizeofClockinfo (line 563) | SizeofClockinfo = 0x14
type Clockinfo (line 565) | type Clockinfo struct
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
type Stat_t (line 59) | type Stat_t struct
type Statfs_t (line 79) | type Statfs_t struct
type Flock_t (line 106) | type Flock_t struct
type Dirent (line 114) | type Dirent struct
type Fsid (line 124) | type Fsid struct
constant PathMax (line 129) | PathMax = 0x400
type RawSockaddrInet4 (line 132) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 140) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 149) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 155) | type RawSockaddrDatalink struct
type RawSockaddr (line 166) | type RawSockaddr struct
type RawSockaddrAny (line 172) | type RawSockaddrAny struct
type _Socklen (line 177) | type _Socklen
type Linger (line 179) | type Linger struct
type Iovec (line 184) | type Iovec struct
type IPMreq (line 189) | type IPMreq struct
type IPv6Mreq (line 194) | type IPv6Mreq struct
type Msghdr (line 199) | type Msghdr struct
type Cmsghdr (line 211) | type Cmsghdr struct
type Inet6Pktinfo (line 217) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 222) | type IPv6MTUInfo struct
type ICMPv6Filter (line 227) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 232) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 233) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 234) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 235) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 236) | SizeofSockaddrDatalink = 0x20
constant SizeofLinger (line 237) | SizeofLinger = 0x8
constant SizeofIPMreq (line 238) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 239) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 240) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 241) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 242) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 243) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 244) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 248) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 249) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 250) | PTRACE_KILL = 0x8
type Kevent_t (line 253) | type Kevent_t struct
type FdSet (line 262) | type FdSet struct
constant SizeofIfMsghdr (line 267) | SizeofIfMsghdr = 0xa8
constant SizeofIfData (line 268) | SizeofIfData = 0x90
constant SizeofIfaMsghdr (line 269) | SizeofIfaMsghdr = 0x18
constant SizeofIfAnnounceMsghdr (line 270) | SizeofIfAnnounceMsghdr = 0x1a
constant SizeofRtMsghdr (line 271) | SizeofRtMsghdr = 0x60
constant SizeofRtMetrics (line 272) | SizeofRtMetrics = 0x38
type IfMsghdr (line 275) | type IfMsghdr struct
type IfData (line 290) | type IfData struct
type IfaMsghdr (line 316) | type IfaMsghdr struct
type IfAnnounceMsghdr (line 330) | type IfAnnounceMsghdr struct
type RtMsghdr (line 340) | type RtMsghdr struct
type RtMetrics (line 359) | type RtMetrics struct
type Mclpool (line 374) | type Mclpool struct
constant SizeofBpfVersion (line 377) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 378) | SizeofBpfStat = 0x8
constant SizeofBpfProgram (line 379) | SizeofBpfProgram = 0x10
constant SizeofBpfInsn (line 380) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 381) | SizeofBpfHdr = 0x14
type BpfVersion (line 384) | type BpfVersion struct
type BpfStat (line 389) | type BpfStat struct
type BpfProgram (line 394) | type BpfProgram struct
type BpfInsn (line 400) | type BpfInsn struct
type BpfHdr (line 407) | type BpfHdr struct
type BpfTimeval (line 415) | type BpfTimeval struct
type Termios (line 420) | type Termios struct
type Winsize (line 430) | type Winsize struct
constant AT_FDCWD (line 438) | AT_FDCWD = -0x64
constant AT_SYMLINK_FOLLOW (line 439) | AT_SYMLINK_FOLLOW = 0x4
constant AT_SYMLINK_NOFOLLOW (line 440) | AT_SYMLINK_NOFOLLOW = 0x2
type PollFd (line 443) | type PollFd struct
constant POLLERR (line 450) | POLLERR = 0x8
constant POLLHUP (line 451) | POLLHUP = 0x10
constant POLLIN (line 452) | POLLIN = 0x1
constant POLLNVAL (line 453) | POLLNVAL = 0x20
constant POLLOUT (line 454) | POLLOUT = 0x4
constant POLLPRI (line 455) | POLLPRI = 0x2
constant POLLRDBAND (line 456) | POLLRDBAND = 0x80
constant POLLRDNORM (line 457) | POLLRDNORM = 0x40
constant POLLWRBAND (line 458) | POLLWRBAND = 0x100
constant POLLWRNORM (line 459) | POLLWRNORM = 0x4
type Sigset_t (line 462) | type Sigset_t
type Utsname (line 464) | type Utsname struct
constant SizeofUvmexp (line 472) | SizeofUvmexp = 0x158
type Uvmexp (line 474) | type Uvmexp struct
constant SizeofClockinfo (line 563) | SizeofClockinfo = 0x14
type Clockinfo (line 565) | type Clockinfo struct
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 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 81) | type Statfs_t struct
type Flock_t (line 108) | type Flock_t struct
type Dirent (line 116) | type Dirent struct
type Fsid (line 126) | type Fsid struct
constant PathMax (line 131) | PathMax = 0x400
type RawSockaddrInet4 (line 134) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 142) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 151) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 157) | type RawSockaddrDatalink struct
type RawSockaddr (line 168) | type RawSockaddr struct
type RawSockaddrAny (line 174) | type RawSockaddrAny struct
type _Socklen (line 179) | type _Socklen
type Linger (line 181) | type Linger struct
type Iovec (line 186) | type Iovec struct
type IPMreq (line 191) | type IPMreq struct
type IPv6Mreq (line 196) | type IPv6Mreq struct
type Msghdr (line 201) | type Msghdr struct
type Cmsghdr (line 211) | type Cmsghdr struct
type Inet6Pktinfo (line 217) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 222) | type IPv6MTUInfo struct
type ICMPv6Filter (line 227) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 232) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 233) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 234) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 235) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 236) | SizeofSockaddrDatalink = 0x20
constant SizeofLinger (line 237) | SizeofLinger = 0x8
constant SizeofIPMreq (line 238) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 239) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 240) | SizeofMsghdr = 0x1c
constant SizeofCmsghdr (line 241) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 242) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 243) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 244) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 248) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 249) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 250) | PTRACE_KILL = 0x8
type Kevent_t (line 253) | type Kevent_t struct
type FdSet (line 264) | type FdSet struct
constant SizeofIfMsghdr (line 269) | SizeofIfMsghdr = 0xa8
constant SizeofIfData (line 270) | SizeofIfData = 0x90
constant SizeofIfaMsghdr (line 271) | SizeofIfaMsghdr = 0x18
constant SizeofIfAnnounceMsghdr (line 272) | SizeofIfAnnounceMsghdr = 0x1a
constant SizeofRtMsghdr (line 273) | SizeofRtMsghdr = 0x60
constant SizeofRtMetrics (line 274) | SizeofRtMetrics = 0x38
type IfMsghdr (line 277) | type IfMsghdr struct
type IfData (line 292) | type IfData struct
type IfaMsghdr (line 318) | type IfaMsghdr struct
type IfAnnounceMsghdr (line 332) | type IfAnnounceMsghdr struct
type RtMsghdr (line 342) | type RtMsghdr struct
type RtMetrics (line 361) | type RtMetrics struct
type Mclpool (line 376) | type Mclpool struct
constant SizeofBpfVersion (line 379) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 380) | SizeofBpfStat = 0x8
constant SizeofBpfProgram (line 381) | SizeofBpfProgram = 0x8
constant SizeofBpfInsn (line 382) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 383) | SizeofBpfHdr = 0x14
type BpfVersion (line 386) | type BpfVersion struct
type BpfStat (line 391) | type BpfStat struct
type BpfProgram (line 396) | type BpfProgram struct
type BpfInsn (line 401) | type BpfInsn struct
type BpfHdr (line 408) | type BpfHdr struct
type BpfTimeval (line 416) | type BpfTimeval struct
type Termios (line 421) | type Termios struct
type Winsize (line 431) | type Winsize struct
constant AT_FDCWD (line 439) | AT_FDCWD = -0x64
constant AT_SYMLINK_FOLLOW (line 440) | AT_SYMLINK_FOLLOW = 0x4
constant AT_SYMLINK_NOFOLLOW (line 441) | AT_SYMLINK_NOFOLLOW = 0x2
type PollFd (line 444) | type PollFd struct
constant POLLERR (line 451) | POLLERR = 0x8
constant POLLHUP (line 452) | POLLHUP = 0x10
constant POLLIN (line 453) | POLLIN = 0x1
constant POLLNVAL (line 454) | POLLNVAL = 0x20
constant POLLOUT (line 455) | POLLOUT = 0x4
constant POLLPRI (line 456) | POLLPRI = 0x2
constant POLLRDBAND (line 457) | POLLRDBAND = 0x80
constant POLLRDNORM (line 458) | POLLRDNORM = 0x40
constant POLLWRBAND (line 459) | POLLWRBAND = 0x100
constant POLLWRNORM (line 460) | POLLWRNORM = 0x4
type Sigset_t (line 463) | type Sigset_t
type Utsname (line 465) | type Utsname struct
constant SizeofUvmexp (line 473) | SizeofUvmexp = 0x158
type Uvmexp (line 475) | type Uvmexp struct
constant SizeofClockinfo (line 564) | SizeofClockinfo = 0x14
type Clockinfo (line 566) | type Clockinfo struct
FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_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
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 78) | type Statfs_t struct
type Flock_t (line 104) | type Flock_t struct
type Dirent (line 112) | type Dirent struct
type Fsid (line 122) | type Fsid struct
constant PathMax (line 127) | PathMax = 0x400
type RawSockaddrInet4 (line 130) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 138) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 147) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 153) | type RawSockaddrDatalink struct
type RawSockaddr (line 164) | type RawSockaddr struct
type RawSockaddrAny (line 170) | type RawSockaddrAny struct
type _Socklen (line 175) | type _Socklen
type Linger (line 177) | type Linger struct
type Iovec (line 182) | type Iovec struct
type IPMreq (line 187) | type IPMreq struct
type IPv6Mreq (line 192) | type IPv6Mreq struct
type Msghdr (line 197) | type Msghdr struct
type Cmsghdr (line 207) | type Cmsghdr struct
type Inet6Pktinfo (line 213) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 218) | type IPv6MTUInfo struct
type ICMPv6Filter (line 223) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 228) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 229) | SizeofSockaddrInet6 = 0x1c
constant SizeofSockaddrAny (line 230) | SizeofSockaddrAny = 0x6c
constant SizeofSockaddrUnix (line 231) | SizeofSockaddrUnix = 0x6a
constant SizeofSockaddrDatalink (line 232) | SizeofSockaddrDatalink = 0x20
constant SizeofLinger (line 233) | SizeofLinger = 0x8
constant SizeofIPMreq (line 234) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 235) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 236) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 237) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 238) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 239) | SizeofIPv6MTUInfo = 0x20
constant SizeofICMPv6Filter (line 240) | SizeofICMPv6Filter = 0x20
constant PTRACE_TRACEME (line 244) | PTRACE_TRACEME = 0x0
constant PTRACE_CONT (line 245) | PTRACE_CONT = 0x7
constant PTRACE_KILL (line 246) | PTRACE_KILL = 0x8
type Kevent_t (line 249) | type Kevent_t struct
type FdSet (line 258) | type FdSet struct
constant SizeofIfMsghdr (line 263) | SizeofIfMsghdr = 0xa8
constant SizeofIfData (line 264) | SizeofIfData = 0x90
constant SizeofIfaMsghdr (line 265) | SizeofIfaMsghdr = 0x18
constant SizeofIfAnnounceMsghdr (line 266) | SizeofIfAnnounceMsghdr = 0x1a
constant SizeofRtMsghdr (line 267) | SizeofRtMsghdr = 0x60
constant SizeofRtMetrics (line 268) | SizeofRtMetrics = 0x38
type IfMsghdr (line 271) | type IfMsghdr struct
type IfData (line 286) | type IfData struct
type IfaMsghdr (line 311) | type IfaMsghdr struct
type IfAnnounceMsghdr (line 325) | type IfAnnounceMsghdr struct
type RtMsghdr (line 335) | type RtMsghdr struct
type RtMetrics (line 354) | type RtMetrics struct
type Mclpool (line 369) | type Mclpool struct
constant SizeofBpfVersion (line 372) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 373) | SizeofBpfStat = 0x8
constant SizeofBpfProgram (line 374) | SizeofBpfProgram = 0x10
constant SizeofBpfInsn (line 375) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 376) | SizeofBpfHdr = 0x14
type BpfVersion (line 379) | type BpfVersion struct
type BpfStat (line 384) | type BpfStat struct
type BpfProgram (line 389) | type BpfProgram struct
type BpfInsn (line 394) | type BpfInsn struct
type BpfHdr (line 401) | type BpfHdr struct
type BpfTimeval (line 409) | type BpfTimeval struct
type Termios (line 414) | type Termios struct
type Winsize (line 424) | type Winsize struct
constant AT_FDCWD (line 432) | AT_FDCWD = -0x64
constant AT_SYMLINK_FOLLOW (line 433) | AT_SYMLINK_FOLLOW = 0x4
constant AT_SYMLINK_NOFOLLOW (line 434) | AT_SYMLINK_NOFOLLOW = 0x2
type PollFd (line 437) | type PollFd struct
constant POLLERR (line 444) | POLLERR = 0x8
constant POLLHUP (line 445) | POLLHUP = 0x10
constant POLLIN (line 446) | POLLIN = 0x1
constant POLLNVAL (line 447) | POLLNVAL = 0x20
constant POLLOUT (line 448) | POLLOUT = 0x4
constant POLLPRI (line 449) | POLLPRI = 0x2
constant POLLRDBAND (line 450) | POLLRDBAND = 0x80
constant POLLRDNORM (line 451) | POLLRDNORM = 0x40
constant POLLWRBAND (line 452) | POLLWRBAND = 0x100
constant POLLWRNORM (line 453) | POLLWRNORM = 0x4
type Sigset_t (line 456) | type Sigset_t
type Utsname (line 458) | type Utsname struct
constant SizeofUvmexp (line 466) | SizeofUvmexp = 0x158
type Uvmexp (line 468) | type Uvmexp struct
constant SizeofClockinfo (line 557) | SizeofClockinfo = 0x14
type Clockinfo (line 559) | type Clockinfo struct
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
type Stat_t (line 78) | type Stat_t struct
type Flock_t (line 96) | type Flock_t struct
type Dirent (line 107) | type Dirent struct
type _Fsblkcnt_t (line 115) | type _Fsblkcnt_t
type Statvfs_t (line 117) | type Statvfs_t struct
type RawSockaddrInet4 (line 133) | type RawSockaddrInet4 struct
type RawSockaddrInet6 (line 140) | type RawSockaddrInet6 struct
type RawSockaddrUnix (line 149) | type RawSockaddrUnix struct
type RawSockaddrDatalink (line 154) | type RawSockaddrDatalink struct
type RawSockaddr (line 164) | type RawSockaddr struct
type RawSockaddrAny (line 169) | type RawSockaddrAny struct
type _Socklen (line 174) | type _Socklen
type Linger (line 176) | type Linger struct
type Iovec (line 181) | type Iovec struct
type IPMreq (line 186) | type IPMreq struct
type IPv6Mreq (line 191) | type IPv6Mreq struct
type Msghdr (line 196) | type Msghdr struct
type Cmsghdr (line 208) | type Cmsghdr struct
type Inet6Pktinfo (line 214) | type Inet6Pktinfo struct
type IPv6MTUInfo (line 219) | type IPv6MTUInfo struct
type ICMPv6Filter (line 224) | type ICMPv6Filter struct
constant SizeofSockaddrInet4 (line 229) | SizeofSockaddrInet4 = 0x10
constant SizeofSockaddrInet6 (line 230) | SizeofSockaddrInet6 = 0x20
constant SizeofSockaddrAny (line 231) | SizeofSockaddrAny = 0xfc
constant SizeofSockaddrUnix (line 232) | SizeofSockaddrUnix = 0x6e
constant SizeofSockaddrDatalink (line 233) | SizeofSockaddrDatalink = 0xfc
constant SizeofLinger (line 234) | SizeofLinger = 0x8
constant SizeofIPMreq (line 235) | SizeofIPMreq = 0x8
constant SizeofIPv6Mreq (line 236) | SizeofIPv6Mreq = 0x14
constant SizeofMsghdr (line 237) | SizeofMsghdr = 0x30
constant SizeofCmsghdr (line 238) | SizeofCmsghdr = 0xc
constant SizeofInet6Pktinfo (line 239) | SizeofInet6Pktinfo = 0x14
constant SizeofIPv6MTUInfo (line 240) | SizeofIPv6MTUInfo = 0x24
constant SizeofICMPv6Filter (line 241) | SizeofICMPv6Filter = 0x20
type FdSet (line 244) | type FdSet struct
type Utsname (line 248) | type Utsname struct
type Ustat_t (line 256) | type Ustat_t struct
constant AT_FDCWD (line 265) | AT_FDCWD = 0xffd19553
constant AT_SYMLINK_NOFOLLOW (line 266) | AT_SYMLINK_NOFOLLOW = 0x1000
constant AT_SYMLINK_FOLLOW (line 267) | AT_SYMLINK_FOLLOW = 0x2000
constant AT_REMOVEDIR (line 268) | AT_REMOVEDIR = 0x1
constant AT_EACCESS (line 269) | AT_EACCESS = 0x4
constant SizeofIfMsghdr (line 273) | SizeofIfMsghdr = 0x54
constant SizeofIfData (line 274) | SizeofIfData = 0x44
constant SizeofIfaMsghdr (line 275) | SizeofIfaMsghdr = 0x14
constant SizeofRtMsghdr (line 276) | SizeofRtMsghdr = 0x4c
constant SizeofRtMetrics (line 277) | SizeofRtMetrics = 0x28
type IfMsghdr (line 280) | type IfMsghdr struct
type IfData (line 291) | type IfData struct
type IfaMsghdr (line 313) | type IfaMsghdr struct
type RtMsghdr (line 324) | type RtMsghdr struct
type RtMetrics (line 340) | type RtMetrics struct
constant SizeofBpfVersion (line 354) | SizeofBpfVersion = 0x4
constant SizeofBpfStat (line 355) | SizeofBpfStat = 0x80
constant SizeofBpfProgram (line 356) | SizeofBpfProgram = 0x10
constant SizeofBpfInsn (line 357) | SizeofBpfInsn = 0x8
constant SizeofBpfHdr (line 358) | SizeofBpfHdr = 0x14
type BpfVersion (line 361) | type BpfVersion struct
type BpfStat (line 366) | type BpfStat struct
type BpfProgram (line 373) | type BpfProgram struct
type BpfInsn (line 379) | type BpfInsn struct
type BpfTimeval (line 386) | type BpfTimeval struct
type BpfHdr (line 391) | type BpfHdr struct
type Termios (line 399) | type Termios struct
type Termio (line 408) | type Termio struct
type Winsize (line 418) | type Winsize struct
type PollFd (line 425) | type PollFd struct
constant POLLERR (line 432) | POLLERR = 0x8
constant POLLHUP (line 433) | POLLHUP = 0x10
constant POLLIN (line 434) | POLLIN = 0x1
constant POLLNVAL (line 435) | POLLNVAL = 0x20
constant POLLOUT (line 436) | POLLOUT = 0x4
constant POLLPRI (line 437) | POLLPRI = 0x2
constant POLLRDBAND (line 438) | POLLRDBAND = 0x80
constant POLLRDNORM (line 439) | POLLRDNORM = 0x40
constant POLLWRBAND (line 440) | POLLWRBAND = 0x100
constant POLLWRNORM (line 441) | POLLWRNORM = 0x4
FILE: vendor/golang.org/x/text/secure/bidirule/bidirule.go
type ruleState (line 48) | type ruleState
constant ruleInitial (line 51) | ruleInitial ruleState = iota
constant ruleLTR (line 52) | ruleLTR
constant ruleLTRFinal (line 53) | ruleLTRFinal
constant ruleRTL (line 54) | ruleRTL
constant ruleRTLFinal (line 55) | ruleRTLFinal
constant ruleInvalid (line 56) | ruleInvalid
type ruleTransition (line 59) | type ruleTransition struct
constant exclusiveRTL (line 124) | exclusiveRTL = uint16(1<{}"
constant restrictedAliasErr (line 15) | restrictedAliasErr = "Alias '%s' either contains restricted characters o...
constant restrictedTagErr (line 16) | restrictedTagErr = "Tag '%s' either contains restricted characters or ...
method ExtractType (line 36) | func (v *Validate) ExtractType(current reflect.Value) (reflect.Value, re...
method extractTypeInternal (line 43) | func (v *Validate) extractTypeInternal(current reflect.Value, nullable b...
method GetStructFieldOK (line 86) | func (v *Validate) GetStructFieldOK(current reflect.Value, namespace str...
function asInt (line 220) | func asInt(param string) int64 {
function asUint (line 230) | func asUint(param string) uint64 {
function asFloat (line 240) | func asFloat(param string) float64 {
function panicIf (line 248) | func panicIf(err error) {
FILE: vendor/gopkg.in/go-playground/validator.v8/validator.go
constant utf8HexComma (line 22) | utf8HexComma = "0x2C"
constant utf8Pipe (line 23) | utf8Pipe = "0x7C"
constant tagSeparator (line 24) | tagSeparator = ","
constant orSeparator (line 25) | orSeparator = "|"
constant tagKeySeparator (line 26) | tagKeySeparator = "="
constant structOnlyTag (line 27) | structOnlyTag = "structonly"
constant noStructLevelTag (line 28) | noStructLevelTag = "nostructlevel"
constant omitempty (line 29) | omitempty = "omitempty"
constant skipValidationTag (line 30) | skipValidationTag = "-"
constant diveTag (line 31) | diveTag = "dive"
constant existsTag (line 32) | existsTag = "exists"
constant fieldErrMsg (line 33) | fieldErrMsg = "Key: '%s' Error:Field validation for '%s' fai...
constant arrayIndexFieldName (line 34) | arrayIndexFieldName = "%s" + leftBracket + "%d" + rightBracket
constant mapIndexFieldName (line 35) | mapIndexFieldName = "%s" + leftBracket + "%v" + rightBracket
constant invalidValidation (line 36) | invalidValidation = "Invalid validation tag on field %s"
constant undefinedValidation (line 37) | undefinedValidation = "Undefined validation function on field %s"
constant validatorNotInitialized (line 38) | validatorNotInitialized = "Validator instance not initialized"
constant fieldNameRequired (line 39) | fieldNameRequired = "Field Name Required"
constant tagRequired (line 40) | tagRequired = "Tag Required"
type StructLevel (line 51) | type StructLevel struct
method ReportValidationErrors (line 67) | func (sl *StructLevel) ReportValidationErrors(relativeKey string, errs...
method ReportError (line 93) | func (sl *StructLevel) ReportError(field reflect.Value, fieldName stri...
type Validate (line 140) | type Validate struct
method initCheck (line 155) | func (v *Validate) initCheck() {
method RegisterStructValidation (line 259) | func (v *Validate) RegisterStructValidation(fn StructLevelFunc, types ...
method RegisterValidation (line 276) | func (v *Validate) RegisterValidation(key string, fn Func) error {
method RegisterCustomTypeFunc (line 300) | func (v *Validate) RegisterCustomTypeFunc(fn CustomTypeFunc, types ......
method RegisterAliasValidation (line 321) | func (v *Validate) RegisterAliasValidation(alias, tags string) {
method Field (line 338) | func (v *Validate) Field(field interface{}, tag string) error {
method FieldWithValue (line 376) | func (v *Validate) FieldWithValue(val interface{}, field interface{}, ...
method StructPartial (line 414) | func (v *Validate) StructPartial(current interface{}, fields ...string...
method StructExcept (line 472) | func (v *Validate) StructExcept(current interface{}, fields ...string)...
method Struct (line 498) | func (v *Validate) Struct(current interface{}) error {
method ensureValidStruct (line 514) | func (v *Validate) ensureValidStruct(topStruct reflect.Value, currentS...
method tranverseStruct (line 528) | func (v *Validate) tranverseStruct(topStruct reflect.Value, currentStr...
method traverseField (line 574) | func (v *Validate) traverseField(topStruct reflect.Value, currentStruc...
type Config (line 163) | type Config struct
type CustomTypeFunc (line 171) | type CustomTypeFunc
type Func (line 179) | type Func
type StructLevelFunc (line 182) | type StructLevelFunc
type ValidationErrors (line 187) | type ValidationErrors
method Error (line 193) | func (ve ValidationErrors) Error() string {
type FieldError (line 207) | type FieldError struct
function New (line 221) | func New(config *Config) *Validate {
FILE: vendor/gopkg.in/yaml.v2/apic.go
function yaml_insert_token (line 7) | func yaml_insert_token(parser *yaml_parser_t, pos int, token *yaml_token...
function yaml_parser_initialize (line 27) | func yaml_parser_initialize(parser *yaml_parser_t) bool {
function yaml_parser_delete (line 36) | func yaml_parser_delete(parser *yaml_parser_t) {
function yaml_string_read_handler (line 41) | func yaml_string_read_handler(parser *yaml_parser_t, buffer []byte) (n i...
function yaml_reader_read_handler (line 51) | func yaml_reader_read_handler(parser *yaml_parser_t, buffer []byte) (n i...
function yaml_parser_set_input_string (line 56) | func yaml_parser_set_input_string(parser *yaml_parser_t, input []byte) {
function yaml_parser_set_input_reader (line 66) | func yaml_parser_set_input_reader(parser *yaml_parser_t, r io.Reader) {
function yaml_parser_set_encoding (line 75) | func yaml_parser_set_encoding(parser *yaml_parser_t, encoding yaml_encod...
function yaml_emitter_initialize (line 83) | func yaml_emitter_initialize(emitter *yaml_emitter_t) {
function yaml_emitter_delete (line 93) | func yaml_emitter_delete(emitter *yaml_emitter_t) {
function yaml_string_write_handler (line 98) | func yaml_string_write_handler(emitter *yaml_emitter_t, buffer []byte) e...
function yaml_writer_write_handler (line 105) | func yaml_writer_write_handler(emitter *yaml_emitter_t, buffer []byte) e...
function yaml_emitter_set_output_string (line 111) | func yaml_emitter_set_output_string(emitter *yaml_emitter_t, output_buff...
function yaml_emitter_set_output_writer (line 120) | func yaml_emitter_set_output_writer(emitter *yaml_emitter_t, w io.Writer) {
function yaml_emitter_set_encoding (line 129) | func yaml_emitter_set_encoding(emitter *yaml_emitter_t, encoding yaml_en...
function yaml_emitter_set_canonical (line 137) | func yaml_emitter_set_canonical(emitter *yaml_emitter_t, canonical bool) {
function yaml_emitter_set_indent (line 142) | func yaml_emitter_set_indent(emitter *yaml_emitter_t, indent int) {
function yaml_emitter_set_width (line 150) | func yaml_emitter_set_width(emitter *yaml_emitter_t, width int) {
function yaml_emitter_set_unicode (line 158) | func yaml_emitter_set_unicode(emitter *yaml_emitter_t, unicode bool) {
function yaml_emitter_set_break (line 163) | func yaml_emitter_set_break(emitter *yaml_emitter_t, line_break yaml_bre...
function yaml_stream_start_event_initialize (line 254) | func yaml_stream_start_event_initialize(event *yaml_event_t, encoding ya...
function yaml_stream_end_event_initialize (line 262) | func yaml_stream_end_event_initialize(event *yaml_event_t) {
function yaml_document_start_event_initialize (line 269) | func yaml_document_start_event_initialize(
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 316) | func yaml_scalar_event_initialize(event *yaml_event_t, anchor, tag, valu...
function yaml_sequence_start_event_initialize (line 330) | func yaml_sequence_start_event_initialize(event *yaml_event_t, anchor, t...
function yaml_sequence_end_event_initialize (line 342) | func yaml_sequence_end_event_initialize(event *yaml_event_t) bool {
function yaml_mapping_start_event_initialize (line 350) | func yaml_mapping_start_event_initialize(event *yaml_event_t, anchor, ta...
function yaml_mapping_end_event_initialize (line 361) | func yaml_mapping_end_event_initialize(event *yaml_event_t) {
function yaml_event_delete (line 368) | func yaml_event_delete(event *yaml_event_t) {
FILE: vendor/gopkg.in/yaml.v2/decode.go
constant documentNode (line 15) | documentNode = 1 << iota
constant mappingNode (line 16) | mappingNode
constant sequenceNode (line 17) | sequenceNode
constant scalarNode (line 18) | scalarNode
constant aliasNode (line 19) | aliasNode
type node (line 22) | type node struct
type parser (line 37) | type parser struct
method init (line 65) | func (p *parser) init() {
method destroy (line 73) | func (p *parser) destroy() {
method expect (line 82) | func (p *parser) expect(e yaml_event_type_t) {
method peek (line 101) | func (p *parser) peek() yaml_event_type_t {
method fail (line 111) | func (p *parser) fail() {
method anchor (line 135) | func (p *parser) anchor(n *node, anchor []byte) {
method parse (line 141) | func (p *parser) parse() *node {
method node (line 162) | func (p *parser) node(kind int) *node {
method document (line 170) | func (p *parser) document() *node {
method alias (line 180) | func (p *parser) alias() *node {
method scalar (line 191) | func (p *parser) scalar() *node {
method sequence (line 201) | func (p *parser) sequence() *node {
method mapping (line 212) | func (p *parser) mapping() *node {
function newParser (line 44) | func newParser(b []byte) *parser {
function newParserFromReader (line 56) | func newParserFromReader(r io.Reader) *parser {
type decoder (line 226) | type decoder struct
method terror (line 249) | func (d *decoder) terror(n *node, tag string, out reflect.Value) {
method callUnmarshaler (line 264) | func (d *decoder) callUnmarshaler(n *node, u Unmarshaler) (good bool) {
method prepare (line 293) | func (d *decoder) prepare(n *node, out reflect.Value) (newout reflect....
method unmarshal (line 317) | func (d *decoder) unmarshal(n *node, out reflect.Value) (good bool) {
method document (line 341) | func (d *decoder) document(n *node, out reflect.Value) (good bool) {
method alias (line 350) | func (d *decoder) alias(n *node, out reflect.Value) (good bool) {
method scalar (line 369) | func (d *decoder) scalar(n *node, out reflect.Value) bool {
method sequence (line 543) | func (d *decoder) sequence(n *node, out reflect.Value) (good bool) {
method mapping (line 581) | func (d *decoder) mapping(n *node, out reflect.Value) (good bool) {
method setMapIndex (line 643) | func (d *decoder) setMapIndex(n *node, out, k, v reflect.Value) {
method mappingSlice (line 651) | func (d *decoder) mappingSlice(n *node, out reflect.Value) (good bool) {
method mappingStruct (line 682) | func (d *decoder) mappingStruct(n *node, out reflect.Value) (good bool) {
method merge (line 744) | func (d *decoder) merge(n *node, out reflect.Value) {
function newDecoder (line 243) | func newDecoder(strict bool) *decoder {
function resetMap (line 363) | func resetMap(out reflect.Value) {
function settableValueOf (line 536) | func settableValueOf(i interface{}) reflect.Value {
function failWantMap (line 740) | func failWantMap() {
function isMerge (line 773) | func isMerge(n *node) bool {
FILE: vendor/gopkg.in/yaml.v2/emitterc.go
function flush (line 9) | func flush(emitter *yaml_emitter_t) bool {
function put (line 17) | func put(emitter *yaml_emitter_t, value byte) bool {
function put_break (line 28) | func put_break(emitter *yaml_emitter_t) bool {
function write (line 52) | func write(emitter *yaml_emitter_t, s []byte, i *int) bool {
function write_all (line 80) | func write_all(emitter *yaml_emitter_t, s []byte) bool {
function write_break (line 90) | func write_break(emitter *yaml_emitter_t, s []byte, i *int) bool {
function yaml_emitter_set_emitter_error (line 107) | func yaml_emitter_set_emitter_error(emitter *yaml_emitter_t, problem str...
function yaml_emitter_emit (line 114) | func yaml_emitter_emit(emitter *yaml_emitter_t, event *yaml_event_t) bool {
function yaml_emitter_need_more_events (line 137) | func yaml_emitter_need_more_events(emitter *yaml_emitter_t) bool {
function yaml_emitter_append_tag_directive (line 174) | func yaml_emitter_append_tag_directive(emitter *yaml_emitter_t, value *y...
function yaml_emitter_increase_indent (line 197) | func yaml_emitter_increase_indent(emitter *yaml_emitter_t, flow, indentl...
function yaml_emitter_state_machine (line 212) | func yaml_emitter_state_machine(emitter *yaml_emitter_t, event *yaml_eve...
function yaml_emitter_emit_stream_start (line 273) | func yaml_emitter_emit_stream_start(emitter *yaml_emitter_t, event *yaml...
function yaml_emitter_emit_document_start (line 312) | func yaml_emitter_emit_document_start(emitter *yaml_emitter_t, event *ya...
function yaml_emitter_emit_document_content (line 426) | func yaml_emitter_emit_document_content(emitter *yaml_emitter_t, event *...
function yaml_emitter_emit_document_end (line 432) | func yaml_emitter_emit_document_end(emitter *yaml_emitter_t, event *yaml...
function yaml_emitter_emit_flow_sequence_item (line 457) | func yaml_emitter_emit_flow_sequence_item(emitter *yaml_emitter_t, event...
function yaml_emitter_emit_flow_mapping_key (line 505) | func yaml_emitter_emit_flow_mapping_key(emitter *yaml_emitter_t, event *...
function yaml_emitter_emit_flow_mapping_value (line 559) | func yaml_emitter_emit_flow_mapping_value(emitter *yaml_emitter_t, event...
function yaml_emitter_emit_block_sequence_item (line 579) | func yaml_emitter_emit_block_sequence_item(emitter *yaml_emitter_t, even...
function yaml_emitter_emit_block_mapping_key (line 603) | func yaml_emitter_emit_block_mapping_key(emitter *yaml_emitter_t, event ...
function yaml_emitter_emit_block_mapping_value (line 631) | func yaml_emitter_emit_block_mapping_value(emitter *yaml_emitter_t, even...
function yaml_emitter_emit_node (line 649) | func yaml_emitter_emit_node(emitter *yaml_emitter_t, event *yaml_event_t,
function yaml_emitter_emit_alias (line 673) | func yaml_emitter_emit_alias(emitter *yaml_emitter_t, event *yaml_event_...
function yaml_emitter_emit_scalar (line 683) | func yaml_emitter_emit_scalar(emitter *yaml_emitter_t, event *yaml_event...
function yaml_emitter_emit_sequence_start (line 707) | func yaml_emitter_emit_sequence_start(emitter *yaml_emitter_t, event *ya...
function yaml_emitter_emit_mapping_start (line 724) | func yaml_emitter_emit_mapping_start(emitter *yaml_emitter_t, event *yam...
function yaml_emitter_check_empty_document (line 741) | func yaml_emitter_check_empty_document(emitter *yaml_emitter_t) bool {
function yaml_emitter_check_empty_sequence (line 746) | func yaml_emitter_check_empty_sequence(emitter *yaml_emitter_t) bool {
function yaml_emitter_check_empty_mapping (line 755) | func yaml_emitter_check_empty_mapping(emitter *yaml_emitter_t) bool {
function yaml_emitter_check_simple_key (line 764) | func yaml_emitter_check_simple_key(emitter *yaml_emitter_t) bool {
function yaml_emitter_select_scalar_style (line 798) | func yaml_emitter_select_scalar_style(emitter *yaml_emitter_t, event *ya...
function yaml_emitter_process_anchor (line 847) | func yaml_emitter_process_anchor(emitter *yaml_emitter_t) bool {
function yaml_emitter_process_tag (line 862) | func yaml_emitter_process_tag(emitter *yaml_emitter_t) bool {
function yaml_emitter_process_scalar (line 891) | func yaml_emitter_process_scalar(emitter *yaml_emitter_t) bool {
function yaml_emitter_analyze_version_directive (line 912) | func yaml_emitter_analyze_version_directive(emitter *yaml_emitter_t, ver...
function yaml_emitter_analyze_tag_directive (line 920) | func yaml_emitter_analyze_tag_directive(emitter *yaml_emitter_t, tag_dir...
function yaml_emitter_analyze_anchor (line 944) | func yaml_emitter_analyze_anchor(emitter *yaml_emitter_t, anchor []byte,...
function yaml_emitter_analyze_tag (line 967) | func yaml_emitter_analyze_tag(emitter *yaml_emitter_t, tag []byte) bool {
function yaml_emitter_analyze_scalar (line 984) | func yaml_emitter_analyze_scalar(emitter *yaml_emitter_t, value []byte) ...
function yaml_emitter_analyze_event (line 1133) | func yaml_emitter_analyze_event(emitter *yaml_emitter_t, event *yaml_eve...
function yaml_emitter_write_bom (line 1189) | func yaml_emitter_write_bom(emitter *yaml_emitter_t) bool {
function yaml_emitter_write_indent (line 1201) | func yaml_emitter_write_indent(emitter *yaml_emitter_t) bool {
function yaml_emitter_write_indicator (line 1221) | func yaml_emitter_write_indicator(emitter *yaml_emitter_t, indicator []b...
function yaml_emitter_write_anchor (line 1236) | func yaml_emitter_write_anchor(emitter *yaml_emitter_t, value []byte) bo...
function yaml_emitter_write_tag_handle (line 1245) | func yaml_emitter_write_tag_handle(emitter *yaml_emitter_t, value []byte...
function yaml_emitter_write_tag_content (line 1259) | func yaml_emitter_write_tag_content(emitter *yaml_emitter_t, value []byt...
function yaml_emitter_write_plain_scalar (line 1313) | func yaml_emitter_write_plain_scalar(emitter *yaml_emitter_t, value []by...
function yaml_emitter_write_single_quoted_scalar (line 1370) | func yaml_emitter_write_single_quoted_scalar(emitter *yaml_emitter_t, va...
function yaml_emitter_write_double_quoted_scalar (line 1429) | func yaml_emitter_write_double_quoted_scalar(emitter *yaml_emitter_t, va...
function yaml_emitter_write_block_scalar_hints (line 1550) | func yaml_emitter_write_block_scalar_hints(emitter *yaml_emitter_t, valu...
function yaml_emitter_write_literal_scalar (line 1592) | func yaml_emitter_write_literal_scalar(emitter *yaml_emitter_t, value []...
function yaml_emitter_write_folded_scalar (line 1629) | func yaml_emitter_write_folded_scalar(emitter *yaml_emitter_t, value []b...
FILE: vendor/gopkg.in/yaml.v2/encode.go
type jsonNumber (line 23) | type jsonNumber interface
type encoder (line 29) | type encoder struct
method init (line 55) | func (e *encoder) init() {
method finish (line 64) | func (e *encoder) finish() {
method destroy (line 70) | func (e *encoder) destroy() {
method emit (line 74) | func (e *encoder) emit() {
method must (line 79) | func (e *encoder) must(ok bool) {
method marshalDoc (line 89) | func (e *encoder) marshalDoc(tag string, in reflect.Value) {
method marshal (line 98) | func (e *encoder) marshal(tag string, in reflect.Value) {
method mapv (line 187) | func (e *encoder) mapv(tag string, in reflect.Value) {
method itemsv (line 198) | func (e *encoder) itemsv(tag string, in reflect.Value) {
method structv (line 208) | func (e *encoder) structv(tag string, in reflect.Value) {
method mappingv (line 247) | func (e *encoder) mappingv(tag string, f func()) {
method slicev (line 261) | func (e *encoder) slicev(tag string, in reflect.Value) {
method stringv (line 300) | func (e *encoder) stringv(tag string, in reflect.Value) {
method boolv (line 337) | func (e *encoder) boolv(tag string, in reflect.Value) {
method intv (line 347) | func (e *encoder) intv(tag string, in reflect.Value) {
method uintv (line 352) | func (e *encoder) uintv(tag string, in reflect.Value) {
method timev (line 357) | func (e *encoder) timev(tag string, in reflect.Value) {
method floatv (line 363) | func (e *encoder) floatv(tag string, in reflect.Value) {
method nilv (line 382) | func (e *encoder) nilv() {
method emitScalar (line 386) | func (e *encoder) emitScalar(value, anchor, tag string, style yaml_sca...
function newEncoder (line 39) | func newEncoder() *encoder {
function newEncoderWithWriter (line 47) | func newEncoderWithWriter(w io.Writer) *encoder {
function isBase60Float (line 283) | 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 201) | func encodeBase64(s string) string {
function parseTimestamp (line 238) | func parseTimestamp(s string) (time.Time, bool) {
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 894) | func yaml_parser_remove_simple_key(parser *yaml_parser_t) bool {
function yaml_parser_increase_flow_level (line 910) | func yaml_parser_increase_flow_level(parser *yaml_parser_t) bool {
function yaml_parser_decrease_flow_level (line 920) | func yaml_parser_decrease_flow_level(parser *yaml_parser_t) bool {
function yaml_parser_roll_indent (line 931) | func yaml_parser_roll_indent(parser *yaml_parser_t, column, number int, ...
function yaml_parser_unroll_indent (line 960) | func yaml_parser_unroll_indent(parser *yaml_parser_t, column int) bool {
function yaml_parser_fetch_stream_start (line 984) | func yaml_parser_fetch_stream_start(parser *yaml_parser_t) bool {
function yaml_parser_fetch_stream_end (line 1010) | func yaml_parser_fetch_stream_end(parser *yaml_parser_t) bool {
function yaml_parser_fetch_directive (line 1041) | func yaml_parser_fetch_directive(parser *yaml_parser_t) bool {
function yaml_parser_fetch_document_indicator (line 1065) | func yaml_parser_fetch_document_indicator(parser *yaml_parser_t, typ yam...
function yaml_parser_fetch_flow_collection_start (line 1099) | func yaml_parser_fetch_flow_collection_start(parser *yaml_parser_t, typ ...
function yaml_parser_fetch_flow_collection_end (line 1130) | func yaml_parser_fetch_flow_collection_end(parser *yaml_parser_t, typ ya...
function yaml_parser_fetch_flow_entry (line 1162) | func yaml_parser_fetch_flow_entry(parser *yaml_parser_t) bool {
function yaml_parser_fetch_block_entry (line 1187) | func yaml_parser_fetch_block_entry(parser *yaml_parser_t) bool {
function yaml_parser_fetch_key (line 1229) | func yaml_parser_fetch_key(parser *yaml_parser_t) bool {
function yaml_parser_fetch_value (line 1268) | func yaml_parser_fetch_value(parser *yaml_parser_t) bool {
function yaml_parser_fetch_anchor (line 1333) | func yaml_parser_fetch_anchor(parser *yaml_parser_t, typ yaml_token_type...
function yaml_parser_fetch_tag (line 1352) | func yaml_parser_fetch_tag(parser *yaml_parser_t) bool {
function yaml_parser_fetch_block_scalar (line 1371) | func yaml_parser_fetch_block_scalar(parser *yaml_parser_t, literal bool)...
function yaml_parser_fetch_flow_scalar (line 1390) | func yaml_parser_fetch_flow_scalar(parser *yaml_parser_t, single bool) b...
function yaml_parser_fetch_plain_scalar (line 1409) | func yaml_parser_fetch_plain_scalar(parser *yaml_parser_t) bool {
function yaml_parser_scan_to_next_token (line 1428) | func yaml_parser_scan_to_next_token(parser *yaml_parser_t) bool {
function yaml_parser_scan_directive (line 1493) | func yaml_parser_scan_directive(parser *yaml_parser_t, token *yaml_token...
function yaml_parser_scan_directive_name (line 1594) | func yaml_parser_scan_directive_name(parser *yaml_parser_t, start_mark y...
function yaml_parser_scan_version_directive_value (line 1630) | func yaml_parser_scan_version_directive_value(parser *yaml_parser_t, sta...
constant max_number_length (line 1662) | max_number_length = 2
function yaml_parser_scan_version_directive_number (line 1671) | func yaml_parser_scan_version_directive_number(parser *yaml_parser_t, st...
function yaml_parser_scan_tag_directive_value (line 1707) | func yaml_parser_scan_tag_directive_value(parser *yaml_parser_t, start_m...
function yaml_parser_scan_anchor (line 1765) | func yaml_parser_scan_anchor(parser *yaml_parser_t, token *yaml_token_t,...
function yaml_parser_scan_tag (line 1823) | func yaml_parser_scan_tag(parser *yaml_parser_t, token *yaml_token_t) bo...
function yaml_parser_scan_tag_handle (line 1908) | func yaml_parser_scan_tag_handle(parser *yaml_parser_t, directive bool, ...
function yaml_parser_scan_tag_uri (line 1953) | func yaml_parser_scan_tag_uri(parser *yaml_parser_t, directive bool, hea...
function yaml_parser_scan_uri_escapes (line 2011) | func yaml_parser_scan_uri_escapes(parser *yaml_parser_t, directive bool,...
function yaml_parser_scan_block_scalar (line 2057) | func yaml_parser_scan_block_scalar(parser *yaml_parser_t, token *yaml_to...
function yaml_parser_scan_block_scalar_breaks (line 2245) | func yaml_parser_scan_block_scalar_breaks(parser *yaml_parser_t, indent ...
function yaml_parser_scan_flow_scalar (line 2299) | func yaml_parser_scan_flow_scalar(parser *yaml_parser_t, token *yaml_tok...
function yaml_parser_scan_plain_scalar (line 2555) | 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 82) | func keyFloat(v reflect.Value) (f float64, ok bool) {
function numLess (line 101) | 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 20) | type MapSlice
type MapItem (line 23) | type MapItem struct
type Unmarshaler (line 32) | type Unmarshaler interface
type Marshaler (line 42) | type Marshaler interface
function Unmarshal (line 80) | func Unmarshal(in []byte, out interface{}) (err error) {
function UnmarshalStrict (line 88) | func UnmarshalStrict(in []byte, out interface{}) (err error) {
type Decoder (line 93) | type Decoder struct
method SetStrict (line 110) | func (dec *Decoder) SetStrict(strict bool) {
method Decode (line 119) | func (dec *Decoder) Decode(v interface{}) (err error) {
function NewDecoder (line 102) | func NewDecoder(r io.Reader) *Decoder {
function unmarshal (line 137) | func unmarshal(in []byte, out interface{}, strict bool) (err error) {
function Marshal (line 199) | func Marshal(in interface{}) (out []byte, err error) {
type Encoder (line 210) | type Encoder struct
method Encode (line 230) | func (e *Encoder) Encode(v interface{}) (err error) {
method Close (line 238) | func (e *Encoder) Close() (err error) {
function NewEncoder (line 217) | func NewEncoder(w io.Writer) *Encoder {
function handleErr (line 244) | func handleErr(err *error) {
type yamlError (line 254) | type yamlError struct
function fail (line 258) | func fail(err error) {
function failf (line 262) | func failf(format string, args ...interface{}) {
type TypeError (line 270) | type TypeError struct
method Error (line 274) | func (e *TypeError) Error() string {
type structInfo (line 285) | type structInfo struct
type fieldInfo (line 294) | type fieldInfo struct
function getStructInfo (line 310) | func getStructInfo(st reflect.Type) (*structInfo, error) {
type IsZeroer (line 424) | type IsZeroer interface
function isZero (line 428) | func isZero(v reflect.Value) bool {
FILE: vendor/gopkg.in/yaml.v2/yamlh.go
type yaml_version_directive_t (line 9) | type yaml_version_directive_t struct
type yaml_tag_directive_t (line 15) | type yaml_tag_directive_t struct
type yaml_encoding_t (line 20) | type yaml_encoding_t
constant yaml_ANY_ENCODING (line 25) | yaml_ANY_ENCODING yaml_encoding_t = iota
constant yaml_UTF8_ENCODING (line 27) | yaml_UTF8_ENCODING
constant yaml_UTF16LE_ENCODING (line 28) | yaml_UTF16LE_ENCODING
constant yaml_UTF16BE_ENCODING (line 29) | yaml_UTF16BE_ENCODING
type yaml_break_t (line 32) | type yaml_break_t
constant yaml_ANY_BREAK (line 37) | yaml_ANY_BREAK yaml_break_t = iota
constant yaml_CR_BREAK (line 39) | yaml_CR_BREAK
constant yaml_LN_BREAK (line 40) | yaml_LN_BREAK
constant yaml_CRLN_BREAK (line 41) | yaml_CRLN_BREAK
type yaml_error_type_t (line 44) | type yaml_error_type_t
constant yaml_NO_ERROR (line 49) | yaml_NO_ERROR yaml_error_type_t = iota
constant yaml_MEMORY_ERROR (line 51) | yaml_MEMORY_ERROR
constant yaml_READER_ERROR (line 52) | yaml_READER_ERROR
constant yaml_SCANNER_ERROR (line 53) | yaml_SCANNER_ERROR
constant yaml_PARSER_ERROR (line 54) | yaml_PARSER_ERROR
constant yaml_COMPOSER_ERROR (line 55) | yaml_COMPOSER_ERROR
constant yaml_WRITER_ERROR (line 56) | yaml_WRITER_ERROR
constant yaml_EMITTER_ERROR (line 57) | yaml_EMITTER_ERROR
type yaml_mark_t (line 61) | type yaml_mark_t struct
type yaml_style_t (line 69) | type yaml_style_t
type yaml_scalar_style_t (line 71) | type yaml_scalar_style_t
constant yaml_ANY_SCALAR_STYLE (line 76) | yaml_ANY_SCALAR_STYLE yaml_scalar_style_t = iota
constant yaml_PLAIN_SCALAR_STYLE (line 78) | yaml_PLAIN_SCALAR_STYLE
constant yaml_SINGLE_QUOTED_SCALAR_STYLE (line 79) | yaml_SINGLE_QUOTED_SCALAR_STYLE
constant yaml_DOUBLE_QUOTED_SCALAR_STYLE (line 80) | yaml_DOUBLE_QUOTED_SCALAR_STYLE
constant yaml_LITERAL_SCALAR_STYLE (line 81) | yaml_LITERAL_SCALAR_STYLE
constant yaml_FOLDED_SCALAR_STYLE (line 82) | yaml_FOLDED_SCALAR_STYLE
type yaml_sequence_style_t (line 85) | type yaml_sequence_style_t
constant yaml_ANY_SEQUENCE_STYLE (line 90) | yaml_ANY_SEQUENCE_STYLE yaml_sequence_style_t = iota
constant yaml_BLOCK_SEQUENCE_STYLE (line 92) | yaml_BLOCK_SEQUENCE_STYLE
constant yaml_FLOW_SEQUENCE_STYLE (line 93) | yaml_FLOW_SEQUENCE_STYLE
type yaml_mapping_style_t (line 96) | type yaml_mapping_style_t
constant yaml_ANY_MAPPING_STYLE (line 101) | yaml_ANY_MAPPING_STYLE yaml_mapping_style_t = iota
constant yaml_BLOCK_MAPPING_STYLE (line 103) | yaml_BLOCK_MAPPING_STYLE
constant yaml_FLOW_MAPPING_STYLE (line 104) | yaml_FLOW_MAPPING_STYLE
type yaml_token_type_t (line 109) | type yaml_token_type_t
method String (line 144) | func (tt yaml_token_type_t) String() string {
constant yaml_NO_TOKEN (line 114) | yaml_NO_TOKEN yaml_token_type_t = iota
constant yaml_STREAM_START_TOKEN (line 116) | yaml_STREAM_START_TOKEN
constant yaml_STREAM_END_TOKEN (line 117) | yaml_STREAM_END_TOKEN
constant yaml_VERSION_DIRECTIVE_TOKEN (line 119) | yaml_VERSION_DIRECTIVE_TOKEN
constant yaml_TAG_DIRECTIVE_TOKEN (line 120) | yaml_TAG_DIRECTIVE_TOKEN
constant yaml_DOCUMENT_START_TOKEN (line 121) | yaml_DOCUMENT_START_TOKEN
constant yaml_DOCUMENT_END_TOKEN (line 122) | yaml_DOCUMENT_END_TOKEN
constant yaml_BLOCK_SEQUENCE_START_TOKEN (line 124) | yaml_BLOCK_SEQUENCE_START_TOKEN
constant yaml_BLOCK_MAPPING_START_TOKEN (line 125) | yaml_BLOCK_MAPPING_START_TOKEN
constant yaml_BLOCK_END_TOKEN (line 126) | yaml_BLOCK_END_TOKEN
constant yaml_FLOW_SEQUENCE_START_TOKEN (line 128) | yaml_FLOW_SEQUENCE_START_TOKEN
constant yaml_FLOW_SEQUENCE_END_TOKEN (line 129) | yaml_FLOW_SEQUENCE_END_TOKEN
constant yaml_FLOW_MAPPING_START_TOKEN (line 130) | yaml_FLOW_MAPPING_START_TOKEN
constant yaml_FLOW_MAPPING_END_TOKEN (line 131) | yaml_FLOW_MAPPING_END_TOKEN
constant yaml_BLOCK_ENTRY_TOKEN (line 133) | yaml_BLOCK_ENTRY_TOKEN
constant yaml_FLOW_ENTRY_TOKEN (line 134) | yaml_FLOW_ENTRY_TOKEN
constant yaml_KEY_TOKEN (line 135) | yaml_KEY_TOKEN
constant yaml_VALUE_TOKEN (line 136) | yaml_VALUE_TOKEN
constant yaml_ALIAS_TOKEN (line 138) | yaml_ALIAS_TOKEN
constant yaml_ANCHOR_TOKEN (line 139) | yaml_ANCHOR_TOKEN
constant yaml_TAG_TOKEN (line 140) | yaml_TAG_TOKEN
constant yaml_SCALAR_TOKEN (line 141) | yaml_SCALAR_TOKEN
type yaml_token_t (line 195) | type yaml_token_t struct
type yaml_event_type_t (line 224) | type yaml_event_type_t
method String (line 257) | func (e yaml_event_type_t) String() string {
constant yaml_NO_EVENT (line 229) | yaml_NO_EVENT yaml_event_type_t = iota
constant yaml_STREAM_START_EVENT (line 231) | yaml_STREAM_START_EVENT
constant yaml_STREAM_END_EVENT (line 232) | yaml_STREAM_END_EVENT
constant yaml_DOCUMENT_START_EVENT (line 233) | yaml_DOCUMENT_START_EVENT
constant yaml_DOCUMENT_END_EVENT (line 234) | yaml_DOCUMENT_END_EVENT
constant yaml_ALIAS_EVENT (line 235) | yaml_ALIAS_EVENT
constant yaml_SCALAR_EVENT (line 236) | yaml_SCALAR_EVENT
constant yaml_SEQUENCE_START_EVENT (line 237) | yaml_SEQUENCE_START_EVENT
constant yaml_SEQUENCE_END_EVENT (line 238) | yaml_SEQUENCE_END_EVENT
constant yaml_MAPPING_START_EVENT (line 239) | yaml_MAPPING_START_EVENT
constant yaml_MAPPING_END_EVENT (line 240) | yaml_MAPPING_END_EVENT
type yaml_event_t (line 265) | type yaml_event_t struct
method scalar_style (line 302) | func (e *yaml_event_t) scalar_style() yaml_scalar_style_t { return...
method sequence_style (line 303) | func (e *yaml_event_t) sequence_style() yaml_sequence_style_t { return...
method mapping_style (line 304) | func (e *yaml_event_t) mapping_style() yaml_mapping_style_t { return...
constant yaml_NULL_TAG (line 309) | yaml_NULL_TAG = "tag:yaml.org,2002:null"
constant yaml_BOOL_TAG (line 310) | yaml_BOOL_TAG = "tag:yaml.org,2002:bool"
constant yaml_STR_TAG (line 311) | yaml_STR_TAG = "tag:yaml.org,2002:str"
constant yaml_INT_TAG (line 312) | yaml_INT_TAG = "tag:yaml.org,2002:int"
constant yaml_FLOAT_TAG (line 313) | yaml_FLOAT_TAG = "tag:yaml.org,2002:float"
constant yaml_TIMESTAMP_TAG (line 314) | yaml_TIMESTAMP_TAG = "tag:yaml.org,2002:timestamp"
constant yaml_SEQ_TAG (line 316) | yaml_SEQ_TAG = "tag:yaml.org,2002:seq"
constant yaml_MAP_TAG (line 317) | yaml_MAP_TAG = "tag:yaml.org,2002:map"
constant yaml_BINARY_TAG (line 320) | yaml_BINARY_TAG = "tag:yaml.org,2002:binary"
constant yaml_MERGE_TAG (line 321) | yaml_MERGE_TAG = "tag:yaml.org,2002:merge"
constant yaml_DEFAULT_SCALAR_TAG (line 323) | yaml_DEFAULT_SCALAR_TAG = yaml_STR_TAG
constant yaml_DEFAULT_SEQUENCE_TAG (line 324) | yaml_DEFAULT_SEQUENCE_TAG = yaml_SEQ_TAG
constant yaml_DEFAULT_MAPPING_TAG (line 325) | yaml_DEFAULT_MAPPING_TAG = yaml_MAP_TAG
type yaml_node_type_t (line 328) | type yaml_node_type_t
constant yaml_NO_NODE (line 333) | yaml_NO_NODE yaml_node_type_t = iota
constant yaml_SCALAR_NODE (line 335) | yaml_SCALAR_NODE
constant yaml_SEQUENCE_NODE (line 336) | yaml_SEQUENCE_NODE
constant yaml_MAPPING_NODE (line 337) | yaml_MAPPING_NODE
type yaml_node_item_t (line 341) | type yaml_node_item_t
type yaml_node_pair_t (line 344) | type yaml_node_pair_t struct
type yaml_node_t (line 350) | type yaml_node_t struct
type yaml_document_t (line 384) | type yaml_document_t struct
type yaml_read_handler_t (line 419) | type yaml_read_handler_t
type yaml_simple_key_t (line 422) | type yaml_simple_key_t struct
type yaml_parser_state_t (line 430) | type yaml_parser_state_t
method String (line 460) | func (ps yaml_parser_state_t) String() string {
constant yaml_PARSE_STREAM_START_STATE (line 433) | yaml_PARSE_STREAM_START_STATE yaml_parser_state_t = iota
constant yaml_PARSE_IMPLICIT_DOCUMENT_START_STATE (line 435) | yaml_PARSE_IMPLICIT_DOCUMENT_START_STATE
constant yaml_PARSE_DOCUMENT_START_STATE (line 436) | yaml_PARSE_DOCUMENT_START_STATE
constant yaml_PARSE_DOCUMENT_CONTENT_STATE (line 437) | yaml_PARSE_DOCUMENT_CONTENT_STATE
constant yaml_PARSE_DOCUMENT_END_STATE (line 438) | yaml_PARSE_DOCUMENT_END_STATE
constant yaml_PARSE_BLOCK_NODE_STATE (line 439) | yaml_PARSE_BLOCK_NODE_STATE
constant yaml_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE (line 440) | yaml_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE
constant yaml_PARSE_FLOW_NODE_STATE (line 441) | yaml_PARSE_FLOW_NODE_STATE
constant yaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE (line 442) | yaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE
constant yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE (line 443) | yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE
constant yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE (line 444) | yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE
constant yaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE (line 445) | yaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE
constant yaml_PARSE_BLOCK_MAPPING_KEY_STATE (line 446) | yaml_PARSE_BLOCK_MAPPING_KEY_STATE
constant yaml_PARSE_BLOCK_MAPPING_VALUE_STATE (line 447) | yaml_PARSE_BLOCK_MAPPING_VALUE_STATE
constant yaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE (line 448) | yaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE
constant yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE (line 449) | yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE
constant yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE (line 450) | yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE
constant yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE (line 451) | yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE
constant yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE (line 452) | yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE
constant yaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE (line 453) | yaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE
constant yaml_PARSE_FLOW_MAPPING_KEY_STATE (line 454) | yaml_PARSE_FLOW_MAPPING_KEY_STATE
constant yaml_PARSE_FLOW_MAPPING_VALUE_STATE (line 455) | yaml_PARSE_FLOW_MAPPING_VALUE_STATE
constant yaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE (line 456) | yaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE
constant yaml_PARSE_END_STATE (line 457) | yaml_PARSE_END_STATE
type yaml_alias_data_t (line 515) | type yaml_alias_data_t struct
type yaml_parser_t (line 525) | type yaml_parser_t struct
type yaml_write_handler_t (line 613) | type yaml_write_handler_t
type yaml_emitter_state_t (line 615) | type yaml_emitter_state_t
constant yaml_EMIT_STREAM_START_STATE (line 620) | yaml_EMIT_STREAM_START_STATE yaml_emitter_state_t = iota
constant yaml_EMIT_FIRST_DOCUMENT_START_STATE (line 622) | yaml_EMIT_FIRST_DOCUMENT_START_STATE
constant yaml_EMIT_DOCUMENT_START_STATE (line 623) | yaml_EMIT_DOCUMENT_START_STATE
constant yaml_EMIT_DOCUMENT_CONTENT_STATE (line 624) | yaml_EMIT_DOCUMENT_CONTENT_STATE
constant yaml_EMIT_DOCUMENT_END_STATE (line 625) | yaml_EMIT_DOCUMENT_END_STATE
constant yaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE (line 626) | yaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE
constant yaml_EMIT_FLOW_SEQUENCE_ITEM_STATE (line 627) | yaml_EMIT_FLOW_SEQUENCE_ITEM_STATE
constant yaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE (line 628) | yaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE
constant yaml_EMIT_FLOW_MAPPING_KEY_STATE (line 629) | yaml_EMIT_FLOW_MAPPING_KEY_STATE
constant yaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE (line 630) | yaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE
constant yaml_EMIT_FLOW_MAPPING_VALUE_STATE (line 631) | yaml_EMIT_FLOW_MAPPING_VALUE_STATE
constant yaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE (line 632) | yaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE
constant yaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE (line 633) | yaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE
constant yaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE (line 634) | yaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE
constant yaml_EMIT_BLOCK_MAPPING_KEY_STATE (line 635) | yaml_EMIT_BLOCK_MAPPING_KEY_STATE
constant yaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE (line 636) | yaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE
constant yaml_EMIT_BLOCK_MAPPING_VALUE_STATE (line 637) | yaml_EMIT_BLOCK_MAPPING_VALUE_STATE
constant yaml_EMIT_END_STATE (line 638) | yaml_EMIT_END_STATE
type yaml_emitter_t (line 645) | 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 {